Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,108 members, 7,814,891 topics. Date: Wednesday, 01 May 2024 at 10:14 PM

Feature You Like The Most About Your Favorite Programming Language? - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Feature You Like The Most About Your Favorite Programming Language? (2923 Views)

Build A Mobile App Without Knowing Any Programming Language or line of code. / What U Need To Know Before Learn A Programming Language / Defend Your Programming Language (2) (3) (4)

(1) (Reply) (Go Down)

Feature You Like The Most About Your Favorite Programming Language? by ektbear: 2:26am On Oct 11, 2011
I really like Ruby.

For me, iteratiors (like each, map, etc) are really cool.

Basically given an array of anything, say #s:


a=[1,2,3,4,5]


You can write:

a.map{ |x| someFunc(x)}

This applies the function someFunc to each element of the array and spits back another array. You actually can even specify your function anonymously, like:


b = a.map do |x|
return x*x
end

The above gives you an array b with each element the square of the corresponding element of a.

Iterators are probably not the coolest feature of this language, but the one I enjoy the most and seem to use the most often. Really so much more pleasant that writing for loops.
Re: Feature You Like The Most About Your Favorite Programming Language? by dellnet: 1:49pm On Oct 11, 2011
for me any language that will convert any data type to any data type without me knowing about it is what I like most, but the setback is you can't do much with these kind of language.
Re: Feature You Like The Most About Your Favorite Programming Language? by moderatorr: 6:02pm On Oct 12, 2011
php . Because i dont have to declare my variables first like in vb.
Re: Feature You Like The Most About Your Favorite Programming Language? by okeyxyz(m): 5:35am On Oct 13, 2011
dell_net:

for me any language that will convert any data type to any data type without me knowing about it is what I like most, but the setback is you can't do much with these kind of language.

grin grin grin
ie: there's nothing free in freetown.
Re: Feature You Like The Most About Your Favorite Programming Language? by ArQueBusieR(m): 3:27pm On Oct 13, 2011
I'm a self-taught amateur. I know only basic, html, PHP, and a bit of java. My favourite would be, PHP. I like PHP because it's great for server-side programming.
Re: Feature You Like The Most About Your Favorite Programming Language? by jacob05(m): 3:55pm On Oct 13, 2011
Python Rocks!!!, Python Codes are Elegant and easily Debugged ,

#!/usr/local/bin/python

import string, sys

# If no arguments were given, print a helpful message
if len(sys.argv)==1:
print 'Usage: celsius temp1 temp2 , '
sys.exit(0)

# Loop over the arguments
for i in sys.argv[1:]:
try:
fahrenheit=float(string.atoi(i))
except string.atoi_error:
print repr(i), "not a numeric value"
else:
celsius=(fahrenheit-32)*5.0/9.0
print '%i\260F = %i\260C' % (int(fahrenheit), int(celsius+.5))
Re: Feature You Like The Most About Your Favorite Programming Language? by Guardian(m): 6:45pm On Oct 13, 2011
Without much thought. I give it to C and all variant. It gave us the power of objects and it the language with which the best platforms are built. Virtually everything runs on top of a C- Code.
Re: Feature You Like The Most About Your Favorite Programming Language? by Nobody: 7:59pm On Oct 13, 2011
from my experiences using php, java, python, actionscript3 and javascript

i will give it to php over java when it comes to syntax clarity, in this arena i believe python beats php
python is Very easy to read and works almost everywhere

Web services wise, i also give it to python over java on memory usage, java seems to consume 15MB+ just to load up on linux


to the topic, My favorite will be Actionscript 3, hmm, very sexy!
make my movies very light.
Re: Feature You Like The Most About Your Favorite Programming Language? by IbroSaunks(m): 9:11pm On Oct 13, 2011
well im an amateur but from what i have learnt, ill say php and java. i love php cos,, well for one its open source,declaring variables is a breeze, and its a very powerful scripting /programming language.
and i like java cos of its oop features,
Re: Feature You Like The Most About Your Favorite Programming Language? by sebastinta(m): 9:40pm On Oct 13, 2011
java is da best, i can create any SW i want wiv it, PHP is flexible too
Re: Feature You Like The Most About Your Favorite Programming Language? by Nobody: 9:42pm On Oct 13, 2011
i love any programming language that has lambda functions(anonymous functions) they are fun and also love the new PHP 5.3 because the callback of functions call user array, you can dynamically make calls and detect the number of parameters just like JavaScript Callback. codng because lots easier and saner that way.
Re: Feature You Like The Most About Your Favorite Programming Language? by dhtml1(m): 11:19pm On Oct 13, 2011
Nice thread. Aint got no favo, but i will say PHP. Aint use python yet, and have not used Ruby on rails, but people say they are cool too.
Re: Feature You Like The Most About Your Favorite Programming Language? by xreakz(m): 1:15am On Oct 14, 2011
ColdFusion database queries, Elegant
Re: Feature You Like The Most About Your Favorite Programming Language? by Nobody: 1:20am On Oct 14, 2011
I tookone of them Computer engineering class. Worst decision of my life!!

How does "?><%$/come:#?go> even make sense? angry

ekt_bear:

I really like Ruby.

awww, thanks, I like you too cool
Re: Feature You Like The Most About Your Favorite Programming Language? by ektbear: 1:23am On Oct 14, 2011
^-- was it an intro programming class?

pc guru:

i love any programming language that has lambda functions(anonymous functions) they are fun and also love the new PHP 5.3 because the callback of functions call user array, you can dynamically make calls and detect the number of parameters just like JavaScript Callback. codng because lots easier and saner that way.
Yep, anonymous functions are really cool. I don't know what a callback is, guess I'll wikipedia it.
Re: Feature You Like The Most About Your Favorite Programming Language? by okeyxyz(m): 2:27am On Oct 14, 2011
Ileke-IdI:

I tookone of them Computer engineering class. Worst decision of my life!!

How does "?><%$/come:#?go> even make sense? angry

grin grin
waste of some precious time u could have spent checking out the latest fashion, eh? grin
Re: Feature You Like The Most About Your Favorite Programming Language? by Nobody: 2:39am On Oct 14, 2011
okeyxyz:

grin grin
waste of some precious time u could have spent checking out the latest fashion, eh? grin

Abi jare. It was Sephora fashion season and this professor was making us type garbage. tongue

@ekt
I'm not sure. I took it a while while back.
Re: Feature You Like The Most About Your Favorite Programming Language? by Nobody: 8:19pm On Oct 14, 2011
@ektbear a callback function is like an anonymous function passed as a parameter to a function that after a specific event the function will be called, in jquery it is used everywhere.

e.g JS

function CallMeEvent(Node,func)
{
//after all the Operation is Done by Node
func(Node);
}
CallMeEvent("PC GURU",function(a){
console.log(a+" LOVES PORN"wink;

});


its possible in PHP 5.3 but haven't tried it
Re: Feature You Like The Most About Your Favorite Programming Language? by Nobody: 9:46am On Oct 15, 2011
I love C# because of its RAD support

(1) (Reply)

Have An App Idea? Let's Build Your Next App / OOP Design Question: Model-View-Controller Pattern / Import Dll Into Java Program

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 20
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.