Author

Topic: What programming language do you love? (Read 1846 times)

full member
Activity: 350
Merit: 104
June 13, 2014, 02:13:49 PM
#73
I mainly use Python, PHP/LAMP and Java. Python is my first choice if it is a suitable problem, PHP/LAMP I use for web applications, and Java for everything else. On Linux systems, I occasionally find myself coding in C or scripting in bash or perl.

The reason why many dislike coding. Need to learn more than a dozen to get things done.
sr. member
Activity: 350
Merit: 250
June 13, 2014, 11:23:18 AM
#72
I mainly use Python, PHP/LAMP and Java. Python is my first choice if it is a suitable problem, PHP/LAMP I use for web applications, and Java for everything else. On Linux systems, I occasionally find myself coding in C or scripting in bash or perl.
sr. member
Activity: 378
Merit: 250
June 13, 2014, 09:10:13 AM
#71
I know more than 5 programming languages, but personally I think that C++ is the best language to start learning programming.
sr. member
Activity: 294
Merit: 250
June 13, 2014, 08:41:15 AM
#70
PHP but I prefer plugin like joomla.
sr. member
Activity: 994
Merit: 441
June 13, 2014, 08:33:04 AM
#69
My main language which I used every day is PHP. I enjoy that because it was quite quick and easy to pick up, there is a lot of documentation and a lot of tutorials/examples, etc... on the internet for pretty much everything I need.

I've also used a bit of Java when I was at university and a bit of C#. I disliked Java immensely, though for some reason didn't mind C# that much.
full member
Activity: 168
Merit: 100
June 13, 2014, 07:54:59 AM
#68
C and all its family members is good enough for me.

Yes all languages have their pros and cons, if a language was just cons it would die out fast.


Edit **

Not sure why some people spend ages on joke languages like white space. I guess they are cool for thought experiments but nothing more.
sr. member
Activity: 364
Merit: 250
June 13, 2014, 07:52:47 AM
#67
I have fallen in love with ruby it's such a beautiful interface and I've only now just started to get into programming! Whats your favorite?
Python and Ruby. Both are high level, dynamically typed languages with modern features that can be used for multiple paradigms.
sr. member
Activity: 448
Merit: 250
June 13, 2014, 07:44:08 AM
#66
I've used a lot of great languages: Common Lisp, Haskell, and Smalltalk, and of course all of the standards C, C++, Java, C#. But I've come to the realization that I think Python is pretty much my favorite tool to solve problems.
legendary
Activity: 1582
Merit: 1196
Reputation first.
June 13, 2014, 07:13:48 AM
#65
I'm a developer, I love vb.net because I can program all that I want with facility and I can create beautiful things with few commands Smiley
legendary
Activity: 1386
Merit: 1000
English <-> Portuguese translations
June 13, 2014, 07:09:44 AM
#64
There are lot of great language features in Java, which is not in this but equally important for making Java, Best programming language of last two decades e.g.
- Java is Secure, security is not only embedded in language, but also provided by platform.
- Java Array is bounded rather than C array, which is unbounded.
- Java is Strongly typed language, which means more help from compiler and easier to manage.
- Rich set of data types
- Rich set of operators



Just a joke, but, unbounded arrays are nice!
I remember all of the memory in use that I already destroyed while making some error while on a iteration in Delphi. It helped a lot to understand all the idea about memory.
full member
Activity: 185
Merit: 100
June 12, 2014, 02:42:29 PM
#63
There are lot of great language features in Java, which is not in this but equally important for making Java, Best programming language of last two decades e.g.
- Java is Secure, security is not only embedded in language, but also provided by platform.
- Java Array is bounded rather than C array, which is unbounded.
- Java is Strongly typed language, which means more help from compiler and easier to manage.
- Rich set of data types
- Rich set of operators



And 2 problems widely known of everyone:
-Performance: Java makes simple things complicated, so a simple C++ application will solve the problem faster
-String: Java has the worst string management what someone could think. Creating new instances of String or every function just to save the internal literal string is kind of ridiculous. If you find yoursel building a Path you will use so many strings that propably every oher language will do it faster, not to mention the less use of pointers and memory.

