Hacker News ReaderTop Best

Introducing System One Models and Jev | 136

Introducing System One Models and Jev

typesafe.ai

Introducing System One Models & Jev - TypeSafe AI Blog

TypeSafe AI is an AI lab building machine-native intelligence infrastructure for automation, designed to make decisions within software. Try our first System One Model, Jev, in early access.

Apple Reference Image: A New Approach for Verified Photography | 34

Apple Reference Image: A New Approach for Verified Photography - Apple Security Research
security.apple.com

Apple Reference Image: A New Approach for Verified Photography - Apple Security Research

Introducing Apple Reference Image, a new solution for verifiable photography on iPhone. This new, opt-in camera mode lets a photographer create a securely timestamped reference image that accurately depicts what was captured by the iPhone's camera sensor. Apple Reference Image offers a trustworthy, scalable guarantee that a reference image is what it claims to be: a real photograph, captured by a real sensor in an iPhone camera, at a specific period in time.

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations | 87

E-ink bird frame for Raspberry Pi - real-time bird detection by audio, fully local AI, rendered as real, hand-cut 1800s bird illustrations. - arnegiacomo/fugleramme
arnegiacomo/fugleramme

GitHub - arnegiacomo/fugleramme: E-ink bird frame for Raspberry Pi - real-time bird detection by audio, fully local AI, rendered as real, hand-cut 1800s bird illustrations. · GitHub

E-ink bird frame for Raspberry Pi - real-time bird detection by audio, fully local AI, rendered as real, hand-cut 1800s bird illustrations. - arnegiacomo/fugleramme

Show HN: I made a flight simulator, except you're just a passenger | 29

Show HN: I made a flight simulator, except you're just a passenger

Buckle your seatbelt, secure your tray table, and open your window shade. Now you can simulate flying anywhere in the world as a commercial passenger, from takeoff to touchdown. Terrain, weather, and realtime sun position included. Don't worry, the latest release now features legs, so you can get up and go to the bathroom on longer flights. Enjoy! [rkotcher]

Inflight Simulator cabin at cruising altitude
inflightsimulator.com

InFlightSimulator | See the world, virtually

Fly to every country as a passenger. Choose your next destination and collect country flags automatically as your flights finish.

An update on Wayback Machine access | 38

An update on Wayback Machine access

blog.archive.org

An Update on Wayback Machine Access | Internet Archive Blogs

Negativland, Culture Jamming, and the Art of Making Something New | 13

blog.archive.org

Negativland, Culture Jamming, and the Art of Making Something New | Internet Archive Blogs

Gemini 3.8 Live and 3.8 Live Extended Thinking | 43

blog.google

Gemini 3.8 Live & Gemini 3.8 Live Extended Thinking

Gemini 3.8 Live and Gemini 3.8 Live Extended Thinking are our most advanced live dialogue models yet, built for natural conversation.

Doing Everyone Else's Job | 10

yosefk.com

Doing everyone else's job

Building a Linux GPU Driver for the M4 Mac Mini in One Month | 23

codyho.dev

I Came, I Prompted, I Left Part 2: Building a GPU Driver From Scratch in One Month — Cody Ho

Personal website of Cody Ho

Recreating Voodoo Graphics and a Late-1990s Gaming PC on an FPGA | 10

nand2mario.github.io

Recreating Voodoo Graphics and a Late-1990s Gaming PC on an FPGA - Small Things Retro

German Rheinmetall open-sources its Battlesuite connected weapon system protcol | 21

rheinmetall.github.io

onboardapi: Main Page

Datamimic – don't let your coding agent invent its own test world | 5

rapiddweller/datamimic

Rate limit · GitHub

Why I'm still bearish on LLMs after Navier-Stokes | 32

dank.systems

why i'm still bearish on LLMs after navier-stokes | jay kruer

We got admin access to Baseten's production GitHub | 31

We wanted to use Baseten for inference. We ended up with admin access to Baseten GitHub repos - Strix
strix.ai

We wanted to use Baseten for inference. We ended up with admin access to Baseten GitHub repos - Strix

We gave Strix a domain. In 25 minutes, it found a live token with admin access to Baseten's product, deployment, and CLI repos in a public Docker image.

Saving Jet Fuel | 16

Saving Jet Fuel

