Skip to content

Instantly share code, notes, and snippets.

@fasterthanlime
fasterthanlime / settings.json
Created May 16, 2020 10:09
fasterthanlime's vim-specific VSCode settings @ May 16 2020
{
"vim.handleKeys": {
"<C-t>": false
},
"vim.leader": "\\",
"vim.normalModeKeyBindings": [
{
"before": ["j"],
"after": ["g", "j"]
},
export const GoogleApi = function(opts) {
opts = opts || {}
const apiKey = opts.apiKey;
const libraries = opts.libraries || [];
const client = opts.client;
const URL = 'https://maps.googleapis.com/maps/api/js';
const googleVersion = '3.22';
let script = null;
@adamwiggins
adamwiggins / adams-heroku-values.md
Last active September 6, 2025 20:29
My Heroku values

Make it real

Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.

Ship it

Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.

Do it with style

@mafice
mafice / macho2bin.sh
Created May 27, 2012 15:31
convert Mach-O to plain binary
#
# install GNU Binutils
#
# cd /tmp
# curl -O http://ftp.gnu.org/gnu/binutils/binutils-2.22.tar.gz
# tar vxf binutils-2.22.tar.gz
# cd binutils-2.22
# ./configure
# sudo make install
#