|
-
Jan 6th, 2008, 12:37 AM
#1
Thread Starter
Frenzied Member
The fastest growing programming language
My teacher thinks it's Java It's even a test question on the midterm. A true and false question, to be exact. I feel bad about having to lie about it just to get the question right..
-
Jan 6th, 2008, 12:54 AM
#2
Re: The fastest growing programming language
Your teacher needs to be put down.
-
Jan 6th, 2008, 04:27 AM
#3
Re: The fastest growing programming language
Like, omg, open source is so awesome. Microsoft is uh... evil! They're a large faceless corporation that won't release their source code, like hello! Linux? Linux and Java are going to take over the world.
Say that and you're guaranteed straight As and Bs.
-
Jan 6th, 2008, 07:40 AM
#4
Fanatic Member
Re: The fastest growing programming language
I would say its c# since its the newest so its feature set still is growing, then again i no nothing about anything and tend to post answers to questions that i do not even understand!
Languages: Visual Basic 05/08, C# 08
IDE: Express Editions
Framework: 2.0, 3.0, 3.5
Lesson 5: Don't take domestic advice from perpetual singles. - Mendhak
-
Jan 6th, 2008, 08:11 AM
#5
Re: The fastest growing programming language
When things are growing too fast on my bathtub, I just use AJAX.
-
Jan 6th, 2008, 03:28 PM
#6
Re: The fastest growing programming language
 Originally Posted by mendhak
Like, omg, open source is so awesome. Microsoft is uh... evil! They're a large faceless corporation that won't release their source code, like hello! Linux? Linux and Java are going to take over the world.
Say that and you're guaranteed straight As and Bs.
Bill says thanks for lending him your lawnmower.
-
Jan 6th, 2008, 03:31 PM
#7
Thread Starter
Frenzied Member
Re: The fastest growing programming language
What do you guys think the fastest growing programming language is?
-
Jan 6th, 2008, 03:49 PM
#8
Re: The fastest growing programming language
The one that all the jerks in web design happen to be using that week.
On a related note: Chlamydia is the fastest growing STD in the world.
(Oh, and yes I realise that "web development" and "programming language" are somewhat of an amusing combination).
-
Jan 7th, 2008, 12:34 AM
#9
Re: The fastest growing programming language
-
Jan 7th, 2008, 09:56 AM
#10
Re: The fastest growing programming language
"fastest growing" is usually an inverse measure of current size - i.e. a bad thing
The fastest growing languages are things like Lua and Z++ because they have more than doubled their total user base in the last year (to nearly 3 developers each :-) )
-
Jan 7th, 2008, 11:04 AM
#11
Fanatic Member
Re: The fastest growing programming language
 Originally Posted by penagate
Ruby
Haven't you heard?
Its funny i was reading this post and this article.
Using VB6 or VB.net 2008 with .net 3.5
"Life... death... either way I'll be confined to a small cubicle!" - Hermes Conrad
-
Jan 7th, 2008, 11:15 AM
#12
Re: The fastest growing programming language
C#
It's fast not to difficult to learn for VB programmers and you can do nearly everything with it.
I want to learn, but don't have the time for it nor do I have the idea where to start...
Delete it. They just clutter threads anyway.
-
Jan 7th, 2008, 01:27 PM
#13
Re: The fastest growing programming language
 Originally Posted by TheBigB
C#
It's fast not to difficult to learn for VB programmers and you can do nearly everything with it.
I want to learn, but don't have the time for it nor do I have the idea where to start... 
Buy Brad's book
-
Jan 7th, 2008, 01:32 PM
#14
Re: The fastest growing programming language
 Originally Posted by space_monkey
Haha, yes. I often feel that way.
-
Jan 7th, 2008, 02:49 PM
#15
Re: The fastest growing programming language
 Originally Posted by MartinLiss
Thanks,
I might actually do that
Delete it. They just clutter threads anyway.
-
Jan 7th, 2008, 04:12 PM
#16
Re: The fastest growing programming language
DNA is the fastest growing programming language.
This is especially true for the DNA of tall people.
-
Jan 7th, 2008, 05:00 PM
#17
Fanatic Member
Re: The fastest growing programming language
 Originally Posted by Tom Sawyer
