Skip to content

Instantly share code, notes, and snippets.

@dr-fozzy
dr-fozzy / gist:9638661
Last active August 29, 2015 13:57 — forked from xorl/gist:2295504
require 'formula'
class Awesome < Formula
url 'http://awesome.naquadah.org/download/awesome-3.5.2.tar.bz2'
homepage 'http://awesome.naquadah.org/'
md5 '575b2c2a6d38510c6d059dca09bc269f'
depends_on 'cmake'
depends_on 'lua'
depends_on 'imlib2'
backend default {
.host = "127.0.0.1";
.port = "8080";
.connect_timeout = 600s;
.first_byte_timeout = 600s;
.between_bytes_timeout = 600s;
}
acl purge {
"localhost";
@dr-fozzy
dr-fozzy / .profile
Created August 25, 2012 11:21
My mac profile
PATH="/usr/local/Cellar/php54/5.4.5/bin:/usr/local/bin:$PATH"
PATH="$(brew --prefix coreutils)/libexec/gnubin:$PATH"
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
PS1='\[\033[01;34m\]\w\[\033[01;31m\]$(__git_ps1 "(%s)")\[\033[0m\]\[\033[01;34m\]$\[\033[00m\] '
shopt -s histappend
@dr-fozzy
dr-fozzy / hack.sh
Created May 5, 2012 19:12 — forked from erikh/hack.sh
OSX For Hackers
#!/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
#