-
Should be able to change location from anywhere
- Omni-present necessary for main nav, local nav, and any other relevant data
- Make unique and RESTful
- Yet order agnostic if possible?
-
Should be able to share between accounts but limited by user permissions
- Hash works for this in accordance with omni-present state
-
Solution main controller changed via Sauron
-
State will be declared in global.js? (and maintained)
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
node_modules |
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
node_modules/ | |
z_img*.jpg | |
output.png | |
output.css |
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
// Load in glob and fs | |
var glob = require('glob'), | |
fs = require('fs'); | |
// Create a test directory | |
try { fs.mkdirSync('src'); } catch (e) {} | |
// Create a nested directory | |
try { fs.mkdirSync('src/nested'); } catch (e) {} |
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
node_modules/ | |
z_img*.jpg | |
output.png | |
output.css |
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
// ANTI-PATTERN: We have two inputs and they are non-object types (i.e. non-extensible) | |
/** | |
* Constructor function to create new counter for items | |
* @param {Array} items List of items to count | |
* @param {String} message Message to display every N items | |
*/ | |
var STEP = 10; | |
function Counter(items, message) { | |
// Closure variables for counterFn | |
var count = 0, |
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
This is to serve as a record for the trouble shooting that just occurred. As both a notice to myself, how I poorly approached the problem, and for future incidents.
I have not touched a Windows machine in a few months. Since it has been so recent (and during that time I was a node.js dev ON Windows) it surprised me as to how long it took me to deal with this problem.
What happened:
- Got an issue submission on
grunt-spritesmith
forgm
andphantomjs
not working on Windows (still have yet to deal with this) - Grabbed an Win7 VM via
ievms
- Installed
[email protected]
and shared folders with my normal machine - Confirmed that
grunt-spritesmith
was failing
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
node_modules/ |
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
node_modules/ | |
fixtures/ | |
output/ | |
config.json |