Hey OP, I notice you're using Berkeley Mono, which is beautiful. But your website's CSS appears to be applying boldface on an already boldface font in the headers (despite the typeface name claiming to be 'Regular', it is actually bold; see the datasheet[1]), which is causing bad hinting. Consider changing your typeface file! [1]: https://cdn.berkeleygraphics.com/static/typefaces/berkeley-m...
Thank you, I believe I have fixed it. TIL variable fonts on web are not great! AFAIK they don't distribute the regular/bold/italic/bold italic 4 font mix?
I'm betting on HTML
421–430 of 458 posts
Re: I'm betting on HTML
#422Earlier quoted context omitted.
That would require accepting that the complexity merchants sold them a lie.
> complexity merchants I have never heard of this term before. But I do think it is quite apt. Is this an established concept (can I read more about it somewhere)? Or did you come up with it on the fly?
Re: I'm betting on HTML
#423Re: I'm betting on HTML
#424Earlier quoted context omitted.
Perhaps the tags have not been de facto treated semantically by existing practices. There’s a great deal wrong with the tag soup pervading the web. Current convention doesn’t mean they can’t have semantics.
Potentially they could have semantics in the future, but right now they don't. If you make a user agent that relies on them having those semantics, that user agent will misinterpret a lot of web pages.
Re: I'm betting on HTML
#425Earlier quoted context omitted.
Potentially they could have semantics in the future, but right now they don't. If you make a user agent that relies on them having those semantics, that user agent will misinterpret a lot of web pages.
I can create CSS to style the two tags accordingly, and in within my own work I can make them mean different things to the tools I use to create and manage html.
Re: I'm betting on HTML
#426Earlier quoted context omitted.
This… {{range .Query `SELECT id,name FROM contacts`}} {{.name}} {{end}} …reminds me of what we used to do in php3 days. That was convenient, performant and… unmaintainable. Am I missing something ?
Who knows if it will be maintainable or not. Can you articulate why the php3 projects became unmaintainable?
Re: I'm betting on HTML
#427Re: I'm betting on HTML
#428Earlier quoted context omitted.
> They know when a sequence of paragraphs constitutes a "list", without it having to be explicitly marked as such, etc. that's the thing; they don't know - they guess
Humans do the same, it’s usually obvious from the context
Re: I'm betting on HTML
#429Earlier quoted context omitted.
Exporting to web using Flutter is a nightmare I believe. When I checked last time, rendering happens on a canvas. There is no markup at all
I use Flutter for some web apps, it works fine. It's good for web apps, not web sites, and compared to other desktop or mobile apps, there is literally no difference between rendering on a canvas to rendering on Qt or SwiftUI. People, in my experience, just get up in arms about the web that does not happen with other technologies.