Skip to content

Instantly share code, notes, and snippets.

View pquerna's full-sized avatar

Paul Querna pquerna

View GitHub Profile
@pquerna
pquerna / gist:5911399
Last active December 19, 2015 06:29 — forked from philips/gist:5911355
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} /2013/ocw(.*)
RewriteRule (.*) - [L,PT]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /2013/index.php [L]
</IfModule>
@pquerna
pquerna / wscript
Created May 26, 2011 05:19 — forked from jslatts/wscript
attempting to link in dependency in deps dir
srcdir = '.'
blddir = 'build'
VERSION = '0.0.1'
def set_options(opt):
opt.tool_options('compiler_cxx')
def configure(conf):
conf.check_tool('compiler_cxx')
conf.check_tool('node_addon')