Leaving Google has actively improved my life

https://bear-images.sfo2.cdn.digitaloceanspaces.com/herman-1683556668-0.png
The author left Google due to its declining search quality and introduction of generative AI in Gmail, switching to Proton for email and Brave/DuckDuckGo for search.

OpenAI raises $110B on $730B pre-money valuation

https://techcrunch.com/wp-content/uploads/2025/04/GettyImages-2197366846.jpg?w=1024
OpenAI raises funds in a new round, partnering with Amazon and Nvidia for infrastructure development. The company plans to use the funds to scale AI infrastructure and meet growing demand.

NASA announces overhaul of Artemis program amid safety concerns, delays

https://assets1.cbsnewsstatic.com/hub/i/r/2026/02/27/174e8b1c-c819-4b3b-85be-cf48c0401653/thumbnail/620x416/1b990280058891690255e3d7c39faf14/gettyimages-2263028878.jpg
NASA Administrator Jared Isaacman announced a revised Artemis moon program plan, adding a 2027 test flight to lay groundwork for lunar landings. The revised plan aims to accelerate launches and reduce risk by testing technologies in low-Earth orbit before attempting moon landings.

A better streams API is possible for JavaScript

https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5qjBI2UpJXcpCqgAY4SJkH/9e6489cd148e2c74d1bdd25dd08e6db5/image7.png
The Web streams standard has fundamental usability and performance issues that cannot be fixed with incremental improvements, including locking models, BYOB reads, backpressure, and promise-heavy design, which add complexity and overhead. Implementers have resorted to non-standard internal optimizations to achieve acceptable performance, leading to fragmentation, inconsistent behavior, and a ...

Let's discuss sandbox isolation

https://www.shayon.dev/sandbox.jpg
Isolation techniques for untrusted code vary, from Docker's namespace isolation to gVisor's user-space kernel boundary and microVMs' hardware boundary. Each approach has its trade-offs, and the choice depends on the threat model, performance requirements, and the type of workload being run.

Dan Simmons, author of Hyperion, has died

https://d3eguztg5751m.cloudfront.net/as/assets-mem-com/cmi/1/7/8/8/12758871/20260226_130858076_0_orig.jpg/-/daniel-simmons-longmont-co-obituary.jpg?maxheight=650
Dan Simmons was born in 1948 in Peoria, Illinois, and went on to become a renowned author and teacher. He wrote 31 novels and short story collections, including the critically acclaimed "Hyperion cantos" and "Song of Kali", and was honored with numerous awards.

A new California law says all operating systems need to have age verification

https://cdn.mos.cms.futurecdn.net/Ba252N3UzmCkmpAK2B5t3j.jpg
California requires operating system providers to implement age verification for users. This law, Assembly Bill No. 1043, aims to provide a signal regarding a user's age bracket to applications available in a covered application store.

Writing a Guide to SDF Fonts

https://www.redblobgames.com/articles/sdf-fonts/blog/sdf-aemrange-03-01.png?2026-02-08-12-38-26
The author learned about SDF font rendering in 2024 and initially created incomplete notes on their site. They decided to recreate the content as a top search result for "sdf fonts" in 2025.

Show HN: Claude-File-Recovery, recover files from your ~/.claude sessions

https://raw.githubusercontent.com/hjtenklooster/claude-file-recovery/main/demo/demo.gif
Claude Code file recovery tool recovers lost files from JSONL session transcripts. It replays Write, Edit, and Read operations to reconstruct files in chronological order.

The Robotic Dexterity Deadlock

https://www.origami-robotics.com/assets/images/image%20(20).png
Robot hands struggle with dexterity due to high-ratio gearboxes that destroy sim-to-real transfer and force transparency. A low-ratio transmission preserves actuator information capacity and enables delicate manipulation.

Allocating on the Stack

https://go.dev/doc/gopher/runningsquare.jpg
Go developers are optimizing performance by reducing heap allocations. They're using stack allocations instead, which are cheaper and don't incur garbage collector overhead.

Open source calculator firmware DB48X forbids CA/CO use due to age verification

https://opengraph.githubassets.com/dfc647d957c125105bd4c0ae9067d475842c8916c39f009f5fea4e3c69013219/c3d/db48x/commit/7819972b641ac808d46c54d3f5d1df70d706d286
As a consequence of recent legislative activity in [California][cal] and [Colororado][col]: * California residents may no longer use DB48x after Jan 1st, 2027. * Colorado residents may no longer u...

Kyber (YC W23) Is Hiring an Enterprise Account Executive

https://bookface-images.s3.amazonaws.com/small_logos/3004c4a72b716a80763763b95bf3e212c448756e.png
Kyber is hiring Enterprise Account Executives to drive revenue growth and scale its AI-native document platform for enterprises. The ideal candidate has an Olympic work ethic, outstanding communication skills, and a proven track record of meeting quotas.

Modeling cycles of grift with evolutionary game theory

https://www.oranlooney.com/post/grifters-skeptics-marks_files/lead.jpg
A mathematical model based on Evolutionary Game Theory suggests that grift is cyclical, with periods of high grift followed by high skepticism. The model implies that the current generation of grifters will eventually stop working as people learn to spot their tricks.

PCB Tracer

A free online tool allows PCB reverse engineering with virtual X-Ray view and annotation of components and signal paths. It features AI-powered component identification and no installation is required.

Building secure, scalable agent sandbox infrastructure

