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 ",$"
A list of computer languages with release year and category
51–60 of 82 posts
Re: A list of computer languages with release year and category
#52Missing: 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
#53I don't see Chef [1] which was part of the MIT Mystery Hunt many years ago. If you have ever told anyone that programming and/or algorithms are just following steps like a cooking recipe, you should read about it. I don't think there was even an interpreter back then, so you had to "execute" the program by hand. [1] https://esolangs.org/wiki/Chef
There are a lot of esolangs still to add. It's helpful to have people recommend noteworthy ones.
Re: A list of computer languages with release year and category
#54Missing: 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
Re: A list of computer languages with release year and category
#55For 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 ",$"
curl ... \
| sort -t, -k4 -n
| lessRe: A list of computer languages with release year and category
#56For 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 ",$"
`awk` is not needed since `sort` can apply to the fourth column. curl ... \ | sort -t, -k4 -n | less
But yes, if you know the date is in the 4th column then your solution also works.
Re: A list of computer languages with release year and category
#57Ed. Oh it is sortable by the presented fields, it's just a bit un-intuitively communicated via the UI
Re: A list of computer languages with release year and category
#58For 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
#59Re: A list of computer languages with release year and category
#60Please make this list sortable by the columns. Thank you.
Added. Please let me know if that works or breaks. Thanks for the feedback!
abacus-machine computingMachine -2700
babylonian-numerals numeralSystem -2000
roman-numerals numeralSystem -900
attic-numerals numeralSystem -600
greek-numerals numeralSystem -300