Live data from Hacker News

Ask HN: Which “old” programming language(s) you still use in your $DAYJOB?

news.ycombinator.com

1–10 of 27 posts

Re: Ask HN: Which “old” programming language(s) you still use in your $DAYJOB?

#2
Through 2015 I used Fortran to develop trading strategies for a fund, and since then I have developed strategies for my personal account. I used to use g95 and now use the gfortran compiler. Fortran 90 and later versions (the latest standard is F2018) have modern features, including array operations like Matlab or NumPy. For plotting I wrote some subroutines that called gnuplot. Fortran does not have libraries to download financial data like Python or R, but once you have the data, coding is straightforward and the programs are fast.

Re: Ask HN: Which “old” programming language(s) you still use in your $DAYJOB?

#5
Fortran is quite heavily used in computational science domain. Both the "old" (F66, F77, F90) and the new modern F2003, F2008, F2018. and Yes, (modern) Fortran feeds my family daily (along with many other computational tools and skills). Modern Fortran is a bliss. The parallel features of it are quite advanced comparable to advanced modern MPI capabilities, yet with an extremely intuitive and simple "Coarray" syntax. It is a fully vectorized, parallel shared and distributed, array-oriented, also Object-Oriented, language. It has influenced and shaped the syntax of MATLAB, Python, R, even C++ numerical libraries by its simple powerful high-level array-syntax.

Re: Ask HN: Which “old” programming language(s) you still use in your $DAYJOB?

#7

Fortran is quite heavily used in computational science domain. Both the "old" (F66, F77, F90) and the new modern F2003, F2008, F2018. and Yes, (modern) Fortran feeds my family daily (along with many other computational tools and skills). Modern Fortran is a bliss. The parallel features of it are quite advanced comparable to advanced modern MPI capabilities, yet with an extremely intuitive and simple "Coarray" syntax.…

It's still heavily used in the chemical industry too

Re: Ask HN: Which “old” programming language(s) you still use in your $DAYJOB?

#9
post #6

Aren't almost all of them old at this point? The numbers of people using what most people would count as new is pretty small percentage wise.

Even the newer ones aren't that new - Rust, Go, Kotlin, Julia are over 10 years old at this point. TypeScript is 8.
Post reply on HN