19
votes
What Easter Eggs have you placed in code?
I once was coding something that rated most frequent unigrams, bigrams, and trigrams given a piece of text. I had a large list of all the trigrams on the page, reverse-sorted to have the highest n …
0
votes
What is the single most effective thing you did to improve your programming skills?
If there's something I can't do, and I know someone else can, I usually ask them to do it for me the first time, and then try to do something similar looking at their code. This is how I learned M …
3
votes
What is MATLAB good for? Why is it so used by universities? When is it better than Python?
One reason Matlab is popular with universities is the same reason a lot of things are popular with universities: there's a lot of professors familiar with it, and it's fairly robust.
I've s …
0
votes
Do you consider your job evil/neutral/good ?
I think that every job has a little bit of all three in it. For instance, working for yourself requires you to be a little evil in terms of watching out for number one, while there's evil inherent …
2
votes
Who are some well-known female programmers?
Jean Sammet, outspoken ex-president of ACM.
http://en.wikipedia.org/wiki/Jean_E._Sammet
…
0
votes
What was the funnest programming challenge you were ever tasked with?
I took a semester-long class that was involved with doing the CONLL Shared Task for Dependency Parsing and Argument Selection. Those were basically two mutually informing tasks that really kind of …
0
votes
What’s the golden code/comment ratio?
I like to use commenting to annotate code that I make sure is easy to read and has informative variables. That being said, I like to try to write every line of code to be as informative as a comme …
2
votes
When, if ever, is “number of lines of code” a useful metric?
It's a great metric for scaring/impressing people. That's about it, and definitely the context I'm seeing in all three of those examples.
…
1
vote
What Programming Book would you NOT recommend to Developers?
While it's a decent enough reference, I was just a little disappointed with Sams' PHP and MySQL Web …
10
votes
Simple but powerful programming language for a hobby software project
I originally copied the word "Python" and pasted it 1000 times.
Just use Python. It's really simplistic and easy to use.
…
2
votes
What is the most disruptive thing in a developer’s day
Non developers coming into your office to bug other developers for help instead of emailing them or opening a helpdesk.
…
0
votes
Is it worth joining the ACM
I've done a lot of work that has given me exposure to interviews with previous presidents and CEOs of the ACM. It's a very tricky area to have a professional society in, and they tend towards the …
3
votes
Is OpenID a flawed concept?
Google seems to think so. Their recent entry into the OpenID space, and immediate subsequent fork of the protocol, has two things to say about the issue:
OpenID is useful, especially …
3
votes
Artificial Intelligence - What to put in, or leave out, and what can be inferred?
It's not our job to explore these questions when building AI. It's our job to let the AI answer it for us.
At this point in time, and moving forward, artificially intelligent applications …
0
votes
How much content being replaced with an AJAX call is too much?
A good guideline for something like this is to ask yourself, "Is this dynamic application 'content', or is it content-content?" Your use case sounds like application content that will change with …
