frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: RCA-lab – test observability tools on real failures

https://github.com/coroot/rca-lab
1•nikolay_sivko•1m ago•0 comments

Show HN: Pestle-27B-Ternary

https://huggingface.co/Doses-AI/Pestle-27B-Ternary-GGUF
1•MalikHAA2•1m ago•0 comments

Show HN: Made a business license hub search tool

https://fernway.io/license-search
1•leyu00•3m ago•0 comments

Use ChatGPT account for image generation API

https://github.com/satmihir/codex-artifact-server
1•jscrab•6m ago•0 comments

The Science Fiction Book Every Systems Architect Should Read [video]

https://www.youtube.com/watch?v=dFwCbH0_cyQ
1•saltysalt•8m ago•1 comments

AI-Assisted Management Drives Latest SUSE Linux Release (2025)

https://www.suse.com/news/suse-linux-enterprise-server-16-ai-ready-long-term-support/
1•indigodaddy•11m ago•0 comments

BAML is Basically A Made-up Language

https://boundaryml.com/
1•gregsadetsky•11m ago•0 comments

Show HN: Mocktail – Free, open-source mock API server with a built-in dashboard

https://getmocktail.com/
1•hhaluk•12m ago•0 comments

Maybe the "Webmaster" Isn't Dead After All

https://meiert.com/blog/the-webmaster/
1•speckx•12m ago•0 comments

Show HN: Tmail – The Mailbox You Own

2•smalltorch•13m ago•0 comments

Darwin as a Role Model for Aging

https://telliamedrevisited.wordpress.com/2026/08/14/darwin-as-a-role-model-for-aging/
2•iwhalen•15m ago•0 comments

Estonia Won the War on Fentanyl. What Came Next Was Worse

https://www.nytimes.com/2026/07/07/world/europe/estonia-fentanyl-new-drugs.html
1•cwwc•16m ago•0 comments

Young people increasingly don't trust AI

https://www.techradar.com/pro/young-people-increasingly-dont-trust-ai-or-the-billionaires-that-ke...
1•01-_-•18m ago•0 comments

Passkey Editor: A Burp Suite Extension for Attacking WebAuthn

https://www.anvilsecure.com/blog/passkey-editor.html
1•mooreds•20m ago•0 comments

Jane Street has paid up large to avoid its numbers leaking out

https://www.ft.com/content/28a51284-98cc-4767-a306-0540d265687f
3•JumpCrisscross•20m ago•0 comments

Ask HN: Are Coding Harnesses like CC/OpenCode/Codex using the same techniques?

1•senor_digimon•21m ago•0 comments

A Probabilistic Model for Detecting and Preventing Agent Drift

https://zenodo.org/records/21844624
1•aming557•21m ago•0 comments

Every exterior shot in The Taking of Pelham 123

https://iafisher.com/2026/07/pelham-123
4•evakhoury•21m ago•0 comments

The $25,000 Filing Requirement Most Founders Miss

https://www.leqal.ai/blog/form-5472-foreign-owned-llc
1•rafaelaziz•23m ago•0 comments

Native Merging and Conflict Resolving in RemObjects GitBrowser

https://blogs.remobjects.com/2026/08/14/merging-and-conflict-resolving-in-gitbrowser/
1•dwarfland•23m ago•0 comments

France's Top Court Kills the Under-15 Social Media Ban

https://reclaimthenet.org/frances-top-court-kills-the-under-15-social-media-ban
1•Ariarule•24m ago•1 comments

The worst PDA of all time

https://www.osnews.com/story/145764/the-worst-pda-of-all-time/
1•jandeboevrie•25m ago•0 comments

Uninvasive EEG Interface Could Be Used to Play Games

https://hackaday.com/2026/08/14/uninvasive-eeg-interface-could-be-used-to-play-games/
1•Christiangmer•29m ago•0 comments

The Undo Monad in Slipshow

https://docs.slipshow.org/en/stable/BOBKonf/pres.html
1•smartmic•31m ago•0 comments

Flock Compares Police Stalking Exes to Checking Daughter's Boyfriend's Record

https://ipvm.com/reports/flock-stalking-daughter
3•jhonovich•32m ago•0 comments

Senv: Sandboxing Python Packages and Code with uv

https://www.reddit.com/r/PythonLearning/comments/1vo972j/senv_sandboxed_python_environments_with_...
1•syumei•34m ago•0 comments

Stripe, Advent in Talks to Buy PayPal

https://www.wsj.com/business/deals/stripe-advent-in-talks-to-buy-paypal-ea6aa2ba
2•aghuang•35m ago•0 comments

Mail (MX) Server Survey (2024)

https://web.archive.org/web/20240513051829/https://www.securityspace.com/s_survey/data/man.202404...
1•dredmorbius•35m ago•0 comments

A quick look at zero-knowledge proofs

https://bernsteinbear.com/blog/zkp/
1•evakhoury•40m ago•0 comments

Jason Arday: Former Cambridge university professor found dead

https://www.bbc.com/news/articles/c1j1ye6n30no
22•artninja1988•40m ago•3 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•1y ago

Comments

_usr_bin_env•1y 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•1y 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•1y 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•1y 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•1y ago
Text output would have been too easy on the eink screen xD