A hand crafted markdown document contains all major Javascript topics covered, taken from different sources. Brush Up your JS memory.
Single line comments start with //. For multi-line commands, you use /* ... */
// This is a single line comment| ln -s /home/ariflvkd/dbse.arif.me/storage/app/public /home/ariflvkd/dbse.arif.me/public/storage |
| git add . | |
| git commit -m "comment" | |
| git push origin master | |
| git pull | |
| git remote add origin <server> | |
| git branch <branchname> | |
| git checkout <branchname> | |
| git merge <branchname> | |
| git branch -d <branchname> | |
| git push |
| (function($) { | |
| var links = [], time, index = 0, un = ['account', 'youtube', '#', 'javascript'], openWindow; | |
| function isNotUn(text) { | |
| for(var i = 0; i < un.length; i++) { | |
| var pttrn = new RegExp(un[i]); | |
| if(pttrn.test(text)) return false; | |
| } | |
| return true; | |
| } | |
| $('a').each(function(i, item) { |
| var getParam = (function() { | |
| var query = location.search.substr(1); | |
| var params = {}; | |
| if(query) { | |
| query.split("&").forEach(function(part) { | |
| var item = part.split("="); | |
| params[item[0]] = decodeURIComponent(item[1]); | |
| }); | |
| } | |
| return function(paramName) { |