0
votes
How has unit testing made your life better ?
I'm a big fan of unit testing, though my tests don't provide complete coverage nowadays... mostly because I'm working on a web site and much of my code just grabs data from the database, manipulate …
1
vote
Worst “muscle memory” keyboard shortcut?
Ctrl-w
Deletes the current selection in the various editors I use for programming.
Closes the window in various other programs (ex, my email client)
It used to be Ctrl-e, which move …
0
votes
Why do people think functional programming will catch on?
I have a hard time envisioning a purely functional language being the common language of the day, the reasons for which I won't get in to (because they're flame fodder). That being said, programmin …
1
vote
What’s with the love of dynamic Languages
Dynamic Languages Strike Back
http://www.youtube.com/watch?v=tz-Bb-D6teE
A talk discussing Dynamic Languages, …
6
votes
What’s with the love of dynamic Languages
My main reason for liking dynamic (typed, since that seems to be the focus of the thread) languages is that the ones I've used (in a work environment) are far superior to the non-dynamic languages …
0
votes
Will emacs make me a better programmer?
I'd argue that the best programmers tend to be the ones that will take the time to customize their environment, making it faster/easier to perform the tasks that they are likely to do. Emacs is one …
4
votes
What factors do you consider when deciding what to work on next?
I tend to weigh 4 items based on things when deciding what to work on next:
Is this item a requirement for something else?
Can I work on this item yet (ie, am I waiting on so …
1
vote
So was that Data Structures & Algorithms course really useful after all?
For me, knowing the exact algorithms has been... nice as background knowledge. However, the thing that's been the most useful is the more general background of having to pay attention to how differ …
0
votes
maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..?
Honestly, I would love to see a dependency management tool that implemented that part of Maven, specifically as a command line tool. For everything BUT dependency management, I find Maven to be abs …
