Earlier quoted context omitted.
I am a software developer; why would I want to "take myself down a peg"? Also I doubt there are many people reading the web on 2004 netbooks. You know what I am talking about.
1. I believe the parent post was referring to non-web-developers taking web-developers down a peg, not anyone taking themselves down a peg. 2. I used a small 2007 laptop well in to 2018, and I believe that the software I wrote was better for it.
Self-host your fonts for better performance
381–390 of 417 posts
Re: Self-host your fonts for better performance
#382Earlier quoted context omitted.
The secret of democracy is that, even when there are no good options to choose from, people agreed on the solution. Therefore you are not a the whim of a single person or entity and this legitimates the way you live. As for technology existing only because of Google or some other large company, that's not the case. Google was more innovative when it was smaller. Netscape created the whole browser industry as a small…
There are many problems that cannot be solved by the resources available to a medium sized company. Which is why you need multiple governments to get together to help out something like AirBus or space programs. Similarly Google at its scale can tackle large problems more efficiently than having 10000 medium sized companies pool their resources together to do the same. In other words, everything has pros and cons tha…
Re: Self-host your fonts for better performance
#383I'm usually the first one to sneer in disbelief at super users who 'go nuclear' and disable the likes of javascript and images when browsing the web, but lately, I've been experimenting with having custom fonts disabled (that is, fonts I don't have locally), and it feels to me that page loads are much faster, and in some case more readable (pages feel 'cleaner'?). The only issues I've come across so far is when a sit…
How does one do this for chrome/firefox? Google search gives result for the opposite problem.
Re: Self-host your fonts for better performance
#384Earlier quoted context omitted.
“No web fonts for elements containing multiple characters” would be a great ublock rule, now I think about it...
That'd break sites that use ligature-based icon fonts, with the actual content being an icon identifier like "thumbs-up" and an OpenType ligature rule in the font to render this as an icon glyph.
Re: Self-host your fonts for better performance
#385Earlier quoted context omitted.
There are so many solutions! * In uBlock Origin (which is a must have on bad internet): Settings > Block remote fonts * In browser, Firefox about:config, gfx.downloadable_fonts.enabled, Chrome run with --disable-remote-fonts * Download fonts when on good connection > You can download all Google Fonts in a simple ZIP snapshot (over 300MB) > https://github.com/google/fonts installation depends on OS, on Arch Linux it w…
Are you just clinging to the last dev version of uMatrix, or did you find an active fork or something?
Re: Self-host your fonts for better performance
#386Earlier quoted context omitted.
And then the criticism would be “Google enables violating the privacy of rural and poor customers with less access to high speed Internet”. I’m not saying any one of these criticisms is wrong. Just that they’re predictable and there’s basically no move Google could make besides shutting down that would satisfy the complaints (and even then it would be the ultimate “Google kills products” meme).
So? You are just describing how discourse works. Entity A does thing that impacts entity B. Entity B makes those effects known to a broader group than entity B. Maybe entity A does thing about it, maybe not.
Re: Self-host your fonts for better performance
#387Earlier quoted context omitted.
The same argument applies to developers not using the state of the art computers packed with RAM. These problems can't be found in QA: if they even show up at all it's too late. Sure, their code will compile faster but they won't get a feel for how it behaves in the real world. Probably the best is to have fast build servers on the LAN while typing at pedestrian machines.
Whatever excuses we want to make for forcing web devs to use old netbooks from 2004, I'm down with it (everyone knows they think they're cooler than us, we need to knock them down a notch). Usability? Cool yes that sounds very important or whatever.
The result is designs I can actually be proud of, not ashamed.
Of course, no one is paying me for it. And that's OK. I'd rather be doing this for frew than getting six figures working on advertising bullshit which will be gone tomorrow.
Re: Self-host your fonts for better performance
#388Earlier quoted context omitted.
I'm using uMatrix and by default all javascripts are blacklisted until I explicitly enable it for the site. The downside of this is that lots of websites are broken, payment sites are non-functional, but after a week of building the whitelist, the web is somehow usable again.
The worst is when the site is totally blank without it, then you enable it, and there's no interactivity: just images and a few words of text. It was totally unnecessary after all.
Because I've noticed a strong correlation with lack of accessibility and poor quality content I ended up regretting wasting my time reading.
Re: Self-host your fonts for better performance
#389Earlier quoted context omitted.
> I've been experimenting with having custom fonts disabled (that is, fonts I don't have locally), and it feels to me that page loads are much faster, and in some case more readable (pages feel 'cleaner'?). That might be due to font hinting. The default fonts (on Windows) were beautifully manually hinted to give a really crisp results without font smoothing. But manual font hinting is super expensive, so web fonts do…
> That might be due to font hinting. The default fonts (on Windows) were beautifully manually hinted to give a really crisp results without font smoothing. I used to work at MS, and a lot of people don't realize exactly how much time, money, and love is put into fonts there. When my team ordered custom fonts, I personally spent a lot of time going over each character pixel by pixel, in combination with many other cha…
Re: Self-host your fonts for better performance
#390Earlier quoted context omitted.
It's also likely to be implemented as a ton of JS to download, which would either block rendering (see option 1 above), or apply after the content loaded (see option 2). So, a bunch of work to fix something that isn't broken when you turn off webfonts and respect user settings.
With an isomorphic web app, that should be calculated server side.