frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Meta-Epistemological Reason for Rejecting AI-Written Philosophy

https://dailynous.com/2026/07/16/a-meta-epistemological-reason-for-rejecting-ai-written-philosophy/
1•zetamax•1m ago•0 comments

Flock Credibility Lost as It Repeatedly Lies to City Councils, Police, & Public

https://www.aclu.org/news/privacy-technology/tracking-alpr-cameras/flock-safety-credibility-lost-...
2•StatsAreFun•5m ago•0 comments

The surprising benefits of red light

https://www.economist.com/science-and-technology/2026/07/20/the-surprising-benefits-of-red-light
1•andsoitis•9m ago•0 comments

Quickly rewrite Git repository history

https://github.com/newren/git-filter-repo
2•modinfo•11m ago•0 comments

The Networking Wars: How Microsoft Crushed Novell

https://www.youtube.com/watch?v=5GAYaBU1SLQ
1•cable2600•12m ago•0 comments

A quick note on OmniWM, open source, and why giving credit matters

https://github.com/BarutSRB/OmniWM/discussions/497
2•mmcclure•17m ago•0 comments

Best Coding Fonts for Developers in 2026

https://www.jstools.space/blog/best-coding-fonts/
3•javatuts•17m ago•1 comments

Datasette Dashboards

https://romain-clement.net/projects/datasette-dashboards/
2•ankitg12•18m ago•0 comments

The Graph Was the Cheap Part

https://cameronwestland.com/the-graph-was-the-cheap-part/
1•camwest•18m ago•0 comments

OpenCircuitX

https://github.com/openlab-x/OpenCircuitX
2•firetesterlab•19m ago•0 comments

OpenAI Says Model Broke Out of Sandbox

https://twitter.com/kimmonismus/status/2079276434586210745
1•derangedHorse•21m ago•0 comments

$100 million for open source: A milestone built by the community

https://github.blog/open-source/maintainers/100-million-for-open-source-a-milestone-built-by-the-...
1•chmaynard•23m ago•0 comments

The road to epsilon-zero: Nim always ends, even with infinite ordinals

https://blog.plover.com/math/ordinals/02-wellfoundedness.html
2•pavel_lishin•29m ago•0 comments

MAGA Media Lap Up Trump's Election-Interference Exaggerations

https://www.nationalreview.com/news/maga-media-lap-up-trumps-election-interference-exaggerations/
1•petethomas•29m ago•0 comments

How to manage AI investments in the agentic era

https://openai.com/index/managing-ai-investments-in-agentic-era/
1•gmays•29m ago•0 comments

Show HN: Vidmoat – a video editing pipeline any AI agent can operate

https://www.vidmoat.com/
2•fredabila•30m ago•0 comments

Jacobian conjecture was proven for 3D, Math seems to be distraction however

https://abhishek-shankar.com/posts/the-zero-discount-claim
1•catstyler•32m ago•0 comments

Show HN: PounceDomains – Domain discovery and sniping for Namecheap Marketplace

https://pouncedomains.com
1•DotSauce•32m ago•0 comments

Linux Now Runs on the Atari Jaguar, a 1993 Console with Just 2 MB of RAM

https://linuxiac.com/linux-now-runs-on-the-atari-jaguar-a-1993-console-with-just-2-mb-of-ram/
3•cable2600•34m ago•0 comments

The road to epsilon-zero: ordinals as Nim-heaps

https://blog.plover.com/math/ordinals/01-nim.html
1•pavel_lishin•36m ago•0 comments

Why Andrew Tate Is a MAGA Superstar

https://www.thenation.com/article/society/andrew-tate-arrest-maga-connection/
2•petethomas•39m ago•1 comments

AI just disproved a major math problem. A mathematician explains

https://mashable.com/tech/anthropic-fable-5-disproves-jacobian-conjecture
1•01-_-•42m ago•1 comments

Secrets Don't Belong in Config

https://secretspec.dev/blog/secrets-dont-belong-in-config/
2•domenkozar•42m ago•0 comments

AI's most important protocol is getting a little bit easier to use

https://techcrunch.com/2026/07/20/ais-most-important-protocol-is-getting-a-little-bit-easier-to-use/
2•haritha1313•43m ago•0 comments

Bdinfo-rs – Rust cross-platform Blu-ray analyzer (GUI and CLI and WASM)

https://github.com/agentjp/bdinfo-rs
2•hyperslop•44m ago•1 comments

The $100M Mistake Making Modern Movies Look So Cheap

https://comuniq.xyz/post?t=1415
2•01-_-•46m ago•0 comments

Wp2shell: First Critical Unauthenticated WordPress Core RCE in Nearly a Decade

https://www.wordfence.com/blog/2026/07/wp2shell-aftermath-the-first-critical-unauthenticated-word...
1•computer23•48m ago•0 comments

How Google's A.I. Search Is Imperiling the Open Web

https://www.nytimes.com/2026/07/20/technology/google-ai-open-web.html
3•mikhael•50m ago•0 comments

Wax On, Weights Off: Knowledge Distillation Explained

https://jdsemrau.substack.com/p/knowledge-distillation-attacks
2•ph4rsikal•52m ago•0 comments

Ask HN: How are you interviewing engineers in this agentic era?

4•jcgr•53m ago•1 comments
Open in hackernews

We Slashed API Response Times by 50% with Go Compiler Optimizations

https://medium.com/@utsavmadaan823/how-we-slashed-api-response-times-by-50-with-go-compiler-optimizations-3c2592c2d241
2•tanelpoder•1y ago

Comments

rvz•1y ago
So as I was saying in [0] and [1], there is no doubt that properly tuning the compiler for performance can make a significant real difference instead of wasting more money and risking an increase in costs just by throwing more servers at the problem.

Also, If you needed to re-architect the entire codebase to solve a performance issue, either you chose one of the most inefficient technologies / languages or the code itself was badly architected in the first place or both.

Before any architectural changes to the codebase first check if you can get performance gains from the compiler flags and measure it. That should be the industry standard practice for high quality efficient software.

We must learn from excellent SWEs teams such as DeepSeek which frankly embarrassed the entire AI industry due to their performance optimizations and savings in inference usage.

[0] https://news.ycombinator.com/item?id=43753443

[1] https://news.ycombinator.com/item?id=43753725

kristianp•1y ago
> -ldflags="-s -w": Strips debugging info, making the binary smaller

> I was honestly shocked when this simple change gave us an 8% speedup right off the bat.

Is that all they did to get 8% speedup? Could be a measurement error?

potato-peeler•1y ago
> Dave (our senior backend dev who’s been coding since before I was born) mumbled something like, “Wonder if we’re even using the Go compiler properly…” Most of us kinda ignored it at first — I mean, compiler optimizations? Really? That’s your big solution?

Young devs ignoring their seniors is a tale as old as time