Hacker News

Latest

Cell Service for the Fairly Paranoid

2026-02-24 @ 22:37:54Points: 20Comments: 12

Stripe reportedly makes offer to acquire PayPal

2026-02-24 @ 22:16:12Points: 37Comments: 23

Dream Recorder AI – a portal to your subconscious

2026-02-24 @ 22:09:57Points: 9Comments: 9

Show HN: Moonshine Open-Weights STT models – higher accuracy than WhisperLargev3

2026-02-24 @ 21:54:07Points: 56Comments: 11

I wanted to share our new speech to text model, and the library to use them effectively. We're a small startup (six people, sub-$100k monthly GPU budget) so I'm proud of the work the team has done to create streaming STT models with lower word-error rates than OpenAI's largest Whisper model. Admittedly Large v3 is a couple of years old, but we're near the top the HF OpenASR leaderboard, even up against Nvidia's Parakeet family. Anyway, I'd love to get feedback on the models and software, and hear about what people might build with it.

Pi – a minimal terminal coding harness

2026-02-24 @ 21:53:59Points: 98Comments: 44

Looks like it is happening

2026-02-24 @ 21:19:03Points: 125Comments: 84

Mac mini will be made at a new facility in Houston

2026-02-24 @ 21:13:45Points: 269Comments: 268

How we rebuilt Next.js with AI in one week

2026-02-24 @ 20:07:00Points: 298Comments: 87

We Are Changing Our Developer Productivity Experiment Design

2026-02-24 @ 20:01:54Points: 26Comments: 17

Hacking an old Kindle to display bus arrival times

2026-02-24 @ 19:43:34Points: 141Comments: 26

Steel Bank Common Lisp

2026-02-24 @ 18:24:17Points: 133Comments: 43

OpenAI, the US government and Persona built an identity surveillance machine

2026-02-24 @ 18:23:03Points: 404Comments: 128

Discord cuts ties with identity verification software, Persona - https://news.ycombinator.com/item?id=47136036 - Feb 2026 (282 comments)

Show HN: Tag Promptless on any GitHub PR/Issue to get updated user-facing docs

2026-02-24 @ 18:01:16Points: 26Comments: 5

https://news.ycombinator.com/item?id=43092522). It's an AI teammate that watches your workflows—code changes, support tickets, Slack threads, etc.—and automatically drafts doc updates when it spots something that should be documented.

Frances and I really appreciated the feedback from our first launch. Today we’re launching Promptless 1.0, which addresses our biggest learnings from the last 12 months.

I also made it way easier to try it out. You can tag @promptless on any open-source Github PR or Issue with a doc update request, and Promptless will create a fork and open a PR for your docs to help. Feel free to use our own docs as a playground: https://github.com/Promptless/docs/issues

Or, you can sign up at https://promptless.ai to get free access for your own docs for the next 30 days. Here's a demo video: https://youtu.be/IWwimHCEY7Y

For me, the coolest part of the last year has been seeing how users got creative with Promptless. One user has Promptless listening in to all their Slack Connect channels, so whenever they answer a customer question, Promptless figures out if their docs should be updated and drafts an update if so. Another user has Promptless processing every customer meeting transcript and updating their internal docs after each meeting: customer dashboards, feature request pages, etc.

Some of the biggest things that are new with version 1.0:

- Automatically updating screenshots: this was by far our most requested feature. The need here was always clear. People would exclude screenshots from docs because they’d get stale quickly, even though they knew screenshots would be helpful to users. A year ago, we just couldn't ship a good enough solution, but given how much LLMs' visual grounding has improved in the last year, now we've got something we're proud of.

- Slop-free writing: The most common critique on early Promptless suggestions was that even though they were accurate, they could sound generic or verbose, or might just reek of AI slop. Promptless 1.0 is 3.5x better at this (measured by voice-alignment compared to what users actually published), through a combination of fine-tuned models, sub-agents, and alignment on user-defined preferences.

- Open-source program: We're especially proud of this—Promptless is now free for CNCF/Linux Foundation projects (reach out if you’re a maintainer!). You can take a look at how Promptless is supporting Vitess (a CNCF-graduated project) with their docs here: https://github.com/vitessio/website/commits

Check it out and let us know if you have any questions, feedback, or criticism!

Show HN: Emdash – Open-source agentic development environment

2026-02-24 @ 18:00:37Points: 89Comments: 35

https://github.com/generalaction/emdash).

Emdash is an open-source and provider-agnostic desktop app that lets you run multiple coding agents in parallel, each isolated in its own git worktree, either locally or over SSH on a remote machine. We call it an Agentic Development Environment (ADE).

You can see a 1 minute demo here: https://youtu.be/X31nK-zlzKo

We are building Emdash for ourselves. While working on a cap-table management application (think Stripe Atlas + Pulley), we found our development workflow to be messy: lots of terminals, lots of branches, and too much time spent waiting on Codex.

Emdash puts the terminal at the center and makes it easy to run multiple agents at once. Each agent runs as a task in its own git worktree. You can start one or a few agents on the same problem, test, and review.

Emdash works over SSH so you can run agents where your code lives and keep the parallel workflow. You can assign tickets to agents, edit files manually, and review changes.

