Live data from Hacker News

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

news.ycombinator.com

391–400 of 417 posts

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

#391

Earlier quoted context omitted.

a. Using nix in place of a package manager means dealing with libraries specific to that language. It's still managing different apis. And more potential for bugs and unforeseen problems in custom 3rd party APIs as opposed to the official one. Admit it, you hit tons of problems getting everything to work fine with python. b. C++ is the only one that would benefit from nix here because C++ dependencies are usually ins…

a. you hit tons of problems getting everything to work fine with python - of course, but the maintenance burden is an order of magnitude lower than integrating all this manually. b. No, docker is not a solution. Docker is another problem and a separate maintenance nightmare. (Nix solves maintenance problems at scale, Docker explodes them exponentially. I would not ever recommend using Docker for anything except perso…

I agree.

There are many python packages that have other dependencies not managed by Python package management. The pain of figuring out what those implicit dependencies are is effectively removed for users when configured as a nix shell.

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

#393

Growing in popularity, but still not as famous as it should be: EdgeDB ( https://EdgeDB.com ) * Graph-relational database * Queries return objects linked to other objects through properties, not rows * ... But it's still Postgres under the hood * Open source

This looks really nice! Thanks for sharing.

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

#395

Apache NIFI. It should be used more for building Data Pipelines specifically.

I haven't used it in years but when I did, it was an absolute nightmare to work with, especially with respect to version control. There was no good way to version control their "templates", and collaborating was always painful. Not to mention the interface felt like it was from the 90's and dreadfully slow and painful to maneuver. The underlying functionality it permitted was quite good though. A facelift and a better version control scheme would help a lot.

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

#397
post #229

Earlier quoted context omitted.

I used to do some professional services work, and magic wormhole was one of the most reliable ways for me to get files to clients who's companies blocked traditional file sharing hosts like Dropbox and Google Drive.

Check out croc, I've been using it for years, and it works pretty great too! https://github.com/schollz/croc

I moved from Croc to wormhole-william as the author of Croc has dodged a bunch of security-related questions in various issues and I didn't feel comfortable continuing to use it.

There was this fun little number a couple of years back https://redrocket.club/posts/croc/

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

#399

Earlier quoted context omitted.

Nature, almost completely analog, has been around a thousand times longer than humans. How many times has 'evolution' used digital methods to accomplish something? Perhaps we've chosen to switch to digital because we're in a hurry and its easier ... in hopes of, some day, asymptotically approaching the advantages of analog.

The main reason is that digital computers are so incredibly, overwhelmingly more flexible than analog. Analog computers are (generally) bespoke single-purpose devices. It really isn't too far off to imagine analog computers as code made physical, with all that entails. Imagine writing a program if every time you wanted to change something you had to cut a new gear, or design a new mechanism, or build a new circuit. I…

Yeah but ChatGPT is using $700k per day in compute (or was in April). Someone's going to make an analog machine that uses mirrors and light interference or something to do self attention and become very, very wealthy.

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

#400

BOSH: https://bosh.io/docs/

The page for this is somewhat awful. What platform is this for? Something for some vms, I suppose. Linux clients then? What hypervisors are supported or is it ambiguous.

Yeah there’s a reason no one’s heard of it. It’s basically the installer & updater for Cloud Foundry but there’s a bunch of other incidental stuff that’s had Bosh Releases made for it over the years, including Kubernetes.

It creates VMs. Mostly Ubuntu Linux but there’s a slightly demented way to deploy Windows boxes too.

Hypervisor support is provided by a plugin system called the Cloud Provider Interface. Last I heard vSphere, GCP, Azure and AWS are all reasonably well tested and maintained by their respective companies. Open Stack technically is there but it’s a nightmare and not well commercially supported. I’ve heard of stuff being deployed to Alibaba and Oracle but never seen those systems myself.

In practice this is mostly used to manage VMs into vSphere clusters.

Post reply on HN