https://browser-use.com/_next/image?url=%2Fimages%2Fauthors%2Flarsen.jpg&w=640&q=75
We isolated our web agents by putting the entire agent in a sandbox, talking to the outside world through a control plane that holds all credentials. This setup allows for scale-to-zero, stateless operation, and prevents the agent from accessing sensitive information, with the tradeoff of an extra network hop and increased operational complexity.

Get free Claude max 20x for open-source maintainers

https://cdn.prod.website-files.com/6889473510b50328dbb70ae6/68c469d23594abeb9ab6ee48_og-claude-generic.jpg
Open-source maintainers and contributors receive 6 months of free Claude Max 20x through the Claude for Open Source Program. Eligible maintainers have 5,000+ GitHub stars or 1M+ monthly NPM downloads and recent commits or PR reviews.

Court finds Fourth Amendment doesn’t support broad search of protesters’ devices

https://www.eff.org/files/banner_library/protest-2024-2.jpg
US Court of Appeals overturned a lower court's dismissal of a challenge to sweeping warrants for a protester's and a nonprofit's digital data. The Tenth Circuit ruled the warrants were overbroad and lacking in particularity, denying police qualified immunity.

Reading English from 1000 AD

https://lewiscampbell.tech/img/icon512-967261d058848800.png
A post about Old English has gone viral, sparking interest in the language. A non-expert was able to read and understand Old English from 1000 AD with some effort.

Implementing a Z80 / ZX Spectrum emulator with Claude Code

The user replicated an experiment where a coding agent, Claude Code, was instructed to write a Z80 emulator and a ZX Spectrum emulator in a "clean room" setup with minimal supervision. The agent successfully implemented the emulators with high-quality code, demonstrating the potential of automatic programming and contradicting the idea that LLMs memorize the training set.

"Just a little detail that wouldn't sell anything"

https://unsung.aresluna.org/_media/just-a-little-detail-that-wouldnt-sell-anything/ogimage.png
The breathing light, also known as the Sleep Indicator Light, debuted in 1999 iBook G3 and was designed to mimic human breathing for a soothing effect. It was eventually phased out in the 2010s due to design changes.

Can you reverse engineer our neural network?

https://blog.janestreet.com/can-you-reverse-engineer-our-neural-network/puzzle.png
A neural network puzzle was created to test mechanistic interpretability, where the goal was to figure out what the network does by analyzing its structure. The puzzle was solved by Alex, who used a combination of analysis, reduction, and brute force to discover that the network was computing an MD5 hash.

Tell HN: MitID, Denmark's digital ID, was down

The user discusses the risks of relying on digital IDs and payment systems, citing the recent MitID outage in Denmark as an example, and argues that physical money and IDs are more secure and less vulnerable to single points of failure. The user also compares the Danish system to other European countries, highlighting the trade-offs between convenience, security, and individual freedom, and ...

We gave terabytes of CI logs to an LLM

https://www.mendral.com/_next/image?url=%2Fblog%2Fllms-are-good-at-sql%2Fgithub-req-s.png&w=1920&q=75&dpl=dpl_DPtoJq9RuVh3diFPQeGaJW9fh4YG
The agent uses a SQL interface to query a ClickHouse database with 48 columns of metadata per log line, allowing it to investigate novel failures quickly. The system throttles ingestion to prevent rate limit issues and uses durable execution to handle rate limits without crashing or retrying.

A Chinese official’s use of ChatGPT revealed an intimidation operation

https://media.cnn.com/api/v1/images/stellar/prod/ap25217544785149.jpg?c=original&q=w_860,c_fill
A Chinese influence operation used ChatGPT to intimidate dissidents abroad, including by impersonating US immigration officials and spreading false information. OpenAI banned the user after discovering the activity, which involved hundreds of operators and thousands of fake online accounts.

Show HN: RetroTick – Run classic Windows EXEs in the browser

Run classic Windows and DOS executables directly in your browser. An x86 emulator with Win32, Win16, and DOS API support — drag and drop any .exe to play retro games, screen savers, and more.

Statement from Dario Amodei on our discussions with the Department of War

https://cdn.sanity.io/images/4zrzovbb/website/1864442e2d581ffc8242e7c57e2c4e2309351f49-1200x630.png
Anthropic has worked with the US government to deploy AI models for national security, but refuses to allow their use in mass domestic surveillance or fully autonomous weapons due to democratic and safety concerns. The company is willing to continue serving the Department of War with safeguards in place, but may transition to another provider if their conditions are not met.

Sprites on the Web

https://www.joshwcomeau.com/images/illustrations/gold-trophy-flames.png
The user explains how to create animations using sprites in CSS, specifically using the steps() function to create discrete animation steps, and discusses the benefits and trade-offs of this approach. The user also shares examples of when to use sprites, such as for dynamic animations that look like sprites, and when not to use them, such as for complex animations that can be handled by modern devices.

Rob Grant, creator of Red Dwarf, has died

https://www.beyondthejoke.co.uk/sites/default/files/styles/large/public/641389906_1381946027296050_5754666435429764245_n.jpg?itok=CbickdxA
Rob Grant, co-creator of Red Dwarf, has passed away. Tributes have been paid by Red Dwarf cast and crew, including Craig Charles and the Official Red Dwarf Facebook page.

F-Droid Board of Directors nominations 2026

https://f-droid.org/assets/fdroid-logo_bfHl7nsLHOUQxzdU8-rGIhn4bAgl6z7k2mA3fWoCyT4=.png
F-Droid is accepting nominations for up to four volunteer directors to serve two-year terms. Nominations should be sent by March 16th to [email protected] with a description of the nominee's qualifications.