frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Code Routines

https://code.claude.com/docs/en/routines
294•matthieu_bl•5h ago•185 comments

Rare concert recordings are landing on the Internet Archive

https://techcrunch.com/2026/04/13/thousands-of-rare-concert-recordings-are-landing-on-the-interne...
449•jrm-veris•8h ago•133 comments

Trusted access for the next era of cyber defense

https://openai.com/index/scaling-trusted-access-for-cyber-defense/
37•surprisetalk•2h ago•22 comments

The Orange Pi 6 Plus

https://taoofmac.com/space/reviews/2026/04/11/1900
73•rcarmo•3d ago•40 comments

5NF and Database Design

https://kb.databasedesignbook.com/posts/5nf/
106•petalmind•6h ago•44 comments

Turn your best AI prompts into one-click tools in Chrome

https://blog.google/products-and-platforms/products/chrome/skills-in-chrome/
68•xnx•5h ago•35 comments

I wrote to Flock's privacy contact to opt out of their domestic spying program

https://honeypot.net/2026/04/14/i-wrote-to-flocks-privacy.html
417•speckx•4h ago•174 comments

Let's talk space toilets

https://mceglowski.substack.com/p/lets-talk-space-toilets
106•zdw•23h ago•39 comments

guide.world: A compendium of travel guides

https://guide.world/
47•firloop•5d ago•7 comments

The dangers of California's legislation to censor 3D printing

https://www.eff.org/deeplinks/2026/04/dangers-californias-legislation-censor-3d-printing
92•salkahfi•22h ago•167 comments

Show HN: Plain – The full-stack Python framework designed for humans and agents

https://github.com/dropseed/plain
42•focom•4h ago•17 comments

Tell HN: Fiverr left customer files public and searchable

186•morpheuskafka•3h ago•25 comments

OpenSSL 4.0.0

https://github.com/openssl/openssl/releases/tag/openssl-4.0.0
155•petecooper•4h ago•48 comments

Troubleshooting Email Delivery to Microsoft Users

https://rozumem.xyz/posts/14
18•rozumem•2d ago•2 comments

Show HN: LangAlpha – what if Claude Code was built for Wall Street?

https://github.com/ginlix-ai/langalpha
84•zc2610•7h ago•27 comments

Backblaze has stopped backing up OneDrive and Dropbox folders and maybe others

https://rareese.com/posts/backblaze/
884•rrreese•14h ago•534 comments

Responsive images in Hugo using Render Hooks

https://mijndertstuij.nl/posts/hugo-responsive-images-using-render-hooks/
5•mijndert•5d ago•0 comments

jj – the CLI for Jujutsu

https://steveklabnik.github.io/jujutsu-tutorial/introduction/what-is-jj-and-why-should-i-care.html
463•tigerlily•11h ago•403 comments

Show HN: A memory database that forgets, consolidates, and detects contradiction

https://github.com/yantrikos/yantrikdb-server
43•pranabsarkar•6h ago•24 comments

Gas Town: From Clown Show to v1.0

https://steve-yegge.medium.com/gas-town-from-clown-show-to-v1-0-c239d9a407ec
56•martythemaniak•3h ago•67 comments

Introspective Diffusion Language Models

https://introspective-diffusion.github.io/
214•zagwdt•14h ago•41 comments

Carol's Causal Conundrum: a zine intro to causally ordered message delivery

https://decomposition.al/zines/
38•evakhoury•4d ago•3 comments

YouTube now world's largest media company, topping Disney

https://www.hollywoodreporter.com/business/digital/youtube-worlds-largest-media-company-2025-tops...
232•bookofjoe•5d ago•178 comments

DaVinci Resolve – Photo

https://www.blackmagicdesign.com/products/davinciresolve/photo
1028•thebiblelover7•20h ago•257 comments

A new spam policy for “back button hijacking”

https://developers.google.com/search/blog/2026/04/back-button-hijacking
806•zdw•19h ago•456 comments

The M×N problem of tool calling and open-source models

https://www.thetypicalset.com/blog/grammar-parser-maintenance-contract
120•remilouf•5d ago•40 comments

Lean proved this program correct; then I found a bug

https://kirancodes.me/posts/log-who-watches-the-watchers.html
373•bumbledraven•22h ago•166 comments

Free, fast diagnostic tools for DNS, email authentication, and network security

https://mrdns.com/
3•dogsnews•1h ago•0 comments

Nucleus Nouns

https://ben-mini.com/2026/nucleus-nouns
54•bewal416•4d ago•14 comments

The Mouse Programming Language on CP/M (2020)

https://techtinkering.com/articles/the-mouse-programming-language-on-cpm/
42•PaulHoule•3d ago•4 comments
Open in hackernews

The Orange Pi 6 Plus

https://taoofmac.com/space/reviews/2026/04/11/1900
73•rcarmo•3d ago

Comments

Neywiny•3d ago
Disappointing on the NPU. I have found it's a point where industry wide improvement is necessary. People talk tokens/sec, model sizes, what formats are supported... But I rarely see an objective accuracy comparison. I repeatedly see that AI models are resilient to errors and reduced precision which is what allows the 1 bit quantization and whatnot.

