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
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) { |
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
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 |