Skip to content

Instantly share code, notes, and snippets.

@pinkahd
pinkahd / email_coding_guidelines.md
Last active September 11, 2015 21:48 — forked from janogarcia/email_coding_guidelines.md
Email Coding Guidelines
@pinkahd
pinkahd / meta-tags.md
Last active September 11, 2015 21:39 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@pinkahd
pinkahd / homebrew.sh
Last active September 11, 2015 21:37 — forked from mo6020/homebrew.sh
#!/usr/bin/env bash
# Ed Morgan [[email protected]]
# version 1.2
# 11/09/2015
# Install Hombrew first!
# Make sure we’re using the latest Homebrew
echo "Updating brews..."
brew update
@pinkahd
pinkahd / tmux-cheatsheet.markdown
Last active September 11, 2015 21:37 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@pinkahd
pinkahd / osx-for-hackers.sh
Last active September 11, 2015 21:36 — forked from brandonb927/osx-for-hackers.sh
OSX for Hackers: Yosemite Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned. Also, please don't email me about this script, my poor inbox...
#!/bin/sh
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'