frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pyrefly v1.3: More configurability and composable tensor shapes

https://pyrefly.org/blog/v1.3/
1•ocamoss•2m ago•0 comments

Windows-focused fork of OpenUsage for tracking AI coding subscription usage

https://github.com/ccycv/openusage
1•soltanov•5m ago•0 comments

Teleoperated Humans

https://www.jefftk.com/p/teleoperated-humans
1•mhb•7m ago•0 comments

APC AI-assisted framework for building audio (VST/AU) plugins

https://github.com/Noizefield/audio-plugin-coder
1•noizefield•7m ago•0 comments

OpenStreetMap fighting a large set of AI crawlers / scrapers

https://en.osm.town/@osm_tech/117273699871137554
2•pera•9m ago•0 comments

Kubernetes v1.37: DRA Updates

https://kubernetes.io/blog/2026/09/03/kubernetes-v1-37-dra-updates/
1•hnp9j9qtda•9m ago•0 comments

More U.S. Workers (27%) Fear Losing Their Jobs to Technology

https://news.gallup.com/poll/714368/workers-fear-losing-jobs-technology.aspx
1•giuliomagnifico•10m ago•0 comments

Show HN: Restarted – a 2026 remake of the classic 2015 startup generator

https://restarted.io/?z=477799172922
1•zxcvbn4038•10m ago•0 comments

Online hate researcher keeps hammering X despite deportation threat

https://arstechnica.com/tech-policy/2026/09/online-hate-researcher-keeps-hammering-x-despite-depo...
1•rbanffy•11m ago•0 comments

.NET MVC Recommended Resources

https://learn.microsoft.com/en-us/aspnet/mvc/overview/getting-started/recommended-resources-for-mvc
1•Brysonbw•11m ago•0 comments

Domain Coloring

https://www.algorithm-archive.org/contents/domain_coloring/domain_coloring.html
1•vismit2000•12m ago•0 comments

Bums in Seats Used to Win

https://mihai.dinculescu.dev/posts/bums-in-seats-used-to-win/
1•faithraven•14m ago•0 comments

GPUI-CE: A GPU-Accelerated UI Framework for Rust by the makers of Zed

https://gpui-ce.github.io
1•sagacity•14m ago•0 comments

Apple iPhone Duo makes developers think in folds

https://www.theregister.com/devops/2026/09/15/apple-iphone-duo-makes-developers-think-in-folds/52...
1•joebuckwilliams•16m ago•0 comments

Tell the speakers that you liked their talks

https://ohhelloana.blog/tell-the-speakers/
1•whisper2020•16m ago•0 comments

25 Years of Mass Surveillance Is Enough

https://www.schneier.com/blog/archives/2026/09/25-years-of-mass-surveillance-is-enough.html
3•iamnothere•17m ago•1 comments

Do you still read the code?

https://zanlib.dev/blog/do-you-still-read-the-code/
3•wofo•21m ago•1 comments

Jalapeño Shows Power of LLMs for Chip Design

https://spectrum.ieee.org/llms-for-chip-design
2•rbanffy•22m ago•0 comments

Representing application state using SQLite

https://world.hey.com/apetrov/representing-application-state-using-sqlite-b9875b47
1•apetrov•22m ago•0 comments

When Google Cuts Off Access: Poland and the World

https://dossier.reasoner.pl/artykul/
3•marekfocus•23m ago•0 comments

Golden Nerves

https://sites.google.com/view/golden-nerves/
1•parydaws•23m ago•0 comments

Doesn't Want Me to Leave When He's Still in Love with His Baby Mama

https://etechx.co.ke/doesnt-want-me-to-leave-when-hes-still-in-love-with-his-baby-mama
1•ndegekmw•24m ago•0 comments

My Ex Doesn't Want Anyone to Enjoy the Fruit of His Labor

https://etechx.co.ke/my-ex-doesnt-want-anyone-to-enjoy-the-fruit-of-his-labor
1•ndegekmw•24m ago•0 comments

Ask HN: How do you prevent sensitive data from leaking through debugging tools?

1•Securelytixdev•26m ago•0 comments

IndieRoadmaps – a simple roadmap builder for indie hacker

https://indieroadmaps.com
1•pho3n1x•29m ago•1 comments

FloorPoll – live polls your audience joins in one tap

https://floorpoll.app/
1•tshrove•29m ago•0 comments

DotNet Security Cheat Sheet

https://cheatsheetseries.owasp.org/cheatsheets/DotNet_Security_Cheat_Sheet.html
1•Brysonbw•30m ago•0 comments

I Go To The Cloud: A tour in Hetzner's data center [video]

https://www.youtube.com/watch?v=i5GTwBTCQJI
1•redbell•32m ago•0 comments

# mdsvex – Svelte in Markdown

https://github.com/pngwn/mdsvex
2•modinfo•35m ago•0 comments

Changesets – Manage Versioning and Changelogs

https://github.com/changesets/changesets
1•modinfo•36m ago•0 comments
Open in hackernews

Composr – a Rust rewrite of PHP's package manager

https://github.com/rabbiveesh/composr
1•rabbiveesh•53m ago

Comments

rabbiveesh•53m ago
I built this a while ago b/c composer is written in php for (almost) no reason. Rust is faster, and it's also Rust. The goal was to cover the annoying bits of working on a php project - install and autoload generation. Install is parallelized via rayon, as is autoload generation. It's so fast that i stuck it in a git hook and stopped thinking about it. The former behavior was never run install or autoload because it was too slow (especially when docker is involved)
embedding-shape•29m ago
> b/c composer is written in php for (almost) no reason.

It's written in PHP because obviously it's for the PHP ecosystem, sounds like a really good reason. Secondly, PHP is a much simpler language to learn and write than Rust, sounds like a pretty good second reason.

With those two reasons, plus the reason that composer isn't by any way slow today, nor do you deal with thousands of packages in a project like NodeJS, the very good reason of "why not just PHP" appears as well.

Leading me to ask more questions about why spending the time to write and maintain a Rust version of a PHP packager that already works OK and fine, when the existing package manager also been written in the language the users who use it know?

> because it was too slow (especially when docker is involved)

This makes it sound like you wrote this entire project just because you had Docker misconfigured, or maybe you're on Windows which struggles with many files?

rabbiveesh•18m ago
The experience where I was working was that nobody would run dump-autoload in their dev environment because it would take upwards of five minutes. This was even after solving all of the surprises that we had with our docker setup.

In our case, the docker issues were somewhat endemic, because different people would touch parts of the local setup, without realizing what downstream consequences there would be.

Part of the preference is being able to run on the host without installing PHP, so you don't pay the virtualization boundary tax (we were on Mac, so it's small but not nothing)

rabbiveesh•16m ago
Part of the reason i didn't just pick PHP also was that I was testing a workflow where I would let claude write the whole thing, while just making sure to validate it externally. My experience with agents writing PHP was less than stellar - there are a lot of sharp edges that humans don't realize. Rust is a lot more reliable when you need to change a bunch of things, cuz it simply won't compile (and helpfully so) until you get it right.