First things first go to http://sublime.wbond.net and install package control.
{
"auto_match_enabled": false,
First things first go to http://sublime.wbond.net and install package control.
{
"auto_match_enabled": false,
{ | |
"repositories" : [ | |
{ | |
"type": "composer", | |
"url": "http://packages.zendframework.com/" | |
} | |
], | |
"require": { | |
"php": ">=5.3.3", | |
"zendframework/zendframework": "1.12.*" |
visudo | |
user ALL=(ALL) NOPASSWD: ALL |
#! /bin/sh | |
set +o noclobber | |
# | |
# $1 = scanner device | |
# $2 = friendly name | |
# | |
# | |
# 100,200,300,400,600 | |
# |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
Making install in completions | |
for file in aclocal-1.11 ; do \ | |
rm -f ./$file && \ | |
ln -s aclocal ./$file ; \ | |
done | |
for file in phing ; do \ | |
rm -f ./$file && \ | |
ln -s ant ./$file ; \ | |
done | |
for file in asciidoc.py ; do \ |
single_body_task = {
"task" : "math.tasks.add",
"kwargs" : {
"a" : 1,
"b" : 2
},
"id" : sha1(json_encode(single_body_task['kwargs']))
}
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
import sys | |
sys.path.append("/usr/lib/python2.7/lib-dynload/") | |
import bz2 |
SHELL := bash | |
environment := $(shell echo $(env) | tr a-z A-Z) | |
PRODUCTION_HOST = 0.0.0.0 | |
TESTING_HOST = 1.1.1.1 | |
rsync_or_smth = \ | |
echo $($(environment)_HOST) |