Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. "They had no concept of a duty of care to their users." (aresluna.org)
    101comments
  2. In an $80 Motel Room, a Discovery to Shed Light on the Origins of Life (nytimes.com)
    19comments
  3. The Normalization of Inexplicable Failures (ihatethefuture.com)
    1comments
  4. Replacing the old battery on rechargeable bike lights (jvns.ca)
    17comments
  5. Writing Efficient C++ Code (asawicki.info)
    4comments
  6. Font where each token is equal-width (twitter.com/amplifiedamp)
    5comments
  7. Ten Lines of Code That Changed My World (pixelambacht.nl)
    3comments
  8. Flip Fluid on Flip Dots (mitxela.com)
    17comments
  9. Fakecloud: Local AWS cloud emulator for integration tests (fakecloud.dev)
    19comments
  10. Show HN: A CC0 museum of retro 3D tricks you can paste into a page (3d-retro.com)
    7comments
  11. Does Georgism work? Five years later (astralcodexten.com)
    350comments
  12. Unsealed Briefs in Authors’ Case v. Microsoft/OpenAI (authorsguild.org)
    476comments
  13. Go Concurrency Distilled (antonz.org)
    134comments
  14. Finally, A True Blue Rose Exists (sciencenews.org)
    26comments
  15. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    249comments
  16. The internet discovers TLA+. Now what? (reasonable.io)
    40comments
  17. Rusty thoughts on "Parse, don't validate" (thegreenplace.net)
    11comments
  18. postmarketOS Rebrand: Nura (nura.eco)
    —discuss
  19. 10 Tells of a Slop UI (hereticpleb.vercel.app)
    126comments
  20. DeepSeek Elastic Compute (DSec) (arxiv.org)
    94comments
  21. Show HN: Reladraw – A diagram language where you decide where to place things (github.com/reladraw)
    95comments
  22. ASML says it sold 'absolutely nothing' in Europe in 2026 (tomshardware.com)
    788comments
  23. "As a Language Model": Chat Template Switches LLM Self-Referential Voice (arxiv.org)
    90comments
  24. Biology might not be quantum, but its math is quantumlike (quantamagazine.org)
    41comments
  25. A searchable library of forgotten public-domain film clips from 1915 onward (movingimagearchive.com)
    26comments
  26. An agent used DNS to reach an external chatbot (alignment.openai.com)
    141comments
  27. Fifteen years later, the Apple Cards origin story (lexontech.org)
    110comments
  28. How I changed teaching after AI managed to do all my homework assignments (thelastsoftwareengineer.substack.com)
    251comments
  29. Exploding variance of means of exponentials: least-squares to the rescue (francisbach.com)
    —discuss
  30. Promising discoveries about the potential for life on one of Saturn’s icy moons (fu-berlin.de)
    51comments

Improving site performance by shipping more CSS

66 pointsby 1d agogithub.blog
51 comments
10h agoHN ↗

Sometimes, [GitHub] posts a [blog post in which they move away from] some terrible [way of doing things] I've never heard before, and it's a weird indirect way to learn how awful their other [design choices] must be.

https://xkcd.com/2071/

9h agoHN ↗

Once (like a year ago or so) stumbled upon some person's post asking for someone to help them to "fix" some section at their website. It was done !important over !important over !important over !important. Said person was really convinced all it needed was another bunch of !important because apparently that was what ai spit for them, at least at that time

9h agoHN ↗

And yet, there's been a glaring overflow bug on every repo page if the repo has a sponsor button on Firefox Android for months.

9h agoHN ↗

css-in-js? Rofl. Whats next? Html-in-js?

9h agoHN ↗

Honestly, hats off to them. It's hard to get anything done with Copilot so I'm amazed they even managed to do this.

8h agoHN ↗

There's room for improvement still. Currently, the production build is using long-dev class names. e.g. `DirectoryContent-module__Box_3__gl6dE` could be compiled to a shorter hash like `gl6DE3a2`.

