frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Death of Arduino?

https://www.linkedin.com/posts/adafruit_opensource-privacy-techpolicy-activity-739690336223705497...
314•ChuckMcM•2h ago•163 comments

Loose wire leads to blackout, contact with Francis Scott Key bridge

https://www.ntsb.gov:443/news/press-releases/Pages/NR20251118.aspx
94•DamnInteresting•2h ago•44 comments

Building more with GPT-5.1-Codex-Max

https://openai.com/index/gpt-5-1-codex-max/
272•hansonw•4h ago•158 comments

Europe is scaling back GDPR and relaxing AI laws

https://www.theverge.com/news/823750/european-union-ai-act-gdpr-changes
399•ksec•8h ago•428 comments

Researchers discover security vulnerability in WhatsApp

https://www.univie.ac.at/en/news/detail/forscherinnen-entdecken-grosse-sicherheitsluecke-in-whatsapp
36•KingNoLimit•1h ago•7 comments

Meta Segment Anything Model 3

https://ai.meta.com/sam3/
146•lukeinator42•5h ago•34 comments

It's your fault my laptop knows where I am

https://www.amoses.dev/blog/wifi-location/
30•nicosalm•43m ago•10 comments

Screw it, I'm installing Linux

https://www.theverge.com/tech/823337/switching-linux-gaming-desktop-cachyos
79•throwaway270925•1h ago•34 comments

Cognitive and mental health correlates of short-form video use

https://psycnet.apa.org/fulltext/2026-89350-001.html
133•smartmic•2h ago•105 comments

Static Web Hosting on the Intel N150: FreeBSD, SmartOS, NetBSD, OpenBSD and Linu

https://it-notes.dragas.net/2025/11/19/static-web-hosting-intel-n150-freebsd-smartos-netbsd-openb...
88•t-3•5h ago•31 comments

Pozsar's Bretton Woods III: Sometimes Money Can't Solve the Problem

https://philippdubach.com/2025/10/25/pozsars-bretton-woods-iii-the-framework-1/2/
32•7777777phil•3h ago•11 comments

Launch HN: Mosaic (YC W25) – Agentic Video Editing

https://mosaic.so
98•adishj•7h ago•92 comments

How to identify a prime number without a computer

https://www.scientificamerican.com/article/how-to-identify-a-prime-number-without-a-computer/
18•beardyw•1w ago•11 comments

Thunderbird adds native Microsoft Exchange email support

https://blog.thunderbird.net/2025/11/thunderbird-adds-native-microsoft-exchange-email-support/
282•babolivier•10h ago•74 comments

Larry Summers resigns from OpenAI board

https://www.cnbc.com/2025/11/19/larry-summers-epstein-openai.html
157•koolba•9h ago•153 comments

Show HN: DNS Benchmark Tool – Compare and monitor resolvers

https://github.com/frankovo/dns-benchmark-tool
35•ovo101•4h ago•25 comments

Racing karts on a Rust GPU kernel driver

https://www.collabora.com/news-and-blog/news-and-events/racing-karts-on-a-rust-gpu-kernel-driver....
13•mfilion•2h ago•1 comments

Vortex: An extensible, state of the art columnar file format

https://github.com/vortex-data/vortex
7•tanelpoder•4d ago•0 comments

A $1k AWS mistake

https://www.geocod.io/code-and-coordinates/2025-11-18-the-1000-aws-mistake/
259•thecodemonkey•12h ago•223 comments

Control LLM Spend and Access with any-LLM-gateway

https://blog.mozilla.ai/control-llm-spend-and-access-with-any-llm-gateway/
47•aittalam•1w ago•15 comments

Exploring the limits of large language models as quant traders

https://nof1.ai/blog/TechPost1
92•rzk•15h ago•81 comments

What Killed Perl?

https://entropicthoughts.com/what-killed-perl
118•speckx•12h ago•266 comments

The Future of Programming (2013) [video]

https://www.youtube.com/watch?v=8pTEmbeENF4
140•jackdoe•6d ago•89 comments

Reproducible C++ builds by logging Git hashes

https://jgarby.uk/posts/git_repr/
27•j4cobgarby•5d ago•31 comments

Comparing Integers and Doubles

http://databasearchitects.blogspot.com/2025/11/comparing-integers-and-doubles.html
15•pfent•1w ago•7 comments

The Subversive Hyperlink

https://blog.jim-nielsen.com/2024/the-subversive-hyperlink/
6•ColinWright•2h ago•2 comments

How Slide Rules Work

https://amenzwa.github.io/stem/ComputingHistory/HowSlideRulesWork/
4•ColinWright•1h ago•0 comments

Multimodal Diffusion Language Models for Thinking-Aware Editing and Generation

https://github.com/tyfeld/MMaDA-Parallel
122•lnyan•13h ago•13 comments

Netherlands returns control of Nexperia to Chinese owner

https://www.bloomberg.com/news/articles/2025-11-19/dutch-hand-back-control-of-chinese-owned-chipm...
75•boovic•4h ago•33 comments

The peaceful transfer of power in open source projects

https://shkspr.mobi/blog/2025/11/the-peaceful-transfer-of-power-in-open-source-projects/
180•edent•9h ago•124 comments
Open in hackernews

Show HN: Marimo VS Code extension – Python notebooks built on LSP and uv

https://github.com/marimo-team/marimo-lsp
43•manzt•4h ago
Hi HN! We're excited to release our VS Code/Cursor extension for marimo [1], an open-source, reactive Python notebook.

This extension provides a native experience for working with marimo notebooks, a long-requested feature that we’ve worked hard to get right.

An LSP-first architecture

The core of our extension is a marimo notebook language server (marimo-lsp [2]). As far as we know, it’s the first notebook runtime to take this approach. The Language Server Protocol (LSP) [3] offers a small but important set of notebook-related capabilities that we use for document and kernel syncing; everything else is handled through custom actions and messages.

By building on LSP, we aim to create a path to expose marimo capabilities in additional environments (beyond VS Code/Cursor). The notebook features in LSP are still limited, but as the protocol evolves, we’ll be able to shift more functionality out of the extension and into the language server, making it available to a wider range of editors and tools. For example, this could enable:

- structural edits to notebook documents (e.g., adding or removing cells) [4]

- editor hover information that reflects the live runtime values of variables

Deep uv integration with PEP 723

Because marimo notebooks are plain Python files, we adopt PEP 723-style inline metadata [5] to describe a notebook’s environment. Tools such as uv already support this format: they read the metadata block, build or update the corresponding environment, and run the script inside it.

The marimo CLI already integrates with uv in "sandbox" mode [6] to manage an isolated environment defined by PEP 723 metadata for a single notebook. In the extension, our uv-based “sandbox controller” manages multiple notebooks: each notebook gets its own isolated, cached environment. The controller keeps the environment aligned with the dependencies declared in the file and can update that metadata automatically when imports are missing.

uv normally syncs such environments whenever you run a script, ensuring it matches the dependencies declared in its metadata; we apply this concept at the cell level so the environment stays in sync whenever cells run. The same cached uv environment is reused if you run the notebook as a script via uv (e.g., uv run notebook.py).

—-------

This work has been a complete rewrite, and we're grateful to the community for early feedback. While VS Code and the LSP support a subset of notebook features, the ecosystem has been shaped heavily by Jupyter, and we’ve had to work around some assumptions baked into existing APIs. We’ve been coordinating with the VS Code team and hope our work can help broaden the conversation—pushing the LSP notebook model forward and making room for runtimes that aren’t Jupyter-based.

We'd love to hear your thoughts!

[1] https://marimo.io

[2] https://github.com/marimo-team/marimo-lsp

[3] https://microsoft.github.io/language-server-protocol/

[4] https://github.com/microsoft/vscode-languageserver-node/issu...

[5] https://peps.python.org/pep-0723/

[6] https://docs.marimo.io/guides/package_reproducibility/

Comments

najork•3h ago
Super cool seeing you take an LSP-first approach here, decoupling the developer experience for people building with Marimo from any specific editor.
manzt•1h ago
Thank you! We're excited about it. LSP opens the door for us to gradually provide marimo features in whatever form makes sense for a particular env, allowing more folks collaborate on notebooks.
kelreeeeey•2h ago
<3<3<3<3 Great job marimo devs!!!!!
jesshart•1h ago
I have been using mairmo since late 2024. The speed to enhancement, documentation, and YouTube videos from the mairmo team cannot be beat! Excited to try this extension.

I was thinking of leveraging uvx to call marimo dynamically in VSCode. Let's see how it goes!