How Node.js Buffer.from(str, 'hex') might be implemented?
https://gist.github.com/fuadop/88aaf88f07771c88de10a3eeb70edff1
Search for a command to run...
https://gist.github.com/fuadop/88aaf88f07771c88de10a3eeb70edff1
https://gist.github.com/fuadop/90f67285e6f250c76aafd698ba764331
/** * @param {string} b * @returns {string} */ const btoa = (b) => { let s = ''; const bytes = new Uint8Array(b.split('').map(x => x.charCodeAt(0))); const ALPHABET_TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01234567...
tmux -V &> /dev/null if [[ $? -eq 0 ]]; then function clear_tmux_scrollback_buffer() { tmux clear-history } zle -N clear_tmux_scrollback_buffer bindkey "^[^L" clear_tmux_scrollback_buffer fi https://github.com/fuadop/zsh-conf...
A Comprehensive Guide to Object-Oriented Programming (OOP) in Golang

Create your own custom go packages for re-usability.

Send emails using the go standard library (net/smtp).