If you use Vite:

  css: {
    modules: {
      generateScopedName: mode === 'production'
        ? '[hash:base64:8]'
        : '[name]__[local]___[hash:base64:5]',
      }
    }
8h agoHN ↗

Would you need a source map then for prod debugging?

8h agoHN ↗

The improvement would be shipping human-readable structure to allow easier user overrides, not that hash abomination

8h agoHN ↗

Those class names surely gzip better than hashes over the wire?

7h agoHN ↗

Here's a comparison using `brotli --best` on my app.

   53K _long.css
   38K _short.css

   11K _long.css.br
  8.9K _short.css.br

Both, dev and prod, have hashes because that's part of what CSS Modules uses to avoid collisions.

Besides download size, smaller names improve parsing speed too.

3h agoHN ↗

Personally I don't think this reduction in size is big enough compared to making all css names unreadable and thus very difficult to debug.

It also makes it much more difficult to create personal browser extensions as all css names are now unreadable.

1h agoHN ↗

You could also drop the hash part and gain most of that improvement. Or module and hash and do better on compression (because the hash is high-entropy).

Rudimentary experiment on https://github.githubassets.com/assets/te.1288ac5c9584fbf2.m... on replacing /(?<module>[A-Za-z0-9_-]+)__(?<local>[A-Za-z0-9_-]+)__(?<hash>[A-Za-z0-9_]{5})\b/:

${module}__${local}__${hash} (original): 72967 raw, 10993 br.

${module}__${local}: 68459 raw, 8867 br.

${hash}: 48754 raw, 8189 br.

${local}: 52610 raw, 7927 br. (Now in practice a few of these are likely to need disambiguation, so it’s probably a tad smaller than realistic.)

Frankly I think ${local} is the right target, with global disambiguation where necessary. For typical systems, I consider the hash approach to be foolish: its value is when interacting with unknown other styles, but when you’re compiling everything you should know everything, so you can disambiguate more selectively and succinctly/compressibly, as JS build tools like Rollup do (in flattening modules with colliding names, you’ll get Foo, Foo$1, Foo$2, &c.).

39m agoHN ↗

${local} is the right target, with global disambiguation where necessary.

How?

---

Another approach is using base52 sequential names, such as `aa, ab, …`. I tried that a few years ago in Webpack, I don't remember but there was an issue, IIRC they weren't deterministic.

1h agoHN ↗

Try zstandard instead of Brotli - a clearly superior format, IMO. Definitely better than gzip.

54m agoHN ↗

`zstd --ultra`

    53K _long.css
    11K _long.css.br
    14K _long.css.zst

    38K _short.css
   8.9K _short.css.br
    11K _short.css.zst
7h agoHN ↗

This.

The only thing hashing classes achieves is making it difficult for users to use ad blockers and/or custom CSS. I understand why e.g. Meta does it on their sites, but for GitHub it makes no sense.

3h agoHN ↗

Perhaps we should never ever use hashed class names?

8h agoHN ↗

Unfortunately the original blog post introducing the great CSS-in-JS system being removed is not in the "Related posts" section, would be nice to compare the thinking in the two

8h agoHN ↗

I don't know how they perceive the performance. I see 41 network requests. That's 2.1 MB of CSS over the wire, blocking rendering and hurting painting and loading speed. There's 400 KB of Tailwind, 87 KB of general CSS, plus another 200 KB of other general CSS. They need to embrace functional CSS properly. I'm sure they could have a single CSS file under 80 KB that renders everything.

7h agoHN ↗

These type of comments often come from a place of arm-chair reasoning where you might not sit on the experience of working hands-on in a large team on a large product. While it’s probably true that X kB sufficient, that amount of performance optimisation is usually not warranted at this scale. Maintaining a design system, working with scoped classes, legacy code, and dealing with the complexities of chunking and probably further challenges we are not aware of from the outside. It seems like a common sentiment on HN (maybe not you in particular) is that engineers should drop everything and work overtime on optimizing performance, when it comes to web apps

