frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Guerrilla London Bus Ads Mock Kylie Jenner's Meta Glasses Campaign

https://hyperallergic.com/guerrilla-london-bus-ads-mock-kylie-jenners-meta-glasses-campaign/
46•decimalenough•1h ago•22 comments

If you want to create a button from scratch, you must first create the universe

https://madcampos.dev/blog/2026/07/accessibility-from-scratch/
15•treve•43m ago•0 comments

Inkling: Our Open-Weights Model

https://thinkingmachines.ai/news/introducing-inkling/
802•vimarsh6739•10h ago•205 comments

SQLite should have (Rust-style) editions

https://mort.coffee/home/sqlite-editions/
163•gnyeki•5h ago•65 comments

High-Bandwidth Flash offers efficient storage for model weights

https://spectrum.ieee.org/high-bandwidth-flash
16•Gaishan•1d ago•4 comments

Grok Build is open source

https://github.com/xai-org/grok-build
330•skp1995•8h ago•367 comments

Bluesky Trademarks ATProto

https://atproto.com/blog/at-protocol-trademark
41•chaosharmonic•3h ago•15 comments

G# – A modern .NET language with Go, Kotlin, and Swift ergonomics

https://davidobando.github.io/gsharp/
60•serial_dev•4d ago•21 comments

An Interactive Map of AI

https://artifipedia.com/map
9•ceprompts•38m ago•5 comments

Making 768 servers look like 1

https://planetscale.com/blog/making-768-servers-look-like-1
9•hisamafahri•55m ago•1 comments

Governments, companies, nonprofits should invest in free, open source AI [pdf]

https://www.siegelendowment.org/wp-content/uploads/2026/07/fortune-david-siegel-open-source-ai.pdf
124•bilsbie•7h ago•48 comments

Stripe and Advent have made a joint offer to acquire PayPal – sources

https://www.reuters.com/business/finance/stripe-advent-offer-buy-paypal-more-than-53-billion-sour...
398•rvz•1d ago•220 comments

CatchCat – Pokémon Go for Cats, IRL

https://www.catchcat.lol/
27•marojejian•5d ago•6 comments

LLM Networking with MikroTik

https://blog.greg.technology/2026/07/14/llm-networking-with-mikrotik.html
66•gregsadetsky•6h ago•25 comments

The Tokio/Rayon Trap and Why Async/Await Fails Concurrency

https://pmbanugo.me/blog/why-async-await-complect-concurrency
18•LAC-Tech•2h ago•14 comments

Metal-Organic Frameworks, Chemistry's New Miracle Materials (2018)

https://chemistry.berkeley.edu/news/meet-metal-organic-frameworks-chemistry%E2%80%99s-new-miracle...
46•andsoitis•5h ago•10 comments

Open Source, Free Tier Capable Whispr Using Cloudflare AI

https://github.com/PrestigePvP/Voicebox
6•TreDub•1h ago•2 comments

Running Gemma 4 26B at 5 tokens/sec on a 13-year-old Xeon with no GPU

https://www.neomindlabs.com/2026/06/08/running-gemma-4-26b-at-5-tokens-sec-on-a-13-year-old-xeon-...
255•neomindryan•12h ago•169 comments

Job queues are deceptively tricky

https://typesanitizer.com/blog/job-queues.html
49•ingve•1d ago•11 comments

My Throw Decides My Aim

https://thegustafson.com/blog/my-throw-decides-my-aim
6•usernotfoundrn•41m ago•0 comments

Command Line Interface Guidelines

https://clig.dev/
94•subset•3d ago•16 comments

Show HN: One More Letter

https://playonemoreletter.com/
58•hmate9•5h ago•34 comments

Duskers, the scary command line game, is getting a sequel

https://elbowgreasegames.substack.com/p/misfits-attic-announces-duskers-20
106•spacemarine1•9h ago•30 comments

Nul Characters in Strings in SQLite

https://sqlite.org/nulinstr.html
39•basilikum•5h ago•14 comments

Accelerating Block Low-Rank Foundation Model Inference on MemoryConstrained GPUs

https://dl.acm.org/doi/full/10.1145/3806645.3807580
4•matt_d•1h ago•0 comments

Mysteries of Telegram Data Centers (2022)

https://dev.moe/en/3025
248•theanonymousone•15h ago•133 comments

Brainless: Shadcn components that look like Claude Code, Codex and Grok

https://brainless.swerdlow.dev
114•benswerd•8h ago•23 comments

Voxatron

https://www.lexaloffle.com/voxatron.php
76•lsferreira42•8h ago•19 comments

Artie (YC S23) Is Hiring Software Engineers

https://jobs.ashbyhq.com/artie
1•tang8330•11h ago

Collection of Digital Clock Designs

