12229 shaares
293 private links
293 private links
I did not know...
find the cost of adding a npm package to your bundle
WD-40 ist das Leben 🤣
- Switch the Grid Flow Axis :
grid-auto-flow: column; - XY Center Anything :
place-content: center;(on any child) - Intrinsically Responsive Grid Columns
:root {
--grid-col-breakpoint: 15rem;
}
.grid-columns {
grid-template-columns: repeat(auto-fit, minmax(var(--grid-col-breakpoint), 1fr));
}lyokolux.ynass.com : YES !
WTF and whatever as a service
Public password lists leaked over years
Using checkboxes everywhere for everything ! 😄
A great video on Vue 3; providing reflexions about web frameworks
OMG ! 😍
It looks legit to me. I have to give it a try.
Installez log2ram pour éviter que les logs soient écrit directement sur la carte SD
type Subset<Parent, Sub extends Parent> = Sub;
type IconName = 'cars' | 'mars' | 'truck' | 'warning'
type VehicleIconName = Subset<IconName, 'cars' | 'truck' | 'invalidName'>