tech.marksblogg.com

Saving Jet Fuel

Benchmarks & Tips for Big Data, Hadoop, AWS, Google Cloud, PostgreSQL, Spark, Python & More...

A software thing I built: GPS on a 25MHz 486-SX | 5

forum.vcfed.org

A software thing I built: GPS on a 25MHz 486-SX | Vintage Computer Federation Forums

I don't know if anybody cares about stuff like this, but I thought I'd share a quick story about a project I was hired to build back in the 90's as an...

Intelligence per Watt: Measuring Intelligence Efficiency of Local AI | 0

Saad-Falcon, Jon | Narayan, Avanika | Akengin, Hakki Orhun | Griffin, J. Wes | Shandilya, Herumb | Lafuente, Adrian Gamarra | Goel, Medhya | Joseph, Rebecca | Natarajan, Shlok | Guha, Etash Kumar | Zhu, Shang | Athiwaratkun, Ben | Hennessy, John | Mirhoseini, Azalia | Ré, Christopher

[2511.07885] Intelligence per Watt: Measuring Intelligence Efficiency of Local AI

Abstract page for arXiv paper 2511.07885: Intelligence per Watt: Measuring Intelligence Efficiency of Local AI

Show HN: Capsule – Single-file web apps that save their data into SQLite | 70

Show HN: Capsule – Single-file web apps that save their data into SQLite

Hey HN,

I always had the problem that building HTML pages is really simple now, but trying to save data required hosting it somewhere, and sharing it afterwards was not easy. Over the last few months, I've been building an app called Capsule (it’s also the file extension name) written in Rust with Tauri 2.0 that allows packing an HTML app and its data into a single SQLite file.

The HTML file and any related assets are directly embedded in the database. User data can either be saved as a localStorage key/value store or via a MongoDB-inspired collections API as documents, saved in a table in the file. You can also save other assets, like PDF files or images, directly in the database to keep different documents together. All data can be easily exported to CSV or JSON if needed.

Privacy and security were a big priority for me, so documents cannot do anything out of the box. They don’t have direct access to the file system and they require permission to access the internet. The permission model is still something I’m working to improve. Capsule documents can also use local or remote AI models for document specific AI features.

One downside with this approach is that multiple people working on it will create different copies. To make it possible to merge different copies of the same file, each data entry has a unique UUID and timestamp.

I’m planning to open up the file format specification for the 1.0 version of the app so other apps can read or write Capsule files.

You can try it out in the web preview at https://withcapsule.app/preview with pre-built templates or use any AI provider of your choice to create a custom, Capsule-optimized app by using the following prompt:

"Please read the app wizard instructions at https://withcapsule.app/prompt.txt and help me design an app.“

I’m still working on the file format but there are migrations for each new version, so data should never be lost when using newer versions of the app in the future. Please let me know if you have any ideas or use cases where this might make sense or does not work. [bashtian]

withcapsule.app

Show HN: Capsule – Single-file web apps that save their data into SQLite

Hey HN,<p>I always had the problem that building HTML pages is really simple now, but trying to save data required hosting it somewhere, and sharing it afterwards was not easy. Over the last few months, I&#x27;ve been building an app called Capsule (it’s also the file extension name) written in Rust with Tauri 2.0 that allows packing an HTML app and its data into a single SQLite file.<p>The HTML file and any related assets are directly embedded in the database. User data can either be saved as a localStorage key&#x2F;value store or via a MongoDB-inspired collections API as documents, saved in a table in the file. You can also save other assets, like PDF files or images, directly in the database to keep different documents together. All data can be easily exported to CSV or JSON if needed.<p>Privacy and security were a big priority for me, so documents cannot do anything out of the box. They don’t have direct access to the file system and they require permission to access the internet. The permission model is still something I’m working to improve. Capsule documents can also use local or remote AI models for document specific AI features.<p>One downside with this approach is that multiple people working on it will create different copies. To make it possible to merge different copies of the same file, each data entry has a unique UUID and timestamp.<p>I’m planning to open up the file format specification for the 1.0 version of the app so other apps can read or write Capsule files.<p>You can try it out in the web preview at <a href="https:&#x2F;&#x2F;withcapsule.app&#x2F;preview" rel="nofollow">https:&#x2F;&#x2F;withcapsule.app&#x2F;preview</a> with pre-built templates or use any AI provider of your choice to create a custom, Capsule-optimized app by using the following prompt:<p>&quot;Please read the app wizard instructions at <a href="https:&#x2F;&#x2F;withcapsule.app&#x2F;prompt.txt" rel="nofollow">https:&#x2F;&#x2F;withcapsule.app&#x2F;prompt.txt</a> and help me design an app.“<p>I’m still working on the file format but there are migrations for each new version, so data should never be lost when using newer versions of the app in the future. Please let me know if you have any ideas or use cases where this might make sense or does not work.

