Search
A Snippet to See all SVGs in a Sprite
8.10.2019
I think of an SVG sprite as this:
<svg display="none">
<symbol id="icon-one"> ... <symbol>
<symbol id="icon-two"> ... <symbol>
<symbol id="icon-three"> ... <symbol>
</svg>
I was long a fan of that approach for icon systems...
Tiny $217 Options Trade on Bitcoin Blockchain Could Be Wall Street’s Death Knell
8.10.2019
Skew., a startup led by an ex-JPMorgan trader, did an S&P 500 options trade on bitcoin’s blockchain to prove the tech works better than Wall Street
Tiny Block Advocates Speak Up After Veriblock ‘Abuses’ Bitcoin’s Block Size
19.9.2019
The BTC community recently celebrated the fact that Segregated Witness (Segwit) transactions accounted for 50% of transactions and bech32 transactions doubled as well. However, the celebration quickly came to an end when a few Bitcoin Core developers found out where the transactions derived from...
Lazy load embedded YouTube videos
20.8.2019
This is a very clever idea via Arthur Corenzan. Rather than use the default YouTube embed, which adds a crapload of resources to a page whether the user plays the video or not, use the little tiny placeholder webpage that is just an image you can click that is linked to the YouTube embed.
It still...
This Tiny Bank Gave Bitcoin to Its Entire Staff. Now It‘s Taking Crypto Clients
9.8.2019
Quontic, a small bank in New York, has started working with crypto firms, joining the very short list of institutions to embrace the sector
WDRL — Edition 271: TTFB, the loading-attribute, tiny houses and work ethics.
9.8.2019
Hey,
The web is quite differently to when I started the newsletter in 2013 with the first edition. Back then, it was all about new features, new clever hacks and techniques how to build better websites. It was crazy at what speed we got new CSS features, and JavaScript evolved. Nowadays, it’s...
The Elk Is a Tiny Prototyping Board for Building Blockchain-Connected Devices
14.5.2019
Elk aims to make it easy to connect hardware devices to blockchains and control electronic components or accept payments
Collective #510
22.4.2019
Svelte 3 * Mozilla WebThings * Tiny Mirror * CORS Tutorial * Inclusively Hidden * What is a Design System?
Collective #510 was written by Pedro Botelho and published on Codrops
Smooth Scrolling for Screencasts
13.3.2019
Let's say you wanted to scroll a web page from top to bottom programmatically. For example, you're recording a screencast and want a nice full-page scroll. You probably can't scroll it yourself because it'll be all uneven and jerky. Native JavaScript can do smooth scrolling. Here's a tiny snippet...
Mask Compositing: The Crash Course
2.3.2019
At the start of 2018, as I was starting to go a bit deeper into CSS gradient masking in order to create interesting visuals one would think are impossible otherwise with just a single element and a tiny bit of CSS, I learned about a property that had previously been completely unknown to...
A Bit of Performance
28.2.2019
Here’s a great post by Roman Komarov on what he learned by improving the performance of his personal website. There’s a couple of neat things he does to tackle font loading in particular, such as adding the <link rel="preload"> tags for fonts. This will encourage those font files...
iconsvg.xyz
25.2.2019
There is a lot to like about Gaddafi Rusli's ICONSVG.
It provides inline <svg>, which is the most generically useful way to deliver them, and probably how they should be used anyway. Each icon is a tiny amount of SVG and I'd bet they were all hand-golfed.
They are all stroke-based, so they...
Firefox DevTools WebConsole 2018 retrospective
21.1.2019
Here’s a wonderful post by Nicolas Chevobbe on what the Firefox DevTools team was up to last year. What strikes me is how many improvements they shipped — from big visual design improvements to tiny usability fixes that help us make sure our code works as we expect it to in the console....
Intro to React Hooks
18.1.2019
Hooks make it possible to organize logic in components, making them tiny and reusable without writing a class. In a sense, they’re React’s way of leaning into functions because, before them, we’d have to write them in a component and, while components have proven to be powerful and functional...
Prototyping in the Browser
5.7.2018
Prototyping animations and interactions is vital for a number of reasons: they can make your interface feel deceptively fast, they can help focus the user on a specific task, and they can provide a better sense of the current state of your application. Is data being loaded? Is something...