Search
How to Detect Text in Images
11.6.2019
Images are a great way to communicate without text but oftentimes images are used/abused to spread text within social media and advertisements. Text in images also presents an accessibility issue. The truth is that it’s important, for any number of reasons, to be able to detect text in image...
Crypto Platform Says It Aims to Solve Bitcoin Scalability Issue
10.6.2019
A crypto project is trying to solve bitcoin scalability issues by increasing the block size limit. The new platform enables a higher speed of transactions per second and secures the blockchain from attacks #SPONSORED
Monero Price Analysis: Will The Development Team Be Able to Overcome the Scalability Issue?
6.6.2019
Monero and Arweave to Validate New Proof-of-Work Algorithm. Recently, the Monero (XMR) team announced for the phasing out of long payment IDs. These IDs are detrimental to privacy and a source of negative user experience. The team further recommended to the services an upgrade to sub-addresses...
IRS Plans to Issue Guidance on Virtual Currency Taxation
21.5.2019
Internal Revenue Service (IRS) commissioner Charles Rettig has explained to U.S. representatives that the tax department plans to issue clearer guidance toward cryptocurrency taxation soon. Since 2014, Americans have been asking the tax agency for better clarification in regard to official...
IRS Says It Will ‘Soon’ Issue Crypto Tax Guidance in First Since 2014
20.5.2019
The Internal Revenue Service is working on its first tax guidance for cryptocurrency since 2014, the agency's commissioner told a lawmaker Monday
The “Inside” Problem
20.5.2019
So, you're working on a design. You need a full-width container element because the design has a background-color that goes from edge-to-edge horizontally. But the content inside doesn’t necessarily need to be edge-to-edge. You want to:
Limit the width (for large screens)
Pad the edges
Center...
Weekly news: PWA Issue on iOS, Performance Culture, Anti-Tracking in Browsers
17.5.2019
In this week's news: resolving an issue when restarting progressive web apps in iOS, why The Telegraph now vets all scripts before they make it to their codebase, and Microsoft plans to add tracking prevention to the Edge browser.
The post Weekly news: PWA Issue on iOS, Performance Culture...
BLOC Platform Enters Into Strategic Partnership With Binance To Issue MDAB Token
14.5.2019
DLT based funding platform BLOC has entered in strategic partnership with Binance to issue its native token MDAB on the Binance Chain. The announcement came on Monday via an official tweet. Excited to announce we have committed to a strategic partnership with @Binance for the issuance...
Naming things to improve accessibility
2.5.2019
I like the this wrap-up statement from Hidde de Vries:
In modern browsers, our markup becomes an accessibility tree that ultimately informs what our interface looks like to assistive technologies. It doesn’t matter as much whether you’ve written this markup:
in a .html file
in Twig, Handlebars...
Fixed Headers, On-Page Links, and Overlapping Content, Oh My!
3.4.2019
Let's take a basic on-page link:
<a href="#section-two">Section Two</a>
When clicked, the browser will scroll itself to the element with that ID: <section id="section-two"></section>. A browser feature as old as browsers themselves, just about.
But as soon as...
Yet Another JavaScript Framework
1.4.2019
On March 6, 2018, a new bug was added to the official Mozilla Firefox browser bug tracker. A developer had noticed an issue with Mozilla's nightly build. The report noted that a 14-day weather forecast widget typically featured on a German website had all of a sudden broken and disappeared. Nothing...
Pet Stablecoins: Why Some Banks Issue Their Own Digital Tokens, While Others Don’t
20.3.2019
Now that the JPM Coin is out, more banks are looking into issuing their own digital tokens. Nevertheless, some players — like Citigroup — are dropping the idea in favor of more traditional remittance methods
Dealing with overflow and position: sticky;
25.2.2019
Any overflow value other than visible and no height is the enemy of child elements with position: sticky;. It's like that element is ready to stick when the parent scrolls, but it never does because the height is unconstrained. Adding a fixed height can solve the issue, but that's not always...
Blobs!
21.2.2019
I was recently a guest editor for an issue of Bizarro Devs. It's a great newsletter! Go sign up! I put in a bunch of links around blobs. Like those weird squishy random shapes that are so "in" right now. Here are those links as well. I'm always a fan of publishing stuff I write ;)
Blobs! Blobs...
Avoiding those dang cannot read property of undefined errors
13.2.2019
Uncaught TypeError: Cannot read property 'foo' of undefined. The dreaded error we all hit at some point in JavaScript development. Could be an empty state from an API that returns differently than you expected. Could be something else. We don’t know because the error itself is so general...
React’s Experimental Suspense API Will Rock for Fallback UI During Data Fetches
2.2.2019
Most web applications built today receive data from an API. When fetching that data, we have to take certain situations into consideration where the data might not have been received. Perhaps it was a lost connection. Maybe it was the endpoint was changed. Who knows. Whatever the issue, it's...
Better rendering for variable fonts
26.6.2018
I was messing around with a variable font the other day and noticed this weird rendering issue in the latest version of Chrome where certain parts of letterforms were clipping into each other in a really weird way. Thankfully, though, Stephen Nixon has come to the rescue with a temporary hack...