1
vote
Parsing, where can I learn about it.
Yet another textbook to consider is Programming Language Pragmatics. I prefer it over the Dragon book, but YMMV.
If you're using Perl …
28
votes
Is Perl still a viable language for web development?
Yes, Perl is still a very viable web language. I know a number of Perl startups that are doing quite well, thank you very much. And as a job market, while Perl is behind PHP, there are more Perl …
1
vote
Why isn’t LISP more widely used?
My theory is that our brains are set up to be able to naturally process a certain amount of information in syntax. So in reading languages with syntax the "syntax recognition" piece of their brain …
0
votes
How do you know if you are a bad programmer? Or how do you tell someone they are?
If you think you're good, you're almost certainly bad.
That's because our desire to keep a positive self-image makes it hard for us to hear criticism of that which we tie our self-worth to. …
3
votes
Which software expert do you have as a role model?
Without a doubt, Steve McConnell. I've read most of his books, and they range from decent to classic. Most of them are classic …
4
votes
How do you build a culture of collaboration in your team?
The first question to ask is why people don't use the wiki. For instance if you have consultants working for you, then sharing knowledge with consultants from other companies is against their prof …
2
votes
How can you measure your skills as a programmer?
I knew someone who used that interview question for years. He said that the best programmers tended to rate themselves around a 7. In particular people who rated themselves a 10 was usually that …
2
votes
Making the most of below-average team members
Why are these members below average?
If they are below average because they are inexperienced, then try to arrange a mentoring experience for them. If they are below average because they a …
12
votes
SQL coding style guide
Style is the original programming holy war. However here is my style
SELECT f.foo
, b.bar
, CASE
WHEN f.foo = 'hello'
THEN 'goodbye'
ELSE b.bar
END as som …
6
votes
What is the strangest/weirdest program you’ve ever made?
I decided to use the Y-combinator pattern to reduce factorial in JavaScript down to the …
12
votes
What is the meaning of “programmer”?
I'm reminded of when Larry Wall was discussing scripting versus programming and said, "Perl scripting is the same thing as Perl programming, but the ones who call it programming do it better."
…
7
votes
Who are the authorative thinkers for each ‘problem domain’ in Software?
For algorithms, I'd nominate Donald Knuth for fairly obvious reasons.
…
0
votes
What is the biggest drawback of <your favorite database>?
Database Postgres
Defect No analytic queries
Description
Analytic queries, introduced by Oracle, are part of the SQL 2003 …
0
votes
What is the reasoning behind a badge for private beta users?
Badges are to recognize people who have done something that contributed to this site. Participating in the private beta certainly qualifies.
As for unfair, who cares? Is there any shortag …
67
votes
What is the strangest/weirdest program you’ve ever made?
This one wasn't me, but it was my friend Scott Anderson. He had a problem. He had 7 cats, who all thought it great fun to climb the Christmas tree. Which destroyed the tree. He taught them not …
