View Full Version : How many of you program an in what languages?
I am a computer programmer/ web developer. And I wanna see if we have any other programmers around here.
So here is a poll. :D
Tempest
04-06-2008, 12:16 AM
I'm very fluent in C, and somewhat fluent in C++ and Java. Javascript is somewhat iffy for me, but I can do a little bit in it.
Dodger
04-06-2008, 12:17 AM
I can do some very basic javascript, html, and BASIC,
but not much.
gizzalove
04-06-2008, 12:20 AM
I know some pretty hardcore HTML. But I'm going to take some classes to learn something else.
Tweek
04-06-2008, 12:22 AM
I know basic html and I used to know basic BASIC :fmita: but I forgot it.
abbey
04-06-2008, 12:23 AM
I can do a lot of HTML, a lot of Turing, the basics of Java, and I'm learning BASIC.
jewishjosh
04-06-2008, 12:50 AM
I used to know a fair bit of HTML and Javascript, which I extended into Java (gave up on it) and Flash Actionscript (better than Javascript now). I don't really use HTML much anymore but I suppose I could pick it up again.
Beefynick
04-06-2008, 1:37 AM
I can program in C++, Basic, Javascript, and HTML.
HappinessMan
04-06-2008, 1:52 AM
Finished 1 Sem of C++, kicking Visual Basic around right now. Signed up for Java for next year.
I think most poeple have learnt html from myspace. Am I correct in assuming this?
Quite a few people I know have actually learned all they know about HTML from MySpace, so yeah.
I'm fluent in Java, I know my way around JavaScript and HTML, I'm a bit of a beginner with CSS, and I've just started on Basic.
lostos
04-06-2008, 4:02 AM
I know C# and VB. I also know some Javascript. Actually, I started learning VB when I realized C# was better.
Matterialize
04-06-2008, 5:03 AM
Know a lot of CSS and HTML, but those are especially easy. So is Turing, I learned the basics of it in high school and I stole the compiler from the shared drive while I was there. I haven't made anything in awhile though.
Mr. Crow
04-06-2008, 8:01 AM
I know some HTML. I'm pretty good at C++ and QBASIC.
ToastmasterAlpha
04-06-2008, 10:57 AM
I have a fairly decent handle on HTML and TI-BASIC, but can't be arsed to really get into them. I'm taking Java in school next year, so hopefully I can get good at that.
Oofie
04-06-2008, 11:02 AM
I'm ok with CSS and HTML. They're easy though.
BurgerKueen
04-06-2008, 12:42 PM
Well CSS and HTML, even though I don't spend too much time anymore so I've sort of forgot them. But like others said, those aren't really difficult to get the hang of.
Neither HTML nor CSS are languages. There are also about 492965726925 languages missing from that list.
Seriously, come on now.
USER WAS PUT IN TIMEOUT FOR THIS POST. (http://forums.explosm.net/eventlog.php)
Reason: Being a moron.
Neither HTML nor CSS are languages. There are also about 492965726925 languages missing from that list.
Seriously, come on now.
Both of them are languages, and the max number of items is 10 so I picked the biggest players, I seriously doubt anyone here codes in ADA or Brainfuck. They aren't programming languages, but they are languages. Considering HTML = "HyperText Markup Language".
Seriously, get a clue.
woweokaywtf
04-06-2008, 3:29 PM
Atm i only know C, Java, HTML, CSS, Javascript <:
USER WAS PUT IN TIMEOUT FOR THIS POST. (http://forums.explosm.net/eventlog.php)
Reason: AOLism.
Pretty decent on C++, started HTML yesterday-can do a basic website but I want to get better and to do CSS as well and do a really good website.
Axidos
04-08-2008, 2:37 AM
I'm currently learning C++ in preparation for college next year. I'll be studying games programming with Qantm (http://www.qantm.com.au/), and it's pretty intense, so the more I can learn now, the better.
Other than that: HTML, CSS, VB, PHP and MySQL.
Kwanza
04-08-2008, 1:08 PM
Everything there except Turing and the old stuff. There's a few that aren't on there. PHP, Lua, PAWN, and ASP, if that counts.
Hunnter
04-08-2008, 6:40 PM
I know fairly well how to do:
HTML
CSS
Javascript
YaBASIC
BASIC
ASP
VBscript
VB / VBA
DOS
DarkBASIC
Autohotkey script
Java
SQL
Know a little of (and learning more of):
PHP
C / C++
Perl
Python
Actionscript (meant to learn this years back, never did get around to it sadly)
Just now i am coding a game, using a combination of DarkBASIC and some C.
Doing it this way for now because i am doing it quickly, just to get a general idea of how fast things will run before i dive into the deep end of coding with graphics commands in low-level ( something i really need to learn up on! )
I know all there but python, and I know a few others.
littleteapot
04-11-2008, 3:50 AM
Python is really easy, and unlike VB, is actually good :D
I've seen many polls like this before, and none of them cover all the main ones...
C/C++
Assembly (ASM) <-- why the fuck did you miss this cornerstone? I know two architectures, and tried on two others, and if it wasn't for ASM, you wouldn't have been able to make this poll in the first place.
BASIC <-- there are many dialects; why did you just put "VB"? I prefer QuickBASIC any day of the week.
Java
Perl <-- a lot of websites use this
PHP <-- a lot of websites use this, especially this site
Python
Pascal <-- this could go under "Old Shit" if needed, but is pretty major
LISP/Guile/Scheme <-- this bastard seems to be rearing its ugly head all over the place
I probably wouldn't add JavaScript unless there's a gap to fill. Same thing with *.bat/*.sh.
Fortunately, the "Old Shit" category gives this some redeeming value.
These are not programming languages, just markup languages:
HTML
CSS
What the hell do you mean by "Turing", anyway?
And now I will post a Fibonacci sequence program in 80386/x86-32/IA-32 ASM, so you can become familiar with it (it uses libc, but it saves me having to do a byte-to-decimal converter):
bits 32
extern printf
global main
main:
PUSH str_aa
MOV eax,1
MOV edx,0
MOV ecx,30
lp:
PUSH eax
CALL printf
ADD eax,edx
POP edx
LOOP lp
POP eax
XOR eax,eax
RET
str_aa: DB "%i\n"
Hunnter
04-11-2008, 5:29 PM
Actually, surprised i never brought up the HTML and CSS not being programming languages thing. (same with scripted languages as well)
That is also another one i missed out in the list to learn, more assembly, i really need to learn more assembly!
I have a book on Assembly somewhere around here that needs some readin'!
I'll be back in several months and maybe i shall understand your code :lol:
Nibbles
04-14-2008, 9:03 PM
I learned HTML when I was like 10. My older brother was learning it and I wanted to be just like him. Then I moved on to (May not all be in order):
-JavaScript
-CSS
-Flash Action Script
-PHP
-ASP.NET
-C++
-Java
-Forth (Old outdated piece of crap, I got interested in it because it performed operations is stacks, rather than the traditional linear format)
I've only got a basic knowledge of most of those things other than PHP, C, and Java. I only know Java because that's all my school taught, and PHP/HTML etc. was pretty easy, and I use it on a regular basis for web design and such. Lastly, I'm the programmer for my school's robotics team, and our robot is programmed in C.
Sarge51
04-15-2008, 12:50 AM
I retty much only know HTML at the moment, and that's really only for site design. I've not made any efforts to learn any other computer language. I'm not as geeky as I thought.
Bernardo
04-18-2008, 10:20 AM
I know C well, C++ kinda, java poorly, 8086 assembly reasonably, something of flash actionscript (made a plataform game) and haskell (ack).
miimii
04-22-2008, 6:10 AM
Where's Perl on the list?
vBulletin® v3.6.8, Copyright ©2000-2009, Jelsoft Enterprises Ltd.