Live data from Hacker News

Ask HN: Most employable programming languages for 2022 and beyond?

news.ycombinator.com

1–10 of 59 posts

Re: Ask HN: Most employable programming languages for 2022 and beyond?

#3
Employable by what kind of companies? I'd imagine the following aren't going away anytime soon and will likely be employable for entire careers for many people: JavaScript, java, c#/.net, python, c++, go - basically just find what Enterprise is using and learn those

Re: Ask HN: Most employable programming languages for 2022 and beyond?

#4
I am currently digging into Nim. It feels like Python, does some things better, and not very many things worse. It is strongly typed, has method overloading and Macros. Creating objects is much more enjoyable than in Python. foo(a, b) can be written as a.foo(b), and foo(x) can be written as x.foo. The docs are very good.

Re: Ask HN: Most employable programming languages for 2022 and beyond?

#5

I am currently digging into Nim. It feels like Python, does some things better, and not very many things worse. It is strongly typed, has method overloading and Macros. Creating objects is much more enjoyable than in Python. foo(a, b) can be written as a.foo(b), and foo(x) can be written as x.foo. The docs are very good.

And it is compiled (using a MinGW C compiler)

Re: Ask HN: Most employable programming languages for 2022 and beyond?

#6

I am currently digging into Nim. It feels like Python, does some things better, and not very many things worse. It is strongly typed, has method overloading and Macros. Creating objects is much more enjoyable than in Python. foo(a, b) can be written as a.foo(b), and foo(x) can be written as x.foo. The docs are very good.

First time to hear about it. I don't think it will be most employable in 2022

Re: Ask HN: Most employable programming languages for 2022 and beyond?

#7

Python for job orchestration (Airflow) and data science (numpy, scipy, etc) , Java 16+ for the general enterprise, product development, Julia for HPC. C for embedded, C++ for games, highly intensive systems.

Can't have a most employable list without mentioning JS. Personally I'd swap Julia for JS. Apart from that this list tracks.

Re: Ask HN: Most employable programming languages for 2022 and beyond?

#8

I am currently digging into Nim. It feels like Python, does some things better, and not very many things worse. It is strongly typed, has method overloading and Macros. Creating objects is much more enjoyable than in Python. foo(a, b) can be written as a.foo(b), and foo(x) can be written as x.foo. The docs are very good.

Agreed. Looked into Nim a while ago. Docs are really good. Is it good for jobs?

Re: Ask HN: Most employable programming languages for 2022 and beyond?

#9

Python for job orchestration (Airflow) and data science (numpy, scipy, etc) , Java 16+ for the general enterprise, product development, Julia for HPC. C for embedded, C++ for games, highly intensive systems.

No Rust, no Go? (Not that I am rooting for them)

Re: Ask HN: Most employable programming languages for 2022 and beyond?

#10

I am currently digging into Nim. It feels like Python, does some things better, and not very many things worse. It is strongly typed, has method overloading and Macros. Creating objects is much more enjoyable than in Python. foo(a, b) can be written as a.foo(b), and foo(x) can be written as x.foo. The docs are very good.

Agreed. Looked into Nim a while ago. Docs are really good. Is it good for jobs?

> Is it good for jobs?

Not yet, I guess. It is too new.

Post reply on HN