├── series9 ├── class9 │ ├── harp │ │ ├── images │ │ │ └── .keep │ │ ├── fonts │ │ │ └── bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── javascripts │ │ │ └── bootstrap-sprockets.js │ └── process.txt ├── class18 │ ├── assignment │ │ ├── style.css │ │ ├── base.css │ │ └── index.html │ ├── solution3 │ │ ├── style.css │ │ ├── base.css │ │ └── index.html │ ├── assignment1.png │ ├── assignment2.png │ ├── assignment3.png │ ├── assignment4.png │ ├── assignment5.png │ ├── assignment6.png │ ├── images │ │ ├── hero.jpg │ │ ├── logo.png │ │ ├── agile.png │ │ ├── cloud.png │ │ ├── mobile.png │ │ └── logo_small.png │ ├── solution5 │ │ ├── style.css │ │ ├── base.css │ │ └── index.html │ ├── solution1 │ │ ├── style.css │ │ ├── base.css │ │ └── index.html │ ├── solution2 │ │ ├── base.css │ │ ├── style.css │ │ └── index.html │ ├── solution4 │ │ ├── base.css │ │ ├── style.css │ │ └── index.html │ └── solution6 │ │ ├── base.css │ │ ├── style.css │ │ └── index.html ├── class8 │ ├── harp-test │ │ ├── .gitignore │ │ ├── images │ │ │ └── .keep │ │ ├── fonts │ │ │ └── bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── stylesheets │ │ │ ├── bootstrap │ │ │ │ └── mixins │ │ │ │ │ ├── _center-block.scss │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _text-overflow.scss │ │ │ │ │ ├── _tab-focus.scss │ │ │ │ │ ├── _resize.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ ├── _progress-bar.scss │ │ │ │ │ ├── _text-emphasis.scss │ │ │ │ │ ├── _reset-filter.scss │ │ │ │ │ ├── _nav-divider.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _alerts.scss │ │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ │ ├── _reset-text.scss │ │ │ │ │ └── _border-radius.scss │ │ │ ├── _bootstrap-sprockets.scss │ │ │ └── _bootstrap-compass.scss │ │ ├── index.ejs │ │ ├── javascripts │ │ │ └── bootstrap-sprockets.js │ │ └── app.scss │ └── solution │ │ └── homepage │ │ ├── images │ │ └── .keep │ │ ├── .gitignore │ │ ├── app.scss │ │ ├── fonts │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── stylesheets │ │ ├── bootstrap │ │ │ └── mixins │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _text-overflow.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _progress-bar.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ └── _reset-text.scss │ │ ├── _bootstrap-sprockets.scss │ │ └── _bootstrap-compass.scss │ │ ├── _layout.ejs │ │ └── javascripts │ │ └── bootstrap-sprockets.js ├── class1 │ ├── script.js │ ├── solution │ │ ├── style2.css │ │ ├── style.css │ │ ├── script.js │ │ ├── index2.html │ │ └── index.html │ ├── style.css │ └── index.html ├── class4 │ ├── index.html │ ├── solution │ │ ├── index.html │ │ └── script.js │ └── script.js ├── class5 │ ├── index.html │ └── solution │ │ └── index.html ├── class10 │ ├── solution │ │ └── colors │ │ │ ├── api │ │ │ ├── blue.json │ │ │ ├── green.json │ │ │ └── red.json │ │ │ ├── app.js │ │ │ └── index.html │ └── noisetwitter │ │ ├── avatar.jpg │ │ └── api │ │ ├── tweets │ │ └── tweets.php ├── class16 │ ├── me.jpg │ ├── flexbox │ │ └── me.jpg │ ├── solution │ │ ├── ad.gif │ │ ├── curly.jpg │ │ ├── larry.jpg │ │ └── moe.jpg │ └── assignment │ │ ├── ad.gif │ │ ├── moe.jpg │ │ ├── curly.jpg │ │ ├── larry.jpg │ │ └── mockup.png ├── class19 │ ├── assignment │ │ ├── style.css │ │ ├── casual.png │ │ ├── checkbox.png │ │ ├── formal.png │ │ ├── illusion.png │ │ ├── smiley.png │ │ ├── handwritten.png │ │ └── transparency.png │ ├── assignment.png │ ├── images │ │ ├── hero.jpg │ │ ├── logo.png │ │ ├── agile.png │ │ ├── cloud.png │ │ ├── mobile.png │ │ └── logo_small.png │ └── solution │ │ ├── casual.png │ │ ├── formal.png │ │ ├── smiley.png │ │ ├── checkbox.png │ │ ├── illusion.png │ │ ├── handwritten.png │ │ └── transparency.png ├── class15 │ ├── assignment.png │ ├── assets │ │ ├── bread.jpg │ │ ├── cheese.jpg │ │ ├── chicken.jpg │ │ └── fruit.jpg │ ├── solution │ │ ├── style.css │ │ └── index.html │ └── recap │ │ ├── style.css │ │ └── index.html ├── class20 │ └── images │ │ ├── hero.jpg │ │ ├── logo.png │ │ ├── agile.png │ │ ├── cloud.png │ │ ├── mobile.png │ │ └── logo_small.png ├── class6 │ ├── start │ │ └── avatar.jpg │ ├── noisetwitter │ │ ├── avatar.jpg │ │ └── app.js │ ├── solution │ │ ├── script.js │ │ └── index.html │ └── assignment │ │ └── index.html ├── class11 │ ├── solution │ │ ├── scuba.gif │ │ ├── fisher.gif │ │ ├── sparkles.gif │ │ ├── gone_fishing.gif │ │ └── script.js │ ├── assignment │ │ ├── scuba.gif │ │ ├── fisher.gif │ │ ├── sparkles.gif │ │ └── gone_fishing.gif │ └── app.js ├── class12 │ ├── noisetwitter │ │ └── avatar.jpg │ └── solution │ │ ├── script.js │ │ └── index.html ├── class13 │ ├── noisetwitter │ │ └── avatar.jpg │ └── solution │ │ └── script.js ├── class7 │ ├── noisetwitter │ │ └── avatar.jpg │ ├── assignment │ │ └── index.html │ └── solution │ │ ├── index.html │ │ └── script.js ├── class17 │ ├── script.js │ └── solution │ │ └── index.html └── class2 │ └── solution │ └── style.css ├── series10 ├── class18 │ ├── assignment │ │ ├── style.css │ │ ├── base.css │ │ └── index.html │ ├── solution3 │ │ ├── style.css │ │ ├── base.css │ │ └── index.html │ ├── assignment1.png │ ├── assignment2.png │ ├── assignment3.png │ ├── assignment4.png │ ├── assignment5.png │ ├── assignment6.png │ ├── solution5 │ │ ├── style.css │ │ ├── base.css │ │ └── index.html │ ├── noiseco │ │ └── images │ │ │ ├── agile.png │ │ │ ├── cloud.png │ │ │ ├── hero.jpg │ │ │ ├── logo.png │ │ │ ├── mobile.png │ │ │ └── logo_small.png │ ├── solution1 │ │ ├── style.css │ │ ├── base.css │ │ └── index.html │ ├── solution2 │ │ ├── base.css │ │ ├── style.css │ │ └── index.html │ ├── solution4 │ │ ├── base.css │ │ ├── style.css │ │ └── index.html │ └── solution6 │ │ ├── base.css │ │ ├── style.css │ │ └── index.html ├── class4 │ ├── index.html │ ├── solution │ │ ├── index.html │ │ └── script.js │ └── app.js ├── class5 │ ├── index.html │ └── solution │ │ └── index.html ├── class10 │ ├── solution │ │ └── colors │ │ │ ├── api │ │ │ ├── blue.json │ │ │ ├── red.json │ │ │ └── green.json │ │ │ ├── app.js │ │ │ └── index.html │ ├── avatar.jpg │ └── tweet.php ├── class11 │ ├── assignment │ │ ├── js │ │ │ └── app.js │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── img │ │ │ ├── scuba.gif │ │ │ ├── fisher.gif │ │ │ ├── sparkles.gif │ │ │ └── gone_fishing.gif │ │ └── bower.json │ ├── signup │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ └── js │ │ │ └── app.js │ └── solution │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── img │ │ ├── scuba.gif │ │ ├── fisher.gif │ │ ├── sparkles.gif │ │ └── gone_fishing.gif │ │ └── js │ │ └── app.js ├── class8 │ ├── foundation-test │ │ ├── js │ │ │ └── app.js │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── bower_components │ │ │ ├── jquery │ │ │ │ ├── src │ │ │ │ │ ├── outro.js │ │ │ │ │ ├── var │ │ │ │ │ │ ├── arr.js │ │ │ │ │ │ ├── document.js │ │ │ │ │ │ ├── rnotwhite.js │ │ │ │ │ │ ├── concat.js │ │ │ │ │ │ ├── push.js │ │ │ │ │ │ ├── slice.js │ │ │ │ │ │ ├── indexOf.js │ │ │ │ │ │ ├── class2type.js │ │ │ │ │ │ ├── pnum.js │ │ │ │ │ │ ├── toString.js │ │ │ │ │ │ ├── hasOwn.js │ │ │ │ │ │ ├── documentElement.js │ │ │ │ │ │ ├── support.js │ │ │ │ │ │ └── rcssNum.js │ │ │ │ │ ├── selector.js │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── var │ │ │ │ │ │ │ ├── rquery.js │ │ │ │ │ │ │ ├── location.js │ │ │ │ │ │ │ └── nonce.js │ │ │ │ │ │ └── parseJSON.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── var │ │ │ │ │ │ │ ├── rmargin.js │ │ │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ │ │ ├── isHidden.js │ │ │ │ │ │ │ └── getStyles.js │ │ │ │ │ ├── manipulation │ │ │ │ │ │ ├── var │ │ │ │ │ │ │ ├── rtagName.js │ │ │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ │ │ └── rscriptType.js │ │ │ │ │ │ ├── _evalUrl.js │ │ │ │ │ │ └── setGlobalEval.js │ │ │ │ │ ├── data │ │ │ │ │ │ └── var │ │ │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ │ │ ├── dataUser.js │ │ │ │ │ │ │ └── acceptData.js │ │ │ │ │ ├── core │ │ │ │ │ │ └── var │ │ │ │ │ │ │ └── rsingleTag.js │ │ │ │ │ ├── traversing │ │ │ │ │ │ └── var │ │ │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ │ │ ├── siblings.js │ │ │ │ │ │ │ └── dir.js │ │ │ │ │ ├── event │ │ │ │ │ │ ├── support.js │ │ │ │ │ │ └── ajax.js │ │ │ │ │ ├── attributes.js │ │ │ │ │ ├── effects │ │ │ │ │ │ └── animatedSelector.js │ │ │ │ │ └── selector-sizzle.js │ │ │ │ └── bower.json │ │ │ ├── foundation-sites │ │ │ │ ├── .bowerrc │ │ │ │ ├── assets │ │ │ │ │ ├── foundation.scss │ │ │ │ │ ├── foundation-flex.scss │ │ │ │ │ └── foundation-rtl.scss │ │ │ │ ├── docslink.sh │ │ │ │ ├── .travis.yml │ │ │ │ ├── customizer │ │ │ │ │ └── essential.json │ │ │ │ ├── scss │ │ │ │ │ ├── components │ │ │ │ │ │ ├── _menu-icon.scss │ │ │ │ │ │ └── _float.scss │ │ │ │ │ └── util │ │ │ │ │ │ └── _util.scss │ │ │ │ └── .github │ │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── motion-ui │ │ │ │ ├── motion-ui.scss │ │ │ │ ├── lib │ │ │ │ │ └── handlebars.js │ │ │ │ └── src │ │ │ │ │ ├── util │ │ │ │ │ ├── _unit.scss │ │ │ │ │ ├── _animation.scss │ │ │ │ │ └── _args.scss │ │ │ │ │ └── effects │ │ │ │ │ ├── _zoom.scss │ │ │ │ │ └── _wiggle.scss │ │ │ └── what-input │ │ │ │ └── gulpfile.js │ │ │ │ ├── index.js │ │ │ │ └── tasks │ │ │ │ ├── clean.js │ │ │ │ └── default.js │ │ └── CHANGELOG.md │ └── solution │ │ └── week-8 │ │ ├── js │ │ └── app.js │ │ ├── .bowerrc │ │ ├── .gitignore │ │ └── CHANGELOG.md ├── class1 │ ├── solution │ │ ├── style2.css │ │ ├── style.css │ │ ├── script.js │ │ ├── index2.html │ │ └── index.html │ └── style.css ├── class15 │ ├── me.jpg │ ├── flexbox │ │ └── me.jpg │ ├── assignment │ │ ├── ad.gif │ │ ├── moe.jpg │ │ ├── curly.jpg │ │ ├── larry.jpg │ │ └── mockup.png │ ├── solution │ │ ├── ad.gif │ │ ├── moe.jpg │ │ ├── curly.jpg │ │ └── larry.jpg │ └── recap │ │ ├── style.css │ │ └── index.html ├── class16 │ ├── bread.jpg │ ├── fruit.jpg │ ├── cheese.jpg │ ├── chicken.jpg │ ├── assignment.png │ └── solution │ │ ├── style.css │ │ └── index.html ├── class19 │ ├── assignment │ │ ├── style.css │ │ ├── casual.png │ │ ├── formal.png │ │ ├── smiley.png │ │ ├── checkbox.png │ │ ├── illusion.png │ │ ├── handwritten.png │ │ └── transparency.png │ ├── assignment.png │ ├── solution │ │ ├── casual.png │ │ ├── formal.png │ │ ├── smiley.png │ │ ├── checkbox.png │ │ ├── illusion.png │ │ ├── handwritten.png │ │ └── transparency.png │ └── noiseco │ │ └── images │ │ ├── agile.png │ │ ├── cloud.png │ │ ├── hero.jpg │ │ ├── logo.png │ │ ├── mobile.png │ │ └── logo_small.png ├── class6 │ ├── avatar.jpg │ ├── start │ │ └── avatar.jpg │ ├── solution │ │ ├── script.js │ │ └── index.html │ ├── app.js │ └── assignment │ │ └── index.html ├── class7 │ ├── avatar.jpg │ ├── assignment │ │ └── index.html │ └── solution │ │ ├── index.html │ │ └── script.js ├── class12 │ ├── avatar.jpg │ └── solution │ │ ├── script.js │ │ └── index.html ├── class13 │ ├── solution │ │ ├── src │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── App.test.js │ │ │ ├── Button.js │ │ │ ├── App.css │ │ │ └── App.js │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .gitignore │ │ └── package.json │ └── noisetwitter │ │ ├── public │ │ ├── avatar.jpg │ │ └── favicon.ico │ │ ├── src │ │ ├── index.js │ │ ├── App.test.js │ │ └── App.css │ │ ├── .gitignore │ │ └── package.json ├── class14 │ ├── solution │ │ ├── src │ │ │ ├── index.css │ │ │ ├── App.test.js │ │ │ ├── index.js │ │ │ ├── App.js │ │ │ ├── store.js │ │ │ ├── Button.js │ │ │ └── App.css │ │ ├── public │ │ │ └── favicon.ico │ │ ├── .gitignore │ │ └── package.json │ └── noisetwitter │ │ ├── public │ │ ├── avatar.jpg │ │ └── favicon.ico │ │ ├── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── index.js │ │ └── App.css │ │ ├── .gitignore │ │ └── package.json ├── class17 │ ├── script.js │ └── solution │ │ └── index.html └── class2 │ └── solution │ └── style.css └── series8 ├── class18 ├── assignment │ ├── style.css │ ├── base.css │ └── index.html ├── noiseco │ ├── source │ │ ├── javascripts │ │ │ └── all.js │ │ └── images │ │ │ ├── hero.jpg │ │ │ ├── logo.png │ │ │ ├── agile.png │ │ │ ├── cloud.png │ │ │ ├── mobile.png │ │ │ └── logo_small.png │ ├── Gemfile │ └── .gitignore ├── solution3 │ ├── style.css │ ├── base.css │ └── index.html ├── mockup.png ├── assets │ ├── hero.jpg │ ├── logo.png │ ├── agile.png │ ├── cloud.png │ ├── mobile.png │ └── logo_small.png ├── assignment1.png ├── assignment2.png ├── assignment3.png ├── assignment4.png ├── assignment5.png ├── assignment6.png ├── solution5 │ ├── style.css │ ├── base.css │ └── index.html ├── mockup_annotations.png ├── solution1 │ ├── style.css │ ├── base.css │ └── index.html ├── solution2 │ ├── base.css │ ├── style.css │ └── index.html ├── solution4 │ ├── base.css │ ├── style.css │ └── index.html └── solution6 │ ├── base.css │ ├── style.css │ └── index.html ├── class1 ├── script.js ├── solution │ ├── style2.css │ ├── style.css │ ├── script.js │ ├── index2.html │ └── index.html └── style.css ├── class2 ├── script.js ├── recap │ ├── script.js │ ├── style.css │ └── index.html ├── block notes.txt └── solution │ └── style.css ├── class4 ├── index.html ├── solution │ ├── index.html │ └── script.js └── script.js ├── class5 ├── index.html └── solution │ └── index.html ├── class8 └── solution │ └── homepage │ ├── source │ ├── stylesheets │ │ └── all.css │ ├── javascripts │ │ └── all.js │ └── images │ │ ├── background.png │ │ └── middleman.png │ ├── Gemfile │ └── .gitignore ├── class10 ├── solution │ └── colors │ │ ├── build │ │ ├── data │ │ │ ├── blue.json │ │ │ ├── red.json │ │ │ └── green.json │ │ └── images │ │ │ ├── background.png │ │ │ └── middleman.png │ │ ├── source │ │ ├── data │ │ │ ├── red.json │ │ │ ├── blue.json │ │ │ └── green.json │ │ ├── images │ │ │ ├── middleman.png │ │ │ └── background.png │ │ ├── javascripts │ │ │ └── all.js │ │ └── index.html.erb │ │ ├── Gemfile │ │ └── .gitignore └── noisetwitter │ ├── source │ ├── javascripts │ │ └── all.js │ ├── avatar.jpg │ ├── images │ │ ├── middleman.png │ │ └── background.png │ ├── tweet.php │ └── layouts │ │ └── layout.erb │ ├── Gemfile │ └── .gitignore ├── class19 ├── noiseco │ ├── source │ │ ├── javascripts │ │ │ └── all.js │ │ └── images │ │ │ ├── hero.jpg │ │ │ ├── logo.png │ │ │ ├── agile.png │ │ │ ├── cloud.png │ │ │ ├── mobile.png │ │ │ └── logo_small.png │ ├── Gemfile │ └── .gitignore ├── assignment │ ├── style.css │ ├── casual.png │ ├── checkbox.png │ ├── formal.png │ ├── illusion.png │ ├── smiley.png │ ├── handwritten.png │ └── transparency.png ├── assignment.png └── solution │ ├── casual.png │ ├── formal.png │ ├── smiley.png │ ├── checkbox.png │ ├── illusion.png │ ├── handwritten.png │ └── transparency.png ├── class14 └── noisetwitter-react │ ├── bower_components │ └── classnames │ │ ├── .npmignore │ │ └── .travis.yml │ ├── source │ ├── javascripts │ │ └── all.js │ ├── avatar.jpg │ └── index.html.erb │ ├── Gemfile │ └── .gitignore ├── class16 ├── me.jpg ├── solution │ ├── ad.gif │ ├── curly.jpg │ ├── larry.jpg │ └── moe.jpg └── assignment │ ├── ad.gif │ ├── moe.jpg │ ├── curly.jpg │ ├── larry.jpg │ └── mockup.png ├── class6 ├── avatar.jpg ├── start │ └── avatar.jpg ├── solution │ ├── script.js │ └── index.html ├── script.js └── assignment │ └── index.html ├── class7 ├── avatar.jpg ├── assignment │ └── index.html └── solution │ ├── index.html │ └── script.js ├── class15 ├── assignment.png ├── grocery │ ├── bread.jpg │ ├── cheese.jpg │ ├── fruit.jpg │ └── chicken.jpg ├── solution │ ├── style.css │ └── index.html └── index.html ├── class11 ├── solution │ ├── scuba.gif │ ├── fisher.gif │ ├── sparkles.gif │ ├── gone_fishing.gif │ └── script.js ├── assignment │ ├── scuba.gif │ ├── fisher.gif │ ├── sparkles.gif │ └── gone_fishing.gif └── forms │ ├── source │ ├── images │ │ ├── middleman.png │ │ └── background.png │ └── javascripts │ │ └── all.js │ ├── Gemfile │ └── .gitignore ├── class12 ├── noisetwitter │ ├── source │ │ ├── avatar.jpg │ │ └── tweet.php │ ├── Gemfile │ └── .gitignore └── solution │ ├── script.js │ └── index.html ├── class13 ├── noisetwitter │ ├── source │ │ ├── avatar.jpg │ │ ├── tweet.php │ │ └── data │ │ │ └── tweets.json │ ├── Gemfile │ └── .gitignore ├── .gitignore └── solution │ └── script.js └── class17 ├── script.js ├── temp ├── style.css └── index.html └── solution └── index.html /series9/class9/harp/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series10/class18/assignment/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series8/class18/assignment/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series9/class18/assignment/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series9/class8/harp-test/.gitignore: -------------------------------------------------------------------------------- 1 | www -------------------------------------------------------------------------------- /series9/class8/harp-test/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series9/class1/script.js: -------------------------------------------------------------------------------- 1 | alert('Hello World!'); -------------------------------------------------------------------------------- /series9/class8/solution/homepage/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series8/class1/script.js: -------------------------------------------------------------------------------- 1 | console.log('Hello World!'); -------------------------------------------------------------------------------- /series8/class2/script.js: -------------------------------------------------------------------------------- 1 | console.log('Hello World!'); -------------------------------------------------------------------------------- /series9/class8/solution/homepage/.gitignore: -------------------------------------------------------------------------------- 1 | www 2 | -------------------------------------------------------------------------------- /series10/class4/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series10/class5/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series8/class2/recap/script.js: -------------------------------------------------------------------------------- 1 | console.log('Hello again!'); -------------------------------------------------------------------------------- /series8/class4/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series8/class5/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series9/class4/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series9/class5/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series10/class10/solution/colors/api/blue.json: -------------------------------------------------------------------------------- 1 | {"color":"blue"} -------------------------------------------------------------------------------- /series10/class10/solution/colors/api/red.json: -------------------------------------------------------------------------------- 1 | {"color":"red"} -------------------------------------------------------------------------------- /series8/class2/recap/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: #ff0000; 3 | } -------------------------------------------------------------------------------- /series8/class8/solution/homepage/source/stylesheets/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series9/class10/solution/colors/api/blue.json: -------------------------------------------------------------------------------- 1 | {"color":"blue"} -------------------------------------------------------------------------------- /series9/class10/solution/colors/api/green.json: -------------------------------------------------------------------------------- 1 | {"color":"green"} -------------------------------------------------------------------------------- /series9/class10/solution/colors/api/red.json: -------------------------------------------------------------------------------- 1 | {"color":"red"} -------------------------------------------------------------------------------- /series10/class10/solution/colors/api/green.json: -------------------------------------------------------------------------------- 1 | {"color":"green"} -------------------------------------------------------------------------------- /series10/class11/assignment/js/app.js: -------------------------------------------------------------------------------- 1 | $(document).foundation(); 2 | -------------------------------------------------------------------------------- /series10/class4/solution/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /series8/class10/solution/colors/build/data/blue.json: -------------------------------------------------------------------------------- 1 | {"color":"blue"} -------------------------------------------------------------------------------- /series8/class10/solution/colors/build/data/red.json: -------------------------------------------------------------------------------- 1 | {"color":"red"} -------------------------------------------------------------------------------- /series8/class10/solution/colors/source/data/red.json: -------------------------------------------------------------------------------- 1 | {"color":"red"} -------------------------------------------------------------------------------- /series10/class18/solution3/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | float: right; 3 | } -------------------------------------------------------------------------------- /series10/class8/foundation-test/js/app.js: -------------------------------------------------------------------------------- 1 | $(document).foundation(); 2 | -------------------------------------------------------------------------------- /series10/class8/solution/week-8/js/app.js: -------------------------------------------------------------------------------- 1 | $(document).foundation(); 2 | -------------------------------------------------------------------------------- /series8/class10/solution/colors/build/data/green.json: -------------------------------------------------------------------------------- 1 | {"color":"green"} -------------------------------------------------------------------------------- /series8/class10/solution/colors/source/data/blue.json: -------------------------------------------------------------------------------- 1 | {"color":"blue"} -------------------------------------------------------------------------------- /series8/class10/solution/colors/source/data/green.json: -------------------------------------------------------------------------------- 1 | {"color":"green"} -------------------------------------------------------------------------------- /series8/class18/noiseco/source/javascripts/all.js: -------------------------------------------------------------------------------- 1 | //= require_tree . 2 | -------------------------------------------------------------------------------- /series8/class18/solution3/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | float: right; 3 | } -------------------------------------------------------------------------------- /series8/class19/noiseco/source/javascripts/all.js: -------------------------------------------------------------------------------- 1 | //= require_tree . 2 | -------------------------------------------------------------------------------- /series9/class18/solution3/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | float: right; 3 | } -------------------------------------------------------------------------------- /series9/class8/solution/homepage/app.scss: -------------------------------------------------------------------------------- 1 | @import 'stylesheets/bootstrap'; -------------------------------------------------------------------------------- /series8/class1/solution/style2.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | text-decoration: underline; 3 | } -------------------------------------------------------------------------------- /series8/class10/noisetwitter/source/javascripts/all.js: -------------------------------------------------------------------------------- 1 | //= require_tree . 2 | -------------------------------------------------------------------------------- /series9/class1/solution/style2.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | text-decoration: underline; 3 | } -------------------------------------------------------------------------------- /series10/class1/solution/style2.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | text-decoration: underline; 3 | } -------------------------------------------------------------------------------- /series10/class11/signup/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /series8/class14/noisetwitter-react/bower_components/classnames/.npmignore: -------------------------------------------------------------------------------- 1 | bench 2 | -------------------------------------------------------------------------------- /series8/class8/solution/homepage/source/javascripts/all.js: -------------------------------------------------------------------------------- 1 | //= require_tree . 2 | -------------------------------------------------------------------------------- /series10/class11/assignment/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /series10/class11/solution/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /series10/class8/solution/week-8/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /series10/class15/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/me.jpg -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /series8/class16/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/me.jpg -------------------------------------------------------------------------------- /series9/class16/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/me.jpg -------------------------------------------------------------------------------- /series10/class16/bread.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class16/bread.jpg -------------------------------------------------------------------------------- /series10/class16/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class16/fruit.jpg -------------------------------------------------------------------------------- /series10/class19/assignment/style.css: -------------------------------------------------------------------------------- 1 | .offset { 2 | line-height: 100px; 3 | text-indent: 80px; 4 | } -------------------------------------------------------------------------------- /series10/class6/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class6/avatar.jpg -------------------------------------------------------------------------------- /series10/class7/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class7/avatar.jpg -------------------------------------------------------------------------------- /series8/class18/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/mockup.png -------------------------------------------------------------------------------- /series8/class19/assignment/style.css: -------------------------------------------------------------------------------- 1 | .offset { 2 | line-height: 100px; 3 | text-indent: 80px; 4 | } -------------------------------------------------------------------------------- /series8/class6/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class6/avatar.jpg -------------------------------------------------------------------------------- /series8/class7/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class7/avatar.jpg -------------------------------------------------------------------------------- /series9/class19/assignment/style.css: -------------------------------------------------------------------------------- 1 | .offset { 2 | line-height: 100px; 3 | text-indent: 80px; 4 | } -------------------------------------------------------------------------------- /series10/class10/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class10/avatar.jpg -------------------------------------------------------------------------------- /series10/class12/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class12/avatar.jpg -------------------------------------------------------------------------------- /series10/class16/cheese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class16/cheese.jpg -------------------------------------------------------------------------------- /series10/class16/chicken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class16/chicken.jpg -------------------------------------------------------------------------------- /series10/class11/signup/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bower_components 3 | node_modules 4 | npm-debug.log 5 | css 6 | -------------------------------------------------------------------------------- /series10/class15/flexbox/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/flexbox/me.jpg -------------------------------------------------------------------------------- /series10/class16/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class16/assignment.png -------------------------------------------------------------------------------- /series10/class19/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/assignment.png -------------------------------------------------------------------------------- /series8/class15/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class15/assignment.png -------------------------------------------------------------------------------- /series8/class16/solution/ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/solution/ad.gif -------------------------------------------------------------------------------- /series8/class18/assets/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assets/hero.jpg -------------------------------------------------------------------------------- /series8/class18/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assets/logo.png -------------------------------------------------------------------------------- /series8/class18/assignment1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assignment1.png -------------------------------------------------------------------------------- /series8/class18/assignment2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assignment2.png -------------------------------------------------------------------------------- /series8/class18/assignment3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assignment3.png -------------------------------------------------------------------------------- /series8/class18/assignment4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assignment4.png -------------------------------------------------------------------------------- /series8/class18/assignment5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assignment5.png -------------------------------------------------------------------------------- /series8/class18/assignment6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assignment6.png -------------------------------------------------------------------------------- /series8/class19/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/assignment.png -------------------------------------------------------------------------------- /series8/class6/start/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class6/start/avatar.jpg -------------------------------------------------------------------------------- /series9/class15/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class15/assignment.png -------------------------------------------------------------------------------- /series9/class16/flexbox/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/flexbox/me.jpg -------------------------------------------------------------------------------- /series9/class16/solution/ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/solution/ad.gif -------------------------------------------------------------------------------- /series9/class18/assignment1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/assignment1.png -------------------------------------------------------------------------------- /series9/class18/assignment2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/assignment2.png -------------------------------------------------------------------------------- /series9/class18/assignment3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/assignment3.png -------------------------------------------------------------------------------- /series9/class18/assignment4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/assignment4.png -------------------------------------------------------------------------------- /series9/class18/assignment5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/assignment5.png -------------------------------------------------------------------------------- /series9/class18/assignment6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/assignment6.png -------------------------------------------------------------------------------- /series9/class18/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/images/hero.jpg -------------------------------------------------------------------------------- /series9/class18/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/images/logo.png -------------------------------------------------------------------------------- /series9/class19/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/assignment.png -------------------------------------------------------------------------------- /series9/class19/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/images/hero.jpg -------------------------------------------------------------------------------- /series9/class19/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/images/logo.png -------------------------------------------------------------------------------- /series9/class20/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class20/images/hero.jpg -------------------------------------------------------------------------------- /series9/class20/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class20/images/logo.png -------------------------------------------------------------------------------- /series9/class6/start/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class6/start/avatar.jpg -------------------------------------------------------------------------------- /series10/class1/solution/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: green; 3 | } 4 | 5 | p { 6 | background-color: yellow; 7 | } -------------------------------------------------------------------------------- /series10/class11/assignment/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bower_components 3 | node_modules 4 | npm-debug.log 5 | css 6 | -------------------------------------------------------------------------------- /series10/class11/solution/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bower_components 3 | node_modules 4 | npm-debug.log 5 | css 6 | -------------------------------------------------------------------------------- /series10/class15/assignment/ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/assignment/ad.gif -------------------------------------------------------------------------------- /series10/class15/solution/ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/solution/ad.gif -------------------------------------------------------------------------------- /series10/class15/solution/moe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/solution/moe.jpg -------------------------------------------------------------------------------- /series10/class18/assignment1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/assignment1.png -------------------------------------------------------------------------------- /series10/class18/assignment2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/assignment2.png -------------------------------------------------------------------------------- /series10/class18/assignment3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/assignment3.png -------------------------------------------------------------------------------- /series10/class18/assignment4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/assignment4.png -------------------------------------------------------------------------------- /series10/class18/assignment5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/assignment5.png -------------------------------------------------------------------------------- /series10/class18/assignment6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/assignment6.png -------------------------------------------------------------------------------- /series10/class18/solution5/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | width: 500px; 3 | margin: 0 auto; 4 | text-align: center; 5 | } -------------------------------------------------------------------------------- /series10/class6/start/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class6/start/avatar.jpg -------------------------------------------------------------------------------- /series8/class1/solution/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: green; 3 | } 4 | 5 | p { 6 | background-color: yellow; 7 | } -------------------------------------------------------------------------------- /series8/class11/solution/scuba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/solution/scuba.gif -------------------------------------------------------------------------------- /series8/class15/grocery/bread.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class15/grocery/bread.jpg -------------------------------------------------------------------------------- /series8/class15/grocery/cheese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class15/grocery/cheese.jpg -------------------------------------------------------------------------------- /series8/class15/grocery/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class15/grocery/fruit.jpg -------------------------------------------------------------------------------- /series8/class16/assignment/ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/assignment/ad.gif -------------------------------------------------------------------------------- /series8/class16/assignment/moe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/assignment/moe.jpg -------------------------------------------------------------------------------- /series8/class16/solution/curly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/solution/curly.jpg -------------------------------------------------------------------------------- /series8/class16/solution/larry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/solution/larry.jpg -------------------------------------------------------------------------------- /series8/class16/solution/moe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/solution/moe.jpg -------------------------------------------------------------------------------- /series8/class18/assets/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assets/agile.png -------------------------------------------------------------------------------- /series8/class18/assets/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assets/cloud.png -------------------------------------------------------------------------------- /series8/class18/assets/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assets/mobile.png -------------------------------------------------------------------------------- /series8/class18/solution5/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | width: 500px; 3 | margin: 0 auto; 4 | text-align: center; 5 | } -------------------------------------------------------------------------------- /series9/class1/solution/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: green; 3 | } 4 | 5 | p { 6 | background-color: yellow; 7 | } -------------------------------------------------------------------------------- /series9/class11/solution/scuba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class11/solution/scuba.gif -------------------------------------------------------------------------------- /series9/class15/assets/bread.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class15/assets/bread.jpg -------------------------------------------------------------------------------- /series9/class15/assets/cheese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class15/assets/cheese.jpg -------------------------------------------------------------------------------- /series9/class15/assets/chicken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class15/assets/chicken.jpg -------------------------------------------------------------------------------- /series9/class15/assets/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class15/assets/fruit.jpg -------------------------------------------------------------------------------- /series9/class16/assignment/ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/assignment/ad.gif -------------------------------------------------------------------------------- /series9/class16/assignment/moe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/assignment/moe.jpg -------------------------------------------------------------------------------- /series9/class16/solution/curly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/solution/curly.jpg -------------------------------------------------------------------------------- /series9/class16/solution/larry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/solution/larry.jpg -------------------------------------------------------------------------------- /series9/class16/solution/moe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/solution/moe.jpg -------------------------------------------------------------------------------- /series9/class18/images/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/images/agile.png -------------------------------------------------------------------------------- /series9/class18/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/images/cloud.png -------------------------------------------------------------------------------- /series9/class18/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/images/mobile.png -------------------------------------------------------------------------------- /series9/class18/solution5/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | width: 500px; 3 | margin: 0 auto; 4 | text-align: center; 5 | } -------------------------------------------------------------------------------- /series9/class19/images/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/images/agile.png -------------------------------------------------------------------------------- /series9/class19/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/images/cloud.png -------------------------------------------------------------------------------- /series9/class19/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/images/mobile.png -------------------------------------------------------------------------------- /series9/class20/images/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class20/images/agile.png -------------------------------------------------------------------------------- /series9/class20/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class20/images/cloud.png -------------------------------------------------------------------------------- /series9/class20/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class20/images/mobile.png -------------------------------------------------------------------------------- /series10/class1/solution/script.js: -------------------------------------------------------------------------------- 1 | alert("It's generally a bad idea to pop up these sorts of dialog boxes, but whatever!"); -------------------------------------------------------------------------------- /series10/class11/signup/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Version 1.0 (November 19, 2015) 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /series10/class13/solution/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /series10/class14/solution/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /series10/class15/assignment/moe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/assignment/moe.jpg -------------------------------------------------------------------------------- /series10/class15/solution/curly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/solution/curly.jpg -------------------------------------------------------------------------------- /series10/class15/solution/larry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/solution/larry.jpg -------------------------------------------------------------------------------- /series10/class19/solution/casual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/solution/casual.png -------------------------------------------------------------------------------- /series10/class19/solution/formal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/solution/formal.png -------------------------------------------------------------------------------- /series10/class19/solution/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/solution/smiley.png -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /series10/class8/solution/week-8/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bower_components 3 | node_modules 4 | npm-debug.log 5 | css 6 | -------------------------------------------------------------------------------- /series8/class1/solution/script.js: -------------------------------------------------------------------------------- 1 | alert("It's generally a bad idea to pop up these sorts of dialog boxes, but whatever!"); -------------------------------------------------------------------------------- /series8/class11/assignment/scuba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/assignment/scuba.gif -------------------------------------------------------------------------------- /series8/class11/solution/fisher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/solution/fisher.gif -------------------------------------------------------------------------------- /series8/class15/grocery/chicken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class15/grocery/chicken.jpg -------------------------------------------------------------------------------- /series8/class16/assignment/curly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/assignment/curly.jpg -------------------------------------------------------------------------------- /series8/class16/assignment/larry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/assignment/larry.jpg -------------------------------------------------------------------------------- /series8/class19/solution/casual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/solution/casual.png -------------------------------------------------------------------------------- /series8/class19/solution/formal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/solution/formal.png -------------------------------------------------------------------------------- /series8/class19/solution/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/solution/smiley.png -------------------------------------------------------------------------------- /series9/class1/solution/script.js: -------------------------------------------------------------------------------- 1 | alert("It's generally a bad idea to pop up these sorts of dialog boxes, but whatever!"); -------------------------------------------------------------------------------- /series9/class11/assignment/scuba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class11/assignment/scuba.gif -------------------------------------------------------------------------------- /series9/class11/solution/fisher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class11/solution/fisher.gif -------------------------------------------------------------------------------- /series9/class16/assignment/curly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/assignment/curly.jpg -------------------------------------------------------------------------------- /series9/class16/assignment/larry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/assignment/larry.jpg -------------------------------------------------------------------------------- /series9/class19/solution/casual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/solution/casual.png -------------------------------------------------------------------------------- /series9/class19/solution/formal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/solution/formal.png -------------------------------------------------------------------------------- /series9/class19/solution/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/solution/smiley.png -------------------------------------------------------------------------------- /series10/class11/assignment/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Version 1.0 (November 19, 2015) 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /series10/class11/solution/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Version 1.0 (November 19, 2015) 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /series10/class11/solution/img/scuba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class11/solution/img/scuba.gif -------------------------------------------------------------------------------- /series10/class15/assignment/curly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/assignment/curly.jpg -------------------------------------------------------------------------------- /series10/class15/assignment/larry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/assignment/larry.jpg -------------------------------------------------------------------------------- /series10/class15/assignment/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class15/assignment/mockup.png -------------------------------------------------------------------------------- /series10/class19/assignment/casual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/assignment/casual.png -------------------------------------------------------------------------------- /series10/class19/assignment/formal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/assignment/formal.png -------------------------------------------------------------------------------- /series10/class19/assignment/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/assignment/smiley.png -------------------------------------------------------------------------------- /series10/class19/solution/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/solution/checkbox.png -------------------------------------------------------------------------------- /series10/class19/solution/illusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/solution/illusion.png -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/foundation-sites/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /series8/class11/assignment/fisher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/assignment/fisher.gif -------------------------------------------------------------------------------- /series8/class11/assignment/sparkles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/assignment/sparkles.gif -------------------------------------------------------------------------------- /series8/class11/solution/sparkles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/solution/sparkles.gif -------------------------------------------------------------------------------- /series8/class16/assignment/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class16/assignment/mockup.png -------------------------------------------------------------------------------- /series8/class18/assets/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/assets/logo_small.png -------------------------------------------------------------------------------- /series8/class18/mockup_annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/mockup_annotations.png -------------------------------------------------------------------------------- /series8/class19/assignment/casual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/assignment/casual.png -------------------------------------------------------------------------------- /series8/class19/assignment/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/assignment/checkbox.png -------------------------------------------------------------------------------- /series8/class19/assignment/formal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/assignment/formal.png -------------------------------------------------------------------------------- /series8/class19/assignment/illusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/assignment/illusion.png -------------------------------------------------------------------------------- /series8/class19/assignment/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/assignment/smiley.png -------------------------------------------------------------------------------- /series8/class19/solution/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/solution/checkbox.png -------------------------------------------------------------------------------- /series8/class19/solution/illusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/solution/illusion.png -------------------------------------------------------------------------------- /series9/class10/noisetwitter/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class10/noisetwitter/avatar.jpg -------------------------------------------------------------------------------- /series9/class11/assignment/fisher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class11/assignment/fisher.gif -------------------------------------------------------------------------------- /series9/class11/assignment/sparkles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class11/assignment/sparkles.gif -------------------------------------------------------------------------------- /series9/class11/solution/sparkles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class11/solution/sparkles.gif -------------------------------------------------------------------------------- /series9/class12/noisetwitter/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class12/noisetwitter/avatar.jpg -------------------------------------------------------------------------------- /series9/class13/noisetwitter/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class13/noisetwitter/avatar.jpg -------------------------------------------------------------------------------- /series9/class16/assignment/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class16/assignment/mockup.png -------------------------------------------------------------------------------- /series9/class18/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class18/images/logo_small.png -------------------------------------------------------------------------------- /series9/class19/assignment/casual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/assignment/casual.png -------------------------------------------------------------------------------- /series9/class19/assignment/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/assignment/checkbox.png -------------------------------------------------------------------------------- /series9/class19/assignment/formal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/assignment/formal.png -------------------------------------------------------------------------------- /series9/class19/assignment/illusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/assignment/illusion.png -------------------------------------------------------------------------------- /series9/class19/assignment/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/assignment/smiley.png -------------------------------------------------------------------------------- /series9/class19/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/images/logo_small.png -------------------------------------------------------------------------------- /series9/class19/solution/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/solution/checkbox.png -------------------------------------------------------------------------------- /series9/class19/solution/illusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/solution/illusion.png -------------------------------------------------------------------------------- /series9/class20/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class20/images/logo_small.png -------------------------------------------------------------------------------- /series9/class6/noisetwitter/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class6/noisetwitter/avatar.jpg -------------------------------------------------------------------------------- /series9/class7/noisetwitter/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class7/noisetwitter/avatar.jpg -------------------------------------------------------------------------------- /series10/class11/assignment/img/scuba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class11/assignment/img/scuba.gif -------------------------------------------------------------------------------- /series10/class11/solution/img/fisher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class11/solution/img/fisher.gif -------------------------------------------------------------------------------- /series10/class18/noiseco/images/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/noiseco/images/agile.png -------------------------------------------------------------------------------- /series10/class18/noiseco/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/noiseco/images/cloud.png -------------------------------------------------------------------------------- /series10/class18/noiseco/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/noiseco/images/hero.jpg -------------------------------------------------------------------------------- /series10/class18/noiseco/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/noiseco/images/logo.png -------------------------------------------------------------------------------- /series10/class19/assignment/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/assignment/checkbox.png -------------------------------------------------------------------------------- /series10/class19/assignment/illusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/assignment/illusion.png -------------------------------------------------------------------------------- /series10/class19/noiseco/images/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/noiseco/images/agile.png -------------------------------------------------------------------------------- /series10/class19/noiseco/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/noiseco/images/cloud.png -------------------------------------------------------------------------------- /series10/class19/noiseco/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/noiseco/images/hero.jpg -------------------------------------------------------------------------------- /series10/class19/noiseco/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/noiseco/images/logo.png -------------------------------------------------------------------------------- /series10/class19/solution/handwritten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/solution/handwritten.png -------------------------------------------------------------------------------- /series10/class8/foundation-test/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Version 1.0 (November 19, 2015) 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /series10/class8/solution/week-8/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Version 1.0 (November 19, 2015) 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /series8/class11/solution/gone_fishing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/solution/gone_fishing.gif -------------------------------------------------------------------------------- /series8/class19/solution/handwritten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/solution/handwritten.png -------------------------------------------------------------------------------- /series8/class19/solution/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/solution/transparency.png -------------------------------------------------------------------------------- /series9/class11/solution/gone_fishing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class11/solution/gone_fishing.gif -------------------------------------------------------------------------------- /series9/class19/solution/handwritten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/solution/handwritten.png -------------------------------------------------------------------------------- /series9/class19/solution/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/solution/transparency.png -------------------------------------------------------------------------------- /series10/class11/assignment/img/fisher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class11/assignment/img/fisher.gif -------------------------------------------------------------------------------- /series10/class11/assignment/img/sparkles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class11/assignment/img/sparkles.gif -------------------------------------------------------------------------------- /series10/class11/solution/img/sparkles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class11/solution/img/sparkles.gif -------------------------------------------------------------------------------- /series10/class13/solution/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class13/solution/public/favicon.ico -------------------------------------------------------------------------------- /series10/class14/solution/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class14/solution/public/favicon.ico -------------------------------------------------------------------------------- /series10/class18/noiseco/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/noiseco/images/mobile.png -------------------------------------------------------------------------------- /series10/class19/assignment/handwritten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/assignment/handwritten.png -------------------------------------------------------------------------------- /series10/class19/assignment/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/assignment/transparency.png -------------------------------------------------------------------------------- /series10/class19/noiseco/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/noiseco/images/mobile.png -------------------------------------------------------------------------------- /series10/class19/solution/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/solution/transparency.png -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\?/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\S+/g ); 3 | } ); 4 | -------------------------------------------------------------------------------- /series8/class11/assignment/gone_fishing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/assignment/gone_fishing.gif -------------------------------------------------------------------------------- /series8/class19/assignment/handwritten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/assignment/handwritten.png -------------------------------------------------------------------------------- /series8/class19/assignment/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/assignment/transparency.png -------------------------------------------------------------------------------- /series9/class11/assignment/gone_fishing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class11/assignment/gone_fishing.gif -------------------------------------------------------------------------------- /series9/class19/assignment/handwritten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/assignment/handwritten.png -------------------------------------------------------------------------------- /series9/class19/assignment/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class19/assignment/transparency.png -------------------------------------------------------------------------------- /series10/class11/solution/img/gone_fishing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class11/solution/img/gone_fishing.gif -------------------------------------------------------------------------------- /series10/class17/script.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('.top_nav h1').click(function() { 3 | $('html').toggleClass('show_nav'); 4 | }); 5 | }); -------------------------------------------------------------------------------- /series10/class18/noiseco/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class18/noiseco/images/logo_small.png -------------------------------------------------------------------------------- /series10/class19/noiseco/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class19/noiseco/images/logo_small.png -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^margin/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /series8/class10/noisetwitter/source/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class10/noisetwitter/source/avatar.jpg -------------------------------------------------------------------------------- /series8/class12/noisetwitter/source/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class12/noisetwitter/source/avatar.jpg -------------------------------------------------------------------------------- /series8/class13/noisetwitter/source/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class13/noisetwitter/source/avatar.jpg -------------------------------------------------------------------------------- /series8/class17/script.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('.top_nav h1').click(function() { 3 | $('html').toggleClass('show_nav'); 4 | }); 5 | }); -------------------------------------------------------------------------------- /series8/class18/noiseco/source/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/noiseco/source/images/hero.jpg -------------------------------------------------------------------------------- /series8/class18/noiseco/source/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/noiseco/source/images/logo.png -------------------------------------------------------------------------------- /series8/class19/noiseco/source/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/noiseco/source/images/hero.jpg -------------------------------------------------------------------------------- /series8/class19/noiseco/source/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/noiseco/source/images/logo.png -------------------------------------------------------------------------------- /series9/class17/script.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('.top_nav h1').click(function() { 3 | $('html').toggleClass('show_nav'); 4 | }); 5 | }); -------------------------------------------------------------------------------- /series10/class11/assignment/img/gone_fishing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class11/assignment/img/gone_fishing.gif -------------------------------------------------------------------------------- /series10/class13/noisetwitter/public/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class13/noisetwitter/public/avatar.jpg -------------------------------------------------------------------------------- /series10/class13/noisetwitter/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class13/noisetwitter/public/favicon.ico -------------------------------------------------------------------------------- /series10/class14/noisetwitter/public/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class14/noisetwitter/public/avatar.jpg -------------------------------------------------------------------------------- /series10/class14/noisetwitter/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series10/class14/noisetwitter/public/favicon.ico -------------------------------------------------------------------------------- /series8/class11/forms/source/images/middleman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/forms/source/images/middleman.png -------------------------------------------------------------------------------- /series8/class14/noisetwitter-react/source/javascripts/all.js: -------------------------------------------------------------------------------- 1 | //= require 'classnames' 2 | //= require_tree './components' 3 | //= require 'script' -------------------------------------------------------------------------------- /series8/class18/noiseco/source/images/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/noiseco/source/images/agile.png -------------------------------------------------------------------------------- /series8/class18/noiseco/source/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/noiseco/source/images/cloud.png -------------------------------------------------------------------------------- /series8/class18/noiseco/source/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/noiseco/source/images/mobile.png -------------------------------------------------------------------------------- /series8/class19/noiseco/source/images/agile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/noiseco/source/images/agile.png -------------------------------------------------------------------------------- /series8/class19/noiseco/source/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/noiseco/source/images/cloud.png -------------------------------------------------------------------------------- /series8/class19/noiseco/source/images/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/noiseco/source/images/mobile.png -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /series8/class11/forms/source/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class11/forms/source/images/background.png -------------------------------------------------------------------------------- /series10/class18/solution1/style.css: -------------------------------------------------------------------------------- 1 | .outer { 2 | height: 200px; 3 | width: 200px; 4 | } 5 | 6 | .inner { 7 | height: 100px; 8 | width: 100px; 9 | } -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | } ); 6 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | } ); 6 | -------------------------------------------------------------------------------- /series8/class14/noisetwitter-react/source/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class14/noisetwitter-react/source/avatar.jpg -------------------------------------------------------------------------------- /series8/class18/noiseco/source/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class18/noiseco/source/images/logo_small.png -------------------------------------------------------------------------------- /series8/class18/solution1/style.css: -------------------------------------------------------------------------------- 1 | .outer { 2 | height: 200px; 3 | width: 200px; 4 | } 5 | 6 | .inner { 7 | height: 100px; 8 | width: 100px; 9 | } -------------------------------------------------------------------------------- /series8/class19/noiseco/source/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class19/noiseco/source/images/logo_small.png -------------------------------------------------------------------------------- /series9/class18/solution1/style.css: -------------------------------------------------------------------------------- 1 | .outer { 2 | height: 200px; 3 | width: 200px; 4 | } 5 | 6 | .inner { 7 | height: 100px; 8 | width: 100px; 9 | } -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/foundation-sites/assets/foundation.scss: -------------------------------------------------------------------------------- 1 | @import '../scss/foundation'; 2 | 3 | @include foundation-everything; 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /series8/class10/noisetwitter/source/images/middleman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class10/noisetwitter/source/images/middleman.png -------------------------------------------------------------------------------- /series8/class11/solution/script.js: -------------------------------------------------------------------------------- 1 | $('form').validate({ 2 | rules: { 3 | password_confirmation: { 4 | equalTo: '#password' 5 | } 6 | } 7 | }); -------------------------------------------------------------------------------- /series9/class10/noisetwitter/api/tweets: -------------------------------------------------------------------------------- 1 | { 2 | "status": "SUCCESS", 3 | "data": { 4 | "tweet_content": "Here is the tweet you posted!" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /series9/class11/solution/script.js: -------------------------------------------------------------------------------- 1 | $('form').validate({ 2 | rules: { 3 | password_confirmation: { 4 | equalTo: '#password' 5 | } 6 | } 7 | }); -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | } ); 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /series8/class10/noisetwitter/source/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class10/noisetwitter/source/images/background.png -------------------------------------------------------------------------------- /series8/class10/solution/colors/build/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class10/solution/colors/build/images/background.png -------------------------------------------------------------------------------- /series8/class10/solution/colors/build/images/middleman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class10/solution/colors/build/images/middleman.png -------------------------------------------------------------------------------- /series8/class10/solution/colors/source/images/middleman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class10/solution/colors/source/images/middleman.png -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^(?:checkbox|radio)$/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /series8/class10/solution/colors/source/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class10/solution/colors/source/images/background.png -------------------------------------------------------------------------------- /series8/class8/solution/homepage/source/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class8/solution/homepage/source/images/background.png -------------------------------------------------------------------------------- /series8/class8/solution/homepage/source/images/middleman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series8/class8/solution/homepage/source/images/middleman.png -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/motion-ui/motion-ui.scss: -------------------------------------------------------------------------------- 1 | @import "src/motion-ui"; 2 | 3 | @include motion-ui-transitions; 4 | @include motion-ui-animations; 5 | -------------------------------------------------------------------------------- /series10/class18/solution1/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series10/class18/solution2/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series10/class18/solution3/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series10/class18/solution4/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series10/class18/solution5/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series10/class18/solution6/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/foundation-sites/assets/foundation-flex.scss: -------------------------------------------------------------------------------- 1 | @import '../scss/foundation'; 2 | 3 | @include foundation-everything($flex: true); 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /series8/class18/assignment/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series8/class18/solution1/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series8/class18/solution2/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series8/class18/solution3/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series8/class18/solution4/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series8/class18/solution5/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series8/class18/solution6/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series9/class18/assignment/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series9/class18/solution1/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series9/class18/solution2/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series9/class18/solution3/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series9/class18/solution4/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series9/class18/solution5/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series9/class18/solution6/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series10/class18/assignment/base.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | 5 | .outer { 6 | background: darkGreen; 7 | } 8 | 9 | .inner { 10 | background: springGreen; 11 | } -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | } ); 6 | -------------------------------------------------------------------------------- /series8/class18/solution2/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | height: 100px; 3 | width: 100px; 4 | position: relative; 5 | left: 100px; 6 | /* or position: static; margin-left: 100px; */ 7 | } -------------------------------------------------------------------------------- /series9/class18/solution2/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | height: 100px; 3 | width: 100px; 4 | position: relative; 5 | left: 100px; 6 | /* or position: static; margin-left: 100px; */ 7 | } -------------------------------------------------------------------------------- /series9/class9/harp/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class9/harp/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /series9/class9/harp/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class9/harp/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /series9/class9/harp/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class9/harp/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /series10/class18/solution2/style.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | height: 100px; 3 | width: 100px; 4 | position: relative; 5 | left: 100px; 6 | /* or position: static; margin-left: 100px; */ 7 | } -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | return document.documentElement; 5 | } ); 6 | -------------------------------------------------------------------------------- /series9/class9/harp/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class9/harp/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // All support tests are defined in their respective modules. 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /series8/class11/forms/source/javascripts/all.js: -------------------------------------------------------------------------------- 1 | //= require_tree . 2 | 3 | $('form').validate({ 4 | rules: { 5 | confirm_password: { 6 | equalTo: '#password' 7 | } 8 | } 9 | }); -------------------------------------------------------------------------------- /series9/class1/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | font-size: 20px; 4 | } 5 | 6 | a { 7 | font-weight: bold; 8 | } 9 | 10 | li { 11 | font-family: "Comic Sans MS", "Papyrus"; 12 | } -------------------------------------------------------------------------------- /series9/class8/harp-test/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class8/harp-test/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /series9/class8/harp-test/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class8/harp-test/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /series9/class8/harp-test/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class8/harp-test/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // Match a standalone tag 4 | return ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /series8/class4/solution/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Welcome to you, who have come to page 2!
8 | 9 | -------------------------------------------------------------------------------- /series8/class4/solution/script.js: -------------------------------------------------------------------------------- 1 | var x; 2 | x = 1000; 3 | var y = 234; 4 | var sum = x + y; 5 | var message = "The sum is " + sum + "!"; 6 | alert(message); 7 | 8 | // alert("The sum is " + (1000 + 234) + "!"); -------------------------------------------------------------------------------- /series9/class1/solution/index2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Welcome to you, who have come to page 2!
8 | 9 | -------------------------------------------------------------------------------- /series9/class4/solution/script.js: -------------------------------------------------------------------------------- 1 | var x; 2 | x = 1000; 3 | var y = 234; 4 | var sum = x + y; 5 | var message = "The sum is " + sum + "!"; 6 | alert(message); 7 | 8 | // alert("The sum is " + (1000 + 234) + "!"); -------------------------------------------------------------------------------- /series9/class8/solution/homepage/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class8/solution/homepage/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /series9/class8/solution/homepage/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class8/solution/homepage/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /series10/class1/solution/index2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Welcome to you, who have come to page 2!
8 | 9 | -------------------------------------------------------------------------------- /series10/class6/solution/script.js: -------------------------------------------------------------------------------- 1 | $('.add').on('click', function () { 2 | var newItem = $('.to-do-list li').first().clone(); 3 | newItem.text($('.new-field').val()); 4 | $('.to-do-list').append(newItem); 5 | }); -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /series8/class6/solution/script.js: -------------------------------------------------------------------------------- 1 | $('.add').on('click', function () { 2 | var newItem = $('.to-do-list li').first().clone(); 3 | newItem.text($('.new-field').val()); 4 | $('.to-do-list').append(newItem); 5 | }); -------------------------------------------------------------------------------- /series9/class6/solution/script.js: -------------------------------------------------------------------------------- 1 | $('.add').on('click', function () { 2 | var newItem = $('.to-do-list li').first().clone(); 3 | newItem.text($('.new-field').val()); 4 | $('.to-do-list').append(newItem); 5 | }); -------------------------------------------------------------------------------- /series9/class8/solution/homepage/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class8/solution/homepage/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /series9/class8/solution/homepage/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyATW/fwd/HEAD/series9/class8/solution/homepage/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/foundation-sites/docslink.sh: -------------------------------------------------------------------------------- 1 | # Clones the foundation-docs repo and links it to NPM locally 2 | git clone https://github.com/zurb/foundation-docs 3 | npm link ./foundation-docs 4 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | } ); 7 | -------------------------------------------------------------------------------- /series9/class8/harp-test/stylesheets/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /series8/class18/solution6/style.css: -------------------------------------------------------------------------------- 1 | .outer, .inner { 2 | height: 100px; 3 | width: 100px; 4 | } 5 | 6 | .outer { 7 | float: right; 8 | } 9 | 10 | .inner { 11 | bottom: 0; 12 | left: 0; 13 | position: absolute; 14 | } -------------------------------------------------------------------------------- /series9/class18/solution6/style.css: -------------------------------------------------------------------------------- 1 | .outer, .inner { 2 | height: 100px; 3 | width: 100px; 4 | } 5 | 6 | .outer { 7 | float: right; 8 | } 9 | 10 | .inner { 11 | bottom: 0; 12 | left: 0; 13 | position: absolute; 14 | } -------------------------------------------------------------------------------- /series9/class8/solution/homepage/stylesheets/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /series10/class18/solution6/style.css: -------------------------------------------------------------------------------- 1 | .outer, .inner { 2 | height: 100px; 3 | width: 100px; 4 | } 5 | 6 | .outer { 7 | float: right; 8 | } 9 | 10 | .inner { 11 | bottom: 0; 12 | left: 0; 13 | position: absolute; 14 | } -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusin = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /series10/class8/foundation-test/bower_components/what-input/gulpfile.js/index.js: -------------------------------------------------------------------------------- 1 | var requireDir = require('require-dir'); 2 | 3 | // Require all tasks in gulpfile.js/tasks, including subfolders 4 | requireDir('./tasks', { recurse: true }); 5 | -------------------------------------------------------------------------------- /series9/class8/harp-test/stylesheets/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: alpha(opacity=$opacity-ie); 8 | } 9 | -------------------------------------------------------------------------------- /series10/class10/solution/colors/app.js: -------------------------------------------------------------------------------- 1 | $('button').on('click', function () { 2 | $.ajax({ 3 | url: 'api/' + $(this).prop('class') + '.json' 4 | }).then(function (response) { 5 | $('body').css('background', response.color); 6 | }); 7 | }); -------------------------------------------------------------------------------- /series9/class10/solution/colors/app.js: -------------------------------------------------------------------------------- 1 | $('button').on('click', function () { 2 | $.ajax({ 3 | url: 'api/' + $(this).prop('class') + '.json' 4 | }).then(function (response) { 5 | $('body').css('background', response.color); 6 | }); 7 | }); -------------------------------------------------------------------------------- /series10/class10/solution/colors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /series10/class13/solution/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | import './index.css'; 5 | 6 | ReactDOM.render( 7 |