This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gzip on; | |
gzip_vary on; | |
gzip_disable "msie6"; | |
gzip_comp_level 3; | |
gzip_buffers 16 8k; | |
gzip_min_length 150; | |
gzip_proxied any; | |
gzip_types text/plain text/xhtml text/css text/js text/csv application/javascript application/x-javascript application/json application/xml text/xml application/atom+xml application/rss+xml; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; no-proxy-mode.el --- Temporarily disable built-in proxy settings | |
;; Copyright (C) 2013 by Sachin Patil | |
;; Author: Sachin Patil <[email protected]> | |
;; URL: http://github.com/psachin/proxy-mode | |
;; Keywords: network, proxy, tool, convenience | |
;; Version: 0.9 | |
;; This file is NOT a part of GNU Emacs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; proxy-mode.el --- Provides proxy minor mode. | |
;; Copyright (C) 2013 by Sachin Patil | |
;; Author: Sachin Patil <[email protected]> | |
;; URL: http://github.com/psachin/proxy-mode | |
;; Keywords: network, proxy, tool, convenience | |
;; Version: 0.9 | |
;; This file is NOT a part of GNU Emacs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling file /Users/steve/.emacs.d/elpa/ensime-20130904.40/ensime-auto-complete.el at Thu Oct 17 13:49:57 2013 | |
Entering directory `/Users/steve/.emacs.d/elpa/ensime-20130904.40/' | |
In ensime-ac-complete-action: | |
ensime-auto-complete.el:148:11:Warning: reference to free variable `candidate' | |
In ensime-ac-enable: | |
ensime-auto-complete.el:322:15:Warning: assignment to free variable | |
`ac-delete-dups' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -c /tmp/b/thrift.el /tmp/a/thrift.el | |
*** /tmp/b/thrift.el 2013-08-21 17:54:54.000000000 +0100 | |
--- /tmp/a/thrift.el 2013-08-21 17:50:04.000000000 +0100 | |
*************** | |
*** 1,7 **** | |
! ;;; thrift.el --- Major mode for Apache Thrift files | |
! | |
! ;; Keywords: files | |
! | |
;; Licensed to the Apache Software Foundation (ASF) under one |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module MontyHall | |
where | |
import System.Random | |
import Control.Monad | |
import qualified Data.Set as Set | |
data Result = Win | Lose deriving (Eq, Show) | |
data Door = Door Int deriving (Eq, Show, Ord) | |
type Doors = Set.Set Door |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
wrapper_conf = "wrapper.conf" | |
props = ARGF.readlines.reduce(Hash.new) do |info, line| | |
info[$1] = $2 if line =~ /^wrapper\.(.+?)\s*=\s*(.*)\s*$/ | |
info | |
end | |
command = [props["java.command"]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For races on fellrunner.org.uk, produce a string pasteable into my org-mode race list | |
(function() { | |
function parseRace() { | |
var $ = window.jQuery; | |
var race = {}; | |
race.url = window.location.href; | |
race.name = $(".title_races").first().text().split(" – ")[1].trim(); | |
var parseDateTime = function(s) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config defaultToCurrentScreen true | |
config nudgePercentOf screenSize | |
config resizePercentOf screenSize | |
config focusPreferSameApp false | |
config focusCheckWidthMax 3000 | |
config checkDefaultsOnLoad true | |
alias air 1440x900 | |
alias dell 2560x1440 |