frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

FreeBSD Laptop Compatibility: Top Laptops to Use with FreeBSD

https://freebsdfoundation.github.io/freebsd-laptop-testing/
1•fork-bomber•32s ago•0 comments

Show HN: I built a Harvey-style tabular review app, then open sourced the code

https://isaacus.com/blog/hallucination-free-tabular-review-from-scratch
1•afistfullof•1m ago•0 comments

Microsoft's executive shake-up continues as developer division chief resigns

https://www.theverge.com/tech/908793/microsoft-devdiv-julia-liuson-resignation
1•pjmlp•1m ago•0 comments

Debugy: Runtime Logs for Coding Agents

https://www.debugy.dev
1•amitay1599•2m ago•0 comments

We measured copyrighted-text memorization in 81 open-weight language models

https://zenodo.org/records/19431804
1•crovia•3m ago•0 comments

PKG47: AI-Controlled Package Registry

https://pkg47.com/
1•seuros•3m ago•0 comments

Afterchain – Deterministic inheritance protocol for digital assets

https://github.com/Afterchain/afterchain-protocol-public
1•Afterchain•3m ago•0 comments

Creating the Futurescape for the Fifth Element

https://theasc.com/articles/fantastic-voyage-creating-the-futurescape-for-the-fifth-element
2•nixass•6m ago•1 comments

Do links hurt news publishers on Twitter? Our analysis suggests yes

https://www.niemanlab.org/2026/04/do-links-hurt-news-publishers-on-twitter-our-analysis-suggests-...
1•giuliomagnifico•12m ago•0 comments

Nigel Farage wants to build a British ICE. Starmer may have handed him the tools

https://www.thenerve.news/p/reform-deportation-operation-restoring-justice-data-surveillance-pala...
1•doener•13m ago•0 comments

Fast, cheap AI-assisted decompilation of binary code is here

https://twitter.com/esrtweet/status/2042002143045890412
1•tosh•14m ago•0 comments

Engineers Are Great for Marketing

https://www.usenotra.com/blog/engineers-are-great-marketing
1•DominikKoch•15m ago•1 comments

Largest Dutch pension fund cuts ties with controversial tech firm Palantir

https://nltimes.nl/2026/04/02/largest-dutch-pension-fund-cuts-ties-controversial-tech-firm-palantir
4•doener•16m ago•0 comments

Cisco: Cybersecurity Remains Top Challenge as Industrial AI Adoption Expands

https://techgraph.co/tech/cisco-cybersecurity-remains-top-challenge-as-industrial-ai-adoption-exp...
1•visitednews•18m ago•0 comments

FalconFly 3dfx Archive

https://3dfxarchive.com/3dfx.htm
1•BruceEel•18m ago•0 comments

Influence Campaign on TikTok Uses AI Videos to Boost Hungary's Orbán

https://www.newsguardtech.com/special-reports/influence-campaign-uses-ai-tiktok-videos-to-boost-h...
2•doener•21m ago•0 comments

Reallocating $100/Month Claude Code Spend to Zed and OpenRouter

https://braw.dev/blog/2026-04-06-reallocating-100-month-claude-spend/
1•kisamoto•22m ago•0 comments

Škoda's Duobell bicycle bell outsmarts ANC headphones

https://www.heise.de/en/news/koda-s-Duobell-bicycle-bell-outsmarts-ANC-headphones-11249665.html
1•thdr•22m ago•1 comments

Content Giant Slashed Telemetry Cost 79%, Saved $1.2M

https://www.mydecisive.ai/blog/content_giant_case_study
1•jratkevic•26m ago•0 comments

A study linked various SAT test scores to favorite bands

https://twitter.com/arcticinstincts/status/2041936594601701393
2•MrBuddyCasino•28m ago•2 comments

We Have Become Obsessed with Attachment. And It Is Causing Harm

https://whatwouldjesssay.substack.com/p/we-have-become-obsessed-with-attachment
1•rendx•30m ago•0 comments

Some Better Defaults for Emacs

https://git.sr.ht/~technomancy/better-defaults/blob/main/better-defaults.el
2•fanf2•35m ago•1 comments

PBXN-110

https://en.wikipedia.org/wiki/Polymer-bonded_explosive
2•simonebrunozzi•38m ago•0 comments

Ask HN: What is the future of Devs, after launch of Anthropic's Glasswing?

3•shivang2607•42m ago•1 comments

No fine-tuning, no RAG – boosting Claude Code's bioinformatics up to 92%

https://github.com/jaechang-hits/SciAgent-Skills
2•jaechang•42m ago•1 comments

Opera 130 stable arrives with Chromium 146 and Twitch support

https://www.notebookcheck.net/Opera-130-stable-arrives-with-Chromium-146-and-Twitch-support.12697...
2•DarrylLinington•42m ago•0 comments

cppreference.com has been under maintenance for a year

https://en.cppreference.com/
1•GalaxySnail•42m ago•0 comments

Veteran artist behind Mass Effect, Halo, & Overwatch 2 weighs in on Nvidia DLSS5

https://www.notebookcheck.net/Veteran-artist-behind-Mass-Effect-Halo-and-Overwatch-2-weighs-in-on...
2•DarrylLinington•43m ago•0 comments

I was copy-pasting to Claude from WhatsApp – so I fixed that

https://github.com/sliamh11/Deus
2•sliamh11•44m ago•1 comments

From bytecode to bytes: automated magic packet generation

https://blog.cloudflare.com/from-bpf-to-packet/
1•syscll•47m ago•0 comments
Open in hackernews

Weather Landscape on E-Ink with ESP32 – now rewritten in Rust

https://github.com/martinohmann/weather-landscape
11•_usr_bin_env•11mo ago

Comments

_usr_bin_env•11mo ago
I came across this idea here on Hacker News a while ago – a small weather display using an ESP32 and an e-ink screen to show a daily weather landscape. I loved it and shared the idea with a friend of mine. He went all in and rebuilt the whole thing in Rust – from the image rendering server to the embedded code on the ESP32.

It's a clean, minimal two-part project:

A Rust server fetches weather data from MET Norway and renders it as a landscape image.

An ESP32 downloads and displays the image on a 2.9" e-ink screen.

Here’s the repo: https://github.com/martinohmann/weather-landscape Would love to hear what you think!

whytevuhuni•11mo ago
How does it loop, if at all? Does it just restart at the end after it falls out of `main()`?

This is definitely something I'd like to try. Gotta figure out where to run the server... maybe a good time to figure out how to do custom Home Assistant add-ons.

How long do those batteries last you? Even with the deep sleep, I imagine doing the WiFi handshake every time is going to be expensive.

_usr_bin_env•11mo ago
As far as I understand it has a deep-sleep" timer that wakes it every X minutes (mine every 30). This gives me approximately 1 Month with 4 AA rechargeable. Larger sleep intervals, other esp dev boards or larger rechargeable will increase this.
adammarples•11mo ago
People on github remain allergic to pictures, there's even a text description of each weather mode so that we can imagine it!
_usr_bin_env•11mo ago
Text output would have been too easy on the eink screen xD