A man's bookmarks

A responsive grid with one line of CSS

I'm not the first to discover this by a long stretch but worth noting. Anything with display:grid or display:grid-lanes can be fully responsive at any viewport width with this syntax (where 45ch is the minimum inline size at viewport sizes greater that 45ch) grid-template-columns: repeat(auto-fit, minmax(min(100%, 45ch), 1fr)).

Until we had the min() function it was only possible to be responsive above a certain minimum viewport width with something like grid-template-columns: repeat(auto-fit, minmax(45ch, 1fr)); combined with a media query i.e. @media (min-width: 45ch) { /* responsive grid styles */ }.

Tagged with

This content is not available on archive.org. Read why.

You won: Microsoft is walking back Windows 11’s AI overload — scaling down Copilot and rethinking Recall in a major shift

I'd not be surprised if we find out Microsoft were counting each Copilot button as a Copilot customer. After all they gave OpenAI free use of their servers then OpenAI counted it as a $10 billion investment. When they used up their allowance Microsoft decided the best way to account for it was as $10 billion income.

Tagged with

View on archive.org