Search
Crypto Mining Crunch Time – Bitcoin Halving Less Than 50 Days Away While Global Economy Shudders
24.3.2020
On or around May 13, the BTC network will see a block reward reduction as miners will go from getting 12.5 coins per block to 6.25 coins following the halving. The last time the protocol’s block reward halved was on July 9, 2016, and the global economy looked a whole lot different back then....
Different Favicon for Development
24.3.2020
I bet a lot of us tend to have the production website and the development website up simultaneously a lot. It's almost a developer cliché at this point to make some local change, refresh, refresh, refresh, refresh, and just not see the change, only to discover you were looking at the production...
Liquid Gold vs Digital Gold: Why Bitcoin Beats Oil in the Current Climate
23.3.2020
Extreme volatility. Sudden loss of value. A purported store of value. An economic hedge. An alternative to gold. On the face of it, bitcoin and oil have a lot in common. Both markets have been buffeted by the covid-19 economic downturn, but while bitcoin has stabilized, oil keeps plummeting. What...
15 Things to Improve Your Website Accessibility
17.3.2020
This is a really great list from Bruce. There is a lot of directly actionable stuff here. Send it around to your team and make it something that you all go through together.
Here's a little one that prodded me to finally fix...
Most screen readers allow the user to quickly see a list of links...
Sending Cash to Friends and Family Through Bitcoin ATMs Is Safer Than Crowding Bank Offices During Pandemic
16.3.2020
Transferring money over traditional channels may involve a lot of queuing in lines these days. Authorities around the world are trying to prevent large groups of people gathering in confined spaces to reduce the risk of transmitting the coronavirus infection. Remittances are a lifeline for people...
Market Update: Global Economy Jolts Bitcoin, Overall Crypto Cap Loses $50B
12.3.2020
Cryptocurrency markets are feeling a lot of pressure on Thursday, March 12, as the entire cryptoconomy has lost over $50 billion during the last three days. Digital asset prices dropped to the lowest levels since May 2019. Moreover, on five derivatives exchanges, more than $2.2 billion leveraged...
Why Are ‘Bitcoin Group’ and ‘Bitcoin Revolution’ Such Popular Searches on Google?
11.3.2020
Google searches can reveal a lot about the perception of the masses when it comes to bitcoin. This post examines two popular Google search terms in recent months and years, and seeks to explain why these terms continue to pop up, what knowledge can be gleaned by looking into them, and the effects...
Record Breaking Interest – Observing the Predictive Power of Bitcoin Futures Over BTC Spot Prices
29.2.2020
Bitcoin futures providers have been seeing a lot of action during the last two weeks as cryptocurrency markets have been extremely volatile. Data shows there’s been significant open interest on both retail and institutional bitcoin derivatives exchanges and Skew research noted bitcoin options...
Gutenberging
24.2.2020
It's been over a year since the big WordPress launch of Gutenberg, the new editor. It seems to me most of the controversy around it has died down. There has been enough time that the UX and accessibility of it have improved, and people are seeing the potential a lot more clearly. There ain't...
Justin Sun Sees Bitcoin at USD 100K by 2025, Holds 'A Lot' of ETH and XRP
24.2.2020
Justin Sun. Source: a video screenshot, Youtube, Praxis Media Group
Bitcoin (BTC) and most altcoins are in for a bull run in the next five years, said Justin Sun, founder of Tron (TRX), also sharing that he has quite a diversified portfolio.
As a guest on CNN, talking with Julia Chatterley,...
Do This to Improve Image Loading on Your Website
20.2.2020
Jen Simmons explains how to improve image loading by simply using width and height attributes. The issue is that there’s a lot of jank when an image is first loaded because an img will naturally have a height of 0 before the image asset has been successfully downloaded by the browser. Then it needs...
Treasury Secretary Mnuchin Gives Testimony on Cryptocurrency, New Regulations Rolling Out Soon
13.2.2020
U.S. Treasury Secretary Steven Mnuchin gave his testimony on cryptocurrency before the Senate Finance Committee on Wednesday. Mnuchin said crypto is a “crucial area” that the Treasury has spent a lot of time on. He also talked about stablecoins and announced that new crypto regulations...
2020 Stack
13.2.2020
In an article with the most clickbaity article ever, Joe Honton does a nice job of talking about the evolving landscape of web development. "Full-stack" perhaps had its day as a useful term, but since front-end development touches so many parts of the stack now, it's not a particularly useful term....
Altcoin Season Trending – LINK, XTZ, BSTX, HBAR Gain Up to 120% in 24h
12.2.2020
The last few days have shown bullish price activity across the list of top cryptocurrency markets. There’s been a lot of focus on coins like BTC, ETH, BCH, and EOS, but digital assets like HBAR (120%), STX (52%), XTZ (20%) and LINK (13%) have seen much larger gains this week. The cryptoconomy...
How to Fetch and Parse RSS Feeds in JavaScript
11.2.2020
Say you have an RSS feed like this one. The goal is to request that RSS feed, parse it, and do something useful with the data in it. RSS is XML, and XML is arguably not as easy to work with than JSON. While a lot of APIs offer JSON responses, it's less typical for RSS, although it does exist.
Let's...
Guillermo’s 2019 in Review
7.2.2020
Of all the tech-focused year-in-review posts I read, Guillermo Rauch's is my favorite. There is a lot in there, jumping from topics like modern architectures, high-fiving specific apps, and philosophical movements.
I'll pick one quote about the rise of "deploy previews":
A salient feature is...
Git Branch Autocompletion
4.2.2020
Naming git branches is something most of us have down to a science. My branch naming pattern is usually {issue number}-short-feature-description, though many developers prefer to lead with the description and end with the issue. Regardless of the pattern you use, having a feature like autocomplete...
How to Create an Animated Countdown Timer With HTML, CSS and JavaScript
3.2.2020
Have you ever needed a countdown timer on a project? For something like that, it might be natural to reach for a plugin, but it’s actually a lot more straightforward to make one than you might think and only requires the trifecta of HTML, CSS and JavaScript. Let’s make one together!
This is what...
Smaller HTML Payloads with Service Workers
31.1.2020
Short story: Philip Walton has a clever idea for using service workers to cache the top and bottom of HTML files, reducing a lot of network weight.
Longer thoughts: When you're building a really simple website, you can get away with literally writing raw HTML. It doesn't take long to need a...
Sticky Table of Contents with Scrolling Active States
30.1.2020
Say you have a two-column layout: a main column with content. Say it has a lot of content, with sections that requires scrolling. And let's toss in a sidebar column that is largely empty, such that you can safely put a position: sticky; table of contents over there for all that content in the main...