0
votes
What would you write if you wanted to learn a new language?
Well, it depends what I'm interested in doing. If I just want to know about the language's features for academic reasons, I usually just run through basic stuff like fibonacci, Y combinator, etc. M …
0
votes
What do you do with a developer that does not test his code?
Code reviews and unit tests.
Having been (like many people) the guy who checks in a trivial change and breaks things, I can tell you that unit tests remove any excuse for not testing, if t …
1
vote
What should every programmer know?
Functional programming. It'll teach you to think about how elements of your programme fit together. Terribly useful in object oriented programming.
Learn the difference between a type and a …
0
votes
Essential Programming Tools
As I do all my programming these days as just noodling around, I only use Squeak for stuff, and if I need to achieve anything it will usually involve cygwin commandline tools or Xemacs for text pro …
1
vote
How often should you refactor?
Absolutely as soon as it seems expedient. If you don't the pain builds up.
Since switching to Squeak (which I now seem to mention every post) I've realised that lots of design questions du …
-1
votes
What’s a good Functional language to learn first?
C++, Smalltalk, and python.
That's right - you can use functional programming techniques in all of those languages.
I wouldn't recommend them as your only functional programming lan …
0
votes
What is important to keep in mind when designing a database?
Remember that normalisation is only relative to what you are modelling. Perhaps you are modelling a collection of objects in your domain. Maybe you are recording a series of events, in which data a …
0
votes
Is mathematics necessary for programming?
About the only useful things you can learn at university are theoretical.
…
0
votes
Telecommuting in the programming profession
It depends on how your team is managed (surprise surprise) and what kind of connection there is. When I've done it, it has been fine. You need to be in enough to pick up on group chatter, but if yo …
2
votes
To ternary or not to ternary?
Well, the syntax for it is horrid. I find functional ifs very useful, and often makes code more readable.
I would suggest making a macro to make it more readable, but I'm sure someone can …
1
vote
What was your worst client request/specification?
Once I was working on a project being specced not by the customer, but by a greek film director they had great confidence in.
When I was trying to flush out the desired behaviour in case of …
2
votes
Functional languages - when to use?
Well, why not?
Functional languages can do anything any other language can, and they force interfaces to be well-defined. They are particularly well suited to tasks that involve transformi …
2
votes
Designers/Developers: Would you work for an “Adult” Company?
If you want an answer as to how it would affect your future career, ask some HR professionals. They may help ease your mind, or confirm your fears.
…
0
votes
Writing maintainable code
Strong, sensible conventions which are consistently applied. Things like conventions on where to start indexing, what end state to leave things in.
This makes it much easier to un …
1
vote
Do programmers need a union?
I think that it is interesting that there are some consistent issues that programmers complain about that no organisation addresses:
Lack of proper standards in colleagues, despite th …
