I hereby claim:
- I am Istar-Eldritch on github.
- I am istar (https://keybase.io/istar) on keybase.
- I have a public key whose fingerprint is 526C 12B6 A612 70F0 B474 7CCC 61A8 4D74 84B3 0D23
To claim this, I am signing this object:
// | |
// Number.swift | |
// | |
// This allows the use of the Type Number in Generics | |
// Allow operations between optional numbers. | |
// | |
// Created by Ruben Paz | |
// | |
import Foundation |
// | |
// Regex.swift | |
// | |
// Created by Ruben Paz | |
// | |
import Foundation | |
class Regex { | |
let internalExpression: NSRegularExpression |
import R from 'ramda'; | |
import fs from 'fs'; | |
import path from 'path'; | |
function deepRead(dir) { | |
function isFile(f) { | |
return fs.statSync(f).isFile(); | |
} |
function isSeq(list, f = list.shift()) { | |
if(list.length == 0) { | |
return true; | |
} | |
else if(list[0] != f + 1) { | |
return false; | |
} | |
else { | |
return isSeq(list, list.shift()); | |
} |
'use static'; | |
const http = require('http'); | |
const most = require('most'); | |
const port = 3000; | |
const server = http.createServer(); | |
most.fromEvent('listening', server).forEach(() => { |
function trampoline(f) { | |
while (f && f instanceof Function) { | |
f = f.apply(f.context, f.args); | |
} | |
return f; | |
} |
var R = require('ramda') | |
var one = { | |
test: { | |
a: 1, | |
b: 2 | |
}, | |
pemento: "sipi", | |
arr: ['a', 'b'] | |
} |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env node | |
`use strict`; | |
const exec = require('child_process').execSync; | |
const fs = require('fs'); | |
let USER = "repositive" | |
let REPO = "hapi-path-generator" | |
console.log('Starting pre-commit hook...'); |
import {promisify, all} from 'bluebird'; | |
import {readdir as _rd, lstat as _ls} from 'fs' | |
import {flatten} from 'ramda' | |
let readdir = promisify(_rd) | |
let lstat = promisify(_ls) | |
export function reader<T>(path:string, f: (string) => T): Promise<T[]> { |