DNA is the fastest growing programming language.
This is especially true for the DNA of tall people.
Hey at 6'6'' I'm ahead of the game for once.
Using VB6 or VB.net 2008 with .net 3.5
"Life... death... either way I'll be confined to a small cubicle!" - Hermes Conrad
-
Jan 7th, 2008, 11:26 PM
#18
Hyperactive Member
Re: The fastest growing programming language
Rate my response if I helped
Go Hard Or Go Home
-
Jan 8th, 2008, 03:06 AM
#19
Hyperactive Member
Re: The fastest growing programming language
Programming languages can't grow, they can only get upgraded.
-
Jan 8th, 2008, 04:10 AM
#20
KING BODWAD XXI
Re: The fastest growing programming language
Damn I am 5ft 3 and well behind
-
Jan 8th, 2008, 08:03 AM
#21
Hyperactive Member
Re: The fastest growing programming language
Don't ever listen to anything a programming class teacher tells you.
They believe the following:
1) Comments should be placed for every single line of code explaining what the line of code does.
2) Doubles or 64-bit floating point numbers should always be used for everything.
3) Escaping a character with \ is bad. You should use an appropriate constant instead. (Like "rawr\n" is bad, instead they want: "rawr" << endl.)
4) Using an IDE is cheating.
5) Using tabs instead of spaces is blasphemy.
6) Java is teh cool language!
Now here is what I believe:
1) Comments should only explain what a line of code does when it is strange or uncommon. Comments should explain why you did something, not just what that something does.
2) 64-bit numbers should be avoided whenever you don't need them. They are slower (especially in a 32-bit environment) and take up more memory. That isn't to say you don't want to use them, just that they should be used when you need them.
3) The less strings I need to concat or send to something with <<, the better.
4) The use of an IDE allows you to be more productive and efficient, and it's what programmers use in the real world.
5) A tab is a single key stroke. You need multiple spaces to create a sufficient enough indentation.
6) Java is teh suck.
My monkey wearing the fedora points and laughs at you.
-
Jan 8th, 2008, 09:56 PM
#22
Re: The fastest growing programming language
 Originally Posted by TheBigB
C#
It's fast not to difficult to learn for VB programmers and you can do nearly everything with it.
I want to learn, but don't have the time for it nor do I have the idea where to start... 
The only things you can't do in C# that you can do in VB are those things that are considered questionable practice. The first thing I can think of is VB's With command... nice, sure, but perhaps not good coding practice, although I can admit to having used it a few times... I'm not sure about the Using command (not C#'s Imports equivalent, but VB's Using). I'm aware that it does automatic garbage collection at the end, but again, it's questionable. Is that really a good thing? Or should the GC be done in the code itself, not assumed as part of another command?
On the whole, in my experience, C# is a faster language, and is much more capable. Using some unsafe code that Wossy so kindly donated, along with his left kidney (he just doesn't know it yet), I was able to replicate a VB app with greatly enhanced functionality and the overall speed was still 80% faster.
-
Jan 8th, 2008, 10:28 PM
#23
I wonder how many charact
Re: The fastest growing programming language
Simply mark 'True' for Java as fastest growing programming language, but then scribble next to it (except every other programming language that has appeared since 1992).
-
Jan 8th, 2008, 11:37 PM
#24
Hyperactive Member
Re: The fastest growing programming language
 Originally Posted by timeshifter
The only things you can't do in C# that you can do in VB are those things that are considered questionable practice. The first thing I can think of is VB's With command... nice, sure, but perhaps not good coding practice, although I can admit to having used it a few times... I'm not sure about the Using command (not C#'s Imports equivalent, but VB's Using). I'm aware that it does automatic garbage collection at the end, but again, it's questionable. Is that really a good thing? Or should the GC be done in the code itself, not assumed as part of another command?
In my experience using the With statement greatly improves code readability and allows for easier code management. Aside from that, I don't see any reason to use it or not.
And garbage collection? The first thing I tell myself is: Nothing in VB works the way it's supposed to. (And I could name a few examples) I usually destroy ALL objects after the end of a routine, as I see it as safe.
-
Jan 8th, 2008, 11:40 PM
#25
Re: The fastest growing programming language
 Originally Posted by timeshifter
Using some unsafe code that Wossy so kindly donated, along with his left kidney (he just doesn't know it yet), I was able to replicate a VB app with greatly enhanced functionality and the overall speed was still 80% faster.
'Unsafe' makes me laugh. It hardly is.
-
Jan 9th, 2008, 03:01 AM
#26
KING BODWAD XXI
Re: The fastest growing programming language
lol the 'with' command makes code so much easier to read
Again I always try to set my objects to nothing at the end of a sub/function. It just comes naturally now
-
Jan 9th, 2008, 03:04 AM
#27
Re: The fastest growing programming language
I often press Ctrl+Spacebar when typing sente
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|