frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GLiClass: Open-Source JEV

https://github.com/knowledgator/gliclass
1•handfuloflight•33s ago•0 comments

The Arrival of Java 27

https://inside.java/2026/09/15/jdk-27-available/
3•ejboy•3m ago•0 comments

EU approves sending mountains of trash to Turkey despite environmental fears

https://www.politico.eu/article/eu-trash-turkey-environment-plastic-recycle/
2•leonidasrup•6m ago•0 comments

Verification of a Generational Garbage Collector

https://arxiv.org/abs/2609.13186
2•matt_d•8m ago•0 comments

Salesforce and Nvidia launch Koa, a CRM reasoning model

https://www.salesforce.com/news/press-releases/2026/09/15/koa-reasoning-model/?bc=HL
2•snikolaev•15m ago•0 comments

Antonio Gramsci: How Language Makes Power Feel Like Common Sense

https://linguistically.substack.com/p/antonio-gramsci-how-language-makes
1•akbarnama•16m ago•0 comments

Replicating Jev with Qwen-2.5

https://nitter.perennialte.ch/harshagundal/status/2100044305536889015
1•E-Reverance•18m ago•0 comments

Revisiting Soundness for Occurrence Typing, Semantically

https://arxiv.org/abs/2609.16299
1•matt_d•19m ago•0 comments

Black Holes or Black Hole Stars?

https://www.quantamagazine.org/black-holes-or-black-hole-stars-astronomers-spar-over-webb-telesco...
1•the-mitr•20m ago•0 comments

GPT-6 Astra vs. GPT-5.6 Sol: Is a 1.6x Higher Cost Worth It per Verified Bug?

https://ent-website-gamma.vercel.app/blogs/gpt-6-astra-cost-1.6x-more-per-verified-bug-than-gpt-5...
1•Entelligence25•21m ago•0 comments

Reclaim the Terminal

https://nishantjosh.dev/blogs/reclaim-the-terminal/
1•ballanitesh•23m ago•0 comments

Nature Is Our Learning Environment

https://periodic.com/news/nature-is-our-learning-environment
1•EvgeniyZh•27m ago•0 comments

Hello HN

1•Mohamed_Amineio•28m ago•0 comments

The Chemistry of Cookery XVII (1884)

https://en.wikisource.org/wiki/Popular_Science_Monthly/Volume_26/November_1884/The_Chemistry_of_C...
1•wmchen•32m ago•0 comments

Bug Bounty Operating Principles

https://medium.com/@JasonPuglisi/bug-bounty-principles-c379a2062614
1•smurda•35m ago•0 comments

CodeProject in read-only mode since October 2024

https://en.wikipedia.org/wiki/CodeProject
1•vismit2000•35m ago•0 comments

What's New in macOS 27 for Developers?

https://www.freecodecamp.org/news/whats-new-in-macos-27-for-developers/
1•DanielKehoe•35m ago•0 comments

Effectively Does a Model Use Its Memory (2025)

https://www.liquid.ai/blog/how-effectively-does-a-model-use-its-memory
1•eigenBasis•39m ago•1 comments

OpenAI breakthrough triggers 'existential crisis' in math

https://www.science.org/content/article/openai-breakthrough-triggers-existential-crisis-math
3•sbulaev•40m ago•0 comments

Show HN: 2049 - a roguelike that fuses 2048 and Minesweeper

https://github.com/skorotkiewicz/2049
1•modinfo•41m ago•0 comments

Why Scheme?

https://goeteia.dev/why
1•edfsadfer•44m ago•0 comments

Symbolic Artificial Intelligence

https://en.wikipedia.org/wiki/Symbolic_artificial_intelligence
1•ijidak•44m ago•0 comments

AI models in 'surreal' dialect mixing poetic language and tech bro jargon

https://www.theguardian.com/technology/2026/sep/15/syd-barrett-ai-chat-language-poetic-tech-bro-j...
3•danielmorozoff•46m ago•0 comments

Show HN: Context Freshness Ledger – a tiny schema for reviewable agent memory

https://github.com/chengyixu/context-freshness-ledger
1•Wilson_Xu•46m ago•0 comments

Novel Particle Beam Could Challenge Einstein's Theory of Gravity

https://ethz.ch/en/news-and-events/eth-news/news/2026/09/novel-particle-beam-could-challenge-eins...
1•geox•49m ago•0 comments

FBI boarded Texas-bound oil tanker to investigate cyberattack

https://www.cbsnews.com/news/coast-guard-fbi-board-oil-tanker-texas/
3•virgulino•50m ago•1 comments

NASA-backed scientists turn plastic waste into edible cookies

https://www.sciencedaily.com/releases/2026/09/260912220033.htm
2•danielmorozoff•50m ago•1 comments

"Filmmaker" suing PassThePopcorn may be banned user out for revenge

https://arstechnica.com/tech-policy/2026/09/filmmaker-suing-passthepopcorn-may-be-banned-user-out...
1•shscs911•53m ago•0 comments

William Buckland's Theology of Geology

https://www.historytoday.com/archive/great-debates/william-bucklands-theology-geology
1•Petiver•54m ago•0 comments

Broken Windows, Abstractions and the Cost of Always Keeping Things Simple

https://pgilmartin.substack.com/p/broken-windows-abstractions-and-the
1•snikolaev•56m 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