frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How do you judge what is a valuable use of your time?

1•bovermyer•3m ago•0 comments

Vets Who Code FAQs

https://vetswhocode.io/faq
1•mooreds•3m ago•0 comments

You will own nothing and be (un)happy

https://racc.blog/you-will-own-nothing-and-be-unhappy/
2•showthemfangs•4m ago•0 comments

Gymkhana's 1978 Subaru Brat with 9,500-RPM Redline, Active Aero Is One Super Ute

https://www.thedrive.com/news/gymkhanas-1978-subaru-brat-with-9500-rpm-redline-and-active-aero-is...
1•PaulHoule•6m ago•0 comments

Historical Reasons

https://exple.tive.org/blarg/2025/11/11/historical-reasons-2/
1•speckx•8m ago•0 comments

See how much that government bill will cost you

https://civiccost-f7ec548b606c.herokuapp.com/
1•icyou780•11m ago•0 comments

We built an Agentic trading platform on JADE

https://github.com/hugopuybareau/Agentic-Trading-Platform
1•hugopuybareau•11m ago•1 comments

Kimi Writing Agent

https://github.com/Doriandarko/kimi-writer
1•NullCascade•12m ago•0 comments

How Open Source GenAI Is Reshaping Industries from Fintech to Healthcare

https://www.punch-tape.com/blog/spurring-technical-innovation-through-open-source-genai
1•raeroumeliotis•14m ago•1 comments

Linux Proposal Aims to Overcome Kernel Limitation Affecting Gaming Peripherals

https://www.phoronix.com/news/Linux-Multi-Battery-HID-Devices
1•Bender•14m ago•0 comments

Show HN: Lexical - How I learned 3 languages in 3 years

https://lexical.app/white-paper
4•trubalca•15m ago•1 comments

2025 DoorDash State of Local Commerce Report

https://doordash-local-commerce.com/
1•samaysharma•15m ago•0 comments

JetBrains Plugin Developer Conf 2025 Recordings Are Now Live

https://blog.jetbrains.com/platform/2025/11/jetbrains-plugin-developer-conf-2025-recordings-are-n...
2•curtistyr•16m ago•0 comments

Show HN: OgBlocks – Animated UI Library for CSS Haters

https://ogblocks.dev/
2•ItsKaranKK•19m ago•0 comments

Show HN: loopmaster – Live Audio Programming

https://loopmaster.xyz
1•stagas•19m ago•0 comments

Prosecutors open war crimes investigation into "sniper tourists" in Sarajevo

https://n1info.ba/english/news/italian-prosecutors-open-war-crimes-investigation-into-sniper-tour...
2•lostlogin•19m ago•0 comments

Superintelligence probably not happening, but AI will still reshape society

https://www.theregister.com/2025/11/11/ai_experts_forecast/
2•Bender•19m ago•0 comments

Terminal Latency on Windows

https://chadaustin.me/2024/02/windows-terminal-latency/
2•bariumbitmap•20m ago•0 comments

Show HN: StructEval - a structured output evaluation and comparison tool

https://github.com/jhiker/structeval
1•jwesleyharding•21m ago•0 comments

Arduino Nesso N1 – Collab with M5Stack

https://store-usa.arduino.cc/products/nesso-n1
2•crims0n•24m ago•0 comments

Make your website a place worth trusting

https://websitecheckr.com
1•ifeelbits•24m ago•0 comments

Michael Burry accuses AI hyperscalers of artificially boosting earnings

https://www.cnbc.com/2025/11/11/big-short-investor-michael-burry-accuses-ai-hyperscalers-of-artif...
3•belter•24m ago•0 comments

Material for MkDocs Insiders – Now free for everyone

https://squidfunk.github.io/mkdocs-material/blog/2025/11/11/insiders-now-free-for-everyone/
1•squidfunk•25m ago•0 comments

Airbnb competitor Sonder files for bankruptcy after raising $680M

https://www.nytimes.com/2025/11/10/travel/marriott-sonder-licensing-bankruptcy.html
2•fluxic•25m ago•0 comments

Race optimization algorithms with good initializations (beat them with bonuses)

https://debargha.com
1•barthelomew•25m ago•1 comments

Building GUIs with Rye and Fyne: 16 working examples

https://ryelang.org/cookbook/rye-fyne/examples-2/
1•middayc•26m ago•0 comments

Socket at Black Hat Europe and BSides London 2025

https://socket.dev/blog/meet-socket-at-black-hat-europe-and-bsides-london-2025
2•feross•27m ago•0 comments

PostHog's workflow demo – send emails based on user actions

https://workflow.hoghelper.com/dashboard
1•BertramsL•29m ago•0 comments

Replacing components with Implicit IDs (Easel)

https://easel.games/docs/learn/language/functions/ids
1•BSTRhino•30m ago•1 comments

How HR Took over the World

https://economist.com/business/2025/11/10/how-hr-took-over-the-world
1•pseudolus•31m ago•1 comments
Open in hackernews

Select 1 Touches 5,583 Lines of Postgres Source Code

https://narekg.me/blog/2025/11/pg-select-1-lines/
2•ngalstyan4•1h ago

Comments

sam_lowry_•1h ago
Heh... For a long time I wanted to fix the message Postgres shows when connecting to the Database with the higher version of the CLI as it gives a somewhat misleading perception of lack of backwards compatibility.

Every time I accidentally stumble into that message, I check on the Postgres code, see how hard it is to fix the message and bail out.

anarazel•1h ago
That should be trivial to change:

https://github.com/postgres/postgres/blob/d2f24df19b7a42a094...

sam_lowry_•1h ago
Think of all the translations )
anarazel•1h ago
You don't need to deal with them as a patch author :)
ngalstyan4•1h ago
They would need to handle all the translation changes as well, no?

<https://github.com/search?q=repo%3Apostgres%2Fpostgres+%22ma...>

I agree code change is simple, but I guess the task is complex for other reasons

anarazel•1h ago
If you just make a change of code, you don't need to handle translations at that time. That will get done by the various translation teams closer to the release. However you do need to make sure that the code is translatable (e.g. injecting pre-formulated english messages into a larger message is problematic).