But at a certain point I guess it just breaks? And they need an objective "I gave these tokens, I got out those tokens". But I guess that would need an objective gold standard ground truth that's maybe hard to come by.

cyanydeez•3d ago
just try to find some benchmark top_k, temp, etc parameters for llama.cpp. There's no consistent framing of any of these things. Temp should be effectively 0 so it's atleast deterministic in it's random probabilities.
Neywiny•2d ago
Right. There are countless parameters and seeds and whatnots to tweak. But theoretically if all the inputs are the same the outputs should be within Epsilon of a known good. I wouldn't even mandate temperature or any other parameter be a specific value, just that it's the same. That way you can make sure even the pseudorandom processes are the same, so long as nothing pulls from a hardware rng or something like that. Which seems reasonable for them to do so idk maybe an "insecure rng" mode
andai•1h ago
>Temp should be effectively 0 so it's atleast deterministic in it's random probabilities.

Is this a thing? I read an article about how due to some implementation detail of GPUs, you don't actually get deterministic outputs even with temp 0.

But I don't understand that, and haven't experimented with it myself.

kingstnap•1h ago
By default CUDA isn't deterministic because of thread scheduling.

The main difference comes from rounding order of reduction difference.

It does make a small difference. Unless you have an unstable floating point algorithm, but if you have an unstable floating point algorithm on a GPU at low precision you were doomed from the start.

geerlingguy•1h ago
The even more confounding factor is there are specific builds provided by every vendor of these Cix P1 systems: Radxa, Orange Pi, Minisforum, now MetaComputing... it is painful to try to sort it out, as someone who knows where to look.

I couldn't imagine recommending any of these boards to people who aren't already SBC tinkerers.

coredog64•21m ago
I was also onboard until he got to the NPU downsides. I don't care about use for an LLM, but I would like to see the ability to run smallish ONNX models generated from a classical ML workflow. Not only is a GPU overkill for the tasks I'm considering, but I'm also concerned that unattended GPUs out on the edge will be repurposed for something else (video games, crypto mining, or just straight up ganked)
BirAdam•2d ago
I love that OrangePi is making good hardware, but after my experience with the OrangePi 5 Max, I won’t be buying more hardware from them again. The device is largely useless due to a lack of software support. This also happened with the MangoPi MQ-Pro. I’ll just stick with RPi. I may not get as much hardware for the money, but the software support is fantastic.
daymanstep•2h ago
Yeah that's the problem with ARM devices. Better just buy a N100
simlevesque•1h ago
The N100 is way larger than a OrangePi 5 Max.
geerlingguy•1h ago
Also about half as efficient, if that matters, and 1.5-2x higher idle power consumption (again, if that matters).

Sometimes easier to acquire, but usually the same price or more expensive.

spockz•1h ago
I can run my N100 nuc at 4W wall socket power draw idle. If I keep turbo boost off, it also stays there under normal load up to 6W full power. Then it is also terribly slow. With turbo boost enabled power draw can go to 8-10W on full load.

Not sure how this compares to the OrangePI in terms of performance per watt but it is already pretty far into the area of marginal gains for me at the cost of having to deal with ARM, custom housing, adapters to ensure the wall socket draw to be efficient etc. Having an efficient pico psu power a pi or orange pi is also not cheap.

daymanstep•51m ago
Which NUC do you have? A lot of the nameless brands on aliexpress draw 10 watts on idle.
Marsymars•11m ago
Not the poster you're replying to, but I run an Acer laptop with an N305 CPU as a Plex server. Idle power draw with the lid closed is 4-5W and I keep the battery capped at 80% charge.
blacksmith_tb•1h ago
There are quite a few x86-64 machines in the 70mm x 70mm form factor[1], which is close?

1: https://www.ecs.com.tw/en/Product/Mini-PC/LIVA_Q2/

hebelehubele•1h ago
Lmao the hero background. They photoshopped the pc into the back pocket of that AI-generated woman. (or the entire thing is AI-generated)
blacksmith_tb•41m ago
I have an even cheesier competitor, which randomly has a dragon on the lid (it would be a terrible choice for all but the wimpiest casual gaming... but it makes a good Home Assistant HAOS server!)
moffkalast•1h ago
Well... https://radxa.com/products/x/x4/

It has major overheating issues though, the N100 was never meant to be put on such a tiny PCB.

kombine•44m ago
I was planning to build a NAS from OPi 5 to minimise power consumption, but ended up going for a Zen 3 Ryzen CPU and having zero regrets. The savings are miniscule and would not justify the costs.
Aurornis•29m ago
> The device is largely useless due to a lack of software support.

I think everyone considering an SBC should be warned that none of these are going to be supported by upstream in the way a cheap Intel or AMD desktop will be.

Even the Raspberry Pi 5, one of the most well supported of the SBCs, is still getting trickles of mainline support.

The trend of buying SBCs for general purpose compute is declining, thankfully, as more people come to realize that these are not the best options for general purpose computing.

cptskippy•8m ago
> The trend of buying SBCs for general purpose compute is declining,

Were people actually doing that?

