This file contains hidden or 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
{ | |
"env": { | |
"browser": true, | |
"amd": true | |
}, | |
"globals": { | |
"magnum": true, | |
"define": true, | |
"require": true, | |
"Modernizr": true, |
This file contains hidden or 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
-92.722817065150579,44.40976199131358 | |
-92.230230530518796,44.284276871133507 | |
-92.09015218749218,43.674021935441147 | |
-92.460295466512846,47.58592374749955 | |
-92.40167525467632,44.00370542918499 | |
-96.468091179952921,46.356592270770768 | |
-92.74187022646349,46.120383787038293 | |
-93.293584007629505,45.945007570630324 | |
-96.095346898032901,47.871808918108371 | |
-96.036691444877206,48.066466411321635 |
This file contains hidden or 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
$cacheConfig = array( | |
'config' => array( | |
'cache.driver' => 'memcached', | |
'cache.connection' => null, | |
'cache.memcached' => array( | |
array('host' => '127.0.0.1', 'port' => 11211, 'weight' => 100), | |
), |
This file contains hidden or 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
<?php | |
// get all images in dir | |
$imgs = glob("*.{jpg,png,gif,jpeg,svg,mng,PNG,JPG,JPEG,GIF,SVG,MNG}", GLOB_BRACE); | |
sort($imgs); | |
if (count($imgs) > 0){ | |
$totalImgs = count($imgs); | |
} |
This file contains hidden or 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
# This is what Akamai will see and respect | |
<IfModule mod_expires.c> | |
ExpiresActive on | |
ExpiresDefault "access plus 5 minutes" | |
</IfModule> | |
# This is what downstream clients will see and respect | |
<IfModule mod_headers.c> | |
Header set Edge-control "downstream-ttl=365d" | |
</IfModule> |
This file contains hidden or 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
RewriteEngine On | |
# Allows our static assets to be versioned | |
# javascript (js) is versioned seperately because it has a more complicated build process | |
# also create a shortcut path /a/ for static assets because it uses less characters | |
RewriteRule ^js-built/([0-9]+)/(.*)$ /js-built/$2 [L] | |
RewriteRule ^a/([0-9]+)/(.*)$ /assets/$2 [L] | |
RewriteRule ^assets/([0-9]+)/(.*)$ /assets/$2 [L] |
This file contains hidden or 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: { | |
compile: { | |
options: { | |
baseUrl: "public_html/js", | |
dir: "public_html/js-built", | |
mainConfigFile: "public_html/js/init.js", | |
optimize: "uglify2", | |
skipDirOptimize: true, | |
preserveLicenseComments: false, | |
separateCSS: true, |
This file contains hidden or 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
define(["jquery"], function router() { | |
"use strict"; | |
return { | |
basePath: '', | |
init: function() { | |
var self = this; | |
//Javascript loading needs to happen on initial load and on successful pjax completion | |
this.loadJS(); | |
$(document).on("pjax:complete", function() { | |
self.loadJS(); |
This file contains hidden or 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 IE8, we bring in these | |
@import "medium"; | |
@import "large"; | |
body{ | |
min-width: 980px; | |
} |
This file contains hidden or 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
<?php | |
/* Faux DocumentCloud oEmbed | |
* Embed documentcloud inline without using their provided embed code because it sucks | |
* @usage Paste a Documentcloud link in your post and it will be replaced with an the proper code when published | |
*/ | |
/* | |
* Example embed URL: | |
* http://www.documentcloud.org/documents/693854-macalester-collge-letter-to-students-about-wells.html | |
*/ |