Skip to content

Instantly share code, notes, and snippets.

View obradovic's full-sized avatar
🏠
Working from home

Zo Obradovic obradovic

🏠
Working from home
View GitHub Profile
@obradovic
obradovic / .curl_format for curly
Last active October 29, 2016 22:49
curl format file
\n
time_namelookup: %{time_namelookup}\n
time_connect: %{time_connect}\n
time_appconnect: %{time_appconnect}\n
time_pretransfer: %{time_pretransfer}\n
time_redirect: %{time_redirect}\n
time_starttransfer: %{time_starttransfer}\n
size_download: %{size_download}\n
speed_download: %{speed_download}\n
http_code: %{http_code}\n
@obradovic
obradovic / set_environment.rb
Created October 25, 2012 16:45 — forked from nstielau/set_environment.rb
A Knife plugin to set node environment
## Knife plugin to set node environment
# See http://wiki.opscode.com/display/chef/Environments
#
## Install
# Place in .chef/plugins/knife/set_environment.rb
#
## Usage
# Nick-Stielaus-MacBook-Pro:chef-repo nstielau$ knife node set_environment mynode.net my_env
# Looking for mynode.net
# Setting environment to my_env
set nocompatible
set expandtab
set tabstop=4
set shiftwidth=4
set autoindent
set smartindent
set ru
set sc
set wmnu
@obradovic
obradovic / .kshrc
Created March 4, 2012 12:32
mini .kshrc
set -o vi
export PATH=~/bin:$PATH
export PATH=$PATH:/sw/bin
export PATH=$PATH:.
export PS1='${PWD} > '
alias -x dir='ls -al'
alias -x j='jobs'