Search
Just Sharing My Gulpfile
11.12.2019
Seemingly out of the blue, the Gulp processing I had set up for this site started to have a race condition. I'd run my watch command, change some CSS, and the processing would sometimes leave behind some extra files that were meant to be cleaned up during the processing. Like the cleanup tasks...
Mining Chip Maker Ebang Next in Line to File for US IPO
6.12.2019
Ebang, the ASIC chip and mining rig manufacturer based in Hangzhou, China is allegedly filing for an initial public offering (IPO) in the U.S. following Canaan’s recent Nasdaq listing and Bitmain’s secret IPO filing. The world’s third-largest bitcoin mining hardware manufacturer...
US Judge Denies Customer’s Plea to Quash IRS Bitstamp Inquiry
28.11.2019
A Washington Western District Court judge has rejected petitioner William Zietzke’s appeal to stop the U.S. Internal Revenue Service (IRS) from accessing his Bitstamp trade data. An IRS summons invoked Zietzke to file a petition to quash the tax agency’s investigation into his private...
Weekly Platform News: Contrast Ratio Range, replaceAll Method, Native File System API
22.11.2019
In this week's roundup: Firefox's new contrast checker, a simpler way to lasso substrings in a string, and a new experimental API that will let apps fiddle with a user's local files.
Firefox shows the contrast ratio range for text on a multicolored background
According to Success Criterion 1.4.3...
The Surprising Reason Why Blockstack May File for an IPO
21.11.2019
Blockstack is currently evaluating how it will conduct its next token offering for general miners. An IPO is one of four options
Tether to File Motion With NYAG to Dismiss Class Action Lawsuit
15.11.2019
The company claims that plaintiffs cannot prove Tether transactions caused bitcoin’s surge or that damages were incurred
Kim Dotcom Token Sale Postponed Over ‘Regulatory Uncertainty’
6.11.2019
In 2017, Kim Dotcom, the founder of the now-defunct file hosting service Megaupload, revealed a similar service called K.im that planned to give anyone the ability to upload files, documents, code, videos, and music files and get paid in crypto for their work. Since then, Dotcom’s team...
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...
JAMstack Tools and The Spectrum of Classification
17.10.2019
With the wonderful world of JAMstack getting big, all the categories of services and tools that help it along are as important as ever. There are static site generators, headless CMSs, and static file hosts.
I think those classifications are handy, and help conversations along. But there is a point...
CFTC File Lawsuit Against $11M Ponzi-Like Cryptocurrency Scam
16.10.2019
The U.S. CFTC charged a Nevada company with violations relating to an $11 million Ponzi-like scam
IRS to Require 150 Million Tax Filers to Disclose Crypto Dealings
12.10.2019
The U.S. Internal Revenue Service (IRS) has unveiled a new draft tax form used by some 150 million people in the country to file tax returns. It has a section that requires them to answer whether they have received, sold, sent, exchanged, or acquired any financial interest in any cryptocurrencies...
Introducing Sass Modules
7.10.2019
Sass just launched a major new feature you might recognize from other languages: a module system. This is a big step forward for @import. one of the most-used Sass-features. While the current @import rule allows you to pull in third-party packages, and split your Sass into manageable "partials,"...
BitTorrent’s Decentralized File Sharing Protocol BTFS Launches Its Mainnet
2.10.2019
BitTorrent rolls out its decentralized file sharing protocol BitTorrent File System
Filtering Data Client-Side: Comparing CSS, jQuery, and React
24.9.2019
Say you have a list of 100 names:
<ul>
<li>Randy Hilpert</li>
<li>Peggie Jacobi</li>
<li>Ethelyn Nolan Sr.</li>
<!-- and then some -->
</ul>
...or file names, or phone numbers, or whatever. And you want to filter them...
This File-Sharing Dapp Shows How Blockstack and Ethereum Are Different
24.9.2019
The Blockstack dapp Envelop just launched a Chrome and Firefox extension for file-sharing. Here's why that matters
Automatically compress images on Pull Requests
19.9.2019
Sarah introduced us to GitHub Actions right after it dropped about a year ago. Now they have improved the feature and are touting its CI/CD abilities. Run tests, do deployment, do whatever stuff computers do! It's essentially a YAML file that says run this, then this, then this, etc., with...
Simplicity
12.9.2019
Earlier this week, Bastian Allgeier published some interesting thoughts about complexity in web development and how changing simple things can often feel far more difficult than they need to be:
You want to build a JS file? Please update Webpack first. Oh, that new version of Webpack is no longer...
Fast Static Sites with Netlify and AnyMod
12.9.2019
In about 10 minutes, we'll set up a workflow that makes static sites dead simple.
You'll get the following:
Free https
Free or cheap hosting
Build sites quickly
Edit with live reload
Edit when you’ve forgotten everything in 6 months
Start: signups
We can get all this by using Netlify (really...
Bitcoin Cash-Powered File Storage Concept Sparks Interest and Debate
7.9.2019
Bitcoin Cash (BCH) proponents were introduced to a new project called the Cashweb protocol on Friday. The blockchain file sharing scheme allows people to store and load arbitrary data to the BCH chain. While the new protocol still has “a long way to go,” the developer decided to share...
Creating a Maintainable Icon System with Sass
28.8.2019
One of my favorite ways of adding icons to a site is by including them as data URL background images to pseudo-elements (e.g. ::after) in my CSS. This technique offers several advantages:
They don't require any additional HTTP requests other than the CSS file.
Using the background-size property...