frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

In Favor of Giving Things Up

https://www.raptitude.com/2025/11/in-favor-of-giving-things-up/
1•herbertl•45s ago•0 comments

AI Agents Care Less About Safety When Under Pressure

https://spectrum.ieee.org/ai-agents-safety
1•rbanffy•57s ago•0 comments

Suwa's C Tutorial

https://usamimi.info/~suwa/ctut.htm
1•trms•2m ago•0 comments

Tested: 1981 Datsun 280ZX Turbo

https://www.caranddriver.com/reviews/a69529696/1981-datsun-280-zx-turbo-archive-test/
1•RickJWagner•2m ago•1 comments

Tech predictions for 2026 and beyond – All Things Distributed

https://www.allthingsdistributed.com/2025/11/tech-predictions-for-2026-and-beyond.html
1•rbanffy•3m ago•0 comments

Be Like Clippy

https://be-clippy.com/
2•Aloha•5m ago•0 comments

Controversial genetics testing startup Nucleus Genomics raises $14M Series A

https://techcrunch.com/2025/01/30/controversial-genetics-testing-startup-nucleus-genomics-raises-...
1•paulpauper•6m ago•0 comments

Scientists may have solved why this ancient, advanced civilization vanished

https://www.washingtonpost.com/climate-environment/2025/11/27/indus-river-valley-civilization-cli...
2•paulpauper•6m ago•0 comments

Indian Govt. Issues SIM Binding Directions to WhatsApp and Telegram

https://www.medianama.com/2025/11/223-dot-sim-binding-directions-to-whatsapp-and-telegram/
3•LordAtlas•7m ago•0 comments

Does Drug Interdiction Work?

https://marginalrevolution.com/marginalrevolution/2025/11/does-drug-interdiction-work.html
1•paulpauper•7m ago•0 comments

14M Requests 1 Engineer: How Ghost Runs a 50k-Site Directory on Laravel Cloud

https://laravel.com/blog/14m-requests-1-engineer-how-ghost-runs-a-50000-site-directory-on-laravel...
1•skx001•12m ago•0 comments

Data meets art: London's voices turned into code for large-scale artwork

https://www.bbc.com/news/articles/ckgm9drjly8o
1•1659447091•12m ago•1 comments

Stuffing MLPs Full of Facts: A Generative Approach to Factual Recall

https://hazyresearch.stanford.edu/blog/2025-11-28-mlps-p1
1•hessdalenlight•13m ago•0 comments

I ported Apple's 'liquid glass' effect to Qt6 using undocumented APIs

https://github.com/fsalinas26/qt-liquid-glass
2•FSALINAS26•17m ago•2 comments

Ends Cold Hands at Work

https://www.instagram.com/reel/DRmDuoHCBhE/
3•nirlajj•24m ago•0 comments

'The admin': why it's not easy to rename streets called after Prince Andrew

https://www.theguardian.com/society/2025/nov/29/streets-named-after-prince-andrew-local-councils-...
2•bloak•25m ago•1 comments

Ported freetype, fontconfig, harfbuzz, and graphite to Fil-C

https://twitter.com/filpizlo/status/1994563191528198653
11•jhatemyjob•28m ago•0 comments

Wikipedia: Writing articles with large language models

https://en.wikipedia.org/wiki/Wikipedia:Writing_articles_with_large_language_models
1•singiamtel•30m ago•1 comments

Safe_sleep.sh Rarely Hangs Indefinitely

https://github.com/actions/runner/issues/3792
1•_dain_•30m ago•0 comments

Framework Computer Now Sponsoring LVFS / Fwupd Development

https://www.phoronix.com/news/Framework-Sponsoring-LVFS
18•LorenDB•32m ago•0 comments

Reddit Migrates Comment Back End from Python to Go

https://old.reddit.com/r/RedditEng/comments/1mbqto6/modernizing_reddits_comment_backend_infrastru...
12•jcmontx•33m ago•2 comments

Are We Human, or Are We Chancer?

https://thesphinxblog.com/2025/11/27/are-we-human-or-are-we-chancer/
1•DyslexicAtheist•33m ago•0 comments

Electric vehicle sales are booming in South America – without Tesla

https://www.reuters.com/sustainability/climate-energy/electric-vehicle-sales-are-booming-south-am...
8•breve•34m ago•0 comments

How fast can browsers process base64 data?

https://lemire.me/blog/2025/11/29/how-fast-can-browsers-process-base64-data/
2•ibobev•34m ago•0 comments

Uint8Array Base64 Benchmark

https://simdutf.github.io/browserbase64/
1•ibobev•34m ago•0 comments

Antifragile Programming and Why AI Won't Steal Your Job

https://lemire.me/blog/2025/11/29/antifragile-programming-and-why-ai-wont-steal-your-job/
4•ibobev•35m ago•0 comments

Someone Is Trying to 'Hack' People Through Apple Podcasts

https://www.404media.co/someone-is-trying-to-hack-people-through-apple-podcasts/
2•CharlesW•35m ago•0 comments

SiteFinder – Search engine for tools that skips SEO spam and blog posts

https://www.sitefinder.app/
1•levigrace•37m ago•1 comments

Xbasic: 1980s era BASIC, compiler to x86-64, complete with test suite

https://github.com/jgarzik/xbasic64
4•jgarzik•41m ago•0 comments

Tom Stoppard, Award-Winning Playwright of Witty Drama, Dies at 88

https://www.nytimes.com/2025/11/29/theater/tom-stoppard-dead.html
2•coloneltcb•41m ago•1 comments
Open in hackernews

Reddit Migrates Comment Back End from Python to Go

https://old.reddit.com/r/RedditEng/comments/1mbqto6/modernizing_reddits_comment_backend_infrastructure/
12•jcmontx•33m ago

Comments

rvz•8m ago
> By 2024, the legacy Python service had a history of reliability and performance issues. Ownership and maintenance of this service had become more cumbersome for all involved teams. Due to this, we decided to move forward into modern and domain-specific Go microservices.

Using Python for a backend system to "scale" really is just pure cope and was unscalable in the first place and in the long run as Reddit just found out. They knew they needed a lot more than just fake optimizations from an interpreted language to improve the performance and a Golang rewrite unsurprisingly solved those issues.

This once again clearly shows that other than in the prototyping stage of an MVP, it really makes no sense to scale with backends written in these interpreted languages in 2025.

Switching to safe, highly performant mature languages such as Golang tells you that it not only generally improves performance, but correctly handles concurrency which Python has always struggled at, especially at scale which is why in Reddit's case, the race conditions now revealed themselves more clearly before the rewrite.

whattheheckheck•5m ago
What scale do you think python breaks down?