It is a trade off. You can implement using Java very quick. And you can integrate it with existing open source project with scaling capability.

legendary
Activity: 1789
Merit: 1008
Keep it dense, yeah?
June 12, 2014, 02:41:01 PM
#62
There are lot of great language features in Java, which is not in this but equally important for making Java, Best programming language of last two decades e.g.
- Java is Secure, security is not only embedded in language, but also provided by platform.
- Java Array is bounded rather than C array, which is unbounded.
- Java is Strongly typed language, which means more help from compiler and easier to manage.
- Rich set of data types
- Rich set of operators



And 2 problems widely known of everyone:
-Performance: Java makes simple things complicated, so a simple C++ application will solve the problem faster
-String: Java has the worst string management what someone could think. Creating new instances of String or every function just to save the internal literal string is kind of ridiculous. If you find yoursel building a Path you will use so many strings that propably every oher language will do it faster, not to mention the less use of pointers and memory.

There are certain steps that you can take to lessen the memory overhead when combining strings to build a path. One of the big no-nos in Java is to use concatenation, that's a sure fire way to piss away memory if you use it frequently :|
legendary
Activity: 1386
Merit: 1000
English <-> Portuguese translations
June 12, 2014, 02:32:53 PM
#61
There are lot of great language features in Java, which is not in this but equally important for making Java, Best programming language of last two decades e.g.
- Java is Secure, security is not only embedded in language, but also provided by platform.
- Java Array is bounded rather than C array, which is unbounded.
- Java is Strongly typed language, which means more help from compiler and easier to manage.
- Rich set of data types
- Rich set of operators



And 2 problems widely known of everyone:
-Performance: Java makes simple things complicated, so a simple C++ application will solve the problem faster
-String: Java has the worst string management what someone could think. Creating new instances of String or every function just to save the internal literal string is kind of ridiculous. If you find yoursel building a Path you will use so many strings that propably every oher language will do it faster, not to mention the less use of pointers and memory.
hero member
Activity: 616
Merit: 500
June 12, 2014, 02:27:11 PM
#60
There are lot of great language features in Java, which is not in this but equally important for making Java, Best programming language of last two decades e.g.
- Java is Secure, security is not only embedded in language, but also provided by platform.
- Java Array is bounded rather than C array, which is unbounded.
- Java is Strongly typed language, which means more help from compiler and easier to manage.
- Rich set of data types
- Rich set of operators




Java is an advance compared to imperative programming, and in some sense to C++ too,  but it has more drawbacks than advantages. Try to make a decent exception schema for you any non trivial job and you'll quickly agree.

Many big CS names are anti-Java, for example, Linus Torvald:

https://www.youtube.com/watch?v=Aa55RKWZxxI

Here a bigger and more comprehensive explanation about why Java sucks:


http://tech.jonathangardner.net/wiki/Why_Java_Sucks
legendary
Activity: 1789
Merit: 1008
Keep it dense, yeah?
June 12, 2014, 02:17:06 PM
#59
There are lot of great language features in Java, which is not in this but equally important for making Java, Best programming language of last two decades e.g.
- Java is Secure, security is not only embedded in language, but also provided by platform.
- Java Array is bounded rather than C array, which is unbounded.
- Java is Strongly typed language, which means more help from compiler and easier to manage.
- Rich set of data types
- Rich set of operators

While you are correct in outlining some of the benefits of using Java, I have to say that there is no best programming language. It all depends on the application. In some cases other languages may be more appropriate for building a solution.

I write Java as part of my role, it's a nice language for sure. I hook it up with ColdFusion and Wheels now and then when wrapping new front-ends around our libraries.
full member
Activity: 126
Merit: 100
June 12, 2014, 02:11:07 PM
#58
There are lot of great language features in Java, which is not in this but equally important for making Java, Best programming language of last two decades e.g.
- Java is Secure, security is not only embedded in language, but also provided by platform.
- Java Array is bounded rather than C array, which is unbounded.
- Java is Strongly typed language, which means more help from compiler and easier to manage.
- Rich set of data types
- Rich set of operators