7h agoHN ↗

The beauty of functional CSS is that you can progressively transform everything. GitHub runs on entire modularized codebase, they can clean up the entire codebase within weeks, days if they use agents and see the effects of performance instantly.

7h agoHN ↗

The shitty team excuse.

Performance is not complicated. You measure something and compare the numbers. Through my career I have encountered the following failures repeatedly:

* The complete inability to measure things. This is common among people with low social intelligence. Many people in this line of work cannot measure things and form all kinds of bullshit excuses. Cannot do it all as if they are disabled. Sometimes it is laziness, sometimes it’s autism masking, and sometimes it’s stupidity/ignorance where they believe they shouldn’t have to or are superior from convention alone.

* The shitty team argument. It’s common for people to intentionally avoid or discard measures because there is fear superior performance may indicate an operating deficit. The last thing anybody in software wants is to change approach if they are on a shitty team, because corporate developers are allergic to training people. This is often justified by asking what happens if you work on a team or about new hires.

* Throwing performance data away and lying about it. This is very common when performance data provides evidence that current conventions or favorite tools harm performance. If, for example querySelectors measure 100,000 times slower than some other approaches developers will pretend the performance evidence just doesn’t exist.

* Guessing. When people suck at what they do they invent their own performance realities. When people guess at software performance they are supremely wrong more than 80% of the time and tend to be wrong by multiple orders of magnitude.

7h agoHN ↗

You’re confidently making a lot of assumptions that don’t generalize.

For example:

performance is not complicated

Not to mention all your assumptions about the motivations of people who don’t do optimization well. That one can’t possibly generalize.

5h agoHN ↗

They are not generalizations. They are frequently repeated observations. The ability to operate from evidence is what determines if you are working with real professionals or children pretenders.

3h agoHN ↗

Most people are somewhere in the middle, again the dichotomy doesn’t generalize.

3h agoHN ↗

I would like to half agree to this.

Saying "Performance is not complicated" is not wrong. People and the systems set up for an application make it complicated. Its harder to check and verify.

I work in UI performance and the biggest thing slowing me down is always people

6h agoHN ↗

You measure and improve the metric, but at what cost, when should you stop? Have you worked on a 1mill+ loc web app?

5h agoHN ↗

You improve performance for a variety of reasons. You stop when you have competing evidence. The other 99% of the time it’s just developers making bullshit excuses.

2h agoHN ↗

This is common among people with low social intelligence

lol What? It's always amusing to me when someone makes absolute claims like "the industry" when having seen < 0.1% of it.

16m agoHN ↗

And it's specially easy for the case of CSS: less CSS, more faster.

6h agoHN ↗

that amount of performance optimisation is usually not warranted at this scale.

Indeed, you need to waste a few years hurting user experience before investing a few years into migration and writing another "improved performance" blog post.

that engineers should drop everything and work overtime on optimizing performance

The opposite, they should work less instead of more doing a worse job that results in scraping all their output later in a redesign

6h agoHN ↗

Isn't this backwards? Optimizing assets becomes more important with scale, not less. Not saying it is actually prioritized that way or that it would be easy but IMO the more traffic you have the more important it is to be frugal with bits.

5h agoHN ↗

This sort of comment has completely lost the forest for the trees.

You’re conflating scale with bloat. At large orgs the problem is that nobody is willing to step back and say “this sucks”. Trying to get this fixed involves getting 6 teams to agree upon something with no clear owner for the outcome and with everyone incentivised for not being blamed if one of the other groups tanks the effort.

engineers should drop everything and work overtime on optimising performance

No, we’re asking for it to be taken seriously by the organisation. I work in games, and on large projects we usually have a small team (2/3 people of a team of 80-100) who are constantly working on this stuff. Their work is “subjective” improvements but often it’s just building tooling and telling other groups what they need to fix.

4h agoHN ↗

And how that happens in gaming? Pretty curious now.

2h agoHN ↗

