Skip to content

Instantly share code, notes, and snippets.

View jmo7's full-sized avatar

Jeff Moyes jmo7

View GitHub Profile
function readDir(start, callback) {
// Use lstat to resolve symlink if we are passed a symlink
fs.lstat(start, function(err, stat) {
if(err) {
return callback(err);
}
var found = {dirs: [], files: []},
total = 0,
processed = 0;
function isDir(abspath) {
@jmo7
jmo7 / gist:7359372
Last active December 27, 2015 16:59
Requirements for HTML5/CSS3 apprentice badge
Have built out a simple web application in Frontier. See the Frontier Skill.
Tasks:
1. Build a simple responsive page that responds to device size. It became responsive as of this commit:
https://github.com/fs-webdev/landing/commit/ab35e8bd87dd4670e0707948176c2ca58c57cb64
2. It should include simple navigation and content.  Handle a typical desktop, tablet, and phone.  As the size changes, reconfigure navigation and rearrange content as needed.  
For this page the navigation element are every table cell. They do re-arrange to fit the layouts as of this commit:
https://github.com/fs-webdev/landing/commit/ab35e8bd87dd4670e0707948176c2ca58c57cb64