Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. OpenJev(openjev.com ↗)
    96comments
  2. ZCode, the GLM coding agent, silently uploads your Git history(tokenstead.ai ↗)
    16comments
  3. Jemalloc 5.4.0(github.com/jemalloc ↗)
    54comments
  4. Microsoft exec called AI scraping 'the largest theft of labor in human history'(techcrunch.com ↗)
    180comments
  5. The scourge of x86 emulation(fex-emu.com ↗)
    35comments
  6. Cekura (YC F24) Is Hiring(ycombinator.com ↗)
    discuss
  7. Astra for Law(openai.com ↗)
    599comments
  8. Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint(prismml.com ↗)
    142comments
  9. Replacing Pull Requests with Delta(zed.dev ↗)
    16comments
  10. Subnormal floating-point numbers are expensive on Intel processors(lemire.me ↗)
    1comments
  11. Bend – A language that blocks AI mistakes via proof, on CPU and GPU(bend-lang.com ↗)
    238comments
  12. Qwen 3.8 Omni Flash(qwen.ai ↗)
    88comments
  13. Hister: A private search engine for the pages you visit and the files you keep(github.com/asciimoo ↗)
    171comments
  14. Wax motor(wikipedia.org ↗)
    75comments
  15. When the fractional part of a float fixes your shader(crocidb.com ↗)
    8comments
  16. Warren Buffett Steps Down as Berkshire Chairman, Names Son to Replace Him(nytimes.com ↗)
    14comments
  17. Pre-Greek: The lost language hidden within Ancient Greek(linguisticdiscovery.com ↗)
    43comments
  18. Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA(global.fujitsu ↗)
    236comments
  19. Dr Julius Neubronner's Miniature Pigeon Camera(publicdomainreview.org ↗)
    discuss
  20. How to Write with an LLM(sockpuppet.org ↗)
    127comments
  21. A heap overflow and SSO misconfiguration to compromise OpenAI internal repos(hacktron.ai ↗)
    159comments
  22. Google illegally retains customer data,and I am taking legal action against them(medium.com/istokovicsgyorgy79 ↗)
    6comments
  23. Shapelearn Qwen 3.8 27B (13.1 GB VRAM)(byteshape.com ↗)
    16comments
  24. Ask A Monk – A digital wilderness for thoughts with no immediate answer(askamonk.online ↗)
    27comments
  25. Flet 1.0 – Build cross-platform apps in Python(flet.dev ↗)
    67comments
  26. Telstra outage: The night a network decided the year was 2006(netnod.se ↗)
    29comments
  27. Diplodocus, Long Thought Exclusively American, Turns Up in Spain(sci.news ↗)
    45comments
  28. Speeding up gearhash on ARM64(sam.dev ↗)
    discuss
  29. The most important product decision is what you don't build(liamnugent.me ↗)
    41comments
  30. Why I didn’t sign the Fields medallists’ letter(gowers.wordpress.com ↗)
    374comments

Live stream: Explaining my 750 line compiler+runtime designed to GPU self-host

10 pointsby 9y agoyoutube.com
6 comments
9y agoHN ↗

This is the live stream that was talked about here:

https://news.ycombinator.com/item?id=13565743

I'll be doing this in a sort of AMA style. Please ask your technical questions here. Please use the YouTube Live chat to discuss video, stream quality, or audio questions or comments.

9y agoHN ↗

Here are some things that I'll try to remember to get to:

1. Disposable Code 2. History of the Design of the compiler, including all the other stuff I've tried. 3. My own programming background. 4. Comments in the code 5. Smaller code vs. Readable Code and Quality vs. Size 6. Abstractions and their proper use 7. The aesthetics of programming

9y agoHN ↗

What is your workflow while developing the compiler?

- Are you experimenting with the particular function in REPL/interpreter and then add it to the code?

- How do you debug the code?

- How do you test it, what are the test suits etc?

9y agoHN ↗

This has been very informative so far- looking forward to reviewing the footage later to see the parts I missed!

Do you have time to walk us through how one of the passes works step by step? Feel free to choose whichever you think is shortest or easiest to explain.