meanfreepath (
meanfreepath) wrote2007-08-23 06:52 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
(no subject)
Despite all that people say about Python being an easy language to work with, I'm really FORTRAN to be much easier to work with. I'm modifying legacy F77 code, and while it's picky in terms of formatting, to me FORTRAN code is much more straightforward to follow. Clearly I haven't internalized the object-oriented programming paradigm...
no subject
I wrote some Python today and it healed my soul. C++ tears at one's humanity...
no subject
ah
Object Oriented: Ruby (yes I like it much better than Python)
Breakneck Speed: C, and sometimes C++
Pure Badass: Erlang
Bit of a tangent-- I recently heard someone claim that compiled Lisp runs faster than equivalent C code...
paradigm
'Fraid I'm not with you with the Fortran vs. Python. The jump from BASIC to C++ was an immense relief for me. Then, recently, learning Ruby (in which everything is an Object) was a blissful experience.
I admit I don't actually don't like Python very much, even though everyone says it and Ruby are basically the same.
What did you start programming with back at Swat? Was it IDL? That might explain some things.
More likely, I'd guess you've run into some poor Python programming...
Re: paradigm
I understand how in Python one creates instances of a class, and how the instance then inherits the attributes of the class. But when reading code, one is thus forced to be constantly flipping back and forth to the definition of the class. Also, what I probably find the most annoying is that bare Python has little numerical capability, and so one almost always needs to import packages like SciPy (http://www.scipy.org/), NumPy (http://numpy.scipy.org/), and Matplotlib (http://matplotlib.sourceforge.net/) to get things done. So getting a given piece of code that depends on all these packages (and others) to run is not trivial, and also the documentation for the different packages ranges from good to sketchy. And because of there being so many different packages available, with different capabilities, Internet searches for help frequently turn up conflicting ideas.
Maybe I just find languages like IDL, Matlab, BASIC, and FORTRAN easier because they are simply more limited.
no subject