7
votes
13answers
327 views
How do you get through the inevitable motivational “slump” near the end of projects?
When working on a project, after the interesting parts are coded, my motivation is severely diminished. What do you do to get over this problem?
…
5
votes
What fundamental skills are needed for programming?
If I had to choose three qualities in a student I had to teach, I would have to choose enthusiasm (willingness to learn), curiosity (the hacker mindset), and Logical reasoning …
0
votes
What is a reasonable code coverage % for unit tests (and why)?
Depending on the criticality of the code, anywhere from 75%-85% is a good rule of thumb.
Shipping code should definitely be tested more thoroughly than in house utilities, etc.
…
4
votes
Reasons not to use django
I personally don't like Django's ORM at all, and usually opt for SQLAlchemy if I choose it for a project. Also, I'm not sure if it's still an issue, but not being able to delete multiple items in t …
1
vote
Python, beyond the basics
I'd suggest writing a non-trivial webapp using either Django or Pylons, something that does some number crunching.
No better way to learn a new language than commiting yourself to a problem and lea …
8
votes
2
votes
Python module functions used in unexpected ways
I found struct.unpack to be a godsend for unpacking binary data formats after I learned of it!
…
1
vote
Does anyone still code using “notepad” ?
The closest I use regularly is the wonderful TextMate. It's not an ide, but supports "snippets" activated through tab triggers. No IntelliSense, but you can pipe your file through shell commands. …
0
votes
Should the choice of programming language be a team decision or a management one?
I feel that developers should indeed have a say in the language chosen. Managers in general seem to have a habit of going with "buzzwords". (Good) Programmers will hopefully know the best language …
5
votes
What is your favorite bash prompt?
Take a gander at this reddit thread for a large number of examples.
…
2
votes
Practical example of Lisp’s flexibility?
Have you taken a look at this explanation of why macros are powerful and flexible? No examples in other languages though, sorry, but it …
24
votes
What did you use to teach yourself python?
The official tutorial is great, as is Dive into Python. However, I tought myself …
1
vote
Did you ever switch from one programming language to another?
I started, like many, writing webapps in PHP. As I learned more and more about programming, and realized what an unmaintainable mess PHP was (as well as how cluttered the language was itself), I tr …
2
votes
Recommendations for starting web programming?
Django is excellent, as is Pylons, which I don't see recommended here yet.
…
0
votes
Is Microsoft’s Ribbon UI really that great, from a usability perspective?
I've talked to people who think the ribbon is to die for. Personally though, I think it's a bit... meh. I suppose exposing more functionality to the user close to the top level is nice for people w …
