frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

JetKVM Mini

https://jetkvm.com/blog/introducing-jetkvm-mini
237•taubek•5h ago•91 comments

'Fingerprints' inside the Sun could reveal if it once swallowed a planet

https://ras.ac.uk/news-and-press/research-highlights/fingerprints-inside-sun-could-reveal-if-it-o...
16•blincoln•1h ago•5 comments

Why are AI agents lying, cheating and coordinating?

https://yoshuabengio.org/en/publication/why-are-ai-agents-lying-cheating-and-coordinating
337•jonifico•11h ago•396 comments

Matt Mullenweg reportedly returns as Automattic CEO 2 days after getting booted

https://www.theverge.com/tech/994087/matt-mullenweg-automattic-ceo-return
19•bookofjoe•38m ago•11 comments

Make your first edit to OpenStreetMap

https://high5apps.github.io/josm-plugin-website-wizard/
513•juliantigler•20h ago•130 comments

The Interim Computer Museum

https://icm.museum/
135•mulmen•10h ago•14 comments

Homebrew 7.0.0

https://brew.sh/2026/09/13/homebrew-7.0.0/
159•mikemcquaid•4h ago•59 comments

Aligned to whom?

https://hyperbo.la/w/aligned-to-whom/
88•lopopolo•9h ago•48 comments

Reverse engineering my e-scooter and rewriting the firmware in Rust

https://bensimms.moe/reverse-engineering-scooter/
19•vinhnx•3d ago•4 comments

Revolut confirms customer data breach through fake government requests

https://techcrunch.com/2026/09/12/revolut-confirms-customer-data-breach-through-fake-government-r...
61•tdrz•3h ago•45 comments

I Added a Non-Wi-Fi Mitsubishi AC to Home Assistant

https://medium.com/@ivangomezarnedo/how-i-added-a-non-wi-fi-mitsubishi-ac-to-home-assistant-22770...
109•ichacas•3d ago•54 comments

Apple iPod Engraver (2019)

https://dunstanorchard.com/apple-ipod-engraver/
245•NaOH•4d ago•63 comments

Nvidia is the central bank of AI

https://www.economist.com/interactive/briefing/2026/09/03/nvidia-is-the-central-bank-of-ai
510•tolugenius•22h ago•358 comments

On Binary Translation and Its Consequences

https://chipsandcheese.com/p/on-binary-translation-and-its-consequences
6•matt_d•2d ago•0 comments

Stabilizing Rust's Never Type

https://lwn.net/SubscriberLink/1091015/d9e48318ed242b41/
215•cjd8•4d ago•72 comments

Everyone should slow down AI development except for me

https://xeiaso.net/notes/2026/everyone-slowdown-but-me/
589•xena•12h ago•348 comments

Don't be the out of touch Kung Fu master

https://twitter.com/ID_AA_Carmack/status/2098443262214230095
160•dsubburam•15h ago•199 comments

Vintage Scientific Papers with LaTeX

https://github.com/Foadsf/vintage-latex
85•petalmind•3d ago•7 comments

A wandering black hole caught feeding on the run

https://phys.org/news/2026-08-black-hole-caught.html
35•wglb•9h ago•13 comments

Operation Smart Kettle – Börzels Blog

https://blog.boerzel.de/de/blog/operation-smart-kettle
30•marbartolome•2d ago•13 comments

Getting 50 GB/S Back from the Apple Neural Engine

https://eiln.github.io/posts/ane-dma.html
176•eiln•3d ago•28 comments

Nvidia dismisses "circular financing", says every $1 it invests brings back $100

https://invezz.com/news/2026/09/11/nvidia-says-every-1-it-invests-brings-back-100-so-why-does-the...
91•mgh2•2h ago•115 comments

LG denies TV spying claims, says tracking and snooping concerns 'not true'

https://www.tomshardware.com/tech-industry/big-tech/lg-strongly-denies-tv-security-claims-says-tr...
563•datakan•2d ago•432 comments

AgentsDock: An IDE designed for agentic AI research

https://agentsdock.net/
70•ZihuiGeorgia•13h ago•29 comments

P(doom)

https://lucumr.pocoo.org/2026/9/12/pdoom/
123•lumpa•15h ago•86 comments