Learning to solve hard problems in RL for LLMs by never giving up | 5

mnoukhov.github.io

Learning to solve hard problems in RL for LLMs by never giving up

<a href="https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;2609.13443" rel="nofollow">https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;2609.13443</a>

Chopping up books when they're physically too big | 51

attainablefelicity.mattkirkland.com

Chop up your books | Attainable Felicity | Matt Kirkland

Matt Kirkland is a designer. He probably reads too much.

Let's make quality the norm again | 43

Let's make quality the norm again

forbrukerradet.no

Let's make quality the norm again

Jean-Pierre Serre turns 100 | 8

mathshistory.st-andrews.ac.uk

Jean-Pierre Serre (1926 - ) - Biography - MacTutor History of Mathematics

Jean-Pierre Serre is a French mathematician who has made important contributions to algebraic topology, algebraic geometry, and algebraic number theory. He was a member of Bourbaki.

MartyPC – A Cycle-Accurate IBM PC/XT Emulator | 1

A cycle-accurate IBM PC/XT/Jr/Tandy emulator. Contribute to dbalsom/martypc development by creating an account on GitHub.
dbalsom/martypc

GitHub - dbalsom/martypc: A cycle-accurate IBM PC/XT/Jr/Tandy emulator · GitHub

A cycle-accurate IBM PC/XT/Jr/Tandy emulator. Contribute to dbalsom/martypc development by creating an account on GitHub.

The Beauty of Roundabouts | 22

The Beauty of Roundabouts

gruhn.me

Niklas Gruhn - The beauty of roundabouts

Stay discoverable in search while disallowing AI training | 21

blog.cloudflare.com

Stay discoverable in search while disallowing AI training

An interactive world map of the stories cultures have told | 4

originmap.sunnyguha.com

An interactive world map of the stories cultures have told

Suspected sabotage causes major Netherlands rail disruption | 44

bbc.com

Suspected sabotage causes major Netherlands rail disruption

WangNet – 1.8 MB, zero-dependency Numberwang adjudication in 11 languages | 16

GraafHenk/numberwang

WangNet – 1.8 MB, zero-dependency Numberwang adjudication in 11 languages

Most people prefer traditional architecture | 58

worksinprogress.news

Most people prefer traditional architecture

Show HN: Pull every comment out of a Google Sheet, in the browser | 0

Show HN: Pull every comment out of a Google Sheet, in the browser

I spend a lot of time working in Google sheets. Often, I will collaborate with up to 50 other people in the same workbook. One specific org I worked at had a strong preference for using comment threads in Sheets extensively to ask questions, give feedback, and raise risks.

Sheets would regularly get 70+ comment threads across multiple tabs with dozens of contributing teams. As the owner of the sheet, I wanted a way to document the comments to retain traceability on all of the various conversations.

To my surprise, there was no function built into sheets to scrape, count, sort or manage comments at all. I also couldnt find any good third party add-ons to solve the problem. So I built one myself.

I discovered that the Drive API gives you the comment text, author and state, but doesnt give the location of the comment which was crucial. Thankfully, the .xlsx export has xl/threadedComments with the cell reference, timestamp, author, resolved flag and parent ID.

How it runs: JSZip in the browser, no sign-in, nothing uploaded anywhere. I am in the process of having the app verified to be hosted on Google Workspace Marketplace, but in the mean time the tool is available at: https://github.com/bsunter93/commentpulse [bsunter2]

No comments yet.

CommentPulse: every comment thread from a Google Sheet listed with its tab, cell, replies and resolved status.
bensunter.com

CommentPulse

Pull every comment thread out of a Google Sheet, with its tab, its cell and its replies. Runs in your browser. Nothing is uploaded.