Hacker News

Latest

The workers behind Meta's smart glasses can see everything

2026-03-02 @ 22:32:35Points: 242Comments: 128

The 185-Microsecond Type Hint

2026-03-02 @ 22:04:56Points: 18Comments: 1

Show HN: I built a sub-500ms latency voice agent from scratch

2026-03-02 @ 21:23:40Points: 73Comments: 22

What moved the needle:

Voice is a turn-taking problem, not a transcription problem. VAD alone fails; you need semantic end-of-turn detection.

The system reduces to one loop: speaking vs listening. The two transitions - cancel instantly on barge-in, respond instantly on end-of-turn - define the experience.

STT → LLM → TTS must stream. Sequential pipelines are dead on arrival for natural conversation.

TTFT dominates everything. In voice, the first token is the critical path. Groq’s ~80ms TTFT was the single biggest win.

Geography matters more than prompts. Colocate everything or you lose before you start.

GitHub Repo: https://github.com/NickTikhonov/shuo

Follow whatever I next tinker with: https://x.com/nick_tikhonov

Welcome (back) to Macintosh

2026-03-02 @ 21:09:47Points: 171Comments: 105

Show HN: Pianoterm – Run shell commands from your Piano. A Linux CLI tool

2026-03-02 @ 20:50:03Points: 29Comments: 10

A little weekend project, made so I can pause/play/rewind directly on the piano, when learning a song by ear.

British Columbia to end time changes, adopt year-round daylight time

2026-03-02 @ 20:30:52Points: 308Comments: 174

Show HN: uBlock filter list to blur all Instagram Reels

2026-03-02 @ 19:50:32Points: 87Comments: 21

Boss-CSS: I created another "CSS-in-JS" lib

2026-03-02 @ 19:48:04Points: 17Comments: 3

It's my own work, that I stopped working on a few years ago in the finish-line, and few weeks ago I decided to finish it using AI.

The article gives some history, some introduction to the lib, and highlights some of it's features.

I do not intend to actively maintain it, unless there's interest, but I just wanted to put it out there, because it was bothering for so long that so much work I've put in it could go to waste.

I hope it can show something new.

DISCLAIMER: Articles is polished using AI without sentence changes, only inlcudes grammar fixes and custom changes based on its suggestions.

A case for Go as the best language for AI agents

2026-03-02 @ 18:48:36Points: 139Comments: 213

"That Shape Had None" – A Horror of Substrate Independence (Short Fiction)

2026-03-02 @ 18:45:12Points: 70Comments: 13

Show HN: Govbase – Follow a bill from source text to news bias to social posts

2026-03-02 @ 17:08:53Points: 136Comments: 62

It also ties each policy directly to bias-rated news coverage and politician social posts on X, Bluesky, and Truth Social. You can follow a single bill from the official text to how media frames it to what your representatives are saying about it.

Free on web, iOS, and Android.

https://govbase.com

I'd love feedback from the community, especially on the data pipeline or what policy areas/features you feel are missing.

Reflex (YC W23) Is Hiring Software Engineers – Python

2026-03-02 @ 17:01:20Points: 1

Launch HN: OctaPulse (YC W26) – Robotics and computer vision for fish farming

2026-03-02 @ 16:39:21Points: 56Comments: 29

https://www.tryoctapulse.com/). We’re building a robotics layer for seafood production, starting with automated fish inspection. We are currently deployed at our first production site with the largest trout producer in North America.

You might be wondering how the heck we got into this with no background in aquaculture or the ocean industry. We are both from coastal communities. I am from Goa, India and Paul is from Malta and Puerto Rico. Seafood is deeply tied to both our cultures and communities. We saw firsthand the damage being done to our oceans and how wild fish stocks are being fished to near extinction. We also learned that fish is the main protein source for almost 55% of the world's population. Despite it not being huge consumption in America it is massive globally. And then we found out that America imports 90% of its seafood. What? That felt absurd. That was the initial motivation for starting this company.

Paul and I met at an entrepreneurship happy hour at CMU. We met to talk about ocean tech. It went on for three hours. I was drawn to building in the ocean because it is one of the hardest engineering domains out there. Paul had been researching aquaculture for months and kept finding the same thing: a $350B global industry with less data visibility than a warehouse. After that conversation we knew we wanted to work on this together.

