frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Everyone Is Along for the Crypto Ride Now, Even If It Ends Badly

https://www.barrons.com/articles/bitcoin-crypto-washington-economy-financial-system-c072e362
1•kamaraju•38s ago•0 comments

Warranty that was never meant to protect you

2•olemindgv•1m ago•0 comments

Immich – Cursed Knowledge

https://immich.app/cursed-knowledge/
1•bqmjjx0kac•2m ago•0 comments

Echelon kills smart home gym equipment offline capabilities with update

https://arstechnica.com/gadgets/2025/07/firmware-update-hinders-echelon-smart-home-gym-equipments-ability-to-work-offline/
1•akyuu•3m ago•0 comments

OpenAI's GPT-5 Is Here

https://www.wsj.com/podcasts/tech-news-briefing/tnb-tech-minute-openais-gpt-5-is-here/caec227a-8a47-48a4-9eff-915b7ee05a0e
2•ricecat•4m ago•0 comments

Ask HN: Recommendations for specification management software?

1•gusmally•7m ago•0 comments

Creating a Simple Nix Flake

http://www.simonjjones.com/#/posts/creating-a-simple-nix-flake
1•simojo•9m ago•0 comments

Video Coding for Machines: The Need for Compression (2024)

https://www.interdigital.com/post/video-coding-for-machines-the-need-for-compression
1•breve•11m ago•0 comments

Show HN: Magic Face Fixes with CodeFormer AI

https://codeformerai.com
1•kangfeibo•13m ago•0 comments

Louis Rossmann: Clippy for Vendetta (change your profile pic to Clippy)

https://www.youtube.com/watch?v=2_Dtmpe9qaQ
2•burnt-resistor•15m ago•1 comments

Show HN: Instant AI Videos with LTX – Fast, Smooth, and Easy

https://ltxvideoai.com
1•sudofoo•16m ago•0 comments

Swimming and Audiobooks

https://www.tomups.com/posts/swimming-and-audiobooks/
1•freediver•18m ago•0 comments

Ask HN: Enterpreneurs, does AI hurt you?

2•alganet•19m ago•0 comments

Fast and Efficient Emulation of Matrix Multiplication Using INT8 Matrix Engines

https://arxiv.org/abs/2508.03984
1•matt_d•22m ago•0 comments

Show HN: Explore the Power of Gemma 3n AI

https://gemma3n.app
1•NullPointerWin•25m ago•0 comments

Ask HN: How much would it cost to build a new commercially viable OS?

1•quacked•29m ago•3 comments

People from U.S. base in Antarctica evacuated in high-risk rescue operation

https://www.cbsnews.com/news/us-base-antarctica-evacuation-new-zealand-air-force-high-risk/
1•domofutu•30m ago•0 comments

How HN: Vidya AI – Ask Questions and Get Real-Time Answers from YouTube Videos

https://www.vidyaai.co
1•pingakshya2008•30m ago•1 comments

Show HN: Ace Step – Generate, remix, and edit original music with AI in seconds

https://acestepai.app
1•404NotBoring•32m ago•0 comments

Stella Rimington, First Woman to Lead U.K.'S MI5, Dies at 90

https://www.nytimes.com/2025/08/05/world/europe/stella-rimington-dies.html
1•bookofjoe•36m ago•2 comments

I Tried to Port Linux to an Obscure SoC. It Caught Fire.

https://blog.neagaru.com/p/i-tried-to-port-linux-to-an-obscure
3•digeex•45m ago•0 comments

Maintainer Needed for the OpenDroneMap Repo

https://community.opendronemap.org/t/maintainer-needed-for-the-odm-repo/25089
1•raybb•47m ago•0 comments

Meta Clip 2: Worldwide

https://arxiv.org/abs/2507.22062
1•ignoramous•53m ago•0 comments

Eggs are off the hook–study reveals bacon's the real heart risk

https://www.sciencedaily.com/releases/2025/07/250727235827.htm
12•bookmtn•56m ago•3 comments

Discord Voice Is Down

https://discordstatus.com/incidents/js2f68mctrtc
1•0xC0ncord•59m ago•0 comments

I Made An Encrypted, Security Optimized Gentoo on the Raspberry Pi 5 That's Easy

https://github.com/commtac2/komon-dei
2•mannyemanuel2•1h ago•0 comments

Apple's iPad site is running Next.js

https://twitter.com/wesbos/status/1953446448529355218
1•tosh•1h ago•0 comments

PostgreSQL vs. ClickHouse: Learnings from building my first database benchmark

https://github.com/514-labs/LLM-query-test/blob/main/blog-db-learnings.md
2•oatsandsugar•1h ago•0 comments

Kikoff CEO: We're not gonna IPO until you work harder

https://old.reddit.com/r/ExperiencedDevs/comments/1mkbkvz/ceo_were_not_gonna_ipo_until_you_work_harder/
9•nowickcounter•1h ago•0 comments

The First Apple Watch?

https://weblog.rogueamoeba.com/2025/08/07/cbxv/
1•chmaynard•1h ago•0 comments
Open in hackernews

79% of OpenBSD kernel source is AMD DRM

https://marc.info/?l=openbsd-misc&m=175313564329081
27•cnst•2h ago

Comments

cnst•2h ago
> 79% of OpenBSD kernel source is AMD DRM

The sys.tar.gz from https://ftp.eu.openbsd.org/pub/OpenBSD/7.7/ (normally unpacked into /usr/src/sys on an OpenBSD machine) represents the entire kernel source code of OpenBSD 7.7. (The userland and compiler are in src.tar.gz, Xorg is in xenocara.tar.gz, and ports are in ports.tar.gz.)

It has grown to 634MB unpacked for the entire kernel source tree.

But the vast majority of this growth is attributable to the sys/dev/pci/drm/amd directory, which is AMD Direct Rendering Manager, standing at 499MB, with the include files at sys/dev/pci/drm/amd/include being 458MB, the biggest of which is the asic_reg directory.

499/634 is 79%.

It follows that 79% of OpenBSD kernel by source code is dedicated to AMD's DRM implementation. Note that we're talking about the source code, NOT compiled code.

It's a huge part of Linux, too, over at drivers/gpu/drm/amd/include/asic_reg:

https://github.com/torvalds/linux/tree/master/drivers/gpu/dr...

In OpenBSD, the last release before the explosive growth, was OpenBSD 6.5 (Apr 2019) with sys.tar.gz at 20MB. With OpenBSD 6.6 (Oct 2019), it went to 30MB, now with 7.7 (Apr 2025) it's 64MB compressed.

Y_Y•1h ago
https://github.com/torvalds/linux/blob/master/drivers/gpu/dr...

11k lines of #defines

Is this truly necessary?

cnst•1h ago
11k defines in gc is nothing, the files in the nbio dir are so big, github even refuses to parse many them:

https://kernel.googlesource.com/pub/scm/linux/kernel/git/tor...

https://github.com/torvalds/linux/blob/master/drivers/gpu/dr...

The last file in nbio is a header file with 38900 lines — a single file of 3.92 MB.

There's actually another one in nbio that's 16MB:

https://github.com/torvalds/linux/blob/master/drivers/gpu/dr...

emchammer•35m ago
This is the Direct Rendering Manager for one particular graphics vendor? OpenBSD is known for keeping it tight. Seems to be against its philosophy.
rasz•34m ago
related "Linux kernel maintainer says no to AMDGPU patch" https://news.ycombinator.com/item?id=13136426