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
Looking for passionate engineers to be a part of an industry leading engineering team. | |
Tech Stack: | |
Node/Express | |
Responsive UI | |
Backbone/Marionette, React/Flux | |
ES6 | |
CSS/SASS | |
Gulp | |
Webpack |
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
/* curl command to determine Akamai hit or miss */ | |
curl -v -s -o /dev/null -H "Pragma: akamai-x-cache-on" -H "Pragma: akamai-x-cache-remote-on" -H "Pragma: akamai-x-check-cacheable" -H "Pragma: akamai-x-get-cache-key" -H "Pragma: akamai-x-get-true-cache-key" -H "Pragma: akamai-x-get-extracted-values" -H "Pragma: akamai-x-get-request-id" -H "Pragma: akamai-x-get-client-ip" -H "Pragma: akamai-x-get-cache-key" -H "Pragma: akamai-x-get-extracted-values" -H "Pragma: akamai-x-get-nonces" -H "Pragma: akamai-x-get-ssl-client-session-id" -H "Pragma: akamai-x-get-true-cache-key" -H "Pragma: akamai-x-serial-no" [URL] | |
/* command line alias | |
Usage: curlAk http://www.saksfifthavenue.com/Entry.jsp*/ | |
function curlAk() { | |
curl -v -s -o /dev/null -H "Pragma: akamai-x-cache-on" -H "Pragma: akamai-x-cache-remote-on" -H "Pragma: akamai-x-check-cacheable" -H "Pragma: akamai-x-get-cache-key" -H "Pragma: akamai-x-get-true-cache-key" -H "Pragma: akamai-x-get-extracted-values" -H "Pragma: akamai-x-get-request-id" -H "Pragma: aka |
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([ | |
'backbone', | |
'communicator' | |
], | |
function( Backbone, Communicator ) { | |
'use strict'; | |
// modules are singletons | |
var <%= _.classify(name) %> = Backbone.Marionette.Controller.extend({ | |