Skip to content

Instantly share code, notes, and snippets.

@maxwellb
maxwellb / 0 az-cli wrapper.md
Last active August 29, 2019 18:49
docker az-cli wrapper for .bashrc
$ mkdir -p ~/.local/var/az-cli-client42
$ az client42 login
$ az client42 resource list
@maxwellb
maxwellb / 0 Hashcash.NET
Last active August 29, 2019 18:47
Hashcash.NET
```
var stamp = Hashcash.Parse("1:24:040806:foo::511801694b4cd6b0:1e7297a")
if (Hashcash.IsValid(stamp)) {
// ...
}
```
@maxwellb
maxwellb / 0 Python venv wrapper.md
Last active August 29, 2019 18:42
Universal Python venv wrapper
$ ln -s /opt/work/my-env/../../../usr/local/bin/within-venv.sh /opt/within-my-venv && ln -s /opt/within-my-venv /usr/local/bin/mytool
$ mytool     # runs in /opt/work/my-venv
@maxwellb
maxwellb / Confirm-Operation.ps1
Last active August 29, 2019 18:39
Confirm-Operation.ps1
# if (Confirm-Operation -Message 'Really do the thing?') {
# Get-ChildItem | Remove-Item -Recurse -Force
# }
function Confirm-Operation {
param(
$Caption = '',
$Message = '',
$AffirmOption = '',
$AffirmDescription = '',
@maxwellb
maxwellb / propsApply.ts
Last active August 29, 2019 18:14
propsApply.ts
export default function propsApply<TIn, TOut>(_: { [index: string]: TIn }, fn: { (source: TIn): TOut }) {
return Object.keys(_).reduce(
(result, i) => {
result[i] = fn(_[i]); return result;
},
{} as { [any: string]: TOut }
);
};
@maxwellb
maxwellb / 0 debootstrap chroot.md
Last active July 25, 2019 23:34
Wrapper to debootstrap and chroot

...

@maxwellb
maxwellb / 0 PowerShell Snippets.md
Created April 4, 2019 11:10
PowerShell Snippets

...

@maxwellb
maxwellb / 0 Gentoo-Prefix chroot for Chrome OS
Last active April 1, 2019 22:56
Gentoo-Prefix chroot for Chrome OS
...
@maxwellb
maxwellb / 0 NodeJS-bash starter scripts
Last active January 23, 2019 19:19
NodeJS/bash starter scripts
...
@maxwellb
maxwellb / .motd
Created December 20, 2018 21:47
clear-motd
#!/usr/bin/env bash
# To use set the follow alias in your .bash_profile or .bashrc
# and then save this file as ~.motd, and chmod +x on it.
#
# alias clear='clear && ([ -x ~/.motd ] && ~/.motd || true) || ([ -f ~/.motd ] && cat ~/.motd)'
#
# Copyright (c) 2018 Maxwell Bloch, MIT licensed
#
echo `df -h ~ | xargs echo | cut -d' ' -f12` used, `df -h ~ | xargs echo | cut -d' ' -f11` free on \$HOME