6
votes
11answers
187 views
List of Top Repositories by Programming Language
One of the main reasons I like Perl is CPAN (Comprehensive Perl Archive Network) and the ease of finding, installing, and testing of packages it provides that solve a problem I was …
-6
votes
7answers
118 views
Is There Any Way To Create a Interpreted Language? [closed]
Is there any way to create a interpreted language(Without yacc or parsers)?
5
votes
14answers
368 views
How can there be only one way to do it (Perl vs Python) [closed]
I am quite used to Perl and I love Perl. And I have almost no exposure to Python.
I have just read another thread that sort of compares Perl with Python and one recurring theme se …
2
votes
7answers
177 views
Mathematical Programming Languages
Given my previous questions about the the usage of AMPL.
Are there any other programming/scripting languages that are strictly meant for mathmatical processing?
For example: Ma …
32
votes
56answers
2k 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 …
41
votes
41answers
2k 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 t …
2
votes
6answers
49 views
why does size of any data type depend on the machine?
we know it depends on machine or compiler..but why and how?
1
vote
6answers
90 views
How does programming languages differ between different parts of the world?
I have always wondered how programming languages are different, if they are indeed different, to other parts of the world? How do people in parts of Asia/Europe/South America use p …
1
vote
9answers
229 views
What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals?
It goes without saying that using hard-coded, hex literal pointers is a disaster:
int *i = 0xDEADBEEF;
// god knows if that location is available
However, what exactly is the da …
14
votes
12answers
548 views
what fields are the c and c++ jobs in now days?
I been programming in c++ for over 10 years now, it is my favorite programming language. I'm just a bit concerned that it's popularity is fading away, atleast in windows applicati …
2
votes
10answers
112 views
Is there a programming language where the static data type is optional?
I'm thinking something where the following two are equivalent:
int [] array = { 1,2,3,4 }
foreach( int i in array ) {
print i
}
array = { 1,2,3,4 }
foreach( i in array …
1
vote
5answers
207 views
What Style of Programming is this Called?
I don't have good name for this style of programming where the syntax is:
more succinct because of not having to pass the context into a function or call the functions off of a con …
123
votes
118answers
13k views
What are five things you hate about your favorite language?
There's been a cluster of Perl-hate on Stackoverflow lately, so I thought I'd bring my "Five things you hate about your favorite language" question to StackOverflow. Take your favo …
201
votes
64answers
11k views
Defend PHP; convince me it isn’t horrible
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. …
13
votes
18answers
1k views
C++ programmer looking to broaden perspective
I've been programming C++ for about 5 years now, and I now realize the value of knowing how to think "differently."
This question is for C++ programmers who tried out other progra …
