Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Training a 4B model to produce 81% faster query plans than Postgres(rohanbansal.com ↗)
    40comments
  2. Breaking the 1.58-bit Barrier for Ternary LLMs(arxiv.org ↗)
    discuss
  3. Xiaomi Mimo 2.6 live post-training dashboard(xiaomi.com ↗)
    34comments
  4. Small programming tricks(will-keleher.com ↗)
    157comments
  5. macOS 27 Golden Gate – Review(arstechnica.com ↗)
    55comments
  6. Reversing Factorio's RNG(gegell.github.io ↗)
    8comments
  7. Accurate Models of AMD Matrix Cores(arxiv.org ↗)
    5comments
  8. AWS says it can't restore some data from mideast facilities struck by Iran(wsj.com ↗)
    44comments
  9. Performance Improvements in .NET 11(devblogs.microsoft.com/dotnet ↗)
    3comments
  10. Vectorized and performance-portable Quicksort (2022)(googleblog.com ↗)
    24comments
  11. How good are frontier models at physics?(arxiv.org ↗)
    14comments
  12. Anatomy of a Texture(agentlien.github.io ↗)
    10comments
  13. Dream-RSI: Recursive Self-Improvement through Evolving Worlds(arxiv.org ↗)
    48comments
  14. Japan's book scene is moving from bookstores to libraries(untranslatedjp.substack.com ↗)
    6comments
  15. Mistral X Mozilla: Private, Multilingual AI Browsing(mistral.ai ↗)
    177comments
  16. Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations(github.com/arnegiacomo ↗)
    234comments
  17. Anecdotally, programmers dislike "reduce"(evanhahn.com ↗)
    78comments
  18. The Siberian Ice Maiden and the Scythian World(patrickwyman.substack.com ↗)
    2comments
  19. WalShadow: Sub-second Postgres replication to ClickHouse from physical WAL(clickhouse.com ↗)
    4comments
  20. Tell the speakers that you liked their talks(ohhelloana.blog ↗)
    71comments
  21. Training Text-to-Image Models 3.6× Faster(linum.ai ↗)
    1comments
  22. Show HN: Restarted – a 2026 remake of the classic 2015 startup generator(restarted.io ↗)
    1comments
  23. Show HN: AttaLambda: a language where types and data are made of untyped lambdas(attalambda.com ↗)
    discuss
  24. A warning about 'model welfare'(mustafa-suleyman.ai ↗)
    430comments
  25. The DeepMind Institute(deepmind.com ↗)
    33comments
  26. Kyber (YC W23) Is Hiring a Forward Deployed Engineer(ycombinator.com ↗)
    discuss
  27. Reverse-engineered Jev-like model(github.com/vinnylarouge ↗)
    4comments
  28. Douglas Adams and the exterminated Doctor Who adventure(bbc.co.uk ↗)
    66comments
  29. Claude Cowork and chat are now one Claude(claude.com ↗)
    192comments
  30. How big are factorials?(thegreenplace.net ↗)
    30comments

Show HN: Restarted – a 2026 remake of the classic 2015 startup generator

11 pointsby 1d agorestarted.io
1 comments
The original startup website generator by Tiff Zhang and Mike Bradley landed on Hacker News in April 2015 (https://news.ycombinator.com/item?id=9427856) and has been one of my favorite little novelties of that era ever since. It perfectly captures the saturated colors, cliché hero shots, gimmicky names, buzzword-heavy slogans, and proudly hirsute team photos of the time.

A lot has changed since then, so I thought it would be fun to make a contemporary remake: https://restarted.io/

By default you get the minimalist aesthetic and clean-cut faces of 2026. The classic 2015 look is still available — just click the link at the bottom of the page or change the “z” parameter in the URL to the more familiar “s”. The universe of partner sites and competing startups is just as expansive as it ever was.

The original site is entirely client-side and requires downloading all of the data tables locally. It leans on a mix of jQuery 1.11.2, Bootstrap 3.3.2, and Font Awesome 4.3.0, and if you view the source, it instantly gives away all of its secrets. For restarted.io I replaced all of that with a server-side renderer written in Go, so this time view-source tells you nothing. There are many Easter eggs in there — see how many you can find before I write them up.

My original goal was to stay faithful to the 2015 appearance, and that turned out to be a technical adventure. The original's sine-based random number generator is... the worst, and different implementations of sine give different results. The eventual solution was to extract the exact sine function from Chrome’s V8 engine, as vendored C behind cgo and as a line-by-line Go port that keeps cgo optional, so the seeds and results line up the way they used to. Both are checked against V8’s own test cases.

Then I discovered a bug in the original code that made half of its vocabulary unreachable — the first half of the verb table and the second half of the noun table, exactly complementary, so nothing about the output ever looked truncated. My goal then shifted from remaking the generator as it was in 2015 to remaking the site as the authors intended it to be in 2015.

Over the years several people asked for their photos to be removed, so the remake instead draws from a broad pool of era-appropriate AI-generated profiles. A perceptual hash helps keep everyone looking distinct, and there’s a bit of extra care to make sure the Wang Fangs of the world don’t appear as Irish lasses.

The hero image pool is much larger now, and all the old Rio de Janeiro shots have been retired, though you’ll still recognize plenty of the 2015 photos.

Have fun poking around!

38m agoHN ↗

Given what we can do today with LLMs it would be even cooler if it thought of some actually good business ideas and created the website with mockups of them.