Hatcheries, the early stage on-land part of production, are full of labor intensive workflows that are perfect candidates for automation. Farmers need to measure their stock for feeding, breeding, and harvest decisions but fish are underwater and get stressed when handled. Most farms still sample manually. They net a few dozen fish, anesthetize them, place them on a table to measure one by one, and extrapolate to populations of hundreds of thousands. It takes about 5 minutes per fish and the data is sparse.

When we saw this process we were baffled. There had to be a better way. This was the starting point that really kicked us off.

Here is the thing though. Most robots are not built to handle humid and wet environments. Salt water is the enemy of anything mechanical. Corrosion is such a pain to deal with. Don't get me started on underwater computer vision which has to parse through water turbidity and particles. Fish move unpredictably and deform while swimming. Occlusion is constant. Calibration is tricky in uncontrolled setups. Handling live fish with robotics is another challenge that hasn't really been solved before. Fish are slippery, fragile, and stress easily. All of this is coupled with the requirement that all materials must be food safe.

On the vision side we are using Luxonis OAK cameras which give us depth plus RGB in a compact form factor. The onboard Myriad X VPU lets us run lightweight inference directly on the camera for things like detection and tracking without needing to send raw frames over USB constantly. For heavier workloads like segmentation and keypoint extraction we bump up to Nvidia Jetsons. We have tested on the Orin Nano and Orin NX depending on power and thermal constraints at different sites.

The models themselves are CNN and transformer based architectures. We are running YOLO variants for detection, custom segmentation heads for body outlines, and keypoint models for anatomical landmarks. The tricky part is getting these to run fast enough on edge hardware. We are using a mix of TensorRT, OpenVINO, and ONNX Runtime depending on the deployment target. Quantization has been a whole journey. INT8 quantization on TensorRT gives us the speed we need but you have to be careful about accuracy degradation especially on the segmentation outputs where boundary precision matters. We spent a lot of time building calibration datasets that actually represent the variance we see on farms. Lighting changes throughout the day, water clarity shifts, fish density varies. Your calibration set needs to capture all of that or your quantized model falls apart in production.

There is no wifi at most of these farms so we are using Starlink for connectivity in remote or offshore locations. Everything runs locally first and syncs when connection is available. We are not streaming video to the cloud. All inference happens on device.

Behind the scenes we have been building our own internal tooling for labeling, task assignment, and model management. Early on we tried existing labeling platforms but they did not fit our workflow. We needed tight integration between labeling, training pipelines, and deployment. So we built our own system where we can assign labeling tasks to annotators, track progress, version datasets, and push models to edge devices with a single command. It is not fancy but it keeps everything under our control and makes iteration fast. When you are trying to close the loop between data collection on farm, labeling, training, quantization, and deployment you cannot afford to have fragmented tooling. We needed one system that handles all of it.

On the robotics side we are building custom enclosures around off the shelf components and modifying delta robots with soft robotics grippers for handling. Vacuum and typical gripper actuation will not work in this environment so we are using compliant grippers that can safely handle fish without damaging them. We started with the Delta X S as our test platform and are evaluating whether to move to industrial delta robots or build our own from scratch once we validate the kinematics and payload requirements in wet and humid environments. The end effector design is still evolving. Fish come in different sizes and body shapes depending on species and life stage so we need grippers that can adapt.

Right now we are focused on operations outside the water. Hatchery phenotyping, sorting, quality inspection. These are more accessible than full underwater deployment and cheaper to start with. The idea is that if we can combine genetics data, environmental data, and phenotypic imagery we can help farms identify which fish to breed and which to cull. This is where selective breeding starts.

Something that surprised us early on: only a tiny fraction of farmed fish species have been through genetic improvement programs. Chickens grow 4x faster than they did in 1950 because of decades of selective breeding. But most farmed fish are essentially wild genetics. The opportunity to improve aquaculture genetics is massive but it is completely bottlenecked on measurement. You cannot improve what you cannot measure, and farms can barely measure anything at scale so far.

