Using AI to write better code more slowly

https://nolanlawson.com/wp-content/uploads/2023/01/profile_17.jpg?w=300
The author argues that LLMs can be used to write high-quality code more slowly, rather than just spewing out low-quality code quickly. They use a combination of models to find and prioritize bugs in code, resulting in more careful and methodical coding.

The User Is Visibly Frustrated

https://pscanf.com/_astro/profile.CewbUKyT_Z1miYcf.avif
The writer gets frustrated with coding agents due to their human-like behavior and the illusion of interacting with a person. They feel free to lash out but realize it's pointless, suggesting a more radical solution of making the agent sound clinical and robotic.

Earthion: A New Mega Drive-Style Shoot-Em-Up

https://earthiongame.com/wp-content/uploads/2025/04/earthion.webp
Earthion is a space shooter game where Azusa Takanashi fights to save humanity from hostile invaders on Earth. The game features stunning visuals, intense gameplay, and a legendary soundtrack by Yuzo Koshiro.

Taking a walk may lead to more creativity than sitting, study finds (2014)

https://www.apa.org/Content/Images/logo_small.png
Walking improves creative thinking by 81-100% compared to sitting. Regular walking can temporarily boost free-flowing thoughts and creativity without requiring intense exercise.

How Shamir's Secret Sharing Works

https://ente.com/how-shamirs-secret-sharing-works/images/02-secret-at-y-axis.svg
A company uses Adi Shamir's 1979 secret sharing scheme to split a secret into pieces, where any smaller number reveals nothing, but any required number can recover it. This scheme hides the secret behind random coefficients, making too few shares contain no information about the secret.

Norway's 2 petabytes of Huawei flash storage and LLM training

https://image.blocksandfiles.com/5244935.webp?imageId=5244935&x=0.00&y=0.00&cropw=100.00&croph=100.00&width=960&height=576&format=jpg
Norway's National Library is developing a sovereign AI model trained in Norwegian language using 2 PB of Huawei storage. The project aims to create a locally trained AI that understands Norway's history, news, and culture, which a globally trained English-speaking AI would not know.

A successful Japanese trial of a ramjet engine designed for Mach‑5 aircraft

https://www.bgr.com/img/gallery/japans-new-hypersonic-engine-could-make-2-hour-flights-to-the-us-a-reality/intro-1779312403.jpg
Japanese engineers have successfully tested a ramjet engine for a Mach-5 hypersonic aircraft, a key step towards commercial passenger service by the 2040s. The test could lead to flights from Tokyo to Los Angeles taking around two hours, slashing transit time and transforming long journeys into day trips.

Ferrari Luce

Ferrari's new architecture combines performance with luxury and spaciousness through advanced drivetrain and electric power source. The interior features tactile controls and dedicated NVH solutions for a refined driving experience.

Exit IP VPN servers mitigation rollout

https://mullvad.net/press/MullvadVPN_logo_Round_RGB_Color_positive.png
Below are the servers with the new mitigation applied.

Ask HN: Is anyone working at least 4 hours daily on an Apple Vision Pro?

I asked this in 2024 and would love to see the change: https://news.ycombinator.com/item?id=41748125

Motorola phones have started hijacking the Amazon app to insert affiliate codes

https://9to5google.com/wp-content/uploads/sites/4/2026/05/motorola-razr-fold-white-7.jpg?quality=82&strip=all&w=1600
Motorola phones are hijacking the Amazon app to inject an affiliate code, redirecting users to a suspicious website. Disabling the pre-installed Smart Feed app stops this behavior, which is linked to a recent app update.

Dehydration's role in learning and memory

https://www.cshl.edu/wp-content/uploads/2026/05/Furukawa-NatNeuroSci_HERO-1920x1080-1.jpg
CSHL Professor Hiro Furukawa and colleagues discovered how NMDARs distinguish calcium from magnesium using single-particle cryo-EM and high-performance computing. This breakthrough provides new insights into learning and memory and could impact brain development and disease.

California moves to exempt Linux from its age-verification law after backlash

https://cdn.mos.cms.futurecdn.net/CBt66kAwURokqymNekYL97.jpg
California lawmakers may exempt most open-source operating systems from age-verification requirements. The proposed amendment would exclude software distributed under open-source licenses from the Digital Age Assurance Act.

Does anybody like React?

https://jsx.lol/assets/favicon.svg
The author criticizes React for being a bloated, slow, and complex framework that often leads to poor code quality and performance issues. They argue that React's ecosystem has become a self-perpetuating cycle of network effects rather than technical fit, and that it's often chosen over other alternatives due to familiarity rather than suitability.

Toshifumi Suzuki, founder of Seven-Eleven Japan, has died

https://www.referenceforbusiness.com/biography/images/idbb_04_img0282.jpg
Toshifumi Suzuki revolutionized Japan's retail sector by introducing franchising and transforming the convenience store industry with Seven-Eleven Japan. He implemented innovative data systems and streamlined distribution, improving productivity and profitability.

Squares in Squares

