frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Newsom mounts a lonely stage at COP30

https://www.politico.com/newsletters/power-switch/2025/11/10/newsom-mounts-a-lonely-stage-at-cop3...
1•geox•1m ago•0 comments

Wigner's cats with high-entropy random numbers

https://github.com/msuzen/leymosun
1•northlondoner•3m ago•1 comments

Show HN: Vexor – A semantic grep that finds files by meaning, not by text

https://github.com/scarletkc/vexor
1•scarletkc•5m ago•0 comments

US states could lose $21B of broadband grants after Trump overhaul

https://arstechnica.com/tech-policy/2025/11/us-states-could-lose-21-billion-of-broadband-grants-a...
3•ndsipa_pomu•5m ago•0 comments

Pentagon Demands Verified Cybersecurity from Contractors

https://www.securityweek.com/cmmc-live-pentagon-demands-verified-cybersecurity-from-contractors/
3•Bender•8m ago•0 comments

Copy-paste now exceeds file transfer as top corporate data exfiltration vector

https://www.scworld.com/news/copy-paste-now-exceeds-file-transfer-as-top-corporate-data-exfiltrat...
1•Bender•9m ago•0 comments

AI magic dust, conference coziness and the illusion of managed risk

https://www.scworld.com/resource/owasp-global-appsec-ai-magic-dust-conference-coziness-and-the-il...
2•Bender•10m ago•0 comments

GPULend

1•Vxtzq•10m ago•0 comments

Analyzing Darktable OpenCL Memory Use

https://op-co.de/blog/posts/darktable_opencl_memory/
1•ge0rg•11m ago•0 comments

We ran over 600 image generations to compare AI image models

https://latenitesoft.com/blog/evaluating-frontier-ai-image-generation-models/
1•kalleboo•12m ago•0 comments

Kimi CLI has a zsh Plugin

https://github.com/MoonshotAI/zsh-kimi-cli
1•mjakl•12m ago•0 comments

Orbital Characterization of a Newly Discovered Small Satellite Around Quaoar

https://arxiv.org/abs/2511.07370
1•bikenaga•13m ago•0 comments

Practice answers with yourself. I made a thing that I didn't want to pay for

https://look.imwithstupid.fun
2•samrocksc•13m ago•1 comments

Dhrystone performance charted across systems released between 1976 and 2023

https://www.tomshardware.com/pc-components/cpus/veteran-devs-newest-computer-is-200-000-times-fas...
1•phront•14m ago•0 comments

Show HN: I built a tool that lets you ask questions on previous World Cups

https://query.new
1•eportet•14m ago•0 comments

Bitbucket Is Offline

https://bitbucket.status.atlassian.com
7•nathabonfim59•19m ago•0 comments

Authorities took down Streameast, the largest illegal sports streaming site

https://www.nytimes.com/athletic/6742754/2025/11/11/streameast-illegal-streaming-raid/
1•jonwachob91•19m ago•1 comments

Why Textbook Statistical Methods Aren't as Effective in IT (2021)

https://theartofmachinery.com/2021/12/01/textbook_stats_and_tech.html
1•bariumbitmap•19m ago•0 comments

Show HN: Enact – 60-second pitch analyzer (score/100 and 3 edits, no signup)

https://getenact.com/
1•cotreasoner•22m ago•0 comments

Font recognition reimagined with FasterViT-2

https://www.collabora.com/news-and-blog/blog/2025/11/11/font-recognition-reimagined-with-fastervi...
2•losgehts•23m ago•0 comments

A CHIP-8 emulator in Ada/Spark

https://github.com/moehr1z/chip8
2•hggh•23m ago•0 comments

The AI Cold War

https://www.wsj.com/tech/ai/the-ai-cold-war-that-will-redefine-everything-4e1810b2
1•perihelions•23m ago•1 comments

New test can flag drugs that could be harmful to cats

https://phys.org/news/2025-10-flag-drugs-cats.html
1•PaulHoule•24m ago•0 comments

Training GPT in Sheets

https://zalex.co/p/i-trained-gpt-in-google-sheets
1•alex_zhezherov•24m ago•0 comments

AI Country Singer Breaking Rust Tops Billboard with 'Walk My Walk'

https://www.sfchronicle.com/entertainment/article/ai-country-breaking-rust-21156784.php
2•c420•24m ago•1 comments

Sun unleashes strongest solar flare of 2025 – radio blackouts in Africa, Europe

https://www.space.com/astronomy/sun/sun-unleashes-strongest-solar-flare-of-2025-sparking-radio-bl...
2•bikenaga•26m ago•0 comments

The Amygdala and My Stupid Modern Brain – Why It Screws Me Up

https://medium.com/@OverthinkingVoid/the-amygdala-and-my-stupid-modern-brain-why-it-screws-me-up-...
1•murugaviki•26m ago•1 comments

CSS Extraction Library for Vite and Preact

https://github.com/aziis98/preact-css-extract
2•aziis98•30m ago•1 comments

Cache-Friendly, Low-Memory Lanczos Algorithm in Rust

https://lukefleed.xyz/posts/cache-friendly-low-memory-lanczos/
11•lukefleed•31m ago•1 comments

You Win Some, You Lose Some: On Papercraft and More

https://noteflakes.com/articles/2025-11-11-win-some-lose-some
1•todsacerdoti•34m ago•0 comments
Open in hackernews

Show HN: Run parallel agents in VSCode tabs

https://docs.getpochi.com/developer-updates/2025-11-11-launch-parallel-agent/
2•wsxiaoys•1h ago
Though parallel agents already exists, we built this out differently in Pochi. Most other tools operate inside a single editor tab. That means there is at most one conversational state to interact with.

Parallel Agents in Pochi use separate Git worktrees, so each task has its own working directory, branch, chat history, and terminal environment. Task state stays isolated.

From a UX standpoint, the important bit is how it surfaces in the editor: each agent is a separate tab, each tab bound to its own worktree. You can diff, commit, discard, or merge worktrees independently. You can run two model-generated solutions side-by-side and compare outcomes without the branches stepping on each other.

Under the hood it’s git worktrees with orchestration to bind each worktree to its own agent state. If you're familiar with git worktree add you’ll recognize what’s happening. We expose the worktrees directly through VS Code (Source Control + Pochi tabs), so there’s no manual git worktree management - each agent just is a worktree with its own runtime context. Goes to show how some simple changes dramatically changes the UX.