Skip to content

Instantly share code, notes, and snippets.

View CodeMan99's full-sized avatar

Cody A. Taylor CodeMan99

View GitHub Profile
@CodeMan99
CodeMan99 / getnode
Last active December 20, 2022 21:09
Tiny scripts for getting & installing node.
#!/usr/bin/env bash
set -e
VERSION="$1"
OS="linux"
ARCH="x64"
# ARCH="armv7l"
URL="https://nodejs.org/dist/v${VERSION}/node-v${VERSION}-${OS}-${ARCH}.tar.xz"
@CodeMan99
CodeMan99 / backoff.js
Created November 2, 2022 15:21
Exponential Back-Off
// snippet based on https://github.com/tim-kos/node-retry#retrytimeoutsoptions
const timeouts = Array.from({length: 10}, (_, i) => {
const random = 1;
const minTimeout = 10;
const factor = 2;
const attempt = i;
const maxTimeout = 6000;
return Math.min(random * minTimeout * Math.pow(factor, attempt), maxTimeout);
});
@CodeMan99
CodeMan99 / delay.fsx
Last active February 11, 2023 06:24
F# bound context
let a b c =
b + c
let d a =
let m = a + 1 // pretend this is opening something stateful, like a db connection
let x y =
m + y
x
// f is a bound function, a has not been executed yet
let f = a 2
@CodeMan99
CodeMan99 / slice_utils.py
Created May 7, 2021 15:00
Create left & right slices of a collection
from operator import itemgetter
def create_slicer(*indexes):
"""
>>> l = list(range(10))
>>> create_slicer(5)(l)
([0, 1, 2, 3, 4], [5, 6, 7, 8, 9])
>>> create_slicer(3, 7)(l)
([0, 1, 2], [3, 4, 5, 6], [7, 8, 9])
>>> create_slicer(3, 5, 7)(l)
{
const RUN = 50000;
const FLAT_LENGTH = 9;
const a = [
[0, 1, 2, 3],
4,
[5, 6, 7],
8
];
const perf = [];
@CodeMan99
CodeMan99 / README.md
Last active April 29, 2018 04:32
Setup your "development" folder for more meta information.

Development Tree

Replacing a flat tree with one that has meta information baked in.

Typical Approach

When cloning projects you likely have some sort of "development" directory. That is where most, if not all, resulting directories of git clone reside. You

function arrayFrom(a) {
return Array.from(arguments).slice(1);
}
function arraySlice(a) {
return Array.prototype.slice.call(arguments, 1);
}
function argsRest(a, ...args) {
return args;
⌘ – ⌘ – ⌘ – the Command Key symbol
⌥ – ⌥ – ⌥ – the Option Key symbol
⇧ – ⇧ – ⇧ – the Shift Key symbol
⎋ – ⎋ – ⎋ – the ESC Key symbol
⇪ – ⇪ – ⇪ – the Capslock symbol
⏎ – ⏎ – ⏎ – the Return symbol
⌫ – ⌫ – ⌫ – the Delete / Backspace symbol
Python 3.4.3+ (3.4:dc10c52c6539, Apr 9 2015, 23:04:55)
[GCC 4.8.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> """Hello
... There
...
... I have some blank lines
...
... as well as a trailing newline.
... """.split("\n")