11915 shaares
350 private links
350 private links
1446 results
tagged
programming
(shared by Arthur HOARO's links)
Well-explained ! It takes some times to read it, but some concepts are clear at the end 💡
if you have Foo and FooBuilder, consider adding a builder method to Foo
that returns the Builder of course
About impl Trait
Rule: If a type parameter only appears in one location, strongly reconsider if you actually need it.
Feedback on using both languages :)
A nice code snippet here :
.checkbox__input {
display: grid;
grid-template-areas: "checkbox";
> * {
grid-area: checkbox;
}
}
This will put all children in the same area; and will behave as a position: absolute, but with the power of Grid
Ok 👍 Cool to know !
Great resource !
Find the best way to know if a number is odd or even 🤣
Yay ! A list of all useful oneliners that are often needed
A list of naming conventions grouped by languages ❤️