2
votes
How do you get a co-worker to use 3rd party code?
There are times when it's best to build in-house, and other times when it's best to buy. The hard part is to make that decision based on the right criteria. The programmer thinking that this is a …
1
vote
What is your solution to the FizzBuzz problem?
57 Chars in MUMPS:
F I=1:1:100 S A=I#3,B=I#5 W:A&B I W:'A "Fizz" W:'B "Buzz"
…
2
votes
Why do software engineers hate writing documentation?
Because we know no one is ever going to look at it again.
I personally subscribe to the theory that "the code is the documentation". Why would I look at a design doc when I have the code? …
1
vote
Factorial Algorithms in different languages
In MUMPS:
fact(N)
N F,I S F=1 F I=2:1:N S F=F*I
QUIT F
Or, if you're a fan of indirection:
fact(N)
N F,I S F=1 F I=2:1:N S F=F_"*"_I
QUIT …
2
votes
What is the Best Source Code Comparison Tool?
I've had good luck with Beyond Compare.
http://www.scootersoftware.com/
…
0
votes
Theory, examples of reversible parsers?
That sounds a lot like the back end of a non-optimizing compiler that has it's target language the same as it's source language.
One question would be whether you require the "unparsed" cod …
2
votes
How to convince your fellow developer to write short methods?
If you've tried to explain good design and people just aren't getting it, or are just refusing to get it, then stop trying. It's not worth the effort. All you'll get is a bad rep for yourself. S …