https://clocks.dev
204•levmiseri•11h ago•36 comments
Open in hackernews

Armbian Updates: OMV support, boot improvents, Rockchip optimizations

https://www.armbian.com/newsflash/armbian-updates-nas-support-lands-boot-systems-improve-and-rockchip-optimizations-arrive/
74•transpute•1y ago

Comments

proxysna•1y ago
Armbian is an exceptional project, even if the support might be uneven in some places, being able to roll out the same OS across almost every SBC i have is an absolute game changer. If there is support, Armbian is worth trying 100% of the time.

Edit: Also if you don't like/want Ubuntu/Debian their build documentation is pretty great.

dima55•1y ago
Their website doesn't answer the obvious question: what is it, and how is it different from vanilla debian? Do you know?
qwertox•1y ago
Vanilla Debian will not run on your nice and shiny Radxa Rocks 5B or Banana Pi whatever.
dima55•1y ago
Why not? What's missing?
qwertox•1y ago
Different boot process, U-Boot needs to be compiled for the exact board, drivers for the specialized components are needed, DTB (on ARM systems, the kernel doesn't probe hardware the same way a PC does) and other reasons.
RetroTechie•1y ago
> Different boot process, U-Boot needs to be compiled for the exact board

Why? That sounds dumb. And (assuming you're correct), how does Armbian deal with that / get around it?

ajb•1y ago
It's basically the same in the x86 world : your bios is customised to the board

The sad part is that on ARM the kernel is usually also custom compiled for the board. So what happens is that Armbian ship a different image for each board.

If you go and look in https://github.com/torvalds/linux/tree/master/arch/arm you see a zillion "mach-xxx" directories for different SoC architectures, even if they all use Arm.

Device-tree is a partial solution, but no-one seems to have an incentive to finish the job and let a single image run on any (sufficiently recent) arm board. It's difficult for the community to fix because most people have only their own board. Someone would need to pay for a CI rig with every board, and some kernel devs to do the work of building a single kernel to run across everything. (I think that's originally what Linaro was for - not sure why they didn't finish the job)

qwertox•1y ago
Right, the x86 BIOS/UEFI is baked into the motherboard firmware and handles early hardware init in a mostly standardized way. But with ARM boards, there's no universal firmware, it usually needs to be part of the image you download for that specific board.
FlyingSnake•1y ago
How does Armbian compare to DietPi?

FWIW: I’m running dietPi on my OG Pi Zero W and it doesn’t even hit 30% resource usage.

apple4ever•1y ago
Completely agree. I use it on my old PINE64 and it keeps on ticking.
chris37879•1y ago
I just stumbled across armbian recently and I must say I really like it.

I wanted to use UEFI, but my orangepi cm5 modules don't seem to have the SPI chip needed to store the UEFI there, so I'd have to load it on a partition and lose out on some features like persisting variables across boot.

The arm ecosystem really needs to settle on some sort of universal boot loader / firmware layer and stop just hacking up the linux kernel and not contributing back to it.

Nexxxeh•1y ago
I'm not an Arm dev and am just a consumer so I may be misunderstanding, but isn't Arm SystemReady pretty much the thing that's intended to solve the problem you're talking about (among others)?

https://developer.arm.com/documentation/107981/0302/SystemRe...

robotnikman•1y ago
It is, but it seems like only servers are adopting it at the moment. Or high end ARM workstations. I can't think of any consumer devices or SBC's off the top of my head that support it.
moondev•1y ago
Raspberry PI and Nvidia AGX

https://github.com/pftf/RPi4

moondev•1y ago
https://developer.arm.com/Architectures/Unified%20Extensible...
yjftsjthsd-h•1y ago
> Why? That sounds dumb.

Good, you understand the situation perfectly.

> And (assuming you're correct), how does Armbian deal with that / get around it?

You'll notice that if you try to download it from https://www.armbian.com/download/ , nearly every board has a different download image; this is because every one of those images embeds its own boot chain. There are efforts (in some projects, I'm not aware of armbian doing this) to build some amount of early bootloader per-board (often uboot), and just make the install steps something like "install this per-board thing, then install the real OS using a standard image" but that's less common and doesn't work super well when that initial bootloader has to go on the same storage device as the main OS.

dima55•1y ago
I believe that's common on ARM devices. But "vanilla debian" generally refers to userspace, and that should just work. Is this "armbian" thing quite literally "kernel + bootloader + vanilla debian"? The website doesn't say that in any obvious place
puzzlingcaptcha•1y ago
Pretty much, plus their little configuration utility for loading dtb overlays among other things.
pabs3•1y ago
The hard work of upstreaming/mainlining all the hardware support code in the userspace drivers like mesa, the Linux kernel core/drivers, bootloaders like GRUB/u-boot, boot firmware like coreboot/Tianocore/u-boot.