2
votes
When is optimisation premature?
First, get the code working. Second, verify that the code is correct. Third, make it fast.
Any code change that is done before stage #3 is definitely premature. I am not entirely s …
0
votes
How do you truly ‘get’ an abstract concept?
Part of it may be down to innate ability, but I believe I've noticed I've grown better at internalising abstract concepts by working at internalising abstract concepts. The more I learn how to do t …
2
votes
Practical example of Lisp’s flexibility?
One thing I like is the fact that I can upgrade code "run-time" without losing application state. It's a thing only useful in some cases, but when it is useful, having it already there (or, for onl …
1
vote
What is the single most influential book every programmer should read?
Not a programming book, per se, but The soul of a new machine …
1
vote
How do you type lisp efficiently, with so many parentheses?
Mostly, I just type them, but occasionally, I use M-( and M-) (especially when I am adding a LET binding "late in the stage"), to enclose the relevant nnumber of expressions.
…
0
votes
Finding the time to program in your spare time?
I've found that I seldom feel like coding when I've been coding all day at work (no, I am not a developer by profession) and am unlikely to sit down and code in the evenings, but getting an hour, h …
1
vote
What’s in your Utility Toolkit?
Emacs. It's my "does list of things" tool, helpful with quick calculations, with mangling configuration files (I work as a network engineer, there is an awful lot of configuration to be done, lots …
3
votes
Dealbreakers for new programming jobs?
Over-reaching "all you ever create is ours" 'intellectual property' clauses.
Post-employment restrictions on who I can work for or what I can work with.
I have no problem with "what's creat …
0
votes
What was your first programming job?
First job where I regularly wrote code was as a unix sysadmin at a hospital.
First job where I was primarily employed to write code was as an implementer of crypo modules for an EDI router, but a l …
2
votes
Security plan for business critical information and service accessibility
The system needs to be reachable through the Internet. What should we think about when deciding on how to host it?
I'd consider a few things. First, your hosting provider …
0
votes
Is a debugger the mother of all evil?
A good debugger makes it easier to find a problem location. However, in the ideal case, you then return to the code, with the new information highlighted by the debugger and stare at the code, unti …
1
vote
Games to improve programming skills
For a fun, fast-paced game with (some) programming components and (lots of) defensive coding, I play RoboRally.
…
6
votes
should non technical project managers be paid more than programmers?
At the end of the day, "pay" comes down to two things:
1) How much value do you produce for the company?
2) How hard would it be to replace you?
If there's lots of non-technical project man …
2
votes
Real Life Benefits of Dynamic Languages?
In general, I prefer talking about "interactive" languages rather than "dynamic" languages. When you only have an edit/compile/run cycle, any turn-around takes a long time. Well, at least on the or …
