Skip to content

Instantly share code, notes, and snippets.

View clintonhalpin's full-sized avatar
✌️

Clinton Halpin clintonhalpin

✌️
View GitHub Profile
-moz-box-sizing
-moz-break-after
-moz-break-before
-moz-column-count
-moz-column-fill
-moz-column-gap
-moz-column-rule-color
-moz-column-rule-style
-moz-column-rule-width
-moz-column-span
align-content
align-items
align-self
animation-delay [ TIME ]
animation-direction
animation-duration [ TIME ]
animation-fill-mode
animation-iteration-count
animation-play-state
animation-timing-function
align-content %%
flex-start,
flex-end,
center,
space-between,
space-around,
stretch,
inherit,
%%
align-items %%
" File: hybrid.vim
" Maintainer: Andrew Wong (w0ng)
" URL: https://github.com/w0ng/vim-hybrid
" Modified: 27 Jan 2013 07:33 AM AEST
" License: MIT
" Description:"{{{
" ----------------------------------------------------------------------------
" The RGB colour palette is taken from Tomorrow-Night.vim:
" https://github.com/chriskempson/vim-tomorrow-theme
@clintonhalpin
clintonhalpin / _.md
Last active August 29, 2015 14:06
Functional Programming

Functional Programming

Currying

var get = function(property, object) {
  return object[property];
}

get('name');
@clintonhalpin
clintonhalpin / filter.js
Last active August 29, 2015 14:07
Filtering Test
var Items = [
{ name: 'Nasir Jones', gender : 'm' },
{ name: 'Mike Jones', gender : 'm' },
{ name: 'Lil Kim', gender : 'f' }
];
// No more for loops, Add as many args to CHANGEME
brew cask install alfred dropbox transmit seil spotify sublime-text3 sketch slack
grep -R 'search-term' .
@clintonhalpin
clintonhalpin / Setup.md
Created December 19, 2014 04:55
Setting up a Rasberry PI

Connect WIFI

# Check for networks
sudo iwlist wlan0 scan

# Edit Config
sudo vi /etc/wpa_supplicant/wpa_supplicant.conf
execute pathogen#infect()
syntax on
filetype plugin indent on
set cursorline
set expandtab
set modelines=0
set shiftwidth=2
set clipboard=unnamed
set synmaxcol=128