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: 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