-
Write down the questions!
Writing down the questions you're supposed to answer is a great way to increase the sentence count. there are usually 3-4 of them so if you write them down you're almost a third of the way there.
-
Did you miss a semicolon somewhere?
"Becoming a better programmer is a project for years."
- [algorithms] Introduction to Algorithms detail link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Programming 101 - Absolute Beginner | |
=================================== | |
Programming Logic (Karel the Robot) | |
http://studio.code.org/s/course3/stage/2/puzzle/1 (blocks. basic) | |
http://light-bot.com/hocflash.html (block. puzzles) | |
http://codecombat.com/ (javascript) | |
Kodable: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Facebook: | |
https://www.facebook.com/notes/learn-golang/free-go-resources-available-in-internet/781530568600486 | |
Go learning resources available in Internet. | |
Official GoLang Sites: | |
Golang: http://golang.org | |
Golang Blog: https://blog.golang.org/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* modified from http://www.voidware.com/moon_phase.htm | |
*/ | |
function getMoonPhase(year, month, day) | |
{ | |
var c = e = jd = b = 0; | |
if (month < 3) { | |
year--; |
Here is a non-exhaustive list of books that have influenced how I think about software.
- RESTful Web Services - Leonard Richardson - THE book on REST
- Clean Code - Robert C. Martin - The book on how to write code sensibly, vital for new programmers
- 97 Things Every Programmer Should Know - Kevlin Henney - Tips and tricks, similar to Clean code but much more bit-size. Perfect toilet reading
- [Don't Make Me Think! - Steve Krug](http://www.amazon.co.uk/Dont-Make-Me-Think-Usability/dp/0321965515/ref=sr_1_1?s=books&ie=UTF8&qid=1439306124&sr=1-1&keywords=Don%27t+Make+Me+Think%21+-+Steve+K
OlderNewer