The industry moves on trust though. We are dealing with live animals and farms are cautious about who they let near their stock. Coming from outside aquaculture, that trust had to be earned. Paul was already a Future Leader with the Coalition for Sustainable Aquaculture but the real turning point was attending World Aquaculture Society, the largest conference in the US. Through a connection of a connection he met the incoming lead geneticist at what became our first customer. That relationship turned into a paid pilot with the largest trout producer in North America.

I previously worked at ASML, Nvidia, Tesla, and Toyota. Paul worked at Bloomberg. We met at CMU and immediately knew that we wanted to tackle this problem and put our life's work into this.

We would love feedback from any of you who have worked on computer vision in harsh or unpredictable environments, edge deployment on constrained hardware, or gentle and appropriate handling of live animals with robotics. If you are running inference on Jetsons or OAK cameras and have opinions on quantization workflows we would love to hear what has worked for you. If you have aquaculture experience we are curious what problems we should be thinking about that we haven't encountered yet.

Dang told us you’re all used to demo videos but unfortunately we can’t share them due to NDAs. But here’s a photo of us building our initial dataset for phenotyping and morphometric analysis: https://drive.google.com/file/d/1z3oSlB8ed9hanrybzP24XTfjDJE....

This is a weird industry to be building in and we are learning something new every week. If you have experience with edge deployment, robotics in wet environments, or aquaculture itself we would love to hear your perspective. And if you just have questions about fish or the tech we are happy to go deep in the comments. Excited to hear what this community thinks.

Packaging a Gleam app into a single executable

2026-03-02 @ 16:20:18Points: 78Comments: 7

Ask HN: Who is hiring? (March 2026)

2026-03-02 @ 16:00:27Points: 146Comments: 201

not an option.

Please only post if you personally are part of the hiring company—no recruiting firms or job boards. One post per company. If it isn't a household name, explain what your company does.

Please only post if you are actively filling a position and are committed to replying to applicants.

Commenters: please don't reply to job posts to complain about something. It's off topic here.

Readers: please only email if you are personally interested in the job.

Searchers: try http://nchelluri.github.io/hnjobs/, https://hnjobs.emilburzo.com, or this (unofficial) Chrome extension: https://chromewebstore.google.com/detail/hn-hiring-pro/mpfal....

Don't miss this other fine thread: Who wants to be hired? https://news.ycombinator.com/item?id=47219667

Ask HN: Who wants to be hired? (March 2026)

2026-03-02 @ 16:00:26Points: 57Comments: 152

  Location:
  Remote:
  Willing to relocate:
  Technologies:
  Résumé/CV:
  Email:
Please only post if you are personally looking for work. Agencies, recruiters, job boards, and so on, are off topic here.

Readers: please only email these addresses to discuss work opportunities.

There's a site for searching these posts at https://www.wantstobehired.com.

First in-utero stem cell therapy for fetal spina bifida repair is safe: study

2026-03-02 @ 14:54:58Points: 232Comments: 45

Parallel coding agents with tmux and Markdown specs

2026-03-02 @ 14:24:15Points: 100Comments: 78

New iPad Air, powered by M4

2026-03-02 @ 14:11:23Points: 290Comments: 484

iPhone 17e

2026-03-02 @ 14:03:00Points: 168Comments: 173

How to talk to anyone and why you should

2026-03-02 @ 07:30:12Points: 534Comments: 499

Motorola announces a partnership with GrapheneOS

2026-03-02 @ 06:48:07Points: 2008Comments: 719

Inside the M4 Apple Neural Engine, Part 1: Reverse Engineering

2026-03-01 @ 17:11:44Points: 245Comments: 60

Programmable Cryptography

2026-02-28 @ 22:43:40Points: 25Comments: 7

Why Objective-C

2026-02-28 @ 12:41:33Points: 118Comments: 102

Build your own Command Line with ANSI escape codes (2016)

2026-02-28 @ 03:48:14Points: 30Comments: 8

Zclaw – The 888 KiB Assistant

2026-02-28 @ 00:47:39Points: 73Comments: 38

LFortran compiles fpm

2026-02-28 @ 00:12:24Points: 41Comments: 17

RCade: Building a Community Arcade Cabinet

2026-02-26 @ 19:09:18Points: 22Comments: 2

Use the Mikado Method to do safe changes in a complex codebase

2026-02-26 @ 15:03:34Points: 142Comments: 67

Archives

2026

2025

2024

2023

2022