Hacker News
Show HN: A faster fuck (thefuck CLI rewritten in Rust)
thefuck (https://github.com/nvbn/thefuck) in Rust – because life's too short for slow fucks.
500ms → 15ms startup. Same rules, 50x faster. 2x faster correction time as well.
Comments URL: https://news.ycombinator.com/item?id=47170774
Points: 2
# Comments: 0
Show HN: Tasuki – A Task Aggregator for Waybar
I'm loving the momentum behind Linux, particularly Arch, right now. I've used it for years but recently have been switching all of my workflows to it. I wanted a quick way to see all my tasks at a glance without context-switching between apps. Since I already use Waybar, it felt like the natural place to make that available. There wasn't really something out there for that, and I had todos scattered amongst different local notes and Obsidian, so I built Tasuki to aggregate them together.
Comments URL: https://news.ycombinator.com/item?id=47170766
Points: 1
# Comments: 0
Mitigating Prompt Injection with Finite Automata over Agent Trajectories
Article URL: https://dystopiabreaker.xyz/fsm-prompt-injection
Comments URL: https://news.ycombinator.com/item?id=47170754
Points: 2
# Comments: 0
Show HN: Phi-Redactor – HIPAA Phi Redaction Proxy for OpenAI/Anthropic APIs
Article URL: https://github.com/DilawarShafiq/phi-redactor
Comments URL: https://news.ycombinator.com/item?id=47170744
Points: 1
# Comments: 1
Show HN: Free Snowflake Observability
My startup helps companies save money on Snowflake, and over the past two years we've built out a lot of observability features based on customer requests.
We're launching these features for free for everyone. You can read more here: https://espresso.ai/post/observability
Comments URL: https://news.ycombinator.com/item?id=47170737
Points: 1
# Comments: 0
Shall We Play a Game? – Frontier Models in Simulated Nuclear Crises
Article URL: https://www.kcl.ac.uk/shall-we-play-a-game
Comments URL: https://news.ycombinator.com/item?id=47170736
Points: 1
# Comments: 0
Testing "Raw" GPU Cache Latency
Article URL: https://clamtech.org/?dest=gpudirectlatency
Comments URL: https://news.ycombinator.com/item?id=47170732
Points: 1
# Comments: 0
Show HN: pg_stream – incremental view maintenance for PostgreSQL in Rust
pg_stream is a PostgreSQL 18 extension that keeps materialized views current incrementally — no external infrastructure, no separate streaming pipeline.
You define a stream table (a SQL query + a freshness bound) and the extension derives a delta query that processes only changed rows on each refresh cycle:
SELECT pgstream.create_stream_table( 'regional_totals', 'SELECT region, SUM(amount) AS total, COUNT(*) AS cnt FROM orders GROUP BY region', '1m', 'DIFFERENTIAL' ); One INSERT into a million-row table → pg_stream touches one row's worth of computation. Query it like any regular table.
How it works: - Trigger-based CDC captures row changes into buffer tables inside the same transaction (no wal_level = logical required) - A background worker walks a topological DAG of stream tables and fires refreshes in dependency order - The DVM engine (differential view maintenance, DBSP framework) rewrites your SQL into a delta query at definition time — JOINs, GROUP BY, CTEs, window functions, LATERAL, subqueries all supported - Stream tables can depend on other stream tables; a change to a base table cascades automatically through the entire chain
Written in Rust using pgrx. 1,300+ tests (unit + integration + E2E). dbt macro package included.
GitHub: https://github.com/grove/pg-stream Docs: https://grove.github.io/pg-stream
Comments URL: https://news.ycombinator.com/item?id=47170722
Points: 1
# Comments: 0
Show HN: Zen Router – An opinionated HTTP router
Article URL: https://zenrouter.liveblocks.io/docs
Comments URL: https://news.ycombinator.com/item?id=47170712
Points: 1
# Comments: 0
U.S. Power-Plant Pollution Rose Sharply in 2025
Article URL: https://www.wsj.com/us-news/climate-environment/u-s-power-plant-pollution-rose-sharply-in-2025-081779c0
Comments URL: https://news.ycombinator.com/item?id=47170710
Points: 2
# Comments: 1
IHR data dumps (including IYP)
Article URL: https://archive.ihr.live/ihr/
Comments URL: https://news.ycombinator.com/item?id=47170700
Points: 1
# Comments: 0
The More You Spend on a Wi-Fi Router, the Worse It Gets
Article URL: https://www.criticaster.com/blog/wifi-routers-most-disappointing-category
Comments URL: https://news.ycombinator.com/item?id=47170697
Points: 1
# Comments: 0
Show HN: GameScout AI – AI-powered game recommender
I built GameScout AI because I never really liked the recommendations sites like Steam propose. It uses natural language to find games based on specific mechanics or moods, like "cozy farming sims with a bit of action" or "something like Dark Souls but funnier".
The Stack:
- Next.js & Tailwind: For a responsive, gaming-focused UI.
- Groq (Llama 3): I’m using Groq for inference because sub-second latency makes semantic search feel like a local DB query.
- Prompt Engineering: Optimized to explain why a game was picked based on actual mechanics, not just metadata.
Any feedback is appreciated!
Comments URL: https://news.ycombinator.com/item?id=47170691
Points: 1
# Comments: 0
Content Marketers: Quit Your Whining and Learn to Pitch
Article URL: https://www.animalz.co/blog/creative-pitch
Comments URL: https://news.ycombinator.com/item?id=47170682
Points: 1
# Comments: 0
Show HN: WebPrepImage – Local batch image resizer with file-size limits
Article URL: https://github.com/arbopa/webprepimage
Comments URL: https://news.ycombinator.com/item?id=47170681
Points: 1
# Comments: 0
Amateur tennis players love data as much as the pros
Article URL: https://www.nytimes.com/athletic/7059579/2026/02/26/tennis-amateur-data-strava/
Comments URL: https://news.ycombinator.com/item?id=47170680
Points: 1
# Comments: 0
Show HN: I stopped building apps for people. Now I make CLI tools for agents
Article URL: https://github.com/Aayush9029/homebrew-tap
Comments URL: https://news.ycombinator.com/item?id=47170671
Points: 1
# Comments: 0
Show HN: I built the US version of "Are You Dead?", China's viral check-in app
In January, a Chinese app called Sile Me ("Are You Dead?") went to #1 paid app on China's Apple App Store. One button. Tap it daily to say you're alive. Miss two days — your emergency contact gets an email. It went viral because 200M Chinese people live alone and finally had a tool that acknowledged the obvious risk.
The US has 40 million solo households — 29% of all households, an all-time high. And no good equivalent.
So I built one. Key differences: SMS instead of email, a 48-hour window instead of rigid schedules, and an Emergency Alert button — one tap, immediate text to your contact. Right now, not after two days of silence.
Tech stack: Expo/React Native, Python/FastAPI, RevenueCat for IAP. iPhone only for now.
The full story: https://imalivetoday.com/demumu-app-us
Comments URL: https://news.ycombinator.com/item?id=47170669
Points: 1
# Comments: 0
He saw an abandoned trailer. Then, uncovered a surveillance network
Article URL: https://calmatters.org/justice/2026/02/alpr-border-patrol-caltrans/
Comments URL: https://news.ycombinator.com/item?id=47169984
Points: 2
# Comments: 0
Show HN: I built a local AI-powered Ouija board with a fine-tuned 3B model
Article URL: https://github.com/SurceBeats/Planchette
Comments URL: https://news.ycombinator.com/item?id=47169979
Points: 1
# Comments: 0
