Skip to content

Instantly share code, notes, and snippets.

View milkypostman's full-sized avatar
🏠
zzz

Donald Curtis milkypostman

🏠
zzz
View GitHub Profile
@orta
orta / mailplane.css
Last active December 17, 2015 18:19 — forked from ttscoff/mailplane.css
/* This stylesheet is designed to work with the grey theme for GMail
- hides the top bar and Google+ notifications
- simplifies buttons (remove border/background, add hover state back)
- dim Rapportive until hovered
This is only partially tested at this point and may cause some issues
Please let me know if you find problems: <http://brettterpstra.com/contact/>
Brett Terpstra 2013 <http://brettterpstra.com> /*
--
-- open currently open URL in Safari in Chrome
-- forked from https://gist.github.com/3151932
--
property theURL : ""
tell application "Safari"
set theURL to URL of current tab of window 1
end tell
if appIsRunning("Google Chrome") then
@milkypostman
milkypostman / molokai-theme.el
Created March 13, 2012 14:18
emacs24 port of the molokai theme for vim
(deftheme molokai
"emacs24 port of molokai for vim")
(custom-theme-set-faces
'molokai
'(cursor ((t (:background "#f8f8f0"))))
'(font-lock-builtin-face ((t (:foreground "#ae81ff"))))
'(font-lock-function-name-face ((t (:foreground "#a6e22e"))))
'(font-lock-type-face ((t (:foreground "#66d9ef"))))
'(font-lock-warning-face ((t (:inherit error))))
@milkypostman
milkypostman / ir_black-theme.el
Created March 13, 2012 14:14
ir_black theme for emacs24
(deftheme ir_black
"The last emacs24 theme you'll ever need.")
(custom-theme-set-faces
'ir_black
'(cursor ((t (:background "#ffa560"))))
'(mode-line ((t (:background "#202020" :foreground "#9c9c9c" :box nil :slant italic :height 0.9))))
'(mode-line-inactive ((t (:background "#202020" :foreground "#4a4a4a" :box nil :slant normal))))
'(font-lock-builtin-face ((t (:foreground "#96cbfe"))))
'(font-lock-regexp-grouping-construct ((t (:inherit bold :foreground "#e9c062"))))
@developernotes
developernotes / tango-2-theme.el
Created March 12, 2012 20:25
Tango 2 color theme for GNU Emacs 24
;;; tango-2-theme.el --- Tango 2 color theme for GNU Emacs 24
;; Author: Nick Parker
;; Version: 1.0.0
;;
;; Ported theme to Emacs 24 color theme Nick Parker <nickp@developernotes.com>
;; original from Will Farrington <wcfarrington@gmail.com>
;;
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 3 of
@milkypostman
milkypostman / pastels-on-dark-theme.el
Created March 4, 2012 18:20 — forked from shanecelis/pastels-on-dark-theme.el
Pastels on Dark theme for Emacs 24
;;; pastels-on-dark-theme.el --- Pastels on Dark theme for Emacs 24
;; Author: Mats Persson
;; Maintainer: Shane Celis <shane (at) gnufoo (dot) org>
;; URL: http://gist.github.com/1906662
;; Version: 0.3
;; Keywords: theme, color
;;; Commentary:
@milkypostman
milkypostman / ghc-7.0.4-nowarnosx.patch
Created October 25, 2011 14:00
Patch for GHC 7.0.4 to avoid warnings when compiling.
--- ./ghc/ghc.wrapper.old 2011-10-25 08:57:34.000000000 -0500
+++ ./ghc/ghc.wrapper 2011-10-25 08:57:06.000000000 -0500
@@ -1 +1 @@
-exec "$executablename" -B"$topdir" -pgmc "$pgmgcc" -pgma "$pgmgcc" -pgml "$pgmgcc" -pgmP "$pgmgcc -E -undef -traditional" ${1+"$@"}
+exec "$executablename" -B"$topdir" -pgmc "$pgmgcc" -pgma "$pgmgcc" -optl "-Wl,-read_only_relocs,suppress" -pgml "$pgmgcc" -pgmP "$pgmgcc -E -undef -traditional" ${1+"$@"}
@avdi
avdi / .emacs
Created September 8, 2011 19:12
Set up a fresh Emacs config directory
(if (<= emacs-major-version 23)
(load "~/.emacs23")
(load "~/.emacs24.d/init.el"))
@beastaugh
beastaugh / installing-ghc7.2-osx10.7.md
Created August 24, 2011 21:41
Installing GHC 7.2 on Mac OS X 10.7 Lion

Installing GHC 7.2 on Mac OS X

This is a brief and bare-bones guide to getting GHC 7.2 and the cabal-install tool (the two basic things you'll need to do Haskell development) up and running on a new Mac OS X 10.7 install.

The instructions given here worked for me, but YMMV.