I prefer the term engineer of some sort (software). After all coding is just coding, programming is just coding but engineering implies something else. Its design, problem solving, creation of systems and architecture that all work together to create a whole. Of course theres elements of design to both coding/scripting/programming.
Its easy to feel superior but ultimately you should use the best tool for the job.
Coder or Programmer
Interested in Fractals? Check out my App, Fractal Scout, free on the Google Play store.
DO you really think someone programming a video game with C has to deal with the same problems as someone writing a game with JavaScript? Would a person who's done one, but never the other have no problem moving?
Yes, they are the same.
They need to solve precisely the same problems. Only minor details will differ due to different constraints.
There is a main loop. In that loop one polls for events, updates logic and renders. That's it.
There are no "javascript" or "C" programmers. A question would be better phrased as: could an embedded developer move into web front-end development. And vice versa. Languages don't matter.
[quote name='Milcho' timestamp='1297634099' post='4773827']
DO you really think someone programming a video game with C has to deal with the same problems as someone writing a game with JavaScript? Would a person who's done one, but never the other have no problem moving?
Yes, they are the same.
They need to solve precisely the same problems. Only minor details will differ due to different constraints.
There is a main loop. In that loop one polls for events, updates logic and renders. That's it.
There are no "javascript" or "C" programmers. A question would be better phrased as: could an embedded developer move into web front-end development. And vice versa. Languages don't matter.
[/quote]
Why not abstract one step further? Any language is the same, because they all need to solve the same problems - how to achieve what the person writing with them wants to. Ok, no sarcasm, but what you call "minor details" is actually worth noting.
AGAIN, I will ask you to tell me where you gain experience with multi-threading in php or javascript. That minor difference, as you say, means that you have to know different things. And it's not so minor either.
You're arguing semantics. You chose to say 'minor details' whereas I say 'different skillset'. The fact is there are things you can do with one and not with the other. So, whatever you call them, if you have experience with one, and someone assumes it automatically applies to the other, there's a chance they're wrong.
That's it. I'm done. No more arguing. Go ahead, post, get your 'last word' in. I don't care.
- There aren't officially accepted differences in the definitions of "coder" and "programmer", any perceived differences are personal opinion. Just because you think they should apply to certain areas doesn't mean others do as well, and the number of job adverts using them "incorrectly" (according to your view) shows this. Personally I'd agree with the idea that "programmer" is the more professional term, whilst "coder" comes across as slang; this is just my opinion though.
- Languages such as php and JavaScript could be compiled like C, the fact that they aren't has little bearing on their capabilities and expressiveness. Some of the more modern JavaScript variations (such as Google's V8) are JIT compiled, putting them in the same class as Java; do you consider Java to be a scripting language or a coding language? Languages such as C++ or C# could also be interpretted; indeed, C# (whilst very much a "proper" programming language) is also used as a scripting language.
- Scripting languages are sometimes used to do things just as complicated or even more complex than any other language, and are used by very large organisations for very large and complicated projects. In my opinion your apparent need to treat them as different to programming languages is probably incorrect.
So, in my opinion you're drawing distinctions where they should not really be drawn.
- Jason Astle-Adams
Why not abstract one step further? Any language is the same, because they all need to solve the same problems - how to achieve what the person writing with them wants to. Ok, no sarcasm, but what you call "minor details" is actually worth noting.
AGAIN, I will ask you to tell me where you gain experience with multi-threading in php or javascript. That minor difference, as you say, means that you have to know different things. And it's not so minor either.
I don't believe C or C++ has access to threads as a default language feature. It uses different APIs to implement threads iirc.
That's it. I'm done. No more arguing. Go ahead, post, get your 'last word' in. I don't care.
Take a step back and cool it off a bit -- it seems like you're taking this a little personally -- you've asked for people's opinions, and they've been giving them. I don't see anything insulting (perhaps the one sleight from [color=#2B3730]jtagge75, which to me did not seem meant to offend) or inflammatory, but simply responses to your question.
- Jason Astle-Adams
I think that a decade or two ago, saying that you write code sounded cooler than saying you write computer programs.
Is it that bad to say that I think requirements are different for different types of work? DO you really think someone programming a video game with C has to deal with the same problems as someone writing a game with JavaScript? Would a person who's done one, but never the other have no problem moving?
It depends on the complexity of the game and the programmer. Going from a C OpenGL game to Javascript and WebGL is pretty easy if one takes the time to learn the API differences. Modern Javascript has the same complexity as any other programming language.
Regarding "programmer" vs "coder" I've never seen a distinction between the two. They mean the same thing to me when I read them.
My personal take:
Someone who wants a "coder" thinks that he has the harder job, being the designer.
Someone who wants a "coder" thinks that he has the harder job, being the designer.
------------------------------Great Little War Game
First off, I disagree that JavaScript and php do the same things as programming languages, and are only different on the outside.
They're actually classified separately for one, as 'scripting languages'. There's reasons for that, relating to the fact that they run inside another program.
And what do you mean by 'any decent programmer'? I went out of my way to avoid calling people names, and you go and to it right off the bat.
I deal with raw pointers all the time. I use malloc for dynamic memory allocation. So, what you just called me not a decent programmer. Aaaand, that's why maybe I shouldn't have started this post. Why the names?
Writing a program that operates in it's own separate process is NOT the same as writing one that runs inside another program. You have a lot more options with C++ to take control of different hardware devices, create threads, read data from places other than the disk, and control a lot about your environment (i.e. the operating system). The scripting languages just don't need that, nor do they have control over these features. If you've ever dealt with multithreading, and the problems associated with that, you'd understand what I mean by different. And knowing how to deal with that is a different skillset, not required for scripting languages.
Yeah, the arguments you're presenting are what I've heard from a lot of people. I disagree, and I've tried to explain myself.
None of the arguments you have are about the programming language , but about it's API.
C++ doesn't allow you to take control of hardware, the API the OS exposes do. C++ doesn't allow for you to create threads, the OS does etc.
The way to "write" whatever you want to do is similar in both, you may not have the same options but for the options you have it's definately the same "work" and "skillset".
Also scripting languages are a sub category of programming languages, the very link you gave says that in the first sentence, so there's definately no arguing about wether they are or not programming languages.
Note that, (since you assumed the previous poster didn't deal with multitheading) , i have delt with that and still do as i've got out place to switch over from web apps to client side applications in WPF, and coming from a previous rewrite in javascript+web services i can guarantee to you it IS the same skillset, actually i'd guess you haven't worked with javascript (as in , you may have and taken snippets here & there, but you haven't tried to understand it as a programming language).
Also, to be pedantic, javascript doesn't run "in your browser", some implementations do , there are serverside or application versions of javascript , like JScript .net , which will have the exact same capabilities as any .net language, like threading notably.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement