frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A backdoor in a LinkedIn job offer

https://roman.pt/posts/linkedin-backdoor/
704•lwhsiao•6h ago•146 comments

Banned Book Library in a Wi-Fi Smart Light Bulb

https://www.richardosgood.com/posts/banned-book-library/
160•sohkamyung•3h ago•56 comments

Iroh 1.0

https://www.iroh.computer/blog/v1
947•chadfowler•10h ago•285 comments

TinyWind: A pixel pirate sailing game with real wind physics (380k+ kms sailed)

https://tinywind.io
607•tinywind•9h ago•124 comments

I Love the Computer

https://michaelenger.com/blog/i-love-the-computer/
140•speckx•5h ago•92 comments

Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

693•cloudking•11h ago•338 comments

Amazon Announces Multibillion-Dollar Data Center in Missouri

https://www.narracomm.com/amazon-announces-multibillion-dollar-data-center-in-missouri/
21•thelonelyborg•1h ago•6 comments

Why I email complete strangers

https://www.goodinternetmagazine.com/why-i-email-complete-strangers/
73•karakoram•4h ago•39 comments

Peopleless economy? Not technically impossible

https://gmalandrakis.com/writings/ad-economicum.html
94•l0new0lf-G•4h ago•163 comments

My Homelab AI Dev Platform

https://rsgm.dev/post/ai-dev-platform/
240•rsgm•10h ago•47 comments

Hetzner Price Adjustment

https://docs.hetzner.com/general/infrastructure-and-availability/price-adjustment/#cloud-servers
336•tuhtah•12h ago•481 comments

US battery manufacturing output continues to break records

https://fred.stlouisfed.org/series/IPG33591S
159•epistasis•5h ago•132 comments

Reviews have become expensive, rewrites have become cheap

http://ishmeetbindra.com/posts/reviews-have-become-expensive-rewrites-have-become-cheap/
11•arzh2•1h ago•8 comments

What every coder should know about Gamma Correction

https://blog.johnnovak.net/2016/09/21/what-every-coder-should-know-about-gamma/
58•sph•2d ago•19 comments

Fox to buy Roku

https://www.wsj.com/business/deals/fox-roku-deal-f6e564f9
275•thm•13h ago•369 comments

An O(x)Caml book that runs

https://kcsrk.info/ocaml/oxcaml/teaching/nptel/llm/2026/06/13/an-oxcaml-book-that-runs/
25•anirudh24seven•2d ago•9 comments

Game Engine White Papers Commander Keen

https://forgottenbytes.net/commander_keen.html
159•mfiguiere•8h ago•53 comments

How TimescaleDB compresses time-series data

https://roszigit.com/en/blog/timescaledb-compression-hypercore
116•lkanwoqwp•8h ago•14 comments

Salesforce to Acquire Fin (formerly Intercom) for $3.6B

https://www.salesforce.com/news/press-releases/2026/06/15/salesforce-signs-definitive-agreement-t...
276•colesantiago•13h ago•208 comments

What job interviews taught me about Kubernetes

https://notnotp.com/notes/what-job-interviews-taught-me-about-kubernetes/
88•chmaynard•5h ago•81 comments

Copper transport drug restores memory and clears toxic Alzheimer's proteins

https://www.monash.edu/news/articles/copper-drug-restores-memory-and-clears-toxic-alzheimers-prot...
252•bookofjoe•11h ago•96 comments

Launch HN: Drafted (YC P26) – Models for residential architecture

42•PrimalNick•9h ago•51 comments

Cohere's First Model for Developers

https://cohere.com/blog/north-mini-code
11•hmokiguess•4d ago•3 comments

Claude Corps

https://www.anthropic.com/news/claude-corps
83•Mustan•8h ago•59 comments

Show HN: Fata – Spaced repetition to fight skill rot from AI coding

https://fata.dev
78•djoume•4d ago•44 comments

Factoring "short-sleeve" RSA keys with polynomials

https://blog.trailofbits.com/2026/06/12/factoring-short-sleeve-rsa-keys-with-polynomials/
74•ledoge•3d ago•1 comments

Making glass-to-metal seals for home­made vacuum tubes

https://maurycyz.com/projects/glass/1/
129•zdw•1d ago•41 comments

How memory safety CVEs differ between Rust and C/C++

https://kobzol.github.io/rust/2026/06/15/how-memory-safety-cves-differ-between-rust-and-c-cpp.html
108•nicoburns•9h ago•110 comments

Boot Naked Linux

https://nick.zoic.org/art/boot-naked-linux/
94•abnercoimbre•9h ago•48 comments

Show HN: Vet turned founder, AI lawn diagnosis

https://grassdx.com/
38•andrewbr•8h ago•38 comments
Open in hackernews

Show HN: Claude Code for Visual Studio (native diff with accept/reject)

https://github.com/firish/claude_code_vs
12•firish•2h ago
VS Code and JetBrains have official Claude Code IDE integration, but Visual Studio doesn't. There's an open GitHub issue with a lot of +1s so I built it myself (check out the gif in the GitHub repo for a visual example).

It implements the same protocol the official plugins use, so the Claude CLI connects to it automatically. You don't configure anything, just install the extension and click Launch.

The main thing it adds over running Claude in a terminal is that edits open in Visual Studio's native diff viewer instead of auto-applying or prompting you in the terminal. You click Accept or Reject right there. You can also reject with a reason, and Claude will take another pass.

It also shares your compiler errors (C# and C++) and your current selection with the CLI automatically, so Claude has context without you having to copy-paste anything.

A few other things: - There's a dockable panel with connection status and token/cost stats for the session - A "run wild" toggle to auto-accept edits without opening the diff Works with the existing claude CLI, no model calls of its own

Marketplace: https://marketplace.visualstudio.com/items?itemName=firish.b...

GitHub: https://github.com/firish/claude_code_vs

Comments

rsg29•1h ago
If anyone took the time to check it out, i would love your feedback on the following.

The Claude IDE protocol is undocumented. I reverse-engineered it from the official plugins' WebSocket traffic. For anyone who's built on an undocumented protocol like this, is there a reliable way to handle contract drift when there's no guaranteed spec to code against?

contextfree•37m ago
Will definitely try this soonish
rsg29•28m ago
Thanks a ton. Looking forward to any feedback honestly!