Search
Satoshi’s Final Messages Leave Tantalizing Clues to His Disappearance
30.10.2019
As Jameson Lopp once quipped, the smartest thing Satoshi did after creating Bitcoin was to disappear. The question isn’t ‘why did Satoshi disappear?’ but rather ‘why then?’ Was Satoshi’s departure in early 2011 scheduled long in advance, or did unforeseen events...
The Landscape of Cross-Platform App Development
25.10.2019
I don't track this stuff very well, but I get it. If you want a native app for Android and iOS, it sure would be nice to only have to write it once rather than two very different languages. Roughly double your reach without doubling the work. More and more of these things are reaching into desktop...
What I Like About Writing Styles with Svelte
23.10.2019
There’s been a lot of well-deserved hype around Svelte recently, with the project accumulating over 24,000 GitHub stars. Arguably the simplest JavaScript framework out there, Svelte was written by Rich Harris, the developer behind Rollup. There’s a lot to like about Svelte (performance, built-in...
‘I’d Rather Have Bananas’: Tech Billionaire Mark Cuban on Bitcoin
30.9.2019
Billionaire technology investor Mark Cuban says that he would be happier owning bananas than Bitcoin
Random Notes from a JAMstack Roundtable
23.9.2019
I hosted a JAMstack roundtable discussion at Web Unleashed this past weekend. Just a few random notes from that experience.
I was surprised at first that there really is confusion that the "M" in Jamstack stands for "Markdown" (the language that compiles to HTML) rather than "Markup" (the "M"...
Jack Dorsey Announces “No Plans Of TwitCoin Launch” Rather Supports Bitcoin As Internet Currency
8.9.2019
Libra, the highly-anticipated cryptocurrency project of social media giant-Facebook, has brought quite a lot of criticism to its credit despite its popular nametag. Recently, Twitter and Square CEO, Jack Dorsey, made a statement which came as a surprise for the blockchain enthusiasts. The social...
Other Ways to SPAs
21.8.2019
That rhymed lolz.
I mentioned on a podcast the other day that I sorta think WordPress should ship with Turbolinks. It's a rather simple premise:
Build a server-rendered site.
Turbolinks intercepts clicks on same-origin links.
It uses AJAX for the HTML of the new page and replaces the current page...
Let’s Build a JAMstack E-Commerce Store with Netlify Functions
20.8.2019
A lot of people are confused about what JAMstack is. The acronym stands for JavaScript, APIs, and Markup, but truly, JAMstack doesn’t have to include all three. What defines JAMstack is that it’s served without web servers. If you consider the history of computing, this type of abstraction isn’t...
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...
CSS Animation Libraries
22.7.2019
There are an awful lot of libraries that want to help you animate things on the web. These aren't really libraries that help you with the syntax or the technology of animations, but rather are grab-and-use as-is libraries. Want to apply a class like "animate-flip-up" and watch an element, uhhh...
Position Sticky and Table Headers
13.7.2019
You can't position: sticky; a <thead>. Nor a <tr>. But you can sticky a <th>, which means you can make sticky headers inside a regular ol' <table>. This is tricky stuff, because if you didn't know this weird quirk, it would be hard to blame you. It makes way more...
Bitcoin Price Analysis: Bitcoin expected to trade above $12,000; rather tumbles below $11,500
8.7.2019
Bitcoin is becoming the one of the most go-to investment avenues in the recent times of digitalization. Bitcoin has always left its investors shockingly surprised by plunging as low as $65.53 and surging as high as $20,000 in a decade since its inception. Bitcoin and crypto lovers have never...
Tips for rolling your own lazy loading
1.7.2019
You may have heard (or even issued the call) that “we can just use lazy loading!” when looking for a way to slim down a particularly heavy web page.
Lazy loading is a popular technique for gradually requesting images as they come into view, rather than all at once after the HTML of the page...
An In-Depth Look at Iris, a New Decentralized Social Network
13.6.2019
Cryptocurrency advocates have been discussing a new social media platform designed by one of Bitcoin’s earliest developers Martti Malmi, otherwise known as Sirius. The project he designed, called Iris, is a social networking application that stores and indexes everything on the user’s...
Renewed Market Growth Has Sparked Demand for Crypto-Backed Loans
10.5.2019
With cryptocurrency markets back to life, hodling sounds like a smart strategy once again. Cryptocurrency owners are now more likely to pledge coins to borrow fiat if they need it, rather than sell their appreciating digital assets. The spread of crypto-backed loans could also be a good indicator...
Netlify Functions for Sending Emails
23.4.2019
Let's say you're rocking a JAMstack-style site (no server-side languages in use), but you want to do something rather dynamic like send an email. Not a problem! That's the whole point of JAMstack. It's not just static hosting. It's that plus doing anything else you wanna do through JavaScript...
A Website is a Car and Not a Book
15.4.2019
I’ve been wondering for a good long while why it feels like web design and development isn’t respected as much as native app development= and why the front-end role in many organizations is seen as a nice-to-have rather than a vital part of the business. Why is it so hard to see that this gig...
Differential Serving
1.4.2019
There is "futuristic" JavaScript that we can write. "Stage 0" refers to ideas for the JavaScript language that are still proposals. Still, someone might turn that idea into a Babel plugin and it could compile into code that can ship to any browser. For some of these lucky proposals, Stage 0 becomes...
Write Your First Service Worker in 5 Minutes
18.3.2019
What is a service worker? A service worker is a little file that will allow you to cache files and other assets on a user’s machine. How is this different from server-side caching? Because the assets are stored on a user’s machine, rather than a server, there is no need to go across...
Why I Write CSS in JavaScript
5.3.2019
I'm never going to tell you that writing your CSS in CSS (or some syntactic preprocessor) is a bad idea. I think you can be perfectly productive and performant without any tooling at all. But, I also think writing CSS in JavaScript is a good idea for component-based styles in codebases that build...