Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Breaking the 1.58-bit Barrier for Ternary LLMs(arxiv.org ↗)
    discuss
  2. 2026 Small World in Motion Competition – Nikon Small World(nikonsmallworld.com ↗)
    discuss
  3. RustFS 1.0.0 GA: Production-Ready, Open Source, S3-Compatible Object Storage(rustfs.com ↗)
    discuss
  4. Zuck's bot increased our Vercel bill 10x
    discuss
  5. How VoltDB Works(voltdb.com ↗)
    discuss
  6. Ask HN: People unemployed for >2 years, how do you spend your time?
    1comments
  7. Ukrainian USV Attack on Sochi Reveals Rarely Seen Russian Navy Trained Dolphins(hisutton.com ↗)
    discuss
  8. Copyrightability of LLM-Generated Code(fsfe.org ↗)
    discuss
  9. I'm getting sued by a data center(technically.beehiiv.com ↗)
    discuss
  10. Trump's war on EVs derailed America's auto-factory revival(indiatimes.com ↗)
    discuss
  11. Show HN: A simple Mac extension for recent screenshots(github.com/kanishkvashisht ↗)
    1comments
  12. Everything we know about good agent design(rubriclabs.com ↗)
    discuss
  13. R/DoohickeyCorporation(reddit.com ↗)
    1comments
  14. WASM to Go Source Code(github.com/goccy ↗)
    discuss
  15. Ask HN: How would you anthropomorphize the Anthropic Claude logo?
    discuss
  16. Automattic's interim CEO and legal chief signed reciprocal severance deals(techcrunch.com ↗)
    1comments
  17. Arrow 2 and Arrow 2 Telos(quiver.ai ↗)
    discuss
  18. History of Forgotten Chips [video](youtube.com ↗)
    discuss
  19. An air taxi that floats: Regent's Seaglider takes flight with people on board(smartcitiesdive.com ↗)
    discuss
  20. Brushstrokes: Avant-Garde and the Psychology of Perception(eclecticlight.co ↗)
    discuss
  21. The Rhythm of Your Breath Leaves a Fingerprint on Your Thoughts(nautil.us ↗)
    discuss
  22. New satellites and artificial intelligence are transforming wildfire detection(theguardian.com ↗)
    discuss
  23. How to use HDR brightness as a graphic design hack(hdrlogo.com ↗)
    1comments
  24. DOE vs. GitHub, INC: LLM generated-content not a DMCA violation [pdf](uscourts.gov ↗)
    discuss
  25. Racing driver is about to race 100 karts at once(arstechnica.com ↗)
    discuss
  26. What's New in PHP 8.6(laravel-news.com ↗)
    1comments
  27. Denuvo Sues Game Cracker 'Voices38' for Bypassing Its Anti-Tamper DRM(torrentfreak.com ↗)
    discuss
  28. Claude.md is good for taste and project context.It's a weak place for invariants(tesseracted-labs-blog.vercel.app ↗)
    discuss
  29. Think about your goals and threat models for MFA authentication(utcc.utoronto.ca ↗)
    discuss
  30. Priest, Monk, and Mathematician(logangraves.com ↗)
    discuss

Vector Search in open-source MySQL

2 pointsby 1h agovillagesql.com
1 comments
1h agoHN ↗

Code to create HNSW index:

CREATE TABLE demo_vectors ( id INT PRIMARY KEY, embedding SVECTOR(3) NOT NULL, INDEX idx_embedding (embedding hnsw_l2) USING EXTENDED(hnsw) ) ENGINE=InnoDB;