Search
The Ultimate Guide to Dark Mode for Email Marketers
7.1.2020
On the regular web (I suppose) we handle "dark mode" with the CSS prefers-color-scheme media query. But, and to nobody's surprise, it's way weirder in the land of HTML email. The weirdness is that across different email clients, they handle the dark mode thing differently, starting with the fact...
Multi-Thumb Sliders: Particular Two-Thumb Case
7.1.2020
This is a concept I first came across a few years back when Lea Verou wrote an article on it. Multi-range sliders have sadly been removed from the spec since, but something else that has happened in the meanwhile is that CSS got better — and so have I, so I recently decided to make my...
Adding Dynamic And Async Functionality To JAMstack Sites
2.1.2020
Jason Lengstorf:
Here’s an incomplete list of things that I’ve repeatedly heard people claim the JAMstack can’t handle that it definitely can:
Load data asynchronously
Handle processing files, such as manipulating images
Read from and write to a database
Handle user authentication and protect...
Quoting in HTML: Quotations, Citations, and Blockquotes
10.12.2019
It’s all too common to see the incorrect HTML used for quotes in markup. In this article, let’s dig into all this, looking at different situations and different HTML tags to handle those situations.
There are three major HTML elements involved...
Filtering Lists Dynamically With Vue on the Server Side is Easier Than You’d Think
4.12.2019
I recently attended the ARTIFACT conference in Austin, TX, and was inspired by a few talks about accessibility through the lens of site performance. It became clear to me that there is this tendency to rely on big JavaScript frameworks to handle the work — like React, Vue, and Angular — but that...
Justin Sun Takes A Dig At Ethereum, Says It Can’t Handle USDT Traffic, Urges Holders To Use TRON
21.9.2019
In a rather strange and unexpected tweet, founder and chief of TRON, Justin Sun wrote on Thursday that Ethereum couldn’t handle the traffic of USDT. He also urged USDT owners to use TRON instead, as it was free and offers instant transactions. #Ethereum can't handle $USDT's traffic &...
India Facing ‘Unprecedented’ Economic Slowdown, Extraordinary Steps Urged
26.8.2019
Many signs indicate that the Indian economy is under grave stress, affecting nearly all sectors. “India’s economy is in a deep mess,” due to initiatives such as demonetization and GST, some lawmakers say, as they urge the government to handle the situation “which...
Bitcoin’s Popular Twitter Handle Abandoned BCH for BTC?
20.8.2019
A screenshot of the new @Bitcoin page.
There’s hardly a single inhabitant of Cryptoland who is not aware of the clash between Bitcoin (BTC) and Bitcoin Cash (BCH), ever since (or likely even before), in 2017, BCH was created as a hard fork of BTC. However, an interesting and sudden thing happened...
Bitcoin Twitter Handle With 1 Million Followers Renounces Bitcoin Cash
20.8.2019
@Bitcoin Twitter account appears to embrace actual Bitcoin once again
Finally… A Post on Finally in Promises
16.7.2019
“When does finally fire in a JavaScript promise?” This is a question I was asked in a recent workshop and I thought I’d write up a little post to clear up any confusion.
The answer is, to quote Snape:
...always.
The basic structure is like this:
try {
// I’ll try to execute some code...
If you can build a site with WordPress.com, you should build your site on WordPress.com.
18.6.2019
That’s what I like to tell people. I’ve seen too many websites die off, often damaging the company along the way because the technical debt of hosting and maintaining the website is too much in the long term. For a few examples, there is the domain name itself to handle and the tricky DNS settings...
How to Invest in Cryptocurrency Without Worrying About Volatility
18.6.2019
Seeing the value of your portfolio fluctuating can keep you up at night or push you to sell when prices are low, especially in a fast moving market like cryptocurrency. Luckily, there are ways to mitigate that. Also Read: Bitcoin Cash Development Fund Receives Massive Support Use Dollar Cost...
Game of Thrones Quiz Game with React and GraphQL: Set up GraphQL Query For the Quiz Questions
17.6.2019
Now we’ll create a component to render the data in the 8base backend. This component will handle the fetching of data using GraphQL queries and will render the fetched data accordingly. To get star
Detect Responsive Screen Sizes in Angular
12.6.2019
Most of the time, we use CSS media queries to handle responsive, screen size changes to layout our content differently. However, there are times where CSS media queries alone isn't sufficient for t
How Much Adoption Can Bitcoin Handle Right Now?
25.5.2019
Source: iStock/da-kuk
Adoption is the holy grail of Bitcoin. However, as fantastic as large-scale adoption would be in theory, there remain serious questions as to whether Bitcoin and its blockchain can genuinely handle such adoption.
Because while Bitcoin has witnessed a number of significant...
The Simplest Ways to Handle HTML Includes
30.4.2019
It's extremely surprising to me that HTML has never had any way to include other HTML files within it. Nor does there seem to be anything on the horizon that addresses it. I'm talking about straight up includes, like taking a chunk of HTML and plopping it right into another. For example the...
Robotický skladník Handle od Boston Dynamics připomíná Tyrannosaura
31.3.2019
Robotický skladník Handle od Boston Dynamics připomíná Tyrannosaura
Using React Loadable for Code Splitting by Components and Routes
7.3.2019
In a bid to have web applications serve needs for different types of users, it’s likely that more code is required than it would be for one type of user so the app can handle and adapt to different scenarios and use cases, which lead to new features and functionalities. When this happens, it’s...
Did you know that CSS Custom Properties can handle images too?
27.2.2019
So you might be aware of CSS Custom Properties that let you set a variable, such as a theme color, and then apply it to multiple classes like this:
:root {
--theme: #777;
}
.alert {
background: var(—-theme);
}
.button {
background: var(—-theme);
}
Well, I had seen this pattern so often...
Using React and XState to Build a Sign In Form
24.1.2019
To make a sign in form with good UX requires UI state management, meaning we’d like to minimize the cognitive load to complete it and reduce the number of required user actions while making an intuitive experience. Think about it: even a relatively simple email and password sign in form needs...