843
fuck the tests
(lemmy.dbzer0.com)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Tests? Pfffft. I am the test.
And while I'm here: https://blog.jim-nielsen.com/2024/sanding-ui/
It baffles me when people use flex layout when it's clearly visually a grid layout. Nothing here is flexing with varying element sizes and auto-fill-wrap-break of items.
A colleague of mine prefers flex too. But to me, grid is so much more intuitive and simple.
https://css-tricks.com/quick-whats-the-difference-between-flexbox-and-grid/
Tbh I'm not a web person (more of a backend person) and don't know the recommended practices.
display: grid;
is a good friend of mine xDI think using
display: grid;
as your default is the better default, so you're all set. :)