I believe 3D printing will change the world in less than twenty years. We currently in the hobby-est stage–think home computers in the later 70's early eighties. It took a company to see the potential and package it up for anyone to use. I think there will be a breakthrough home 3D printer that will start whole new industries. You will be able to buy physical products direct from anyone. Anyone can design and sell a vase or a bowl or a boomerang because manufacturing and distribution are no longer barriers to market. Think of when music and video moved from mostly only possible with studios to being able to record at a studio to home recording. Anyways... I'm super excited.
Ask HN: What under-the-radar technology are you excited about?
151–160 of 553 posts
Re: Ask HN: What under-the-radar technology are you excited about?
#152Earlier quoted context omitted.
> " ...so that anyone with some computing background can build a processor, freely. " They could already do that. I designed and laid out in silicon a 32 bit processor as part of my undergraduate studies in computer engineering.
Can I run Linux on it ? I almost feel like being able to completely rebuilt computer technology from raw materials should be encased in a book somewhere. Hypothetically if we dropped you and 100 other engineers in the woods with metal working equipment could you get something resembling a computer working in 5 years ? Or in this post-apocalyptic landscape would it be more practical to dig in landfills for old GameCub…
It's a solution looking for a problem that doesn't exist.
Re: Ask HN: What under-the-radar technology are you excited about?
#1531. GNU Name System to replace the DNS in a backwards-compatible manner, with delegation to cryptographic public keys (instead of IP addresses) and with strong guarantees against known attacks against the DNS (DNSSEC doesn't solve everything). https://gnunet.org/en/gns.html 2. Semantic sysadmin to declare your intent in regards to your infrastructure no matter how it is implemented (i.e. with a standard specification,…
Re: Ask HN: What under-the-radar technology are you excited about?
#154Re: Ask HN: What under-the-radar technology are you excited about?
#155Wikidata, SPARQL, and RDF in general. And I guess semi-relatedly things like Prolog? I recently decided to fiddle with Wikidata, and it is fascinating to be able to query for any part of a statement, not just the value! In 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…
Another example, demonstrating the querying for the relation part, would be to find Leonardo DaVinci's family members: (again in pseudocode so you don't need to dwell in the syntax)
fetch ?kinName, ?linkName given
?link "is called" ?linkName.
?kin "is called" ?kinName.
"Leonardo DaVinci" ?link ?kin.
?link "is" "familial".
Line 3 was the "mindblow" moment for me, you can ask how two objects are related without knowing either one! (though I did know one of them in this example, Leonardo)Re: Ask HN: What under-the-radar technology are you excited about?
#156Wikidata, SPARQL, and RDF in general. And I guess semi-relatedly things like Prolog? I recently decided to fiddle with Wikidata, and it is fascinating to be able to query for any part of a statement, not just the value! In 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…
I've even written an engine that takes triples and renders web apps.
This is effectively a todo MVC as triples:
var template = {
"predicates": [
"NewTodo leftOf insertButton",
"Todos below insertButton",
"Todos backedBy todos",
"Todos mappedTo todos",
"Todos key .description",
"Todos editable $item.description",
"insertButton on:click insert-new-item",
"insert-new-item 0.pushes {\"description\": \"$item.NewTodo.description\"}",
"insert-new-item 0.pushTo $item.todos",
"NewTodo backedBy NewTodo",
"NewTodo mappedTo editBox",
"NewTodo editable $item.description",
"NewTodo key .description"
],
"widgets": {
"todos": {
"predicates": [
"label hasContent .description"
]
},
"editBox": {
"predicates": [
"NewItemField hasContent .description"
}
}
},
"data": {
"NewTodo": {
"description": "Hello world"
},
"todos": [
{
"description": "todo one"
},
{
"description": "todo two"
},
{
"description": "todo three"
}
]
}
}See https://elaeis.cloud-angle.com/?p=71 and https://github.com/samsquire/additive-guis
Re: Ask HN: What under-the-radar technology are you excited about?
#157Earlier quoted context omitted.
> " ...so that anyone with some computing background can build a processor, freely. " They could already do that. I designed and laid out in silicon a 32 bit processor as part of my undergraduate studies in computer engineering.
Can I run Linux on it ? I almost feel like being able to completely rebuilt computer technology from raw materials should be encased in a book somewhere. Hypothetically if we dropped you and 100 other engineers in the woods with metal working equipment could you get something resembling a computer working in 5 years ? Or in this post-apocalyptic landscape would it be more practical to dig in landfills for old GameCub…
Of course, then you need apps to be ported over, and that might take longer.
Re: Ask HN: What under-the-radar technology are you excited about?
#158- oracles for blockchain - Blockchains are secure systems because they're isolated systems. But smart contracts aren't very exciting without data from the real world. Oracles are the bridges to supply data from the real world to the blockchain world. However, a system is only as strong as its weakest link. You'd want the same security guarantees as what blockchain can provide. So the blockchain needs to "trust" oracl…
Oh no, not another term the "crypto" people have taken from the "cryptography" people and re-interpreted in a completely different way. :(
Re: Ask HN: What under-the-radar technology are you excited about?
#1591. GNU Name System to replace the DNS in a backwards-compatible manner, with delegation to cryptographic public keys (instead of IP addresses) and with strong guarantees against known attacks against the DNS (DNSSEC doesn't solve everything). https://gnunet.org/en/gns.html 2. Semantic sysadmin to declare your intent in regards to your infrastructure no matter how it is implemented (i.e. with a standard specification,…
Admittedly, i have no idea why we even need to do that nowadays, but that seemed to work.
Re: Ask HN: What under-the-radar technology are you excited about?
#160I 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…
Fees are borderline insane if you are a small volume trader. If you’re in the US there is a regulated prediction market set to launch soon.
Do you have more info about the regulated prediction market? I'd love to learn more.