Earlier quoted context omitted.
With tools such as?
I'm not sure what point you're trying to make here. Are you claiming I'm wrong or do you want me to do a google search for you?
Poll: What's Your Favorite Programming Language?
231–240 of 626 posts
Re: Poll: What's Your Favorite Programming Language?
#232I like Perl the best and javascript+ruby the least.
Re: Poll: What's Your Favorite Programming Language?
#233Re: Poll: What's Your Favorite Programming Language?
#234I use C the most because it is the most appropriate tool for the job at hand for most of the jobs I do. I appreciate the simplicity and elegance of Scheme, and wish I could use it more. I envy Haskell's type system.
None are my favourite. After all, all programming languages suck.
Re: Poll: What's Your Favorite Programming Language?
#235C# really feels like the most mature language that I've ever dealt with. Writing it feels clear, if something is wrong the debugger is very clear. The number of features that are there is incredible (especially post C# 2.0 when they added generics). Properties are delightful. How do you convert to a string? Convert.ToString(). How about an integer? Knowing only that one, it's what you'd expect! I also picked JavaScri…
Eh, C# is good for the environment it lives in, but it's not without it's cruft. C#'s answer for all of its missing features seems to be a generic class. Don't have tuples? We'll give you Tuple . Don't have inline functions? We'll give you Func . It feels very tacked on (especially Func).
They are intended to manipulate the abstract syntax tree of lambda expressions. A bit like macros.
You should only need to know about them if doing AST manipulations.
Re: Poll: What's Your Favorite Programming Language?
#236Re: Poll: What's Your Favorite Programming Language?
#237Python for when I'm "thinking in code", or doing data analysis that's not too performance sensitive (NumPy). I probably enjoy Python the most. Ruby for when I'm doing configuration management or occasional webdev. Fortran for when I'm doing serious computation, C for when I'm trying to do something fast that isn't number-crunching. (Though I'm trying to learn Go for that.) And a smattering of other languages (Perl, s…
Re: Poll: What's Your Favorite Programming Language?
#238C# really feels like the most mature language that I've ever dealt with. Writing it feels clear, if something is wrong the debugger is very clear. The number of features that are there is incredible (especially post C# 2.0 when they added generics). Properties are delightful. How do you convert to a string? Convert.ToString(). How about an integer? Knowing only that one, it's what you'd expect! I also picked JavaScri…
Definitely agree with you on C#. It feels like this is what a standard, mature, widespread language should be. There are other languages that are better for specific tasks, but for the general programming language, C# really hits the sweet spot in terms of features, expressability, readability, and environment. This is the language that Java should have been--could have been. Also, I dread getting asked on my next in…
On design alone, I would probably vote Clojure. The features and their rationale are very compelling.
Re: Poll: What's Your Favorite Programming Language?
#239Re: Poll: What's Your Favorite Programming Language?
#240Earlier quoted context omitted.
If you don't mind my asking, as a Python person, how did you learn Clojure? I'm mostly programming in Python and JavaScript today, and I want to learn Clojure, but I keep seeing these very strange talks. I don't know how to articulate it, really. My best metaphor is, it feels a little like I wanted to go out and learn about Catholicism and they said, "oh, that's easy, we'll just have you sit in on a bunch of confessi…
4clojure.com was very helpful for me, as was this: http://jkkramer.wordpress.com/2011/03/29/clojure-python-side...