frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What They Don't Tell You About Maintaining an Open Source Project

https://andrej.sh/blog/maintaining-open-source-project/
1•andrejsshell•42s ago•0 comments

Meet Your Heroes

https://www.jenn.site/meet-your-heroes/
1•paulpauper•2m ago•0 comments

LLM Latency Live Ranking

https://metrik-dashboard-git-main-mehdis-projects-f1e86c94.vercel.app/
1•mbouassa•3m ago•0 comments

Show HN: Looking Ref Contact for a Foresight Grant ICT Info-Consciousness-Time

https://www.academia.edu/s/8924eff666
1•DmitriiBaturo•3m ago•0 comments

3 things to know about Ironwood, our latest TPU

https://blog.google/products/google-cloud/ironwood-google-tpu-things-to-know/
1•zdw•4m ago•0 comments

Someone at YouTube Needs Glasses: The Prophecy Has Been Fulfilled

https://jayd.ml/2025/11/10/someone-at-youtube-needs-glasses-prophecy-fulfilled.html
1•jaydenmilne•4m ago•1 comments

Building road signs at home using a Cricut Machine

https://annanay.dev/build-a-signboard/
1•annanay•6m ago•0 comments

Monty – a sensorimotor learning system following the principles of the neocortex

https://github.com/thousandbrainsproject/tbp.monty
1•stefanv•15m ago•0 comments

20x less peak RAM in PyTorch memory budget solver

https://jedrzej.maczan.pl/2025_11_21_dp_knapsack_sliding_hirschberg
1•yu3zhou4•16m ago•0 comments

Arabic Loanwords in the Neo-Aramaic Dialect of Ankawa

https://books.openbookpublishers.com/10.11647/obp.0209/ch16.xhtml
1•marysminefnuf•16m ago•0 comments

Mumbai families suffer as datacentres keep the city hooked on coal

https://www.theguardian.com/technology/2025/nov/24/mumbai-datacentres-coal-air-pollution
1•Teever•18m ago•0 comments

An Affordable Voice Assistant That Won't Spy on You (2022)

https://blog.tjll.net/build-your-own-voice-asistant/
1•wonger_•18m ago•0 comments

Ask HN: Is Techmeme getting paid to boost certain articles?

2•dabockster•22m ago•1 comments

Let go of StackOverflow; communities must take ownership

https://ahelwer.ca/post/2025-11-25-stackoverflow/
1•tensegrist•22m ago•0 comments

Google steers Americans looking for health care into "junk insurance"

https://pluralistic.net/2025/11/25/open-season/
2•hn_acker•24m ago•0 comments

The Penicillin Myth

https://www.asimov.press/p/penicillin-myth
1•fanf2•27m ago•0 comments

Mapping the Brain's Sense of What Goes on Inside the Body

https://www.nytimes.com/2025/11/25/science/brain-neuroscience-interoception.html
2•tysone•31m ago•0 comments

OpenStreetMap scales to serve users worldwide with Fastly

https://www.fastly.com/customers/openstreetmap
2•raybb•31m ago•0 comments

New Version of the MCP Specification

https://modelcontextprotocol.io/specification/2025-11-25
1•mooreds•32m ago•0 comments

Show HN: Rs-Utcp, a Rust Implementation of the Universal Tool Calling Protocol

https://github.com/universal-tool-calling-protocol/rs-utcp
1•juanviera23•33m ago•0 comments

NVMe driver for Windows 2000, targeting both x86 and Alpha AXP platforms

https://github.com/techomancer/nvme2k
1•zdw•33m ago•0 comments

Techrights the Name Turns 15

https://techrights.org/n/2025/09/20/Techrights_the_Name_Turns_15.shtml
1•amcclure•34m ago•0 comments

Why are static site generators so complicated to use?

https://thejollyteapot.com/2024/10/15/why-are-static-site-generators-so-complicated-to-use/
2•speckx•37m ago•0 comments

The Silent War Between AI and Blockchain for the Future of Trust

https://thinkmintmedia.blogspot.com/2025/11/the-silent-war-between-ai-and.html
1•iamtech•42m ago•0 comments

Ask HN: If Unix gets more popular would you use it instead of Linux?

1•catstor•42m ago•4 comments

Rightwing Influencers Fall for Mamdani's 'Arabic Numerals' in School Troll [video]

https://www.youtube.com/watch?v=zujUUI0WEvk
3•absqueued•42m ago•0 comments

Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR

https://labs.watchtowr.com/stop-putting-your-passwords-into-random-websites-yes-seriously-you-are...
2•Deeg9rie9usi•42m ago•0 comments

Playing Safe with AI

https://declanbright.com/software/playing-safe-with-ai/
1•dclnbrght•43m ago•1 comments

The State of AI Agent Frameworks in 2025

https://devnavigator.com/2025/11/20/the-state-of-ai-agent-frameworks-in-2025/
1•BerislavLopac•44m ago•0 comments

Amazon CTO Werner Vogels predicts the Renaissance developer era

https://www.aboutamazon.com/news/aws/werner-vogels-amazon-cto-predictions-2026
1•jonbaer•45m 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•7mo ago

Comments

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