notRobot•25m ago
Have you taken a look at armbian? If so, what was your experience?

https://www.armbian.com/boards?vendor=xunlong

adrianwaj•1h ago
One or two USB-C 3.2 Gen2 ports are all that's required - can then plug in a hub or dock. eg: https://us.ugreen.com/collections/usb-hub?sort_by=price-desc...

Can also plug in a power bank. https://us.ugreen.com/collections/power-bank?sort_by=price-d...

The advantage is that if the machine breaks or is upgraded, the dock and pb can be retained. Would also distribute the price.

The dock and pb can also be kept away to lower heat to avoid a fan in the housing, ideally.

Better hardware should end up leading to better software - its main problem right now.

This 10-in-1 dock even has an SSD enclosure for $80 https://us.ugreen.com/products/ugreen-10-in-1-usb-c-hub-ssd (no affiliation) (no drivers required)

I'd have another dock/power/screen combo for traveling and portable use.

james-clef•1h ago
Something in me wants to buy every SBC and/or microcontroller that is advertised to me.
hypercube33•58m ago
Yeah I have this problem (?) too. They are just so neat. I also really like tiny laptops and recreations of classic computers.
junon•33m ago
Clockwork Pi if you haven't seen it. Beautiful little constructions.
3abiton•30m ago
Even though all can be replaced by a decent mini pc with beefy memory, with lots of VMs.
zzzoom•45m ago
At some point SBCs that require a custom linux image will become unacceptable, right?

Right?

jagged-chisel•43m ago
“Custom”? No.

Proprietary and closed? One can hope.

joshuaissac•39m ago
There are some projects to port UEFI to boards like Orange Pi and Raspberry Pi. You can install a normal OS once you have flashed that.

https://github.com/tianocore/edk2-platforms/tree/master/Plat...

https://github.com/edk2-porting/edk2-rk3588

ajb•12m ago
There also seems to be a plan to add uefi support to u-boot[1]. Many of these kinds of boards have u-boot implementations, so could then boot uefi kernel.

However many of these ARM chips have their own sub-architecture in the Linux source tree, I'm not sure that it's possible today to build a single image with them all built in and choose the subarchitecture at runtime. Theoretically it could be done, of course, but who has the incentive to do that work?

(I seem to remember Linus complaining about this situation to the Arm maintainer, maybe 10-20 years ago)

[1] https://docs.u-boot.org/en/v2021.04/uefi/uefi.html

Aurornis•33m ago
Using vendor kernels is standard in embedded development. Upstreaming takes a long time so even among well-supported boards you either have to wait many years for everything to get upstreamed or find a board where the upstreamed kernel supports enough peripherals that you're not missing anything you need.

I think it's a good thing that people are realizing that these SBCs are better used as development tools for people who understand embedded dev instead of as general purpose PCs. For years now you can find comments under every Raspberry Pi or other SBC thread informing everyone that a mini PC is a better idea for general purpose compute unless you really need something an SBC offers, like specific interfaces or low power.

apatheticonion•26m ago
I have always found it perplexing. Why is that required?

Is it the lack of drivers in upstream? Is it something to do with how ARM devices seemingly can't install Linux the same way x86 machines can (something something device tree)?

mort96•17m ago
Somehow, this isn't a problem in the desktop space, even though new hardware regularly gets introduced there too which require new drivers.
doubled112•2m ago
Desktop hardware has a standard way to boot and bring up the hardware, usually to at least a minimum level of functionality.

As a weird example, the Raspberry Pi boots from the GPU, which brings up the rest of the hardware.

parl_match•16m ago
> At some point SBCs that require a custom linux image will become unacceptable, right?

The flash images contain information used by the bios to configure and bring up the device. It's more than just a filesystem. Just because it's not the standard consoomer "bios menu" you're used to doesn't mean it's wrong. It's just different.

These boards are based off of solutions not generally made available to the public. As a result, they require a small amount of technical knowledge beyond what operating a consumer PC might require.

So, packaging a standard arm linux install into a "custom" image is perfectly fine, to be honest.

jonpalmisc•28m ago
Looks like the SoC (CIX P1) has Cortex-A720/A520 cores which are Armv9.2, nice.

I've still been on the hunt for a cheap Arm board with a Armv8.3+ or Arvm9.0+ SoC for OSDev stuff, but it's hard to find them in hobbyist price range (this board included, $700-900 USD from what I see).

The NVIDIA Jetson Orin Nanos looked good but unfortunately SWD/JTAG is disabled unless you pay for the $2k model...

timschumi•11m ago
And it doesn't seem like anything newer than ARMv9.2 is available either, no matter the price point.
preisschild•22m ago
Unfortunately only available atm for extremely high prices. I'd like to pick some up to create a ceph cluster (with 1x 18tb hdd osd per node in an 8 node cluster with 4+2 erasure coding)
ggdxwz•14m ago
This seems to be an overkill for most of my workloads that require an SBC. I would choose Jetson for anything computationally intensive, as Orange Pi 6 Plus's NPU is not even utilized due to lack of software support. For other workloads, this one seems a bit too large in terms of formfactor and power consumption, and older RK3588 should still be sufficient