- AdBlock - The most popular Chrome extension, with over 10 million users! Blocks ads all over the web.
- Blackline GPS JIRA/GreenHopper Tools - Tools for working with JIRA GreenHopper
- Dev HTTP Client - Easily construct custom HTTP requests, save them permanently, take advantage of variables and contexts.
- Edit This Cookie - Edit This Cookie is a cookie manager. You can add, delete, edit, search, protect and block cookies!
- GitHub Notifier - Displays your GitHub notifications unread count
- Hacker News - Displ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# fail fast | |
set -e | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi |
# Clone your gist
git clone [email protected]:abcdef.git
cd abcdef
# Add the fork as a remote
git remote add downstream [email protected]:uvwxyz.git
# Merge in the changes from the fork
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style="color:rgb(128,128,128); font-family:Tahoma,Verdana,Helvetica,Arial,sans-serif; font-size: 12px;"> | |
-- | |
<br><strong style="color:rgb(0,0,0);">Brad Hafichuk</strong> | |
<br>Sr. Software Developer | |
<br> | |
<br>Blackline GPS | Suite 101, 1215 – 13 St SE | Calgary, AB T2G 3J4 | |
<br> | |
<br>o <span style="color:rgb(0,0,0);">403 451 0327</span> | |
<br>e <a href="mailto:[email protected]" target="_blank">[email protected]</a> | |
<br> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BACKGROUND_COLOR="black" | |
FONT_PATH=$HOME/.fonts/Inconsolata.otf | |
FONT_SIZE=70 | |
FONT_URL="http://www.levien.com/type/myfonts/Inconsolata.otf" | |
WALLPAPER_SIZE="1920x1080" | |
WALLPAPER_PATH=$1 | |
GITHUB_OAUTH_TOKEN_PATH=$HOME/.zen-wallpaper-oauth.token |
These suggestions are geared towards the Linux/MySQL/Apache/PHP portion of the code-o-sphere.
There are many flavours of source control, like CVS, Perforce, SVN, git and Mercurial. I've used CVS, SVN and git, and my overall favourite is definitely git.
Free hosting of public git repositories, and a great social coding environment can be found on GitHub. I'd highly recommend contributing to some open source projects on GitHub, or creating your own projects, as it's an excellent place to point potential employers to, as they can actually see code you've written.
If you want to host private git repositories, Bitbucket allows you to host an infinite number of private repos for teams of up to 5 users.