I hereby claim:
- I am sidoshi on github.
- I am sidoshi (https://keybase.io/sidoshi) on keybase.
- I have a public key ASAcoNHu1o7huOoq0qkycojXOr5POWxtwhzCojFoW9baLQo
To claim this, I am signing this object:
alias ghub="cd ~/Github" | |
alias glab="cd ~/Gitlab" | |
alias s="git status" | |
alias p="git push" | |
alias textedit="open -a TextEdit" |
I hereby claim:
To claim this, I am signing this object:
// const input = | |
// '(2 (7 (2 () ()) (6 (5 () ()) (11 () ()))) (5 () (9 (4 () ()) ())))' | |
const tokenizer = input => { | |
let current = 0 | |
const tokens = [] | |
while (current < input.length) { | |
let char = input[current] |
use std::env; | |
use num_bigint::{BigUint, ToBigUint}; | |
fn fib(n: usize) -> BigUint { | |
let mut dp = Vec::with_capacity(n+1); | |
dp.push(0.to_biguint().unwrap()); | |
dp.push(1.to_biguint().unwrap()); | |
for i in 2..=n { |
const contextStore: any = {}; | |
const prefix = '____FREIGHTHUB_CONTEXT_PROVIDER____'; | |
export async function runInContext( | |
callback: () => Promise<void>, | |
context: any | |
) { | |
const id = 'some-random-id'; | |
const rootFnName = `${prefix}${id}--end`; |
node_modules/ |