- Handstand Progression
- Pull-ups
- Overhead Press
- Dips
| node_modules/ |
| 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`; |
| 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 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] |
I hereby claim:
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" |