Live data from Hacker News

Ask HN: What startup/technology is on your 'to watch' list?

news.ycombinator.com

641–650 of 700 posts

Re: Ask HN: What startup/technology is on your 'to watch' list?

#641

Earlier quoted context omitted.

One thing that's not clear to me is the advantage of living longer. Why do some people feel the need to live longer? When I hear of blood transfusion and such, it also feels like a lot of these technologies are being developed by snakeoil salespeople to other nongullible but strictly egocentric humans.

One thing with aging research is it's also about healthier living - for example, letting people be healthier well into old age, even if the number of years is the same. In terms of why people want to live longer, I think it's just human nature at the end of the day - more time to do the things you enjoy and help the people you care about. Practically speaking, there are a lot of advantages to longer lives: - Generall…

I see your point. I think there is an angle there. However, still feels like a rich person's game here: not sure if the average or below average conditions will improve (childhood mortality, adult mortality) in developing countries because of this.

That's really where the "average" advantage seems to be: if life becomes better for everyone then they live longer.

Re: Ask HN: What startup/technology is on your 'to watch' list?

#642

A friend of mine is working on coscout. It's in beta right now, but he showed me some pretty insane machine learning based insights for companies, investors and founders. Things like - When will this company raise the next round? - What is the net worth of ? - What is the probability that this investor will invest in you? (given your sector, founder age, pedigree, gender, market conditions, do you have an MVP or not…

Feedback loops in this sort of thing always scare me. For example - say people of one demographic are less likely to fund raise, so the model says they're less likely to succeed, so investors using the model don't invest in them and they are put at an even further disadvantage. And so something that is inherently data driven can end up moving further away from the meritocratic ideal it's likely trying for. And the th…

Agreed. It's definitely up to the user to make smart decisions.

However, it's not so cut and dry either. In my last company (B2C mobile app based), we were pretty much getting beat by several competitors. And it showed across all metrics, ratings/reviews/downloads/web traffic/retention/engagement - what have you.

And later on we found out that the founders had been fudging up the metrics and presenting to investors which is why they actually were never able to raise the round, but came very close. By straight up lying.

If some form of business/product intelligence is used to identify such red flags, it can save a lot of bad decisions and heartache from ever happening for everyone involved.

In that regard, I welcome more empirical evidence based decision making (aka statistics/machine learning etc.) where it's appropriate.

Re: Ask HN: What startup/technology is on your 'to watch' list?

#643
post #382
post #95

Self-driving cars. Now that the hype is over and the fake-it-til-you-make-it crowd has tanked, there's progress. Slowly, the LIDARs get cheaper, the radars get more resolution, and the software improves. UE5's rendering approach. They finally figured out how to use the GPU to do level of detail. Games can now climb out of the Uncanny Valley. The Playstation 5. 8 CPUs at 3.2GHz each, 24GB of RAM, 14 teraflops of GPU,…

> Self-driving cars. Now that the hype is over and the fake-it-til-you-make-it crowd has tanked, there's progress. Slowly, the LIDARs get cheaper, the radars get more resolution, and the software improves. Still don't see fully (fully automated) self driving cars happening any time soon: 1) Heavy steel boxes running at high speed in built up areas will be the very last thing that we trust to robots. There are so many…

We already have fully automated trains. The DLR in London.

I am optimistic about solving those problems. Regulation always comes after the tech is invented. Cars have more opportunity to fail gracefully in an emergency; pull off onto the shoulder and coast to a stop or bump into an inaminate object.

Re: Ask HN: What startup/technology is on your 'to watch' list?

#645

Earlier quoted context omitted.

I've done a couple neat (IMO) things with CF workers. - I use imgix to manipulate images in my app, but some of my users don't want anyone to be able to discover (and steal) the source images. Imgix can't do this natively; all image manipulation instructions are in the URL. So I put a CF worker in front of imgix; my app encrypts the url, the worker decrypts it and proxies. - A year ago, intercom.io didn't support per…

>These are both trivial, stateless 5-line scripts Would it be possible to share these scripts? I would love to see them, they sound really helpful/useful

Sure. Here's the help system one (no longer used since intercom now supports permissions, and I opened up the help system anyway):

    addEventListener('fetch', event => {
       event.respondWith(handleRequest(event.request))
     })

    async function handleRequest(request) {
       const cookie = request.headers.get('Cookie');
       if (cookie && cookie.includes('foo=bar')) {
         return await fetch(request);
       } else {
         return new Response('You must log in before accessing this content');
       }
     }
The encrypted URL script is actually a bit longer than "5 lines" (it has been a while) so here's a gist:

https://gist.github.com/stickfigure/af592b1ce7f888c5b8a4efbe...

Re: Ask HN: What startup/technology is on your 'to watch' list?

#646
post #19

Web Assembly It's interesting in a bunch of ways, and I think it might end up having a wider impact than anyone has really realized yet. It's an ISA that looks set to be adopted in a pretty wide range of applications, web browsers, sandboxed and cross platform applications, embedded (into other programs) scripting, cryptocurrencies, and so on. It looks like it's going to enable a wider variety of languages on the web…

I want to believe... I always thought WebAssembly had a lot of potential, however, in practice it doesn't seem to have turned out that way. I remember the first Unity demos appearing on these orange pages at least 4 or 5 years ago, and promptly blowing me away. But, after an eternity in JavaScript years, I still dont know what the killer app is, technically or business wise. (Side note - I encourage people to prove m…

[deleted]

Re: Ask HN: What startup/technology is on your 'to watch' list?

#647
post #583

Earlier quoted context omitted.

Would love to know more. This is fascinating.

The dat website is at dat://aaca379867bff648f454337f36a65c8239f2437538f2a4e0b4b5eb389ea0caff You can visit with the beaker browser, or share it through dat so it won't ever go down. You can also visit it at http://www.nanosavseq.com/ (DNS is not up yet, http://167.172.195.83/book/index.html is direct) It's embarrassingly barren right now, mainly since I've encountered some big problems with getting my DNA quantifier…

The book / documentation is very clean and presented in a fantastic way. May I ask what engine you are using for presenting this book?

Re: Ask HN: What startup/technology is on your 'to watch' list?

#648
post #71

Rust lang - Memory safety through zero cost abstraction as a way to eliminate a large class of errors in systems languages is interesting. Especially if it allows more people to write systems programs. WASM - Mostly as a compile target for Rust, but I think this changes the way software might be deployed. No longer as a website, but as a binary distributed across CDNs. ZK-SNARKS - Zero knowledge proofs are still nasc…

> It's a dream to replace cloud computing as we know it today.

Perhaps you may be interested in Golem project devoted to distributed computing: https://golem.network/

Re: Ask HN: What startup/technology is on your 'to watch' list?

#650
post #95

Self-driving cars. Now that the hype is over and the fake-it-til-you-make-it crowd has tanked, there's progress. Slowly, the LIDARs get cheaper, the radars get more resolution, and the software improves. UE5's rendering approach. They finally figured out how to use the GPU to do level of detail. Games can now climb out of the Uncanny Valley. The Playstation 5. 8 CPUs at 3.2GHz each, 24GB of RAM, 14 teraflops of GPU,…

> 8 CPUs at 3.2GHz each

8 CPU cores at 3.2GHz each?

Post reply on HN