programming-languages

You are a web developer. How many languages (and related skills) do you know?

Hello guys, I am not sure if my question is appropriate here. If not, please close. I just wanted to know how many languages an average web developer in this site know? For me, I can do html, css, xml, javascript, php/mysql, ajax, photoshop, illustrator, flash, flex, Actionscript 3, wordpress. I can do medium level graphic design and...

What strongly typed languages should I consider for my next development language?

I'm currently assessing which strongly-typed server-side languages I could choose to learn next. I'm coming from a background of mainly php development (oop). I'm looking at strongly-typed languages as I consider this a major downside to php (and sometimes an upside). I know both C# and Java (JSP/Servlets) are an option, however I wante...

What is the Smalltalk equivalent of Java's static?

What is the Smalltalk equivalent of Java's static fields and methods? IOW, what do the Smalltalkers do when they need class level data and/or methods? ...

What are the key differences between OO in Smalltalk and Java?

What are the key differences between OO in Smalltalk and Java? Please note that I am a Java programmer trying to expand his horizons by exploring Smalltalk. Currently I know almost nothing about Smalltalk except that it's purer than Java. Therefore I'll prefer the answer that shows how various Java concepts map to corresponding Smallta...

brainstorming about speed on internet from the perspective of developer

for those of us who are developers, the main concern above all is speed, speed and speed. i have spend years developing a websites from those little ones to big stores, web applications and so on. but my main goal besides a lot of other things :) was speed, so what technologies currently available and what best practices should be used ...

Can one be master of multiple programming languages or not?

Is it possible to be an expert at multiple programming languages and platforms (e.g. C#/.NET, **Objective-C/Cocoa, Java/Spring...Hibernate) assuming you spend 5-10 years developing software with it. Or is it always going to lead to being good at one thing and mediocre at the rest? To put it in different words: To focus or not to focus...

learning objective-c is better for understanding computer architecture

than higher level languages such as Java C#... is this argument valid? I'm new to iPhone development and some people have told me this. ...

confused about printf() that contains prefix and postfix operators.

If int var=20 then how printf("%d %d %d", var--, ++var, --var); execution happens in C programming language. ...

Small desktop app, simple GUI, easy deployment: language / framework choices?

I have to build an application that converts one file format to another file format. So at the start of the program, it pops up a file picker dialog, where the user can select which file to convert, then it pops up a save file dialog where the user can select where to save the converted file. Requirements: No installation. Distributab...

Take care about precedence of * and ++ in C/C++, (and any keystroke when programming)

Somebody write this function void strToUpper(char *p) { while (*p) { *p = TOUPPER(*p); *p++; //<-- Line to pay attention } } I asked, why do you put the * before p++? answer: because "It's the same", I corrected the code and then stay angry for a while, because both really work the same... void strToUpper...

How could one implement C++ virtual functions in C

Possible Duplicate: Object oriented programming in C The C++ language provides virtual functions. Within the constraints of a pure C language implementation, how can a similar effect be achieved? ...

How to implement C++0x raw string literal?

How to define a working set of lexer and parser (exempli gratia: flex and bison) to support the C++0x styled raw string literals? As you may already know, new string literals in C++0x can be expressed in a very flexible way. R"<delim>...<delim>"; - in this code the <delim> can be pretty much everything and also no escape characters...

What's the best book to learn programming on Android?

Possible Duplicate: Can anyone recommend a good Beginner Android programming book? When I was in college about 20 years ago I used to program a lot (Basic, Pascal, COBOL, Fortran). I dabbled a little bit in VisualBASIC about five years go, but it was really a hack. Now, I really have a burning desire to write some applications...

Guidance on broadening horizons

Hi, Let me setup my question with some info. I'm not in college yet and strictly a hobby programmer. Probably a little more than 2 years ago I got started programming on mac. I started with very simplistic GUI examples with Cocoa and XCode. Long story short, I learned from the top down, first learning objective-c, then venturing into mo...

which scripting language in the url part use : and ? to request or get info from the server side?

familiar with the example below? eg: http://www.example001.com/browse:tags?word=red elaborate further using the : and ? and = :xxxx?xxxx=xxxx and suggestions on scripting language that can combine together with regular expressions and tag with @ or hash etc thanks ...

Is there any advantage for Java over C#

Hi all, This question may sound silly.. but my intention is to understand advantages of Java over all other programming languages ?? I guess c# is more or less similar to java.. also c# is derived from c++ which inturn is derived from C.. So learning which language is more easier or helpful in understanding concepts & developing ...

Is there any (old) programming language featuring an 'upfunc' function or keyword?

Some days ago I've heard from someone telling me that back in his days they were using an upfunc function/keyword (don't know what it is). I didn't ask him what it was and what it did, but I can't get this upfunc out of my head. Must be 20-25 years back, when he was programming. So I'm asking the programmers here: Is there any (older) ...

which programming languages support templates like C++?

which programming languages support templates like C++? ...

what higher-level language is most like c?

I've been learning C: it's a beautiful, well-thought-out language. However, it is so low-level that writing any sort of major project becomes tedious. What higher-level language has the most C-like syntax—but without all the clutter that you find in something like C++. Does one exist? ...

Object allocation inline on the stack....

What does that mean when it says 'object allocation inline on the stack'? Especially the 'inline' bit ...