Ask HN: What “old” programming languages will you still be using in 2017?
161–170 of 502 posts
Re: Ask HN: What “old” programming languages will you still be using in 2017?
#162Re: Ask HN: What “old” programming languages will you still be using in 2017?
#163 assembly
apl (k4)
forth (bootloader)
snobol (spitbol)
C (small subset)
sh (Almquist-like)
sed (not GNU)
nawk (do not use added functions such as strftime)
execlinebRe: Ask HN: What “old” programming languages will you still be using in 2017?
#164Re: Ask HN: What “old” programming languages will you still be using in 2017?
#165Re: Ask HN: What “old” programming languages will you still be using in 2017?
#166Earlier quoted context omitted.
I still teach SQL, via SQLite, as a first language to students, even though in practice I do 90% of my data analysis through the command line or Pandas. But SQL is very direct and clear as a language, and the overhead of SQLite is...well, light. Making an index is just one more line of code that for many datasets, you run once and never touch again. What do you find simpler in terms of data querying and management?
I love sql myself. I'm not sure why I love it so much and other people hate it. Sometimes I think that coming up with reasons is just after the fact justification (do I really like it because it has a solid mathematical foundation in the relational calculus, or does that just sound like a good reason to say I like it)? Pandas is an excellent contribution to data analysis, but I gotta tell you, I was absolutely deligh…
Re: Ask HN: What “old” programming languages will you still be using in 2017?
#167SQL. If I had to pick a language that I'll use my entire career that's the one. It has been overused and underused, but always relevant.
Re: Ask HN: What “old” programming languages will you still be using in 2017?
#168Earlier quoted context omitted.
Same here but MPW Pascal with 68K Asm.
What, really? In 2017? Explain, please! You're deploying on 68K Macs?
Re: Ask HN: What “old” programming languages will you still be using in 2017?
#169Re: Ask HN: What “old” programming languages will you still be using in 2017?
#170I really want to write something in 6502 assembly this year. I've read tutorials and played with it, but I've never used it to build a non-trivial program. I've also been wanting to build a NES emulator in common lisp, and this would be the perfect opportunity to pair the two projects.
Have you seen the game called Human Resource Machine? This is not actually a joke comment -- it teaches assembly language programming. Not 6502 specifically, but the fake architecture looks a lot like 6502. You work up through a set of more and more challenging assignments until you have to write a sort. I really enjoyed it and would consider it a great introduction to basically any assembly language.