Tagged Questions

A programming language is an artificial language designed to express computations that can be performed by a machine, particularly a computer.

learn more… | top users | synonyms

532
votes
43answers
41k views

What makes PHP a good language? [closed]

I made a tongue-in-cheek comment in another question thread calling PHP a terrible language and it got down-voted like crazy. Apparently there are lots of people here who love PHP. So I'm genuinely ...
349
votes
30answers
22k views

What should every JavaScript programmer know? [closed]

Is there a set of things that every JavaScript programmer should know to be able to say "I know JavaScript"?
195
votes
51answers
13k views

Language Books/Tutorials for popular languages

It wasn't that long ago that I was a beginning coder, trying to find good books/tutorials on languages I wanted to learn. Even still, there are times I need to pick up a language relatively quickly ...
172
votes
24answers
25k views

What are important languages to learn to understand different approaches and concepts? [closed]

When all you have is a pair of bolt cutters and a bottle of vodka, everything looks like the lock on the door of Wolf Blitzer's boathouse. (Replace that with a hammer and a nail if you don't read ...
127
votes
80answers
61k views

File I/O in Every Programming Language [closed]

This has to be a common question that all programmers have from time to time. How do I read a line from a text file? Then the next question is always how do i write it back. Of course most of you ...
109
votes
10answers
29k views

Best explanation for Languages without Null

Every so often when programmers are bitching about null errors/exceptions someone asks what we do without null. I myself have some basic idea of the coolness of option types but I don't have the ...
100
votes
86answers
6k views

How do the young start programming nowadays? [closed]

Back in the late 80s/early 90s I learned GWBasic on MS-DOS. Then Turbo Pascal. Then Turbo C/Asm. Later I stumbled into PHP and finally made a career out of Perl programming. I'm curious how actual ...
90
votes
95answers
11k views

Which programming languages have helped you to understand programming better? [closed]

Which programming languages not only make you more proficient in the particular language your are learning, but also have a direct impact on the way you think and understand programming in general; ...
89
votes
33answers
16k views

Why do Programmers Love/Hate Objective-C? [closed]

So I have noticed that there is a lot of animosity towards Objective-C among programmers. What's your take? Is it a vendor lock-in thing against Apple? General antipathy towards Apple? The syntax? ...
85
votes
42answers
4k views

Why no love for SQL?

I've heard a lot lately that SQL is a terrible language, and it seems that every framework under the sun comes pre-packaged with a database abstraction layer. In my experience though, SQL is often ...
79
votes
45answers
4k views

Why can't there be an “ultimate” programming language?

There is an uncountable sum of programming languages out there. They obviously all have their pro's and con's - but why can't there be one to "beat them all"? The main part of a programming language ...
72
votes
45answers
5k views

What are the things Java got wrong?

I read a lot of blogs and see people all the time talking about bad things in the java programming language; a lot of them are about annotations and generics that were added to the language in 1.5 ...
71
votes
7answers
26k views

Function overloading by return type?

Why don't more mainstream statically typed languages support function/method overloading by return type? I can't think of any that do. It seems no less useful or reasonable than supporting overload ...
71
votes
81answers
11k views

What is the easiest language to start with? [closed]

What is the language with the lowest barriers to entry, simplest syntax, easiest setup. I'm aware that there's not a best language but I am sure that there will be one that's got a good score in all ...
67
votes
17answers
4k views

What language to learn after Haskell? [closed]

As my first programming language, I decided to learn Haskell. I'm an analytic philosophy major, and Haskell allowed me to quickly and correctly create programs of interest, for instance, transducers ...
66
votes
14answers
4k views

Why did you decide “against” using Erlang?

Have you actually "tried" (means programmed in, not just read an article on it) Erlang and decided against it for a project? If so, why? Also, if you have opted to go back to your old language, or to ...
66
votes
41answers
8k views

Why isn't LISP more widely used?

I've heard a lot of people espouse the capabilities of LISP and its omnipotent macros. If LISP is such a great language, why isn't it being adopted more? What problems is LISP facing that is holding ...
63
votes
134answers
8k views

Did you ever switch from one programming language to another? [closed]

The stereotypical programmer is very keen on writing software in one particular programming language and is very fanatic about defending their programming language in any way they can, without being ...
63
votes
8answers
10k views

What are the primary differences between Haskell and F#?

I've searched on the Internet for comparisons between F# and Haskell but haven't found anything really definitive. What are the primary differences and why would I want to choose one over the other?
60
votes
66answers
5k views

Which programming language is manageable by an 11 year old kid?

Possible Duplicates: What is the easiest language to start with? What are some recommended programming resources for pre-teens? My son is 11 years old and he would like to learn a ...
59
votes
24answers
5k views

What kind of knowledge do you need to invent a new programming language? [closed]

I just finished reading "Coders at works", a brilliant book by Peter Seibel with 15 interviews of some of the most interesting computer programmers alive today. Well, many of the interviewees have ...
58
votes
9answers
3k views

How do functional programming languages work?

I was just reading this excellent post, and got some better understanding of what exactly object oriented programming is, how Java implements it in one extreme manner, and how functional programming ...
56
votes
78answers
10k views

What's your next programming language? And why?

In the book, The Pragmatic Programmer the authors suggest that you learn a new language every year. With so many new languages these days, what will be your next programming language and why? ...
55
votes
28answers
10k views

What ever happened to APL?

When I was at University 30 years ago, I used a programming language called APL. I believe the acronym stood for "A Programming Language", This language was interpretive and was especially useful ...
53
votes
28answers
11k views