Frame rates are very important, so we prioritise them. That’s about it. The same “bloat” is often found in internal tooling in games. Unreal is a great example of it, nobody _really_ cared about how long packaging a build took, it got ad hoc improvements, but then epic decided to invest in it and its improved monumentally in the last 2-3 years. (Disclaimer, I worked there when nobody cared and was responsible for some of those as hoc changes)

2h agoHN ↗

I think part of the difference is that in gaming if performance sucks then there's a real community of people who push back and it will affect sales directly. In web development at least for the majority of sites (e.g. not on the level of usage of Github) usually people just stop visiting your site, so you don't see public pushback as much.

If a decent portion of your audience literally cannot even play the game because its performance is too bad or it can't run on their hardware, then that immediately affects your bottom line. And at least until recently, you couldn't really push fixes for it once the game was delivered. And so I think at least a little bit of that mindfullness for performance has carried over to the modern day, though I will say that I do think that performance optimization does seem to subjectively be getting worse even in gaming.

In web dev, while it is true that it affects your bottom line, it's a little bit less obvious. And in the eyes of most management teams that's always something that can be prioritized later since you could always update it after you shipped a feature. Also, there was very much a culture of "the browser will handle it."

Not to mention, most devs are using the hardware that is many times better than their consumers.

4h agoHN ↗

Yes, good points, but also with modern LLMs you can vendor the design system around and cut it to the bone on every app. If your organization ships a worse solution than Claude slop, do you really want to stick with it?

6h agoHN ↗

FWIW, a very quick look at other comparable sites (what seems to be the main css files):

sourcehut's 128kb raw, and 28kb over the wire.

codeberg is 420kb raw, and 66kb over the wire.

2h agoHN ↗

2.1MB is a huge most of the world where the internet speeds are not gigabyte etc. Yes, storage wise it's not a lot, but it's extra 5 seconds or so the user needs to wait for the site to load.

2h agoHN ↗

There are only a few countries in the world where 2.1 MB extra would add (barely) more than 1 second to site download based on the country’s median internet connection speeds. The vast majority of countries would see less than <100ms from 2.1MB.

And the bigger thing here is that this is all cached after it’s downloaded the first time.

2h agoHN ↗

That shows a lot of disrespect for hardware that isn’t yours.

6h agoHN ↗

Any time I see criticism of CSS in JS, and a move to CSS modules, I get sad they didn’t just do a bit more research. You can have both, while also not shipping any JS runtime for CSS in JS! And with TypeScript support.

https://vanilla-extract.style/

4h agoHN ↗

I thought that whole point of CSS in JS was about building the CSS with JS in build time, to get managed and optimized output, who madman runs in in runtime?

1h agoHN ↗

The idea of an `sx` prop kind of implies runtime. If there's any logic in those objects it can't be pre computed

6h agoHN ↗

Using GitHub everyday, I haven't really noticed an improved performance. Actually i'd say pages are becoming slower. Browsing issues with many comments or big PR has a terrible experience as not everything gets loaded

6h agoHN ↗

Yeah. It used to be unusable on mobile and great on desktop. But desktop has in my experience honestly been slipping pretty bad last few years. Maybe I live too far from the data center or something.

One weird tangentially related thing is checking whether a PR is merge:able after solving a conflict in this repo[1] for some reason takes several minutes. Maybe because there are 1000 commits in the same file. Doesn't seem UI related but weird regardless.

[1] https://github.com/MarginaliaSearch/submit-site-to-marginali...

1h agoHN ↗

I'm still a bit salty they fiddled with the Lists UI when star'ing a repo and adding it to a list.

The emojis I had at the beginning of the list name don't render anymore (they show up as :eyesore_emoji_name: instead) and the list is sorted alphabetically now instead of by last modified. Also it's one looong list instead of a small scroll-able container like it used to be.

This is on Firefox btw. Now I'm seriously thinking about moving these GitHub "bookmarks" into a separate place like a bookmark manager even if I lose a bit of convenience.

2h agoHN ↗

You either "improve performance" or "ship more ___", never both.