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/sh -x | |
# -x prints every command before it executes it | |
# prints 3, 2, 1, 0 in the same location | |
echo -n " " | |
let i=3 | |
while [ ${i} -ge 0 ] | |
do | |
printf "\b${i}" | |
let i-=1 |
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
typedef struct list_node_s { | |
void *node; | |
int key; | |
} list_node_t; | |
list_node_t n; |
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
I | |
%a{ :href => "http://twitter.com/shiva" } tweet | |
, | |
%a{ :href => "http://shiva.tumblr.com/" } tumble | |
, | |
%a{ :href => "http://facebook.com/shivanand" } facebook | |
\. Am I allowed to use that as a verb?! Who cares, to hell with correctness! | |
Ohh. I also | |
%a{ :href => "/blog" } blog in long form | |
\. Recently, I've started a project called |
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
Host *.github.com | |
IdentityFile ~/.ssh/id_rsa-github | |
User shiva | |
Host *.work | |
IdentityFile ~/.ssh/id_rsa.work | |
User shiva |
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
# git config --global -e | |
Then copy the following into the global git config | |
[alias] | |
lg = log --color --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --no-merges | |
st = status | |
c = commit | |
b = branch | |
co = checkout |
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
sudo apt-get install libx11-dev libxt-dev python python2.7-dev | |
hg clone https://vim.googlecode.com/hg/ vim_source && cd vim_source && \ | |
./configure --disable-nls --enable-multibyte --with-tlib=ncurses \ | |
--enable-pythoninterp --enable-rubyinterp --with-features=huge && \ | |
make -j 3 && sudo make install |
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
include(CMakeParseArguments) | |
find_program(NIM_EXECUTABLE nimrod PATHS ENV PATH) | |
mark_as_advanced(NIM_EXECUTABLE) | |
# Determine the valac version | |
if(NIM_EXECUTABLE) | |
execute_process(COMMAND ${NIM_EXECUTABLE} "--version" | |
OUTPUT_VARIABLE NIM_VERSION |
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
REPORTER = spec | |
.PHONY: test tap unit jshint skel help | |
all: jshint test ## Run all targets | |
test: ## Run tests | |
@NODE_ENV=test ./node_modules/.bin/mocha --recursive --reporter $(REPORTER) --timeout 3000 | |
jshint: ## Run Static Analysis |
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
# Add the following 'help' target to your Makefile | |
# And add help text after each target name starting with '\#\#' | |
help: ## Show help | |
@IFS=$$'\n' ; \ | |
help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/:/'`); \ | |
printf "%-10s %s\n" "target" "help" ; \ | |
printf "%-10s %s\n" "------" "----" ; \ | |
for help_line in $${help_lines[@]}; do \ | |
IFS=$$':' ; \ |
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
$ for d in `find . -name ".git"`; do \ | |
echo "processing $d ..."; \ | |
git --git-dir=$d --work-tree=$d/.. status; \ | |
done |
OlderNewer