Live data from Hacker News

Ask HN: What are some unpopular technologies you wish people knew more about?

news.ycombinator.com

1–10 of 417 posts

Re: Ask HN: What are some unpopular technologies you wish people knew more about?

#2
Not sure if you're looking for things as "trifling" as programming languages, but I do wish more people knew about Nim. It's fast, statically typed, reads more or less like Python, has a great effect system, etc. It's a joy to use. I've been working through writing an interpreter in it: https://youtu.be/48CsjEFzyXQ

Re: Ask HN: What are some unpopular technologies you wish people knew more about?

#3
Firejail is cool: https://github.com/netblue30/firejail

Linux namespaces/cgroups but lighter than Docker.

I use it when I want to limit the memory of a Python script:

``` maxmem="56" #GB

firejail --noprofile --rlimit-as=${maxmem}000000000 python myscript.py ```

Re: Ask HN: What are some unpopular technologies you wish people knew more about?

#4

Not sure if you're looking for things as "trifling" as programming languages, but I do wish more people knew about Nim. It's fast, statically typed, reads more or less like Python, has a great effect system, etc. It's a joy to use. I've been working through writing an interpreter in it: https://youtu.be/48CsjEFzyXQ

I subscribed to your channel, power to you to finish up this series :). I love Nim, I even wrote a book on it! https://xmonader.github.io/nimdays

Re: Ask HN: What are some unpopular technologies you wish people knew more about?

#6
post #3

Firejail is cool: https://github.com/netblue30/firejail Linux namespaces/cgroups but lighter than Docker. I use it when I want to limit the memory of a Python script: ``` maxmem="56" #GB firejail --noprofile --rlimit-as=${maxmem}000000000 python myscript.py ```

have to say: i really like the idea of `firejail firefox` thanks for sharing that!

Re: Ask HN: What are some unpopular technologies you wish people knew more about?

#9

Not sure if you're looking for things as "trifling" as programming languages, but I do wish more people knew about Nim. It's fast, statically typed, reads more or less like Python, has a great effect system, etc. It's a joy to use. I've been working through writing an interpreter in it: https://youtu.be/48CsjEFzyXQ

I subscribed to your channel, power to you to finish up this series :). I love Nim, I even wrote a book on it! https://xmonader.github.io/nimdays

Thanks! I plan to record many more videos. Had some unplanned construction going on in my house so my recording setup is unavailable for a bit. As soon as it's done in a few weeks, I'll put out more videos.

Your book looks great, will check it out.

Re: Ask HN: What are some unpopular technologies you wish people knew more about?

#10

Not sure if you're looking for things as "trifling" as programming languages, but I do wish more people knew about Nim. It's fast, statically typed, reads more or less like Python, has a great effect system, etc. It's a joy to use. I've been working through writing an interpreter in it: https://youtu.be/48CsjEFzyXQ

Just so you know, the call for speakers for the 2024 Carolina Code Conference (polyglot) will open January 1.

A Nim talk would be a great fit for the event.

Post reply on HN