Live data from Hacker News

A list of computer languages with release year and category

codelani.com

41–50 of 82 posts

Re: A list of computer languages with release year and category

#41
post #6
post #4

Earlier quoted context omitted.

Or jobs?

I don't know, but looking at ADA, 20 jobs seems very low. I was under the impression that ADA is still a required language for a lot of military hardware. My guess would be that he's scraping jobs sites for listings numbers, and I suspect something like ADA development is using different channels to find devs.

Yes, a year or two ago I grabbed job listings from sites like Indeed and LinkedIn and trained a very crude basket of models. No one ever seemed to use it so I hadn't touched it since then. Time to refresh that, thanks for the feedback! Interesting points about ADA and I'll try and bring in some of those back channels.

Re: A list of computer languages with release year and category

#42

To this day, I still miss the ability to list, move up and edit code at the same time using C= 64 terminal. Good days. https://codelani.com/languages/simons-basic.html

"Written by British programmer David Simons in 1983, who was then just 16 years old at the time...."

Wow!

Re: A list of computer languages with release year and category

#44
For those complaining that they need it sorted by date:

    curl https://raw.githubusercontent.com/codelani/codelani/master/langs.csv \
        | awk -F "," '{print $NF, $0}' \
        | sort -n                      \
        | sed "s/^[^ ]* //"            \
        | less
This will fetch the CSV, copy the date to the front, sort it, then remove the date.

There are a lot of entries that don't have dates. If you want to remove them, pipe the result through:

    grep -v ",$"

Re: A list of computer languages with release year and category

#45

Missing: https://en.wikipedia.org/wiki/Go!_(programming_language) https://en.wikipedia.org/wiki/CAL_Actor_Language https://en.wikipedia.org/wiki/TempleOS [HolyC] https://en.wikipedia.org/wiki/Standard_Portable_Intermediate... [SPIR] https://en.wikipedia.org/wiki/Refer_(software) https://en.wikipedia.org/wiki/RuneScape#History_and_developm... [RuneScript] https://en.wikipedia.org/wiki/Vulkan_(API) https://en.wikipedia…

I was going to add C++ to the list, but I see that it's listed as cpp.

It's lists c-- correctly, so I don't know why C++ would be any different.

Re: A list of computer languages with release year and category

#47

Missing: https://en.wikipedia.org/wiki/Go!_(programming_language) https://en.wikipedia.org/wiki/CAL_Actor_Language https://en.wikipedia.org/wiki/TempleOS [HolyC] https://en.wikipedia.org/wiki/Standard_Portable_Intermediate... [SPIR] https://en.wikipedia.org/wiki/Refer_(software) https://en.wikipedia.org/wiki/RuneScape#History_and_developm... [RuneScript] https://en.wikipedia.org/wiki/Vulkan_(API) https://en.wikipedia…

https://codelani.com/languages/go.html
Post reply on HN