After Math

https://terrytao.wordpress.com/2026/09/12/after-math/
112•throwaway81523•9h ago•92 comments

We must pace the frontier

https://darioamodei.com/post/we-must-pace-the-frontier
680•apsec112•22h ago•947 comments

A succession crisis that tore England apart (2023)

https://www.historytoday.com/archive/feature/succession-crisis-tore-england-apart
41•pepys•9h ago•36 comments

Will there be a 7G?

https://arxiv.org/abs/2609.01877
117•Betelbuddy•20h ago•167 comments

Durable execution without history replay

https://trigora.dev/blog/durable-execution-without-history-replay/
30•hypervs•3d ago•12 comments
Open in hackernews

Kate and Python Language Server

https://akselmo.dev/posts/kate-python-lsp/
79•todsacerdoti•1y ago

Comments

josteink•1y ago
As someone who recently set up something similar in Emacs with eglot I had to ditch Python-LSP-server.

It was so incredibly slow to respond, even on a M2 Max MBP, that it lowered my productivity by orders of magnitudes (and made Emacs laggy).

Maybe I did something wrong? I don’t know.

What I do know is that I tried pyright instead as a different LSP-server for Python and I haven’t looked back.

It’s a night and day difference. It’s snappy and everything works as expected, with venvs and mypy too.

kstrauser•1y ago
I agree. I really wanted to like python-lsp-server (aka pylsp), but I felt it's kind of a mess getting everything set up and configured. Loathe as I was to configure a server running in Node to help my editor with Python code, it's far and away the best option I've found so far.

I do hope "ruff server" will do for Python LSPs what ruff did for linting and formatting.

nerdponx•1y ago
I haven't tried the Ruff server yet, but Jedi Language Server is usably fast, and does a good enough job.
kstrauser•1y ago
Jedi's very nice for refactoring and auto-completion! I get more value from linting and type checking, though, and Jedi doesn't handle those. Pairing it with something like pyright is a great combination if your editor lets you connect to multiple servers.
kristjansson•1y ago
It's not ready yet, but https://pyrefly.org/ might be a good competitor/complement in the future
tiltowait•1y ago
Looks promising! It doesn't work with my poetry environment, but I like what I see so far. Definitely something to watch.
team_pyrefly•1y ago
Hi! I'm on the team behind Pyrefly. Thanks for taking a look and raising the need for poetry support. We added a GitHub issue to track that here: https://github.com/facebook/pyrefly/issues/166
arccy•1y ago
last time i looked the people were recommending basedpyright: https://github.com/DetachHead/basedpyright
Hasnep•1y ago
I've been recommending it whenever Pylance comes up on HN or Lobsters, the docs explain how to set it up on the most popular editors: https://docs.basedpyright.com/dev/installation/ides
wormius•1y ago
Not particularly relevant to the core article, but just a dumb thought re: the LSP/LS annoyance mentioned in the intro.

I think maybe some of it stems from 'ls' the command. If I saw something called py-ls instead of py-lsp, I may think it's a python based ls command. "Name Collision" as it were.

Anyways off to read the rest of the article...

ogoffart•1y ago
I wrote a language server too, and I also went with "-lsp" naming because it's way more recognizable. "LSP" is kind of a brand. If you look at the list at https://microsoft.github.io/language-server-protocol/impleme... a lot of them are named -lsp.
dundarious•1y ago
Might not be an issue for your typical setup, but I suggest quoting your variable expansions in bash. Otherwise, spaces, etc., will lead to issues.

It would also make sense to use path after it is defined, instead of sometimes using `$1` again.

But I'm confused by `cd`ing into `$path` and then checking paths that are prefixed by `$path`... I assume that is an error, and you won't run it like `script.sh ./work/project` and expect a path like `./work/project/work/project` or `./work/project/project` to exist. Can just `cd "$1"` and be done.

Mildly surprised the .venv/venv check isn't an elif as well.

  #!/usr/bin/env bash
  cd "$1"
  if [ -d ./.venv ]; then
    source ./.venv/bin/activate
  elif [ -d ./venv ]; then
    source ./venv/bin/activate
  fi
  exec pylsp --check-parent-process