sr. member
Activity: 350
Merit: 252
REAL-EYES || REAL-IZE || REAL-LIES||
June 12, 2014, 08:38:19 AM
#57
I like JAVA and HTML Cheesy.
Yii and other similar frameworks make java and html obsolete.
Yii might be a good framework but will it or any similar frameworks will  make java obsolete naa not gonna happen , Yii is just PHP framework but java is vast and has more elements ..?
Forget about Java on the web. It's the devices that use it. Android is Java.

edit: I mean, it's Linux, but uses Java for everything.
Arguably Java is best out there..!You are indeed absolutely correct that Android is linux based OS but most of the apps which made it a successful OS for smartphones and tabs are built in Java. and this is the reason mate we love java and it has a bright future . and if someone thinks Its obsolete than bro you live in oblivion ..!
hero member
Activity: 812
Merit: 587
Space Lord
June 12, 2014, 07:38:24 AM
#56
I like JAVA and HTML Cheesy.
Yii and other similar frameworks make java and html obsolete.
Yii might be a good framework but will it or any similar frameworks will  make java obsolete naa not gonna happen , Yii is just PHP framework but java is vast and has more elements ..?

Forget about Java on the web. It's the devices that use it. Android is Java.

edit: I mean, it's Linux, but uses Java for everything.
newbie
Activity: 23
Merit: 0
June 12, 2014, 06:44:03 AM
#55
Actually i'm using Python and Ruby because are easy, and exploring HTML5, but a lot of year i've been using C++, I really like it.
sr. member
Activity: 350
Merit: 252
REAL-EYES || REAL-IZE || REAL-LIES||
June 12, 2014, 05:59:34 AM
#54
I like JAVA and HTML Cheesy.
Yii and other similar frameworks make java and html obsolete.
Yii might be a good framework but will it or any similar frameworks will  make java obsolete naa not gonna happen , Yii is just PHP framework but java is vast and has more elements ..?
hero member
Activity: 1036
Merit: 504
Becoming legend, but I took merit to the knee :(
June 12, 2014, 12:32:18 AM
#53
C#,C#,C#,C#,C#,C# haha  Grin
legendary
Activity: 4494
Merit: 3178
Vile Vixen and Miss Bitcointalk 2021-2023
June 11, 2014, 10:01:33 PM
#52
I love C++. It has zero bullshit tolerance.

I've also played with Java, Python, Pascal, and VB, but I don't love them.

I'm surprised Brainfuck gets a mention but not OISC. Love assembly but have trouble remembering all those instructions? Well, now you don't need to! Grin

Find it pretty odd to have someone like programming.

Even many experience coders hate doing their job.
That's because their job in most cases isn't coding, it's debugging. The bane of programmers everywhere.
full member
Activity: 232
Merit: 100
June 11, 2014, 09:15:05 PM
#51
I like JAVA and HTML Cheesy.

is HTML a programming languange?
what I read from book  HTML is not a programming language. The "M" stands for "Markup". Generally, a programming language allows you to describe some sort of process of doing something, whereas HTML is a way of adding context and structure to text.
hero member
Activity: 618
Merit: 500
a clockwork miner
June 11, 2014, 08:12:02 PM
#50
Well "Whitespace" is even worse IMO.
You know, without a decent IDE/text editor you will never know what you're doing after the 5th line.
I have to agree, this Whitespace is worse than Brainfuck.  Shocked
Reading about it, an intersting aspect is the possibility to embed Whitespace code in the blank space of another language code (except for languages that have indentation/space rules like Python).


What about LOLCODE? Have you heard about it?
Oh wow this one is new for me.
I coulnd't loud when I saw that the "exit" delimiter was "KTHXBYE".

Lol, I didn't know it too.

Some other AWSUM commands:
PLZ OPEN FILE
O NOES
IM OUTTA YR LOOP

Grin
legendary
Activity: 1386
Merit: 1000
English <-> Portuguese translations
June 11, 2014, 03:08:07 PM
#49
Nobody loves Brainfuck? Grin
Assembly seems a piece of cake compared to it.

An Hello World! example:
Code:
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.

PS: I'm not saying I love it, as it could really threaten the brain health, LOL.

Well "Whitespace" is even worse IMO.
You know, without a decent IDE/text editor you will never know what you're doing after the 5th line.

What about LOLCODE? Have you heard about it?

Oh wow this one is new for me.
I coulnd't loud when I saw that the "exit" delimiter was "KTHXBYE".
sr. member
Activity: 280
Merit: 250
June 11, 2014, 02:10:46 PM
#48
I love Ruby and Python,  Smiley
legendary
Activity: 1789
Merit: 1008
Keep it dense, yeah?
June 11, 2014, 02:08:49 PM
#47
I like JAVA and HTML Cheesy.

Yii and other similar frameworks make java and html obsolete.



Facepalm.

Do you actually realize what you just said? Java and HTML are two of the most important languages, along with a few others.

Yup - they are probably the two most widely used technologies on devices and the WWW of today. Of course, who knows what tomorrow will hold but I would imagine that they will be around for a long time.
hero member
Activity: 812
Merit: 587
Space Lord
June 11, 2014, 02:06:06 PM
#46
I like JAVA and HTML Cheesy.

Yii and other similar frameworks make java and html obsolete.



Facepalm.

Do you actually realize what you just said? Java and HTML are two of the most important languages, along with a few others.
full member
Activity: 164
Merit: 100
June 11, 2014, 01:14:49 PM
#45
I like JAVA and HTML Cheesy.

Yii and other similar frameworks make java and html obsolete.

sr. member
Activity: 294
Merit: 250
June 11, 2014, 01:12:36 PM
#44
I like JAVA and HTML Cheesy.
hero member
Activity: 812
Merit: 587
Space Lord
June 11, 2014, 10:47:30 AM
#43
Nobody loves Brainfuck? Grin
Assembly seems a piece of cake compared to it.

An Hello World! example:
Code:
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.

PS: I'm not saying I love it, as it could really threaten the brain health, LOL.

Well "Whitespace" is even worse IMO.
You know, without a decent IDE/text editor you will never know what you're doing after the 5th line.

What about LOLCODE? Have you heard about it?
full member
Activity: 166
Merit: 100
June 11, 2014, 10:32:41 AM
#42
For usefulness, you should probably learn and try to love php and html5.

legendary
Activity: 1960
Merit: 1005
June 11, 2014, 10:14:36 AM
#41
Hello,
Which programming language is good to code for a trading platform? I will need a person to help me make a trading site and dont know on which program it can be written? Any help?
Thanks!
Best Regards,
Gondel
hero member
Activity: 644
Merit: 500
June 11, 2014, 09:33:00 AM
#40
Phyton and VB
i only learn that
and little know about PHP
never tried ruby before
legendary
Activity: 1722
Merit: 1000
June 11, 2014, 09:31:08 AM
#39
Assembler.... ya no.

I am low level programmer...  Ladder logic mang!

Don't go thinking low level means simple now.. use this shit to make 4 2200 horse power gens act as one.
sr. member
Activity: 252
Merit: 250
June 11, 2014, 07:52:18 AM
#38
SQL.  Of course u need a real language to go along with that.  So I really like VB.net.  php is fun too.  But more difficulty to set up, due to the fact it has no Native IDE  Tongue
full member
Activity: 210
Merit: 100
June 11, 2014, 07:44:37 AM
#37
i like  C++ cause its the only one i know
legendary
Activity: 1386
Merit: 1000
English <-> Portuguese translations
June 11, 2014, 06:49:26 AM
#36
Nobody loves Brainfuck? Grin
Assembly seems a piece of cake compared to it.

An Hello World! example:
Code:
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.

PS: I'm not saying I love it, as it could really threaten the brain health, LOL.

Well "Whitespace" is even worse IMO.
You know, without a decent IDE/text editor you will never know what you're doing after the 5th line.
sr. member
Activity: 389
Merit: 250
June 10, 2014, 07:27:41 PM
#35
It really depends on the purpose. For example, I love Python for writing basic scripts for myself, Java for more complex programs, and HTML for web designing.
hero member
Activity: 1582
Merit: 759
June 10, 2014, 06:49:09 PM
#34
Nobody loves Brainfuck? Grin
Assembly seems a piece of cake compared to it.

An Hello World! example:
Code:
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.

PS: I'm not saying I love it, as it could really threaten the brain health, LOL.

If you ever need to write software which requires you to allow the person to read the code but don't want your code stolen... You know which language to use.
legendary
Activity: 1789
Merit: 1008
Keep it dense, yeah?
June 10, 2014, 06:41:56 PM
#33
php is all for me.  Learned it and loved it.

I worked with PHP quite a few years ago, it seemed very neat, but at the time I didn't realised quite how widely used it was. So many people favour PHP over more heavy-weight solutions when it comes to the web.

I'll likely be dealing with PHP again with work as I write something that hooks into an external API. Will be a trip down memory lane Cheesy
legendary
Activity: 1522
Merit: 1000
www.bitkong.com
June 10, 2014, 06:36:22 PM
#32
php is all for me.  Learned it and loved it.
hero member
Activity: 1582
Merit: 759
June 10, 2014, 06:35:44 PM
#31
In my mind. Python and PHP.

Python > PHP IMO. Although I have to use PHP more.

I use many though. Java would have to come third.
newbie
Activity: 28
Merit: 0
June 10, 2014, 05:07:46 PM
#30
Probably PHP
hero member
Activity: 618
Merit: 500
a clockwork miner
June 10, 2014, 04:58:05 PM
#29
I think my favorite and most profitable now is JAVA
[SKIP IMG]

Not sure if the graph can be used to suggest profitability indications but interesting chart nonetheless.
sr. member
Activity: 462
Merit: 250
June 10, 2014, 04:40:50 PM
#28
I think my favorite and most profitable now is JAVA

hero member
Activity: 618
Merit: 500
a clockwork miner
June 10, 2014, 04:37:25 PM
#27
Nobody loves Brainfuck? Grin
Assembly seems a piece of cake compared to it.

An Hello World! example:
Code:
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.

PS: I'm not saying I love it, as it could really threaten the brain health, LOL.
legendary
Activity: 1789
Merit: 1008
Keep it dense, yeah?
June 10, 2014, 03:29:05 PM
#26
Find it pretty odd to have someone like programming.

Even many experience coders hate doing their job.


Probably because they work within an organisation that shackles their creativity. Of course there should be order, and a roadmap, but developers like to get on with things without people telling them that something they have recently worked on sucks Wink
hero member
Activity: 812
Merit: 587
Space Lord
June 10, 2014, 02:59:43 PM
#25
Find it pretty odd to have someone like programming.

Even many experience coders hate doing their job.


It's fun when you do it open-source and independently Smiley
full member
Activity: 213
Merit: 100
June 10, 2014, 02:57:10 PM
#24
Find it pretty odd to have someone like programming.

Even many experience coders hate doing their job.
legendary
Activity: 1386
Merit: 1000
English <-> Portuguese translations
June 10, 2014, 10:10:24 AM
#23
C++ for its open world of possibilities
Delphi for its easy way of making desktop applications, database connections, GUI and etc.
hero member
Activity: 812
Merit: 587
Space Lord
June 10, 2014, 09:49:58 AM
#22
I was programming with java a while ago, and that Is the only language I really know and I know other very little so I don't have to compare but I love programming with java I would say it's a cool programming language.

Hold on to Java. There's a lot of money in there these days with all the smartphones Wink
sr. member
Activity: 350
Merit: 252
REAL-EYES || REAL-IZE || REAL-LIES||
June 10, 2014, 09:49:33 AM
#21
at this Point I'm Learning PHP , java I can't say if I love 'em  but I'm trying to develop passion for coding ..!  If i have to compare both PHP and Java although both have different utility I'd say I like Java more than any other.
legendary
Activity: 938
Merit: 1000
June 10, 2014, 09:42:38 AM
#20
I was programming with java a while ago, and that Is the only language I really know and I know other very little so I don't have to compare but I love programming with java I would say it's a cool programming language.
hero member
Activity: 812
Merit: 587
Space Lord
June 10, 2014, 09:25:23 AM
#19
C for me. It's the fundament of everything and it's dependency free.
legendary
Activity: 826
Merit: 1002
amarha
June 10, 2014, 09:22:56 AM
#18
I like AutoIT syntax, it isn't a real programming language, but has all I need to develop many useful applications.
'

I use AHK a bit. It's pretty good and it's been developed to the point where you can do full apps with it. I think AutoIt is similar, weren't they related at some point?
full member
Activity: 196
Merit: 101
June 10, 2014, 08:03:32 AM
#17
I like AutoIT syntax, it isn't a real programming language, but has all I need to develop many useful applications.
hero member
Activity: 532
Merit: 500
Currently held as collateral by monbux
June 10, 2014, 07:43:48 AM
#16
I would love to eventually move onto more complex languages such as C++ & Java. But ruby is all I need for now.
legendary
Activity: 882
Merit: 1000
June 10, 2014, 07:04:08 AM
#15
html

HTML is a markup language.

Personally, I don't love any language. I did like Java due to it doing well multi-platform. Eventually, I need to learn Ruby due to puppet / chef. I thought python was neat a long time ago, but really just don't have interest in it.
legendary
Activity: 826
Merit: 1002
amarha
June 10, 2014, 04:22:38 AM
#14
Everyone loves Python because it's pythonic.

I need to learn one. Any recommendations for what would be the most useful?

Pppppppython for sure. It's a good all around language. Lots of libraries. Plus it's an excellent learners language. MIT Intro to Comp Sci was a Python course last time I checked. They have the course online, it's pretty good.
legendary
Activity: 3752
Merit: 1217
June 10, 2014, 03:41:16 AM
#13
I need to learn one. Any recommendations for what would be the most useful?

That depends on your job. If you use MS Office a lot, then Visual Basic might be the best language for you. If you are in to R&D, such as risk modeling, then languages such as FORTRAN and C++ might be more useful.
hero member
Activity: 938
Merit: 501
June 10, 2014, 03:36:38 AM
#12
Python and Ruby, so simple and elegant
legendary
Activity: 1134
Merit: 1002
You cannot kill love
June 10, 2014, 02:58:23 AM
#11
html
sr. member
Activity: 406
Merit: 250
June 10, 2014, 02:51:41 AM
#10
I need to learn one. Any recommendations for what would be the most useful?
legendary
Activity: 3752
Merit: 1217
June 10, 2014, 12:25:25 AM
#9
I have tried out various languages such as C++ and Visual Basic, so that I could automate some of my processes at work. But right now, the only language in which I am comfortable is Digital Visual Fortran.
hero member
Activity: 616
Merit: 500
June 09, 2014, 11:03:34 PM
#8
ruby is sweet, perfect for object oriented development, and with so many unique features. But is slow and forces you to develop in a OO style no matter what you are doing.

python is great for serial programs, but their OO really sucks. The best for prototyping non OO stuff.

I personally like functional programming(SML, Scala and stuff), but it is not popular these days, so I don't use much. Even Prolog is fun when you get used to it.
full member
Activity: 252
Merit: 100
Streamity Decentralized cryptocurrency exchange
June 09, 2014, 09:33:06 PM
#7
i like delphi and VB because both have GUI so more confuse for interface design
legendary
Activity: 980
Merit: 1000
Need a campaign manager? PM me
June 09, 2014, 08:00:32 PM
#6
Python Smiley

Used to do C++, but python makes life so much easier.
legendary
Activity: 1884
Merit: 1005
June 09, 2014, 07:46:57 PM
#5
Java is the only one I really love :b
legendary
Activity: 2660
Merit: 1074
June 09, 2014, 06:23:45 PM
#4
I like python and assembly language.
legendary
Activity: 1789
Merit: 1008
Keep it dense, yeah?
June 09, 2014, 06:04:34 PM
#3
I'm not really a connoisseur of programming languages but I work a lot with Java and ColdFusion as part of my job.
legendary
Activity: 910
Merit: 1000
★YoBit.Net★ 350+ Coins Exchange & Dice
June 09, 2014, 05:30:48 PM
#2
I enjoy php or perl..I love... ummm.. hmmm I'll get back to you.
hero member
Activity: 532
Merit: 500
Currently held as collateral by monbux
June 09, 2014, 05:28:45 PM
#1
I have fallen in love with ruby it's such a beautiful interface and I've only now just started to get into programming! Whats your favorite?
Jump to: