I hereby claim:
- I am marcolarosa on github.
- I am marcolarosa (https://keybase.io/marcolarosa) on keybase.
- I have a public key ASCqfgWAPpHXE18dV1lsA7mr177-vHonanXD8Jel_oe5oQo
To claim this, I am signing this object:
| import { GatewayAPIClient } from "@cs3org/node-cs3apis/cs3/gateway/v1beta1/gateway_api_grpc_pb"; | |
| const { | |
| AuthenticateRequest, | |
| WhoAmIRequest, | |
| } = require("@cs3org/node-cs3apis/cs3/gateway/v1beta1/gateway_api_pb") | |
| import { | |
| ListStorageSpacesRequest, | |
| } from "@cs3org/node-cs3apis/cs3/storage/provider/v1beta1/provider_api_pb"; | |
| function promisifyAll(client) { |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| is_private_network() { | |
| NETWORK=${1} | |
| is_private=0 | |
| for i in $(seq 0 255); do | |
| match=$(echo $NETWORK | grep "10.$i") | |
| [[ ! -z $match ]] && is_private=1 |
| import Exceljs from "exceljs"; | |
| import { groupBy, compact, isEmpty } from "lodash"; | |
| const workbookFile = '/path/to/your/excelSheet/xlsx'; | |
| const nameOfSheet = 'name of sheet in workbook'; | |
| let workbook = new Exceljs.Workbook(); | |
| await workbook.xlsx.readFile(workbookFile); | |
| const sheet = workbook.getWorksheet(nameOfSheet); |
| { | |
| "status": "extinct", | |
| "code": "cmt", | |
| "coords": ["-26.247", "27.942"], | |
| "name": "Camtho", | |
| "level": "language", | |
| "url": "http://www.language-archives.org/language/cmt", | |
| "glotto_id": "camt1236", | |
| "glotto_family_id": "mixe1287", | |
| "resources": { |
| <record xmlns="http://www.openarchives.org/OAI/2.0/"> | |
| <header> | |
| <identifier> | |
| oai:transnewguinea.org:wfg.366 | |
| </identifier> | |
| <datestamp> | |
| 2016-12-05 | |
| </datestamp> | |
| </header> |
| class date_cleanser: | |
| def __init__(self): | |
| # time formats we will try to clean | |
| self.timeformats = [ | |
| "%Y-%m-%d", # 1976-01-01 | |
| "%Y %m %d", # 1976 01 01 | |
| "%d %B %Y", # 12 January 1997 | |
| "%B %Y", # February 1998 | |
| "%Y", # 2004 |
| Tomcat context file | |
| <Context docBase="/opt/solr/apache-solr-4.3.0/solr-4.3.0.war" debug="0" crossContext="false" > | |
| <Environment name="solr/home" type="java.lang.String" value="/opt/solr/solr" override="true"/> | |
| </Context> |