This on r/programming today: CSS Tips. There are a lot of good tricks in there, this one was my fav:
.center {
display: flex;
align-items: center;
justify-content: center;
}
…it centres content vertically and horizontally.
This on r/programming today: CSS Tips. There are a lot of good tricks in there, this one was my fav:
.center {
display: flex;
align-items: center;
justify-content: center;
}
…it centres content vertically and horizontally.
Some good tools and techniques listed over one Tools for Auditing CSS.
Check out commandlinefu.com! “commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.”
This on r/programming today: Font size is useless; let’s fix it. Interesting article, but I didn’t read it closely.
This in the news today: The Modern Guide to OAuth.
I found a very long article: Is Inheritance That Evil? I am far too tired to concentrate on it right now. Sorta looked interesting though.
This popped up on HN today: Louvre Collections. Pretty awesome.
An excellent article on Unicode: Emoji under the hood.
Enumerated Trees in PicoLisp. Lisp does my head in.