Today via r/programming: Awesome data visualization tools for software developers
Category Archives: Design
CSS spacing
This via r/programming today: CSS: The Spacing Between Elements Should Be Determined by the Parent Element.
Laws of UX
Today I stumbled upon: Laws of UX. It has Jakob’s Law.
Simple things are complicated: making a show password option
An interesting article today: Simple things are complicated: making a show password option. It referenced Government Design Principles: Make things open: it makes things better which I thought was an interesting and sensible government policy…
Email explained from first principles
Here is every last thing you could ever possibly want to know about email: Email explained from first principles.
Data Visualization With Matplotlib and Seaborn
I was referred to Data Visualization With Matplotlib and Seaborn on #lobsters today.
The Architecture Behind A One-Person Tech Startup
This on HN today: The Architecture Behind A One-Person Tech Startup.
Idempotence Now Prevents Pain Later
I enjoyed reading this one today: Idempotence Now Prevents Pain Later. Some clear thinking.
HTML5 Tips
Today via r/programming: HTML5 Tips. I think my favourite was the meter tag… or maybe the spellcheck attribute… lots of good tips over there.
CSS Tips
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.