10 $s = 3 + 1over 2sqrt 2 =nn3.70710678118654$found by frits göbel in early 1979.proved by walter stromquist in 2003.explore group 11 $a = 0 = $n - 3.87708359002281 $rigid. 55 $d = 7.0077100750391$

Performance of Rust Language [pdf]

https://opengraph.githubassets.com/67dc0bfc9a29d00db97e327c85ec687708a594c62c9f611488fd6bd98c35d09c/yugr/rust-slides
Contribute to yugr/rust-slides development by creating an account on GitHub.

What we lost when we stopped letting kids leave the front yard

https://substackcdn.com/image/fetch/$s_!2Yyd!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F59a0bef3-f41d-43c2-9ed3-c448bd363e00_1892x1778.png
We're overprotecting our kids due to a culture of safetyism, which prevents them from developing essential life skills like autonomy, resilience, and emotional regulation. By giving kids more freedom and allowing them to navigate discomfort, we can help them build confidence and self-determination.

Hacker News front page as a site

https://thefrontpage.dev/image?url=https%3A%2F%2Fmullvad.net%2Fpress%2FMullvadVPN_logo_Round_RGB_Color_positive.png
The article discusses various topics including Mullvad's solutions, gobee, Riscrithm, HetznerCloud, Gnutella, film reviewer A.S. Hamrah, and more, highlighting technical approaches and innovations in data integrity, AI, and software development. It also covers news on Microsoft, Firefox, NordVPN, DeepSeek API, scams, and other topics related to technology, security, and innovation.

What it takes to transpose a matrix

https://gudok.xyz/transpose/srcwise.gif
The naive matrix transpose algorithm has a read stream that can process the matrix in approximately 1.25c per element on average due to optimizations like prefetching, in-memory buffering, and high memory parallelism, but the write stream is a severe bottleneck due to strided access pattern and limited usefulness of caching. The performance of the write stream degrades as N grows, and it is ...

Show HN: Write your BPF programs in Go, not C

https://opengraph.githubassets.com/1d1e3f35fb352adc0d2833437d2825d47c4b4deb3b00d57a3cbd076d6b513953/boratanrikulu/gobee
gobee is a Go tool that transpiles a subset of Go into BPF C, generating typed Go bindings for the userspace side and gating loads against the running kernel. It reuses clang's mature BPF backend for codegen, BTF, and CO-RE relocations.

Designing for and against the manufactured normalcy field (2012)

https://farm8.staticflickr.com/7093/7355512520_d2ee17ee8d.jpg
The user discusses the Manufactured Normalcy Field, a concept by Venkatesh Rao that explains how people adapt to new technologies by creating familiar experiences. A brainstorming session at FOO camp using this concept led to creative ideas and a game where people describe normal things in a way that reveals their inherent weirdness.

Nobody cracks open a programming book anymore

The sales of programming books have declined due to the rise of chatbots and AI tools that provide instant answers and explanations. This shift has made the traditional format of programming books, which required readers to type and practice, obsolete.

Jensen–Shannon Divergence

The Jensen-Shannon divergence is a method of measuring the similarity between two probability distributions, based on the Kullback-Leibler divergence, and is symmetric and always has a finite value. It is bounded by 0 and 1 for two discrete probability distributions.

The Lottery – Shirley Jackson (1948)

https://media.newyorker.com/photos/5f15c3b3c0d6d7b73793b17b/3:4/pass/200727_r36770web.jpg
The villagers gathered in the square for the annual lottery, a tradition where one person is randomly selected to be stoned to death. The lottery was conducted by Mr. Summers, who drew slips of paper from a black box, with the Hutchinson family ultimately being chosen.

Mathematical Patterns in African American HAIRSTYLEs

https://math.buffalo.edu/mad/special/gilmerpix/fig1.jpg
The study of ethnomathematics explores mathematical ideas in cultural practices, such as African-American hair braiding, to enhance education and access to scientific knowledge. Hair braiding patterns, like tesselations, can be used to teach mathematical concepts like geometry and spatial reasoning.

CVE-2026-28952: Apple macOS 26.5 Kernel Vuln found by Claude

Apple doesn't disclose security issues until patches are available. Recent releases are listed on the Apple security releases page.

Weave (YC W25) is hiring ML, AI, product, & design engineers

https://app.ashbyhq.com/api/images/org-theme-wordmark/8c055073-ed97-4980-a925-eecf79fbde90/89560b07-0c51-4946-9d59-1e98694a0a99/4ca57cd9-b858-4790-bb7c-19cb9def3755.png
Weave Jobs

C extensions, portability, and alternative compilers

C code often relies on non-standard behaviors and language extensions to work around bugs and gaps in different compilers and libraries. Many codebases attempt to support various environments through preprocessor checks and guards, but these attempts are often finicky or broken.

Show HN: OpenBrief – Local-first video downloader/summarizer

https://raw.githubusercontent.com/tantara/openbrief/main/docs/assets/openbrief_thumbnail.png
OpenBrief is a Tauri desktop app that imports media, extracts transcripts, and generates summaries. It supports local files, URLs, and exports reusable notes in a searchable library.