pages | ◀ ▶ |
1 year ago in Tools
wkhtmltopdf
wkhtmltopdf and wkhtmltoimage are open source (LGPLv3) command line tools to render HTML into PDF and various image formats using the Qt WebKit rendering engine. These run entirely "headless" and do not require a display or display service.
There is also a C library, if you're into that kind of thing.
1 year ago
4
Libraries
2 years ago
1
Interviews
2 years ago in Interviews
Amal sits down for a one-on-one with Alex Russell, Microsoft Partner on the Edge team, and former Web Standards Tech Lead for Chrome, whose recent post, The Market for Lemons, stirred up a BIG conversation in the web development community.
Have we really lost a decade in potential progress? What happened? Where do we go from here?
2 years ago in Fundamentals
Local-First Web Development
So, you want to build an app that has its data co-located with its UI? That works offline? That synchronizes between clients? And that lets its users own their data?
2 years ago
1
Fundamentals
3 years ago in Cheatsheets
Emoji as Favicon
<link rel="icon" href="data:image/svg+xml,<svg xmlns="http://w3.org/2000/svg" viewBox="0 0 100 100">
<text y=".9em" font-size="90">💩</text>
</svg>" />
3 years ago in Cheatsheets
align horizontally and vertically
.center {
display: grid;
place-items: center;
}
pages | ◀ 1 / 6 ▶ |