frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rio de Janeiro's "homegrown" LLM appears to be a merge of an existing model

https://github.com/nex-agi/Nex-N2/issues/4
81•unrvl22•1h ago•48 comments

Firewood Splitting Simulator

https://screen.toys/firewood/
330•memalign•4d ago•110 comments

The Birth and Death of JavaScript (2014)

https://www.destroyallsoftware.com/talks/the-birth-and-death-of-javascript
154•subset•4h ago•85 comments

Show HN: Kage – Shadow any website to a single binary for offline viewing

https://github.com/tamnd/kage
6•tamnd•9m ago•0 comments

Caddy compatibility for zeroserve: 3x throughput and 70% lower latency

https://su3.io/posts/zeroserve-caddy-compat
75•losfair•3h ago•22 comments

Ask HN: What are you working on? (June 2026)

26•david927•1h ago•43 comments

Perlisisms

https://www.cs.yale.edu/homes/perlis-alan/quotes.html
42•tosh•2h ago•11 comments

Lisp's Influence on Ruby

https://blog.tacoda.dev/lisps-influence-on-ruby-6a54f1a7740e
150•tacoda•3d ago•20 comments

Swiss voters reject proposal to cap population at ten million

https://www.swissinfo.ch/eng/swiss-politics/swiss-voters-reject-proposal-to-cap-population-at-ten...
81•FabCH•1h ago•26 comments

No, everyone is not using AI for everything

https://gabrielweinberg.com/p/people-are-consuming-ai-like-they
237•yegg•2h ago•240 comments

FarOutCompany

https://faroutcompany.com/
60•bookofjoe•3h ago•5 comments

I indexed 669 GB of my GoPro videos using my M1 Max computer and local ML models

86•iliashad•2h ago•11 comments

The only scalable delete in Postgres is DROP TABLE

https://planetscale.com/blog/the-only-scalable-delete
64•hollylawly•3d ago•30 comments

Global density and biomass of arbuscular mycorrhizal fungal networks

https://www.science.org/doi/10.1126/science.adu4373
24•zdw•1d ago•1 comments

Rio de Janeiro's city government model Rio3.5 beats Qwen3.7 in recent benchmarks

https://twitter.com/zenmagnets/status/2065796012820848699
103•lucasfcosta•2h ago•28 comments

Formal Methods and the Future of Programming

https://blog.janestreet.com/formal-methods-at-jane-street-index/?from_theconsensus=1
65•eatonphil•4h ago•19 comments

Show HN: Dual YOLOv8n UAV Detection on RK3588S at 42 FPS Using NPU

https://github.com/alebal123bal/khadas_yolov8n_multithread
25•alebal123bal•2h ago•4 comments

Linux 7.1

https://lore.kernel.org/lkml/CAHk-=wi4BF4bMhZNZ1tqs+FFV4OuZRe3ZqdWB+LxRLmRweUzQw@mail.gmail.com/T/#u
52•berlianta•1h ago•3 comments

How did Atari apply side art to Arcade Cabinets?

https://arcadeblogger.com/2026/06/14/how-did-atari-apply-side-art-to-arcade-cabinets/
48•msephton•4h ago•8 comments

Quivers: A year of linear algebra by drawing arrows

https://lisyarus.github.io/blog/posts/quivers-a-year-of-linear-algebra-by-drawing-arrows.html
11•ibobev•4d ago•1 comments

Show HN: 3D print Z reinforcement via injected loops

https://mgunlogson.github.io/magma/
17•mgunlogson•5d ago•6 comments

How to Earn a Billion Dollars

https://paulgraham.com/earn.html
245•kingstoned•5h ago•671 comments

A 'cold blob' in the Atlantic could be a sign of AMOC shutdown

https://www.cnn.com/2026/06/12/climate/cold-blob-atlantic-amoc-ocean-circulation
101•tambourine_man•2h ago•123 comments

Free SQL→ER diagram tool, runs in the browser, nothing uploaded

https://sqltoerdiagram.com/
311•robhati•13h ago•60 comments

Honda Civics and the Evil Valet

https://juniperspring.org/posts/honda-evil-valet/
363•librick•16h ago•86 comments

KPMG pulls report on AI usage due to apparent hallucinations

https://techcrunch.com/2026/06/13/kpmg-pulls-report-on-ai-usage-due-to-apparent-hallucinations/
75•Brajeshwar•3h ago•6 comments

Extinction-Level Capitalism

https://matthewbutterick.com/extinction-level-capitalism.html
88•laurex•3h ago•36 comments

Dangerous hormone-disrupting chemicals found in US breast milk samples

https://www.theguardian.com/us-news/2026/jun/14/breast-milk-research-chemicals
51•andsoitis•2h ago•20 comments

Don't trust large context windows

https://garrit.xyz/posts/2026-05-06-dont-trust-large-context-windows
221•computersuck•11h ago•163 comments

FTX's former Anthropic stake would be worth about $75B at today's valuation

6•adam_rida•1h ago•8 comments
Open in hackernews

Show HN: Dual YOLOv8n UAV Detection on RK3588S at 42 FPS Using NPU

https://github.com/alebal123bal/khadas_yolov8n_multithread
25•alebal123bal•2h ago

Comments

alebal123bal•2h ago
I built this while trying to understand how much of the RK3588S vision pipeline could be kept off the CPU.

The main trick is not the YOLO model itself, but the pipeline structure: MIPI capture through the ISP, resize/color conversion through RGA, and YOLOv8n inference through all 3 NPU cores with one RKNN context per core. With a 3-thread inference pool the pipeline goes from ~31 FPS to the OS08A10 camera’s 46 FPS ceiling.

The memory footprint is also small: roughly 137–152 MB RSS for one 1080p stream, using a fixed preallocated buffer pool rather than per-frame allocations. Two streams are roughly 276–304 MB RSS.

The repo also has a multi-process side of the pipeline: detections are published over Unix-domain sockets to tracking, temporal features, a presence FSM, and an optional Qwen2.5-0.5B summary step. For the LLM step, the camera pipeline can temporarily blackout/resume so RKLLM gets the whole NPU.

I split the work into three repos:

- runtime dual-stream YOLOv8n RK3588S pipeline: https://github.com/alebal123bal/khadas_yolov8n_multithread

- train/export/INT8 RKNN conversion for YOLOv8/YOLOv5: https://github.com/alebal123bal/RKNN_TRAIN_YOLO

- Qwen on RK3588S, via RKLLM/NPU or llama.cpp/CPU: https://github.com/alebal123bal/RKLLM_LLAMA_QWEN

The demo class is UAV/drone, but this is meant as a general edge-inference pipeline example, not an operational/surveillance/defense system.

robinduckett•1h ago
Is there something special about yolov8 over later models (9-12)? It seems most of the research and working examples default to v8 despite it being 3 years old. Or just because it is what fits on this hardware?
snovv_crash•32m ago
Newer versions aren't open source, or at least have murky licencing.
robinduckett•22m ago
Ahh that’ll do it. A shame really, the later models seem to be fairly good just from my idle testing as an enthusiast.