Search
Ethereum’s Wrapped Bitcoin Set to Eclipse Lightning Network Capacity
19.7.2019
Since the project launched a little over six months ago, Wrapped Bitcoin (WBTC) has roughly $5.9 million or 558 BTC locked into the system. At the rate WBTC’s token contract is climbing, the project is close to surpassing the Lightning Network’s capacity in the near future. Also read:...
What the Web Needs Now (and how ARTIFACT is here for it)
19.7.2019
I recently had the pleasure of joining Dave Rupert, Chris Coyier, and Chris Ferdinandi on the Shop Talk Show to talk about the upcoming ARTIFACT Conference (Austin, TX on Sept. 30 – Oct. 1, 2019). ARTIFACT is an intimate gathering of web designers and developers where we discuss ways to build...
Using GraphQL Playground with Gatsby
18.7.2019
I’m assuming most of you have already heard about Gatsby, and at least loosely know that it’s basically a static site generator for React sites. It generally runs like this:
Data Sources → Pull data from anywhere.
Build → Generate your website with React and GraphQL.
Deploy → Send the site to...
Get Peak WordPress Performance with Jetpack
18.7.2019
The irony of web performance is that the average page weight of a site continues to go up year after year, despite us being more aware of the problem and having more tools at our disposal to fight it than ever.
To paraphrase Seinfeld, "we know how to fight page weight issues; we just don't use...
Ignore Crypto Twitter – Life as a Nocoiner Isn’t That Bad
18.7.2019
Crypto Twitter (CT) is filled with half-witted commentary and price predictions by so-called luminaries, maximalists, and influencers. As the price of BTC has dropped to four figures, the usual tweets from CT thought leaders has insisted that this is the last chance to buy bitcoin for under...
Multi-Line Truncation with Pure CSS
17.7.2019
Truncating a single line of text if is fairly straightforward. Truncating multiple lines is a bit harder. Using just CSS (no JavaScript or server-side dancing) is nice for the simplicity. It's gotten a little easier lately since Firefox (since version 68) has started supporting the ultra-bizarre...
Improving Video Accessibility with WebVTT
17.7.2019
"The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect."
- Tim Berners-Lee
Accessibility is an important element of web development, and with the ever-growing prevalence of video content, the necessity for captioned content is growing...
Micro Frontends
17.7.2019
One random day not long ago, I started hearing joke after joke about "micro frontends" — sort of how I first learned about Toast. I didn't understand the source until asking around, which uncovered this article from Cam Jackson.
In this article we'll describe a recent trend of breaking...
SEC Begins Green-Lighting Token Offerings
17.7.2019
The U.S. Securities and Exchange Commission recently made history when it green-lighted two token offerings under Regulation A+. “This is the first time in U.S. history that a crypto token offering has received SEC qualification,” one of the two qualified issuers proclaims. Also read:...
A Peek at New Methods Coming to Promises
16.7.2019
Promises are one of the most celebrated features introduced to JavaScript. Having a native asynchronous artifact baked right into the language has opened up a new era, changing not only how we write code but also setting up the base for other freat APIs — like fetch!
Let's step back a moment...
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...
So, you think you’ve got project management nailed down
16.7.2019
(This is a sponsored post.)
Who needs a project manager? You're an organized person who can keep track of your own work, right?
Wrong.
Well, wrong if you're part of a team. The thing about being self-organized is that it's related to project management but not synonymous with it. Case in point:...
Complete Indian Draft Crypto Bill Leaked – Experts Weigh In
16.7.2019
A draft cryptocurrency bill for India has been leaked in full, but details of the bill have raised some questions. News.Bitcoin.com talked to a number of experts in the field who shared their analyses of the bill’s content and its implications on the Indian crypto industry. Also read:...
Bitcoin Cash Multi-Party Escrow, Retail Adoption, and Upgrade Discussions
15.7.2019
Another week has passed for the Bitcoin Cash (BCH) community and as usual, there’s been a bunch of announcements and developments. BCH supporters this week saw the release of a multi-party onchain escrow system, Ethereum cofounder Vitalik Buterin discussed using the BCH chain as a data layer...
Managing Multiple Backgrounds with Custom Properties
15.7.2019
One cool thing about CSS custom properties is that they can be a part of a value. Let's say you're using multiple backgrounds to pull off a a design. Each background will have its own color, image, repeat, position, etc. It can be verbose!
You have four images:
body {
background-position:
...
Build a Chat App Using React Hooks in 100 Lines of Code
15.7.2019
We’ve looked at React Hooks before, around here at CSS-Tricks. I have an article that introduces them as well that illustrates how to use them to create components through functions. Both articles are good high-level overviews about the way they work, but they open up a lot of possibilities...
Bitcoin Cash Merchant Adoption Grows and Exchange Supports BCH in the Weekly Video Update
15.7.2019
Businesses around the world continue to adopt bitcoin cash as a payment method and an exchange adds support for trading BCH. Watch these and other developments discussed in this week’s video update hosted by Roger Ver on Bitcoin.com’s Youtube channel. Also Read: Win 2019 Rugby World...
South African Payment Gateway Drops BTC Over Fees and Network Congestion
13.7.2019
On July 12, South African payment gateway service Payfast announced the company is dropping bitcoin core (BTC) payments due to network congestion and high fees. Payfast emphasized that BTC has a number of limitations and design flaws which makes it an “impractical substitute for cash.”...
Thailand Approves 4 New Cryptocurrency Service Providers
13.7.2019
The Thai Securities and Exchange Commission has approved four new crypto business operators to legally operate in the country. In addition to licensing a new crypto exchange, the government has officially approved the country’s first three digital token portals. Meanwhile, new rules...
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...