Skip to content

Instantly share code, notes, and snippets.

View psi6030's full-sized avatar

Simon Swain psi6030

  • Modus Interactive
  • Sydney
View GitHub Profile
@psi6030
psi6030 / init.el
Created January 9, 2012 04:14
.emacs.d
(require 'package)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/") t)
(package-initialize)
(when (not package-archive-contents)
(package-refresh-contents))
;; Add in your own as you wish:
(defvar my-packages '(starter-kit starter-kit-lisp starter-kit-bindings starter-kit-js
@psi6030
psi6030 / Tidy Log
Created December 8, 2009 23:34
Apache log splitter
tail -f /var/log/apache2/access.log | awk '{print $1,$7,$10,$8}'