
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 python | |
# | |
# fancyoutput.py - quick functions to make script output pretty | |
# | |
# by Ian Langworth, 2010 | |
# | |
# This code is in the public domain. | |
# | |
import sys |
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
# Change these to your libgeos paths! | |
GEOS_LIBRARY_PATH = '/opt/local/lib/libgeos_c.dylib' | |
GDAL_LIBRARY_PATH = '/opt/local/lib/libgdal.dylib' | |
GEOIP_LIBRARY_PATH = '/opt/local/lib/libGeoIP.dylib' | |
GEOIP_PATH = '/opt/local/share/GeoIP/' | |
# Disable compression if you need to debug JavaScript. You need to set both. | |
COMPRESS = False | |
ASSETS_DEBUG = True |
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
#!/bin/bash | |
# Original version (C) 2011 by jonasvp | |
# Modified version by danwerner | |
# Save this file as .git/hooks/pre-commit, make it executable, and it will | |
# thank you by saving you from common mistakes *before* deployment. | |
# Conflict markers | |
git diff --cached --diff-filter=ACMR | awk '/\+(<<<[<]<<<|>>>[>]>>>|===[=]===$)/ { exit 1 }' | |
CODE=$? |
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
express = require 'express' | |
app = express.createServer() | |
auth = express.basicAuth 'yourmom', 'p4ssw0rd' | |
app.get '/', auth, (req, res) -> | |
res.send your_super_secret_stuff | |
app.listen 3000, -> | |
console.log "Listening on #{port}" |
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/python3 | |
# | |
# A hook script to prepare the commit log message. | |
# | |
# Called by git-commit with the name of the file that has the commit | |
# message, followed by the description of the commit message's source. | |
# The hook's purpose is to edit the commit message file. If the hook | |
# fails with a non-zero status, the commit is aborted. | |
import glob |
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
# By default the behavior is: | |
# Primary monitor work as always and second monitor only have one and fixed workspace | |
# I.e. you change to next workspace, primary monitor change to this workspace and second monitor remain as is. | |
# The desired behaviour is: | |
# Primary monitor and secondary monitor are linked workspace. | |
# I.e. you change to next workspace, primary monitor change to this workspace and second monitor too. | |
$ gconf-editor | |
# Look for /desktop/gnome/shell/windows/workspaces_only_on_primary and set to false |
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
# Beginning Rubyists: simply run >> ruby hex-convertions.rb to see examples | |
# or use irb to build the code on the fly | |
# you can convert HEX to DEC using the method .to_i(base), | |
# which converts a string to a decimal number from the specified base number | |
puts "00".to_i(16) | |
puts "FF".to_i(16) |
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
requirejs = require('requirejs') | |
jspath = __dirname + '/views/scripts'; | |
requirejs.optimize( | |
baseUrl: jspath | |
wrap: | |
start: ';(function(undefined) { "use strict";' | |
end: '}).call(this);' |
OlderNewer