Live data from Hacker News

Ask HN: What under-the-radar technology are you excited about?

news.ycombinator.com

151–160 of 553 posts

Re: Ask HN: What under-the-radar technology are you excited about?

#151
3D Printing.

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.

Re: Ask HN: What under-the-radar technology are you excited about?

#152

Earlier 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…

Yes. OpenSPARC has been free/available since 2005. There are a multitude of others of similar vintage that can also boot Linux.

It's a solution looking for a problem that doesn't exist.

Re: Ask HN: What under-the-radar technology are you excited about?

#153

1. 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,…

I am a lifelong sysadmin, and have thought about #2 frequently. I am thinking seriously about making it a research project. Who is behind this document you linked to? Is it tildeverse? Parts of that document are pretty up to date, so it does not seem very old. I am not really familiar with the null pointer site, or even how to find things on it (as in, every now and then I am surprised). I am surprised I have not seen this before.

Re: Ask HN: What under-the-radar technology are you excited about?

#155
post #57

Wikidata, 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…

A small addendum because I forgot to actually show something cool:

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?

#156
post #57

Wikidata, 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 am a huge fan of triples to represent things.

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?

#157

Earlier 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…

On RISC-V? Yes... Well sort of. There are people working on ports of Fedora, Debian and OpenSuse (I think) and I've seen some version of BSD working on SiFive's boards. Debian is said to be 95% complete. Ubuntu have also announced that they're working on a port, and SkiffOS is said to be ready to run on RISC-V too. There was also a demo of AOSP working on 3 XuanTie 910 cores a few weeks ago.

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…

> oracles

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?

#159

1. 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,…

In case the nushell link doesn't work for anyone else, consider prefixing it with www: https://www.nushell.sh/

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?

#160
post #52
post #5

I 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.

Agreed. Very expensive if you're throwing in a bit of cash.

Do you have more info about the regulated prediction market? I'd love to learn more.

Post reply on HN