Tagged Questions
The language tag has no wiki summary.
137
votes
21answers
6k views
How to learn proper C++?
While reading a long series of really, really interesting threads, I've come to a realization: I don't think I really know C++. I know C, I know classes, I know inheritance, I know templates (& ...
87
votes
25answers
3k views
Plurality in user messages
Many times, when generating messages to show to the user, the message will contain a number of something that I want to inform the customer about.
I'll give an example: The customer has selected a ...
81
votes
32answers
7k views
What do people find so appealing about dynamic languages? [closed]
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 ...
68
votes
15answers
14k views
What are the pros and cons of XML and JSON?
We're an XML shop (we use both XMPP and RSS/Atom feeds a lot, so I guess we have a little or no choice). Yet, I keep hearing about people who "hate" XML and sometimes refuse to use APIs who can only ...
67
votes
9answers
9k 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.
...
62
votes
28answers
5k 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 ...
61
votes
21answers
22k views
Python Lambda - why?
I'm just beginning Python and ran head first into Lambda- which took me a while to figure out. Is lambda one of those 'interesting' language items that in real life should be forgotten? I'm sure ...
60
votes
128answers
15k 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:
...
47
votes
25answers
2k 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 ...
46
votes
46answers
4k views
Suggestions on starting a child programming [closed]
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 ...
45
votes
13answers
7k views
UI Terminology: Logon vs Login
I am crafting an application and cannot decide whether to use the terms Login/out or Logon/off. Is there a more correct option between these two? Should I use something else entirely (like "Sign ...
44
votes
14answers
32k views
How to inherit constructors?
Imagine a base class with many constructors and a virtual method
public class Foo
{
...
public Foo() {...}
public Foo(int i) {...}
...
public virtual void SomethingElse() {...}
...
...
41
votes
7answers
11k views
What is Turing Complete?
What does the expression Turing Complete means? Can you give a simple explanation, without going into too much theoretical details?
39
votes
74answers
7k views
What's your favourite programming language, and its killer feature?
Each language I've used has had its pros and cons, but some features have really shone through as being indispensible, shining examples of how to design a programming language to make programmers ...
38
votes
4answers
21k views
Android : changing Locale within the app itself
My users can change the Locale within the app (they may want to keep their phone settings in English but read the content of my app in French, Dutch or any other language ...)
Why is this working ...
37
votes
30answers
3k 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 ...
35
votes
7answers
2k views
Why is writing a compiler in a functional language easier?
I've been thinking of this question very long, but really couldn't find the answer on Google as well a similar question on Stackoverflow. If there is a duplicate, I'm sorry for that.
A lot of people ...
35
votes
19answers
4k views
Best language for safety-critical software
If you were going to write some safety-critical software, what language would you prefer and why?
35
votes
52answers
6k views
Is there a human readable programming language? [closed]
I mean, is there a coded language with human style coding?
For example:
Create an object called MyVar and initialize it to 10;
Take MyVar and call MyMethod() with parameters. . .
I know it's not so ...
33
votes
28answers
3k 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 ...
29
votes
8answers
1k views
What are the architectural limitations of PHP? [closed]
I was reading the article "PHP Sucks, But It Doesn't Matter" by Jeff Atwood.
In the comments he writes:
That said, I absolutely think it's important for PHP devs to be aware of the architectural ...
28
votes
26answers
2k views
Why are many languages case sensitive?
Why are many languages case sensitive?
Is it simply a matter of inheritance? C++ is case-sensitive because C is, Java is case-sensitive because C++ is, etc.? Or is there a more pragmatic reason ...
28
votes
5answers
16k views
Multiple languages in an ASP.NET MVC application?
What is the best way to support multiple languages for the interface in an ASP.NET MVC application. I've seen people use resource files for other applications. Is this still the best way?
26
votes
8answers
3k views
Detecting programming language from a snippet
What would be the best way to detect what programming language is used in a snippet of code?
25
votes
3answers
2k views
Siri programming language
Supposedly, the engine behind the iPhone's new Siri feature has been under development for several years (spawned from the CALO project). It is said that they even developed a new programming language ...
25
votes
5answers
599 views
Difference between <> and != in PHP
Simple question, in PHP, is there anything difference between != and <> operators?
In the manual is states:
$a != $b Not equal TRUE if $a is not equal to $b.
$a <> $b Not equal ...
25
votes
9answers
608 views
A C# developers guide to Objective C?
I'm primarily a C# developer and I've been tasked with "porting" functionality from a few apps to an iPhone app.
The functionality is simple enough, and a language is a language, so I thought, ...
25
votes
27answers
2k views
What are the things C# got right?
As a response to this thread:
http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right
What are the things C# got right?
Please don't list the things C# did wrong, just right.
22
votes
24answers
1k 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?
22
votes
16answers
2k 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 - ...
21
votes
5answers
1k views
What are the rules for Javascript's automatic semicolon insertion?
Well, first I should probably ask if this is browser dependent.
I've read that if an invalid token is found, but the section of code is valid until that invalid token, a semicolon is inserted before ...
21
votes
3answers
576 views
Measure the pronounceability of a word?
I'm tinkering with a domain name finder and want to favour those words which are easy to pronounce.
Example: nameoic.com (bad) versus namelet.com (good).
Was thinking something to do with soundex ...
21
votes
0answers
2k views
Do you use another language instead of English? [closed]
Possible Duplicate:
Should identifiers and comments be always in English or in the native language of the application and developers
For people who are not native English speakers, which ...
21
votes
16answers
10k views
How to write a programming language?
Hi I would like to know which books to recommend writing a programming language.
Someone has already developed a programming language ?
Which were the biggest problems or issues unresolved ?
...
20
votes
16answers
2k views
Why are most of the biggest open source projects in C?
I'm having a debate with a friend and we're wondering why so many open source projects have decided to go with C instead of C++. Projects such as Apache, GTK, Gnome and more opted for C, but why not ...
20
votes
19answers
7k views
Best way to learn how to use FPGAs
In next weeks probably I will have some little FPGA to play with. I have a programmer background (C, C++, Java mostly) and some (very) limited experience in electronics.
What are the best tools to ...
19
votes
7answers
686 views
How does the C++ runtime system know when objects go out of scope
I was wondering how the C++ runtime system detects when an object goes out of scope so that
it calls the destructor accordingly to free up the occupied memory.
Thanks.
19
votes
10answers
9k views
How do I set the UI language in vim?
I saw this on reddit, and it reminded me of one of my vim gripes: It shows the UI in German. Damn you, vim! I want English, but since my OS is set up in German (the standard at our office), I guess ...
19
votes
22answers
2k views
What's wrong with C#?
Asking the same of Java yielded some very interesting responses, so I thought it would be only fair to ask the same thing of C#, probably Java's closest rival.
I actually like this sort of question ...
18
votes
18answers
929 views
What is the best euphemism for a non-developer?
I'm writing a description for a piece of software that targets the user who is "not technically minded", i.e. a person who uses "browser/office/email" and has a low tolerance for anything technical, ...
18
votes
3answers
2k views
What can you do in 30 lines of Go? Can you create a useful, complete program that demonstrates its features?
So, the big buzz in the last few days is Go, the new language from Google. Assuming you're all obsessive programming language geeks like me, you've all downloaded it, built it, and run your "Hello, ...
18
votes
16answers
1k views
Does “English” hinder improvement of your programming skills?
English is not my first language.
Sometimes I can not understand some technical papers or articles because of the language of the author, not because the topic is complex.
Does this mean that I ...
17
votes
4answers
1k views
How do you normalize a finite state machine?
How do you find the minimal Deterministic FSM?
Is there a way to normalize non-deterministic FSMs?
Is there a linear time bound algorithm to find the minimal FSM for a given machine?
Is there a ...
17
votes
9answers
50k views
How to add an extra language input to Android? [closed]
Is it possible to add extra languages to Android? My current Android phone only supports English and Chinese language input. I would like to have Dutch also, as I can use it for word completion. The ...
16
votes
2answers
390 views
What is the list of supported languages/locales on Android?
I'd like to know what to name my folder for different languages. Where can I find the supported list of languages on Android?
16
votes
34answers
1k views
What bad habits did you learn from your first language?
I suspect that many of us didn't initially learn programming from a class, but picked it up on our own. What are some bad habits you picked up from your first language?
16
votes
13answers
2k views
“Projects” for learning a new language
When you are learning a new programming language, what are some good projects that can be done across a spectrum of languages?
I'm familiar with programming puzzles and read the other related ...
15
votes
53answers
6k views
What is the most unreadable programming language?
Excluding Whitespace, BrainF*ck (and all those other languages not designed for practical usage), and assembly, what do you think is the most difficult real programming language to write readable code ...
14
votes
11answers
406 views
Implementing internationalization (language strings) in a PHP application
I want to build a CMS that can handle fetching locale strings to support internationalization. I plan on storing the strings in a database, and then placing a key/value cache like memcache in between ...
14
votes
7answers
2k views
Missing the 'with' keyword in C#
I was looking at the online help for the Infragistics control library today and saw some VB code that used the With keyword to set multiple properties on a tab control. It's been nearly 10 years ...