We also spent time making task startup fast. Each task can be created in a worktree, and creating worktrees on demand was taking 5s+ in some cases. We now keep a small reserve of worktrees in the background and let a new task claim one instantly. That brought task start time down to ~500–1000ms depending on the provider. We also spawn the shell directly and avoid loading the shell environments on startup.

We believe using the providers’ native CLIs is the right approach. It gives you the full capabilities of each agent, always. If a provider starts supporting plan mode, we don't have to add that first.

We support 21 coding agent CLIs today, including Claude Code, Codex, Gemini, Droid, Amp, Codebuff, and more. We auto-detect what you have installed and we’re provider-agnostic by design. If there’s a provider you want that we don’t support yet, we can add it. We believe that in the future, some agents will be better suited for task X and others for task Y. Codex, Claude Code, and Gemini all have fans. We want to be agnostic and enable individuals and teams to freely switch between them.

Beyond orchestration, we try to pull most of the development loop into Emdash. You can review diffs, commit, open PRs, see CI/CD checks, and merge directly from Emdash once checks pass. When starting a task, you can pass issues from Linear, GitHub, and Jira to an agent. We also support convenience variables and lifecycle scripts so it’s easy to allocate ports and test changes.

Emdash is fully open-source and MIT-licensed.

Download for macOS, Linux or Windows (as of yesterday !), or install via Homebrew: brew install --cask emdash.

We’d love your feedback. How does your coding agent development setup look like, especially when working with multiple agents? We would want to learn more about it. Check out our repository here: https://github.com/generalaction/emdash

We’ll be around in the comments — thanks!

Nearby Glasses

2026-02-24 @ 17:40:40Points: 198Comments: 84

Hugging Face Skills

2026-02-24 @ 17:30:19Points: 122Comments: 36

I'm helping my dog vibe code games

2026-02-24 @ 17:15:17Points: 537Comments: 161

Verge (YC S15) Is Hiring a Director of Computational Biology and AI Scientists/Eng

2026-02-24 @ 17:00:34Points: 1

The history of knocking on wood

2026-02-24 @ 15:16:08Points: 7Comments: 0

I pitched a roller coaster to Disneyland at age 10 in 1978

2026-02-24 @ 13:03:51Points: 380Comments: 147

IRS Tactics Against Meta Open a New Front in the Corporate Tax Fight

2026-02-24 @ 12:58:14Points: 174Comments: 190

IDF killed Gaza aid workers at point blank range in 2025 massacre: Report

2026-02-24 @ 12:16:45Points: 1121Comments: 409

The Missing Semester of Your CS Education – Revised for 2026

2026-02-23 @ 16:02:48Points: 374Comments: 113

https://news.ycombinator.com/item?id=22226380 and https://news.ycombinator.com/item?id=34934216).

We’ve updated the course based on our personal experiences as well as major changes in the field (e.g., the proliferation of AI-powered developer tools) over the past several years. The 2026 course includes revised versions of four lectures from the previous course, and it adds five entirely new lectures:

- Development Environment and Tools

- Packaging and Shipping Code

- Agentic Coding

- Beyond the Code (soft skills)

- Code Quality

We’d love to hear any feedback from the HN community to improve the current or future iterations of the course. In particular, we’re curious to hear the community’s take on our inclusion of AI-related topics (e.g., dedicating an entire class to the topic of agentic coding; though we tried to counterbalance it with plenty of disclaimers, and a dedicated section on AI etiquette in Beyond the Code).

--Anish, Jon, and Jose

Show HN: Chaos Monkey but for Audio Video Testing (WebRTC and UDP)

2026-02-23 @ 08:53:21Points: 30Comments: 2

It scales from 1 to n participants, depending on the compute and memory of the host system Best part? It’s packaged with Nix, so it builds the same everywhere (Linux, macOS, ARM, x86). No dependency hell

It supports both UDP (with a relay chain for Kubernetes) and WebRTC (with containerized TURN servers). Chaos spikes can be distributed evenly, randomly, or front/back-loaded for different test scenarios. To change this, just edit the values in a single config file

We installed a single turnstile to feel secure

2026-02-22 @ 21:07:11Points: 257Comments: 116

Extending C with Prolog (1994)

2026-02-22 @ 16:10:18Points: 61Comments: 19

Ask HN: Programmable Watches with WiFi?

2026-02-21 @ 21:39:55Points: 12Comments: 5

Also, ideally, no requirement of a smartphone to send-receive data (it's ok to need a smartphone for the initial setup of the watch, though). I know about Pebble, but it doesn't have wifi. I know about some Garmins with wifi but for the kind of apps I want to write, the communication between the watch and the server has to be mediated by a phone. Also, correct me if I'm wrong, I don't want to pay $100/year just to be able to use my custom app in apple watches. I usually don't trust Google either (e.g., they discontinue everything in a blink of an eye).

So, what are my options?

Build Your Own Forth Interpreter

2026-02-21 @ 14:14:08Points: 42Comments: 12

λProlog: Logic programming in higher-order logic

2026-02-20 @ 23:02:08Points: 143Comments: 36

Optophone

2026-02-20 @ 21:07:14Points: 18Comments: 3

Archives

2026

2025

2024

2023

2022