0
votes
Your favourite algorithm and the lesson it taught you.
An algorithm that generates a list of primes by comparing each number to the current list of primes, adding it if it's not found, and returning the list of primes at the end. Mind-bending in severa …
2
votes
I’ve heard of DRY and KISS, what other maxims do I need?
"Do the simplest thing that can possibly work."
It gives you a good place to start, and has the side effect of encouraging an end product that is both effective and simple to explain, which …
1
vote
What should every programmer know?
How to talk to non-programmers about programming concepts. It's tricky to get the hang of, but it will increase your value and the ease of your life greatly.
…
1
vote
“Programming” for a 9 year old
A fairly fun "virtual robot" language is Guido van Robot, available at http://gvr.sourceforge.net/ . It's syntax is Python-inspired, but it …
0
votes
What was your biggest CS eye-opener?
Python's use of lists. After reviewing the list of methods, I was extremely confused as to why something called a "list" would need these. Working through them, however, taught me quite a bit about …
