Live data from Hacker News

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

news.ycombinator.com

101–110 of 417 posts

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

#101
post #57
post #45

Earlier quoted context omitted.

> seems like it would be better solved using standard OpenPGP signatures with no backing chain. Programmability though

Can you elaborate?

There would be no automated consensus over results of execution of programs that power the applications

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

#103
post #46

Earlier quoted context omitted.

I've to admit i tried to edit the post multiple times, even checked the formatting options https://news.ycombinator.com/formatdoc (having links between angle brackets didn't work :( ) sorry for the inconvenience and thank you for doing the effort :)

> Urls become links, except in the text field of a submission.

Any explanation to way it's a thing?

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

#105
post #21

Plan 9 in general.

I keep hearing about it and its influence, but I can't really figure out if it's active or dead or even If I can use it on a virtual machine or so. 9p.io doesn't seem to even load on my machine

An update was released just yesterday: https://news.ycombinator.com/item?id=38485309 N.b. practically plan9 has become 9front.

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

#106

Earlier quoted context omitted.

It's good for a c or c++ project where libraries are very environment specific. But most modern languages have their own package/environment managers which makes Nix redundant.

Not really. I introduced it to our Python projects at work and it's been great. Partially because of poetry2nix, and partially because it makes it easy to include other stuff like a specific version of Redis for testing purposes. Everybody gets the exact same dev environment, reducing a ton of "works on my machine".

virtualenv is the python way. For things like redis and other external web stuff, docker is the standard.

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

#107
post #51

I'm thinking unpopular could mean the tech is polarizing or frequently dismissed/overlooked. * APL -- I haven't dedicated the time to learning in part because there's little support where I normally work. I'd love for APL to have be adapted like a domain specific language a la perl compatible regular expressions for various languages (april in common lisp, APL.jl in julia). * regular expressions. https://xkcd.com/117…

Greenclip is exactly what I've been looking for! Thanks!

Also how do you use zimwiki? I've been trying it for a month and I don't find it that great compared to something like Obsidian or QOwnNotes or even TiddlyWiki. Do you have a specific workflow?

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

#108

Earlier quoted context omitted.

It's good for a c or c++ project where libraries are very environment specific. But most modern languages have their own package/environment managers which makes Nix redundant.

Not really. I introduced it to our Python projects at work and it's been great. Partially because of poetry2nix, and partially because it makes it easy to include other stuff like a specific version of Redis for testing purposes. Everybody gets the exact same dev environment, reducing a ton of "works on my machine".

Presumably it also can fill the role of conda/mamba i.e. also managing C/C++ libraries in the same way in the nix environment, isolated from the system libraries?

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

#109
Popular is a bit relative...

- I'd like Emacs/org-mode knowledge common at least starting from universities because we need the classic desktop model and Emacs is the still developed piece of software implementing it alongside with Pharo, but Pharo is usable only to play and develop while Emacs is ready to end-users usage with a gazillion of ready-made packages;

- feeds, in the broad sense, meaning XML automation on the net/web so I can get my bills just from a feedreader, all transactions digitally signed, so both party have a proof (ah, of course a national PKI is mandatory), news, anything in the same way making my information mine in my hands instead of wasting time in gazillion of crappy services;

- IPv6 with a global per host, so we can finally profit of our modern fiber-optics connections instead of being tied to someone else computer, i.e. "the cloud";

- last but just aside: R instead of spreadsheets for the business guys, so they do not produce and share anymore crappy stuff, LaTeX for similar reasons to produce nice looking pdfs...

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

#110
post #86
post #24

GnuPG/PGP and the web of trust[0]. A lot of things I see blockchain being used for today (e.g. NFTs) seems like it would be better solved using standard OpenPGP signatures with no backing chain. Additionally, as machine-generated content proliferates, I think having services use something like the web of trust concept for membership would be super powerful. The problem is, of course, the terrible UX of cryptographic…

GPG is great. It also makes it really easy to encrypt environment dotfiles that safely reside in your source code repository. This is my favorite way of storing sensitive app configs. You don't even need a PGP private key in your keychain to do it. You can use a passphrase.

This sounds interesting. Have you got an example of how you do this by any chance?
Post reply on HN