0
votes
Which programming language to learn now?
I'd recommend Python. Both do well on multiple platforms, and Python has a few tools like Psyco and Shedskin that can increase speed dramatically. Python's also very closely coupled with C, which c …
0
votes
Where do you declare variables? The top of a method or when you need them?
My personal preference is to place any globals in a block at the top of the code, and place locals as close as possible to their own scope.
…
0
votes
What’s your first program that you were proud of?
I wrote a simple slot-machine in Python. It started out with selecting 3 random numbers and checking to see if they matched, and went all the way to up to 5-way checking on 9 numbers with a bankrol …
0
votes
Games to improve programming skills
Personally, I like Monopoly.
Monopoly tracks a lot of separate bits of information and passes them around from person to person. Some of it on the board, some in the players hands, …
0
votes
Humor in code
I have a habit of making testing values the names of fictional countries. Leading to several co-workers playing "guess the movie" once.
…
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 …
1
vote
Why doesn’t your company contribute back to open source?
In our case, we produce extremely customized software for the specific circumstances of a state office. Because of that, our software has no utility for anyone else. Being a state office, we aren't …
0
votes
Common Lisp or Scheme?
I recommend Scheme. As stated before, the LISP-derived families aren't used much in the wild. The value of learning a LISP-derived language is developing new ways of thinking, which Scheme does in …
1
vote
Which language should students start with?
I suggest Python. It's quick, presents crucial ideas in simple ways, and is fairly good at being multi-paradigm.
Multi-paradigm in particular could be important, as it gives a good platform …
0
votes
How do you impress non-programmers in an interview?
One thing that worked well for me is to bring in a one-page piece of code and be ready to explain it. It was a concrete way to show off both technical and communication skills.
…
0
votes
What’s the next piece of open source software that Microsoft should embrace?
Would MySQL be too much to ask?
(I know. But I can hope.)
…
0
votes
What is the single hardest programming skill or concept you have learned?
Python tuples. I kid you not.
There's been a long running holy war, with fanatical jerks on both sides, as to whether tuples are read-only lists.
Well, they are.
But that is …
0
votes
Appreciating design patterns
As always, "it depends."
I make heavy use of the Facade and Bridge patterns, especially in communicating ideas to non-programmers. I use the Singleton/Borg pattern on occasion.
Most …
2
votes
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.
…
0
votes
What was the biggest lesson you learned in your career as an IT professional?
Communicate to the person who is in front of you at the moment. If you don't know their level of knowledge and preferred communication style, find out and take notes.
…
