Skip to content

Instantly share code, notes, and snippets.

Though my work may be menial, though my contribution may be small, I can perform it with dignity and offer it with unselfishness. My talents may not be great, but I can use them to bless the lives of others. I can be one who does his work with pride in that which comes from hand and mind. I can be one who works with respect for my associates, for their opinions, for their beliefs, with appreciation for their problems and with a desire to help them should they stumble. I believe in the principle that I can make a difference in this world. It may be ever so small. But it will count for the greater good. The goodness of the world in which we live is the accumulated goodness of many small and seemingly inconsequential acts. - Gordon B Hinkley

var active = false;
function changeRefer(details) {
if (!active) return;
for (var i = 0; i < details.requestHeaders.length; ++i) {
if (details.requestHeaders[i].name === 'Referer') {
details.requestHeaders[i].value = 'http://www.google.com/';
break;
}

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

@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 23, 2024 18:01
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@bergie
bergie / README.md
Created May 18, 2011 11:33
Falsy Values tutorials
@lukeman
lukeman / gist:949011
Created April 29, 2011 20:44
pinax 0.7.3 boot script with virtualenv 1.6
#!/usr/bin/env python
## WARNING: This file is generated
"""Create a "virtual" Python installation
"""
# If you change the version here, change it in setup.py
# and docs/conf.py as well.
virtualenv_version = "1.6"
import base64