frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Prior

https://prior.chat/
1•onemarkos•57s ago•0 comments

Show HN: I built my own knowledge graph from the code AI writes

https://github.com/aeroscissorz/learnlance/
1•aeroscissorz1•4m ago•0 comments

Nuclear Design Bureau

https://store.steampowered.com/app/4190240/Nuclear_Design_Bureau/
1•skibz•5m ago•0 comments

ChiPass

https://codeberg.org/ChiPass
1•zingerlio•6m ago•0 comments

Smartphones could be used to screen for cataracts and other eye problems

https://www.escrs.org/channels/news/smartphones-could-be-used-to-screen-for-cataracts-and-other-e...
2•geox•7m ago•0 comments

Agent Tavern – a Q&A board where a different AI model has to review the answer

https://agenttavern.dev/
1•timohin•8m ago•0 comments

Cpak – OCI application package format for Linux desktops, servers and devices

https://cpak.it/
1•xlmnxp•9m ago•1 comments

Thieves hijack AI hardware shipments in California

https://www.tomshardware.com/tech-industry/cargo-thieves-rammed-security-escorts-to-hijack-ai-har...
1•Ginger-Pickles•9m ago•0 comments

Situation: A Bear Miss [pdf]

https://bitbanter.com/posts/2026-09-10/situation-a-bear-miss/situation-a-bear-miss.pdf
1•FlailFast•9m ago•0 comments

28-Hour Day App

https://apps.apple.com/us/app/28-hour-day/id6752815000
1•28HourDev•11m ago•0 comments

Council – Five independent advisors for your agent

https://github.com/mattakins/Council
1•mattakins•11m ago•1 comments

What I write in the debrief after a senior mobile interview

https://interviewruntime.com/blog/what-interviewers-write-in-the-debrief
1•salari_dev•11m ago•0 comments

Humans Are Always the Bottleneck

https://kdy1.dev/2026-9-6-humans-are-always-the-bottleneck
1•kiyanwang•12m ago•0 comments

Ask HN: Why haven't people vibe coded popular 80s word processors as TUI apps?

2•amichail•13m ago•0 comments

Students are planning around a future employers don't expect

https://tappenden.com/posts/the-half-that-doesnt-travel/
1•maxtappenden•15m ago•1 comments

Big AI to Humanity: Drop Dead

https://matthewbutterick.com/chron/drop-dead.html
1•velcrovan•16m ago•0 comments

OpenHaystack is a framework for tracking personal Bluetooth devices

https://github.com/seemoo-lab/openhaystack
1•Bluestein•16m ago•0 comments

'I'm Terrified': A Mathematician Grapples with AI's Recent Breakthroughs

https://www.wired.com/story/mathematician-steven-strogatz-grapples-with-ai-recent-breakthroughs/
2•Anon84•17m ago•0 comments

You Technically Need a Permit for That: Spirit of the Law, Letter of the Law

https://robertxworld.com/you-technically-need-a-permit-for-that/
1•devrob•19m ago•0 comments

Agents School: A community platform where AI agents take exams and earn diplomas

https://theagentschool.dev
1•guidosirna•24m ago•0 comments

Show HN: Hop – project sessions beyond tmux

https://github.com/artemave/hop
1•artemave•29m ago•0 comments

Open-Source AI and Open Models Reading List

https://www.interconnects.ai/p/open-source-ai-reading-list
1•pretext•30m ago•0 comments

Vinix is a modern, fast, and useful OS in the V programming language

https://github.com/vlang/vinix
1•fork-bomber•31m ago•0 comments

Engineer turns simulated fly brain into a crypto day trader

https://www.tomshardware.com/tech-industry/artificial-intelligence/engineer-turns-simulated-fly-b...
2•pbexe•31m ago•1 comments

"Sweet, a whole website of video game menus" The Game UI Database

https://unsung.aresluna.org/sweet-a-whole-website-of-video-game-menus/
1•Bluestein•35m ago•0 comments

Claude artifacts can now save themselves and share a realtime database

https://chaosguru.substack.com/p/anthropics-google-docs-killer-is
1•allixsenos•37m ago•0 comments

Sanders proposes 20 year sentence for devs for Artificial Superintelligence

https://www.tomshardware.com/tech-industry/artificial-intelligence/sanders-proposes-20-year-priso...
3•NordStreamYacht•38m ago•1 comments

20 years devoted to tech, no place in it. Is visibility the only way in?

https://invisiblebarrier.org/en/
1•MS8080•38m ago•0 comments

Show HN: Scriptlet – a native macOS app for package.json scripts

https://scriptlet.app/
1•rgbjoy•39m ago•0 comments

AI vs. Human Value Drift

https://www.overcomingbias.com/p/ai-vs-human-value-drift
1•meetpateltech•40m ago•0 comments
Open in hackernews

Show HN: Deeplearning from Scratch in 1400 Lines

https://github.com/NoSavedDATA/Neve_benchmarks
2•nosaveddata•54m ago

Comments

nosaveddata•54m ago
Hi, HN. I am the creator of Neve and its deep learning framework, Frost.

I built it mainly because of difficulties researches face when they want to implement neural networks. The first is about networks that require parallel optmizations, like the Efficient Zero and PyTorch dataloaders. They are heavily constrained by the Global Interpreter Lock (GIL). Thus, they require programming in C, and to use cumbersome Python interop with C as around. The second reason is for making kernel fusion techniques, like Flash Attention.

It is still experimental, but I am passed halfway to fulfill these goals.

Neve has native parallelism, Go-like channels, and allows you to create networks either completely in high-level with GPU kernels interfacing, or using interop with C++.

To demonstrate its simplicity and expressivity, I put all the Frost into a single page of code, mixed with the training algorthim. The complete deep learning did not surpass 1400 lines of code (image loading, GPU tensors memory pool and tensor print function are C++, but they are also compact).

I trained a ResNet-18 in Cifar-10 and compared to PyTorch. All implementations achieved similar accuracy. Neve partial cuDNN implementation is faster than PyTorch. Neve with naive GPU kernels is still behind, but the kernels lack some optimizations I am busy to make.

If you want to see how the design choices work in pratice, the 1400 lines code is at neve_samples/all_in_one.nv (github does not highlight the syntax, but you can set your editor to Python or install Neve syntax)

-- Limitations

- You need a Linux (or Docker to it) for Neve, and a CUDA 12.3 compatible GPU for Frost.

- The concurrent gc also has some extremely rare crashes that I am still hunting.

--

Links

- Neve docs: https://neve-lang.dev - Neve repository: https://github.com/NoSavedDATA/Neve - Frost repository: https://github.com/NoSavedDATA/frost - Background on why making a new deep learning framework (comparing to Julia and Mojo). https://dev.to/no_saved_data/deep-learning-from-scratch-in-1... - Quick start to the main features: https://dev.to/no_saved_data/neve-towards-a-unified-programm...

--

I will stay around to answer questions about the language