git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| /* | |
| A well commented http server written in node. | |
| Written by: Tom Lane, http://github.com/tomlane | |
| All Public Work by Tom Lane is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.0 UK: England & Wales License. | |
| */ | |
| //calling the required http and fs modules | |
| var http = require('http'); |
| <!-- video pauses when tab is not in view. Uses Page Visibility API. --> | |
| <html> | |
| <head> | |
| <title>Page Visibility API</title> | |
| </head> | |
| <body> | |
| <p>Credit for video: http://ptaff.ca/orage_montreal/?lang=en_CA </p> | |
| <video> | |
| <source src="1696_lightnings.ogg" type="video/ogg"> | |
| </video> |
| //Javascript Logic 101 | |
| //make "that" have the value of true (boolean) | |
| that = true | |
| //check if "that" is false | |
| if (!that) { //returns false. (it is not true that the value is set to false) | |
| //do something | |
| } |
| { | |
| "files": | |
| { | |
| "jquery" : "http://code.jquery.com/jquery.js", | |
| "jquery.min" : "http://code.jquery.com/jquery.min.js", | |
| "jquery-cookie" : "https://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js", | |
| "jquery-dotimeout" : "https://raw.github.com/cowboy/jquery-dotimeout/master/jquery.ba-dotimeout.min.js", | |
| "jquery-extra-selectors" : "https://raw.github.com/keithclark/JQuery-Extended-Selectors/master/jquery-extra-selectors.js", | |
| "jquery-flexslider" : "https://raw.github.com/mbmufffin/FlexSlider/master/jquery.flexslider-min.js", | |
| "jquery-mediaelement" : "https://raw.github.com/johndyer/mediaelement/master/build/mediaelement-and-player.js", |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| // Define color schemes quickly | |
| // Color schemes to choose from | |
| // complement | |
| // triad | |
| // tetrad | |
| // analogic | |
| // accented-analogic | |
| $color-location: primary !default |
| ➜ yeoman git:(audit-script) ✗ ./setup/audit.sh | |
| ✓ *curl* is present, whew. | |
| ✓ *git* is installed, nice one. | |
| ✓ *NodeJS* is installed. | |
| ✓ *Ruby* is installed. | |
| ✓ *RubyGems* is installed. | |
| ✓ *Compass* is installed. | |
| ✓ *Phantomjs* is installed. | |
| ✓ *jpeg-turbo* is installed. |
| #Linux GNOME | |
| alias git-push="gnome-open 'http://www.youtube.com/watch?v=YleXlgHI1oM' && git push" | |
| #OS X | |
| alias git-push="open 'http://www.youtube.com/watch?v=YleXlgHI1oM' && git push" |
| 4002 silly gunzTarPerm extractEntry test/zz-cleanup.js | |
| 4003 silly gunzTarPerm modified mode [ 'test/zz-cleanup.js', 438, 420 ] | |
| 4004 silly gunzTarPerm extractEntry test/fixtures.tgz | |
| 4005 silly gunzTarPerm modified mode [ 'test/fixtures.tgz', 438, 420 ] | |
| 4006 silly lockFile 4bca46d0-inherits-1 inherits@1 | |
| 4007 silly lockFile 6b025e09-winston-0-6-2 [email protected] | |
| 4008 silly gunzTarPerm extractEntry test/sync.js | |
| 4009 silly gunzTarPerm modified mode [ 'test/sync.js', 438, 420 ] | |
| 4010 silly gunzTarPerm extractEntry test/umask.js | |
| 4011 silly gunzTarPerm modified mode [ 'test/umask.js', 438, 420 ] |
| C:\Users\Lenovo\Dropbox\Webdev\Projects\generator>mocha test/ | |
| ...path.existsSync is now called `fs.existsSync`. | |
| .. create write/to/bar.js | |
| create write/to/foo.js | |
| create write/to/lodash.js | |
| ..... create write/to/foobar.js | |
| . create write/to/from-template.js | |
| create foo-template.js | |
| create write/to/from-template-bar.js |