11
votes
39answers
1k views
What great people within computer science should we all know about? [closed]
Possible Duplicates:
What are the names that every programmer should know?
Who are the most famous progammers in Computer Science?
There are many brilliant people out there in the lovely …
0
votes
0answers
60 views
What’s the most time consuming bug you have solved or created? [closed]
Randomly corrupted heap, unintended undefined behaviour, concurrency problems, asynchronous behaviour... What was the bug that took you the most to hunt down and fix and how did you solved it? In my …
5
votes
12answers
226 views
What was your favorite assembly language?
What was your favorite assembly language?
7
votes
6answers
323 views
Patterns to mix F# and C# in the same solution
I studied few functional languages, mostly for academical purposes. Nevertheless, when I have to project a client-server application I always start adopting a Domain Driven Design, strictly oop.
A …
3
votes
5answers
97 views
Cool Class/Variable Names [closed]
What are some of the coolest/geeky class/variable names you have encountered. I'm getting bored of all the builders, factories, managers and controllers. Surely, they must have cooler counterparts!
1
vote
6answers
121 views
What is the most efficient way to repeat an action every x minutes?
I have an application that runs in JBoss. I have an incoming web service request that will update an ArrayList. I want to poll this list from another class every 60 seconds. What would be the most …
7
votes
8answers
248 views
Can you get a job thanks to your Prolog skills?
This Prolog question is introduced as an interview question. Can you get a job thanks to your Prolog skills? Is it used in the industry? (ok, ok, a job can be out of the industry too).
1
vote
3answers
135 views
Pragmatic Programmer Techniques - who, what, where…
Few questions. But all very much related.
1) How many of the SO crowd are using 'pragmatic programmer' tools/methods/techniques including, but not limited to (some of the obvious):
a) Source code …
7
votes
15answers
445 views
Best logging library for .NET? [closed]
What is the best logging library for .NET?
0
votes
0answers
183 views
Who are some well known African-American Software Engineers [closed]
This question is similar a questions about female programmers but has a different spin.
Who are some popular African-American Software Engineers/Computer Scientist and why are they considered to be …
5
votes
19answers
338 views
C Pointer Syntax: Style poll [closed]
Which syntax do you prefer and why:
char* string;
char *string;
Assume multiple variable declarations per line are not used. (I know about the differences).
3
votes
3answers
123 views
Is PHP suited for Enterprise Application development ?
Is PHP suitable for Enterprise Application Development ?
1
vote
6answers
167 views
Ways to fill a list in Java
Hi,
I would like to know your opinions on which you find is a better approach to have a list filled up by a different method. I know there isn't a definite answer, but I would like to see reasonable …
5
votes
16answers
323 views
What do you use to make programming flowcharts, diagrams, etc?
I've always just used OpenOffice Draw and it just occurred to me that there has to be something better out there.
So what do you use? Do you like it?
Bonus points for free things and for web apps. …
0
votes
3answers
65 views
Closable or Closeable?
I'm adding a boolean property to a class to indicate whether something is able to be closed. Searching around I see precedent for using "closeable" and "closable" to name such properties. Which is …
