Vue.js
- https://vuejs.org/v2/guide/ (Official documentation)
- http://vegibit.com/vue-js-tutorial/
For last log $ git log --name-status HEAD^..HEAD or git show --summary
This guy ought to have 1M subs. One of the most well produced, informative and educational channels I didn't know existed. https://www.youtube.com/user/TechLaboratories
Channel where you can see movies summed up in 8-Bit http://www.youtube.com/channel/UCVtL1edhT8qqY-j2JIndMzg
ryPod Shuffle: 3 minute movie and game reviews! https://www.youtube.com/rypodshuffle
Lego Channel with awesome animation and reviews https://www.youtube.com/user/alexsplanet
This Exists - Digging up the pop culture peculiarities and nonsense that exists in the darkness on the edge of town https://www.youtube.com/user/thisexists/featured
- http://stackoverflow.com/questions/804115 (
rebasevsmerge). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebasevsmerge) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse) - http://stackoverflow.com/questions/292357 (
pullvsfetch) - http://stackoverflow.com/questions/39651 (
stashvsbranch) - http://stackoverflow.com/questions/8358035 (
resetvscheckoutvsrevert)
- Change directory
cd cdwithout any argument will take to home directorypwdprints the current working directorywcis used to count words in filecatis used to contcat files, also used to display file contents.
| App.LibraryRoute = App.ApplicationRoute.extend({ | |
| activate: function () { | |
| //no longer enter | |
| this._super(); | |
| only called once on entering a route. | |
| }, | |
| beforeModel: function () { | |
| // any state you want in place before the model is initialized, this is called before any model promises are resolved | |
| // also could be used to conditionally prevent access to a route by throwing transition.abort |
let and const are block scoped, can't be accessed before declaring, otherwise ReferenceError will be thrown. This doesn't
happen with var, var is hoisted where let and const are not.
This could lead to bug in program, and it also causes confusion, example http://stackoverflow.com/questions/42803047/why-do-i-get-referenceerror-when-defining-variable-with-let-in-chrome-console#42803047
Detailed explanation : http://stackoverflow.com/questions/33198849/what-is-the-temporal-dead-zone
| const http = require('http'); | |
| const url = require('url'); | |
| const port = process.argv[2] || 4200; | |
| let body = ''; | |
| let server = http.createServer((req, res)=>{ | |
| res.writeHead(200, { 'Content-Type': 'application/json' }); | |
| req.on('data',(chunk)=>{ |