Read a good article about Box Sizing over on CSS Tricks.
In summary:
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }
Read a good article about Box Sizing over on CSS Tricks.
In summary:
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }
I read How Did Things Ever Get This Good? today. Nice, short, optimistic piece.
To download a web page along with its scripts and styles etc:
wget --page-requisites --convert-links --execute robots=off https://www.example.com/whatever/
Today I discovered Data Visualization with JavaScript. I would like to read that one, I will see if I ever find the time.
Today on r/programming an interesting article about the complexity of time zones: Falsehoods programmers believe about time zones.
This old chestnut What ORMs have taught me: just learn SQL popped up on HN today.
This article about Wikimedia’s CDN popped up on lobste.rs today.
Today What it takes to run Stack Overflow popped up on r/programming. It’s an old article (2013) but still interesting. It referenced Performance is a Feature and made the bold-font claim that “the cost of inefficient code can be higher than you think.”
Today I read The Surprising Impact of Medium-Size Texts on PostgreSQL Performance which popped up on reddit.
Today I read about the Semipredicate problem. Basically how to signal failure from a called function.