Tagged Questions

79
votes
118answers
10k views

Computer Language puns and jokes

I'm looking for some funny jokes and puns that occur in computer languages. I'll post an oldie to kick things off... What are some others? update: Especially looking for code-related jokes... the …
42
votes
30answers
2k views

What’s with the love of dynamic Languages

It seems that everybody is jumping on the dynamic, non-compiled bandwagon lately. I've mostly only worked in compiled, static typed languages (C, Java, .Net). The experience I have with dynamic …
36
votes
25answers
1k views

GB English, or US English?

If you have an API, and you are a UK-based developer with a highly international audience, should your API be setColour() or setColor() (To take one word as a simple example.) UK-based …
35
votes
118answers
9k views

Factorial Algorithms in different languages

I want to see all the different ways you can come up with, for a factorial subroutine, or program. The hope is that anyone can come here and see if they might want to learn a new language. Ideas: …
34
votes
24answers
5k views
34
votes
37answers
3k views

What are the things Java got right?

What are the things that Java (the language and platform) got categorically right? In other words, what things are more recent programming languages preserving and carrying forward? Some easy answer …
34
votes
40answers
2k views

Suggestions on starting a child programming.

What languages and tools do you consider a youngster starting out in programming should use in the modern era? Lots of us started with proprietary Basics and they didn't do all of us long term harm …
27
votes
28answers
2k views

does a disaster proof language exist?

When creating system services which must have a high reliability, I often end up writing the a lot of 'failsafe' mechanisms in case of things like: communications which are gone (for instance …
24
votes
23answers
2k views

Does anyone know of a good library for mapping a person’s name to his or her sex?

I am looking for a library or database that can provide guesses about whether a person is male or female based on his or her name or nickname. Something like john => "M", mary => "F", alex …
23
votes
18answers
693 views

Programming information in your mother tongue

Whenever I need information on a programming topic I tend to search Google directly in English. I don't even bother trying to search in Spanish which is my mother tongue, I know that probably I won't …
23
votes
19answers
2k views

Best language for safety-critical software

If you were going to write some safety-critical software, what language would you prefer and why?
22
votes
23answers
2k views

Why artificially limit your code to C?

This is prompted by a an answer I gave to a current question which asks about a generics library for C - the questioner specifically states that they do not want to use C++. My question to him and …
20
votes
5answers
2k views

C# - Exception messages in English?

We are logging any exceptions that happen in our system by writing the Exception.Message to a file. However, they are written in the culture of the client. And Turkish errors don't mean a lot to me. …
19
votes
15answers
965 views

What is the purpose of anonymous { } blocks in C style languages?

What is the purpose of anonymous { } blocks in C style languages (C, C++, C#) Example - void function() { { int i = 0; i = i + 1; } { int k = 0; k = k + 1; } } Edit - …
18
votes
24answers
765 views

Which is more advantageous: Learning new languages or increasing knowledge of ones you already know?

Do you prefer learning new languages or just working in your current language and increase your knowledge of it? Which one provides more real-world benefits, and why?

1 2 3 4 5 23 next
15 30 50 per page