Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| # Cloning the boilerplate remote repo | |
| git clone -o [boilerplate name] [boilerplate remote repo] [new-project repo folder name] | |
| # Enter the cloned repo folder | |
| cd [new-project repo folder name] | |
| # Clean the README | |
| rm README.md && touch README.md | |
| # If you have LICENSE, you can clean it too. |
| // https://www.udacity.com/course/viewer#!/c-ud989/l-3417188540/m-3480348671 | |
| // Let's say we're making an element for every item in an array. When each is clicked, it should alert its number. | |
| // The solution involves utilizing closures. We're going to create an inner scope to hold the value of num at the exact moment we add the event listener. There are a number of ways to do this -- here's a good one. | |
| // clear the screen for testing | |
| document.body.innerHTML = ''; | |
| var nums = [1,2,3]; |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |