https://ipfs.io/ seems pretty cool. I've been meaning to check it out, but not seen any uptake yet.
Ask HN: What under-the-radar technology are you excited about?
51–60 of 553 posts
Re: Ask HN: What under-the-radar technology are you excited about?
#52I recently came across Polymarket[1] and am really excited about what crypto has in store for prediction markets and insurance. I've dabbled in prediction markets over the years. I think they have a lot of promise but execution is always an issue. Using ETH to create a two-sided marketplace feels much better than having prediction markets decide what one can bet on. More broadly, decentralizing insurance in this way…
If you’re in the US there is a regulated prediction market set to launch soon.
Re: Ask HN: What under-the-radar technology are you excited about?
#53Advances in computational chemistry and computational materials science. Specially using ML to speed up computation. Computational chemistry is already patchwork of different heuristic approaches. Graph neural networks and even some language models seem very promising addition. If we could simulate and observe what happens with complex chemistry accurately, it would completely change the biology, medicine and materia…
>If we could simulate and observe what happens with complex chemistry accurately There is the rub. Biological simulations have been written for 40 years now. It's an extremely difficult problem considering how many latent variables are at play, and people have been working on it for a very long time now.
ML techniques will be used to cut that latent variable space in both quantum chemistry and molecular mechanics based methods.
Re: Ask HN: What under-the-radar technology are you excited about?
#54Re: Ask HN: What under-the-radar technology are you excited about?
#55Narrowband IoT data service. Very low power, low bandwidth, cheap, with increasingly great coverage. It’s like an offshoot of LTE but classified as a 5G technology for massive numbers of low power internet connected devices.
I have to admit, the idea of a run-of-the-mill security-hole-ridden IoT device being exposed to the bare internet over a wireless connection that's out of my control gives me the heebie-jeebies... and that's ignoring the possibilities for malicious use (e.g. using a low powered wireless connection for uncontrollable surveillance/data collection).
Most operators haven't figured out their business model for NB-IoT quite yet (at least in Europe) - they're still dabbling. Some seem likely to try pair it with enterprise "private APN" type solutions. Under such a setup, you can actually get quite an interesting system in place - the operator locks the SIM to a custom APN, and that APN only allows comms to a managed, operator-provided IoT backend.
Then the operator's enterprise services team turns that into dashboards and other things the customer can use and access. In a sense, they're using "extra slack capacity" on their FDD cellular networks (as an NB-IoT carrier is only 200 kHz wide and can sit inside or adjacent to a regular 4G or 5G carrier), and delivering higher margin managed enterprise services.
Some other comments point out the potential to use LoRa - indeed, although if you can use LoRa, you probably aren't the target market for NB-IoT. If you want to deploy 50 million smart meters, a nationwide existing network and managed service from the operator starts to get appealing, as does them handling security, isolating the devices onto a private APN, and helping you update devices in the field.
If you are using LoRa, you need to handle this and deploy the infrastructure. To date though, I've seen lots of "unmanaged" NB-IoT testing taking place, but not a whole lot of the "full service managed offering".
Otherwise I would agree entirely with your point about connecting modern IoT devices to the internet, but in this case I think it will end up for enterprise type deployments where they're restricting that for you.
Re: Ask HN: What under-the-radar technology are you excited about?
#56Re: Ask HN: What under-the-radar technology are you excited about?
#57In SPARQL you write statements in the form
But the cool part is that any of those three parts can be extracted, so you can ask things like "what are the cities in ", or "what country harbors the city ", but most importantly, "how does relate to ".For example, if you wanted to find out all the historical monuments in state capitals of a country (using my home country as an example, also pseudocode for your time's sake):
fetch ?monumentName, ?cityName given
?monument "is called" ?monumentName.
?monument "is located within" ?city.
?city "is capital of" ?state.
?city "is called" ?cityName.
?city "is located within" "Brazil".Re: Ask HN: What under-the-radar technology are you excited about?
#58Homomorphic encryption, which enables you to process data without decrypting it. Would solve privacy / data security issues around sending data to be processed in the cloud
Unless we figure out some awesome hardware acceleration for it, it's not practical but for a few niche applications.
It also has the problem that you can use computation results to derive the data, if you have enough control over the computation (e.g. a reporting application that allows aggregate reports).
Re: Ask HN: What under-the-radar technology are you excited about?
#59I'm really excited, to the point of distraction by the RISC-V ISA. Some people say that there's nothing new in it, but to my mind, they're missing the point : the Berkeley Four took what couldn't be appropriated for profit, and built a statement about what computing is... They revealed the Wizard of Oz to everyone, so that anyone with some computing background can build a processor, freely. And now this freed wizard…
You do realize that RISC-V processors aren't free right? Making an open source ISA is no small feat, but all they really did was help save some megacorporations a little extra money. Perhaps it will lead to a processor startup, but follow that to its logical conclusion: it takes a huge, profitable company to sustain processor delivery for years. There's a very good reason why only a handful of companies make the top…
There're already designs freely available to use though, either as they are, or to build upon.
And there are also now many other companies designing using the ISA; decentralising the production of chips.
But - over and above the revolutionary economics of it - it's being recognised as a good ISA, and RISC-V cores are already being incorporated into consumer electronics.
Re: Ask HN: What under-the-radar technology are you excited about?
#60This new crypto project just launched its mainnet a few weeks ago: https://chia.net It's a novel "Proof of" algorithm (Proof of Space and Time) that front loads the resource needs into a Plotting phase, with a very efficient Farming phase after that to process blocks with transactions. Seems like a much more fair, sustainable model for having a secure digital currency. It also has an interesting, Lisp based programmi…