What's the advantage of using C over C++ or is there one? [closed]

Since C++ seems to have all of C's features, why learn C over C++?
53
votes
11answers
8k views

What makes lisp macros so special

Reading Paul Graham's essays on programming languages one would think that Lisp macros are the only way to go. As a busy developer working on other platforms I have not had the privledge of using lisp ...
52
votes
2answers
2k views

What are some compelling use cases for dependent method types?

Dependent method types, which used to be an experimental feature before, has now been enabled by default in the trunk, and apparently this seems to have created some excitement in the Scala community. ...
52
votes
29answers
4k views

Why aren't programs written in Assembly more often?

It seems to be a mainstream opinion that assembly programming takes longer and is more difficult to program in than a higher level language such as C. Therefore it seems to be recommend or assumed ...
52
votes
39answers
3k views

What is a good example to show to a non-programmer to explain what programming “looks like”?

A friend of mine asked me the other day if I'm just looking at lists of numbers when I'm programming, or how it works. I tried to explain that it's generally more like math formulae, with the odd ...
50
votes
17answers
2k views

At what point does a config file become a programming language?

I have been mulling over config files and their relationship to code for a while now and depending on the day and direction of the wind my opinions seem to change. More and more though I keep coming ...
50
votes
13answers
5k views

What is meant by “thread-safe” code?

Does it mean that two threads can't change the undelying data simultaneously? or does it mean that the given code component will run with unpredictable results when more than one thread are running ...
49
votes
26answers
9k views

Where do you use Smalltalk?

In what solutions are you employing Smalltalk? What are the pros&cons of Smalltalk for those solutions?
47
votes
15answers
3k views

Is it faster to count down than it is to count up?

Our computer science teacher once said that for some reason it is more efficient to count down that count up. For example if you need to use a FOR loop and the loop index is not used somewhere (like ...
46
votes
31answers
6k views

Simple but powerful programming language for a hobby software project

Long time back, I used to do some home projects in Basic. It was fun and I could get things done without reading tons of documentation (or whatever documentation was available at that time). I guess ...
45
votes
16answers
10k views

What is the best functional language for scientific programming

I am coming from C/C++, Python background and I am looking to learn a functional language that (Hopefully) can do Serious Matrix Computation expressive real world modelling database integration ...
45
votes
32answers
3k views

How do you manage to write high quality code very quickly?

Can you give some advice on how to maintain the code quality at a high level when you have to finish as soon as possible. Do you know some special techniques? Is the programming language a critical ...
44
votes
29answers
4k views

Why Do You Use Delphi?

Nick Bradbury (the author of HomeSite, TopStyle and FeedDemon) just posted a fascinating explanation of why he uses Delphi: http://nick.typepad.com/blog/2009/07/why-i-use-delphi.html I'd like to ...
44
votes
100answers
23k views

What is the worst programming language you ever worked with? [closed]

If you have an interesting story to share, please post an answer, but do not abuse this question for bashing a language. We are programmers, and our primary tool is the programming ...
44
votes
26answers
9k views

Is Scala the next big thing? [closed]

I've been learning Scala recently, and it seems like a very very promising general purpose programming language. It has all the good functional programming features, terse syntax, it runs on JVM and ...
43
votes
43answers
4k views

Most interesting non-mainstream language? [closed]

I'm interested in compilers, interpreters and languages. What is the most interesting, but forgotten or unknown, language you know about? And more importantly, why? I'm interested both in compiled, ...
42
votes
13answers
16k views

Which game scripting language is better to use: Lua or Python?

I have to program a game engine starting very soon for a 3rd year Games technology project. As a part of our project we have to integrate a scripting language for scripting our NPCs and other elements ...
41
votes
7answers
3k views
41
votes
36answers
4k views

When is a language considered a scripting language?

What makes a language a scripting language? I've heard some people say "when it gets interpreted instead of compiled". That would make PHP (for example) a scripting language. Is that the only ...
41
votes
50answers
6k views

Why functional languages?

I see a lot of talk on here about functional languages and stuff. Why would you use one over a "traditional" language? What do they do better? What are they worse at? What's the ideal functional ...
40
votes
21answers
6k views

What language has the longest “Hello world” program?

In most scripting languages, a "Hello world!" application is very short: print "Hello world" In C++, it is a little more complicated, requiring at least 46 non-whitespace characters: #include ...
39
votes
14answers
2k views

Is the “if” statement considered a method?

Interesting discussion came up among my peers as to whether or not the "if" statement is considered a method? Although "if" is appended with the word statement it still behaves similar to a simple ...
39
votes
9answers
2k views

Are FP and OO orthogonal?

I have heard this time and again, and I am trying to understand and validate the idea that FP and OO are orthogonal. First of all, what does it mean for 2 concepts to be orthogonal? FP encourages ...
39
votes
46answers
3k views

Has anyone “learned how to program in 21 days?”

I'm not a fan of these learn how to program in X amount of days books. Some even boast, learn how to program in 24 hours. This is a joke and an insult to me as a software engineer who went through a ...
38
votes
6answers
6k views

When to choose R vs. SciPy?

What are some advantages and disadvantages to doing statistical analyses in SciPy vs. R? They seem to have been designed with opposite philosophies (plain old library vs. DSL). What are some rules ...
37
votes
13answers
10k views

Alternatives to Java for Android development?

I've started developing Android apps a couple of months ago, and have a few under my belt. While I can tolerate Java enough to keep developing, I was wondering what success the community has had ...

1 2 3 4 5 67