2
votes
Why do people defend the regex syntax?
A regular expression (at least originally) describes a regular language. Regular languages have very nice theoretical properties in that they both can be described by and describe a deterministic f …
0
votes
What’s the first program you wrote that you were proud of?
A VT100 terminal emulator (with 80 columns, true descenders, and itty bitty fonts) for the …
1
vote
When writing code do you wrap text or not?
I manually wrap lines, but I tend to have a higher tolerance for long line lengths than the others indicate here. I usually allow about 130 characters on a line if it is a long function or class si …
1
vote
Adoption of the Ribbon UI
There are a number of problems with using the Ribbon UI.
First, is that Microsoft has a license you have to comply with to use the UI, but they don't actually have a library that you can u …
0
votes
Humor in code
In my younger days When writing one-off perl programs I admit I had a penchant for just emitting code with colloquial meanings like:
open(FOO,"...") or die horribly;
…
10
votes
Should LOC counting include tests and comments?
A wise man once told me 'you get what you measure' when it comes to managing programmers.
If you rate them in their LOC output amazingly you tend to get a lot of lines of code.
If y …
2
votes
Do you prefer verbose or shorthand languages
Conciseness is a virtue, within reason.
I write a lot of my code in Haskell where you can get an amazing amount of punch out of a line o …
7
votes
Is Perl worth it?
Perl is an amazingly good choice when you are writing a lot of "glue" that has to talk to a bunch of disparate systems or work with text.
In many ways, my favorite platform is CPAN. Perl ju …
2
votes
Is it considered bad taste to put your GPA in your resume when applying for a programming job?
With a 4.0 (really, anything better than a 3.0) it is worth mentioning. A simple "4.0 GPA, summa cum laude with University and Departmental Honors" or what have you, doesn't take up much space and …
