https://xcancel.com/TheAmolAvasare/status/204672549859272297...
Hacker News
Latest
Claude Code to be removed from Pro Tier?
2026-04-21 @ 22:36:24Points: 263Comments: 2
SpaceX says it has agreement to acquire Cursor for $60B
2026-04-21 @ 22:13:18Points: 390Comments: 499
Zindex – Diagram Infrastructure for Agents
2026-04-21 @ 20:27:37Points: 42Comments: 16
ChatGPT Images 2.0
2026-04-21 @ 18:50:00Points: 571Comments: 492
Framework Laptop 13 Pro
2026-04-21 @ 18:00:34Points: 1029Comments: 544
Cal.diy: open-source community edition of cal.com
2026-04-21 @ 17:58:21Points: 170Comments: 43
Meta to start capturing employee mouse movements, keystrokes for AI training
2026-04-21 @ 17:40:39Points: 395Comments: 323
Britannica11.org – a structured edition of the 1911 Encyclopædia Britannica
2026-04-21 @ 17:33:50Points: 245Comments: 93
The Vercel breach: OAuth attack exposes risk in platform environment variables
2026-04-21 @ 17:14:35Points: 283Comments: 105
A Roblox cheat and one AI tool brought down Vercel's platform - https://news.ycombinator.com/item?id=47844431 - April 2026 (145 comments)
Ibuilt a tiny Unix‑like 'OS' with shell and filesystem for Arduino UNO (2KB RAM)
2026-04-21 @ 17:14:26Points: 77Comments: 14
Trellis AI (YC W24) Is hiring engineers to build self-improving agents
2026-04-21 @ 17:01:15Points: 1
Kasane: New drop-in Kakoune front end with GPU rendering and WASM Plugins
2026-04-21 @ 15:53:22Points: 49Comments: 5
CrabTrap: An LLM-as-a-judge HTTP proxy to secure agents in production
2026-04-21 @ 15:29:16Points: 98Comments: 27
Fusion Power Plant Simulator
2026-04-21 @ 14:26:52Points: 142Comments: 89
Show HN: GoModel – an open-source AI gateway in Go
2026-04-21 @ 14:11:53Points: 168Comments: 62
I’ve been building GoModel since December with a couple of contributors. It's an open-source AI gateway that sits between your app and model providers like OpenAI, Anthropic or others.
I built it for my startup to solve a few problems:
- track AI usage and cost per client or team
- switch models without changing app code
- debug request flows more easily
- reduce AI spendings with exact and semantic caching
How is it different? - ~17MB docker image
- LiteLLM's image is more than 44x bigger ("docker.litellm.ai/berriai/litellm:latest" ~ 746 MB on amd64)
- request workflow is visible and easy to inspect
- config is environment-variable-first by default
I'm posting now partly because of the recent LiteLLM supply-chain attack. Their team handled it impressively well, but some people are looking at alternatives anyway, and GoModel is one. Website: https://gomodel.enterpilot.io
Any feedback is appreciated.
Show HN: VidStudio, a browser based video editor that doesn't upload your files
2026-04-21 @ 11:58:16Points: 258Comments: 81
Some of the features: multi-track timeline, frame accurate seek, MP4 export, audio, video, image, and text tracks, and a WebGL backed canvas where available. It also works on mobile.
Under the hood, WebCodecs handles frame decode for timeline playback and scrubbing, which is what makes seeking responsive since decode runs on the hardware decoder when the browser supports it. FFmpeg compiled to WebAssembly handles final encode, format conversion, and anything WebCodecs does not cover. Rendering goes through Pixi.js on a WebGL canvas, with a software fallback when WebGL is not available. Projects live in IndexedDB and the heavy work runs in Web Workers so the UI stays responsive during exports.
Happy to answer technical questions about the tradeoffs involved in keeping the whole pipeline client-side. Any feedback welcome.