Hacker News
23.9K subscribers
117K links
Top stories from https://news.ycombinator.com (with 100+ score)
Contribute to the development here: https://github.com/phil-r/hackernewsbot
Also check https://t.me/designer_news

Contacts: @philr
Download Telegram
Show HN: I built a synthesizer based on 3D physics (🔥 Score: 155+ in 2 hours)

Link: https://readhacker.news/s/6tQ9L
Comments: https://readhacker.news/c/6tQ9L

I've been working on the Anukari 3D Physics Synthesizer for a little over two years now. It's one of the earliest virtual instruments to rely on the GPU for audio processing, which has been incredibly challenging and fun. In the end, predictably, the GUI for manipulating the 3D system actually ended up being a lot more work than the physics simulation.
So far I am only selling it direct on my website, which seems to be working well. I hope to turn it into a sustainable business, and ideally I'd have enough revenue to hire folks to help with it. So far it's been 99% a solo project, with (awesome) contractors brought in for some of the stuff that I'm bad at, like the 3D models and making instrument presets/videos.
The official launch announcement video is here: https://www.youtube.com/watch?v=NYX_eeNVIEU
But if you REALLY want to see what it can do, check out what Mick Cormick did with in on the first day: https://x.com/Mick_Gordon/status/1918146487948919222
I've kept a fairly detailed developer log about my progress on the project since October 2023, which might be of interest to the hardcore technical folks here:
https://anukari.com/blog/devlog
I also gave a talk at Audio Developer Conference 2023 (ADC23) that goes deep into a couple of the problems I solved for Anukari: https://www.youtube.com/watch?v=lb8b1SYy73Q
Images of Soviet Venus lander falling to Earth suggest its parachute may be out (🔥 Score: 151+ in 2 hours)

Link: https://readhacker.news/s/6tQhV
Comments: https://readhacker.news/c/6tQhV
Show HN: GPT-2 implemented using graphics shaders (Score: 150+ in 7 hours)

Link: https://readhacker.news/s/6tPuG
Comments: https://readhacker.news/c/6tPuG

Back in the old days, people used to do general-purpose GPU programming by using shaders like GLSL. This is what inspired NVIDIA (and other companies) to eventually create CUDA (and friends).
This is an implementation of GPT-2 using WebGL and shaders. Enjoy!
A Common Lisp jq replacement (Score: 150+ in 23 hours)

Link: https://readhacker.news/s/6tNLj
Comments: https://readhacker.news/c/6tNLj
Show HN: OSle – A 510 bytes OS in x86 assembly (Score: 150+ in 1 day)

Link: https://readhacker.news/s/6tN5T
Comments: https://readhacker.news/c/6tN5T

(sorry about double posting, I forgot to put Show HN in front in the original https://news.ycombinator.com/item?id=43863689 thread)
Hey all,
As a follow up to my relatively successful series in x86 Assembly of last year[1], I started making an OS that fits in a boot sector. I am purposefully not doing chain loading or multi-stage to see how much I can squeeze out of 510bytes.
It comes with a file system, a shell, and a simple process management. Enough to write non-trivial guest applications, like a text editor and even some games. It's a lot of fun!
It comes with an SDK and you can play around with it in the browser to see what it looks like.
The aim is, as always, to make Assembly less scary and this time around also OS development.
[1]: https://news.ycombinator.com/item?id=41571971