Search
Bitcoin Cash House Ghana Finds Liquidity Provider, Seeks to Partner With Mobile Money Services
21.2.2020
Bitcoin Cash House Ghana has announced they’ve found a liquidity provider for converting between BCH and Ghanaian cedi, and are now preparing to furnish their building and move in, preparing for official launch on March 1. A new read.cash post from organizer Kousha detailed the status of...
BCH Funding Debate: Developers Plan to Launch IFP-Free Version of Bitcoin ABC
20.2.2020
On February 19, a group of well known software developers announced the launch of a new Bitcoin Cash full node with the Infrastructure Funding Plan (IFP) removed from the codebase. The news was announced on the read.cash platform by the developer Freetrader who told the public that strong demand...
Animate SVG Path Changes in CSS
20.2.2020
Every once in a while I'm motivated to attempt to draw some shapes with <path>, the all-powerful drawing syntax of SVG. I only understand a fragment of what it all can do, but I know enough to be dangerous. All the straight-line syntax commands (like L) are pretty straightforward and I find...
Add Background Colors to SVGs Using the “rect” Element
20.2.2020
The advantages of using SVGs in web development are well known. SVGs are small in size, can be made quite accessible, are scalable while maintaining their quality, and can be animated. Still, there is a learning curve. Things, like the syntax of SVG, can be a little tricky and having to hand-alter...
Seen by Indeed
20.2.2020
(This is a sponsored post.)
Are you looking for a tech job where you clock in, or for a career where you’ll be seen?
Seen by Indeed is a matching service for software engineers, product managers and other tech pros that sorts through thousands of companies -- like Twilio, Overstock, VRBO,...
Bitcoin Superstar and Bitcoin Era – The Latest Two Faces of the Same Scam
20.2.2020
With the rising price and popularity of bitcoin come numerous scams. Bitcoin Superstar and Bitcoin Era are two investment schemes that have recently gained much attention. News.Bitcoin.com took a look at them, and it did not take much to spot how similar they are to each other and several other...
Footnote Characters
20.2.2020
They are special superset numbers that are sometimes perfect for footnotes. Here they are:
¹ ² ³ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹
I generally prefer to superscript the number myself, like:
<pThis next word<sup1</suphas a footnote.</p
You'd probably add an anchor link around that as well to link to an...
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...
monica.css
20.2.2020
Monica Dinculescu:
I don’t want every possible padding and margin and colour and flexbox configuration in the world. I just want the ones that I know I end up using in every project. So here is monica.css: my very own CSS framework, which I copy paste at the beginning of every CSS file and take...
Defi for Bitcoin: Collateral Peg Platform Provides Noncustodial BTC Lending on Ethereum
19.2.2020
During the second week of February, a new project called tBTC was unveiled that is similar to the Wrapped Bitcoin (WBTC) created with the Ethereum network. However, the tBTC effort claims to be a noncustodial application that allows users to deposit BTC, mint tBTC, and lend it with interest. Also...
Understanding Web Accessibility Color Contrast Guidelines and Ratios
19.2.2020
What should you do when you get a complaint about the color contrast in your web design? It might seem perfectly fine to you because you’re able to read content throughout the site, but to someone else, it might be a totally different experience. How can put yourself in that person’s shoes...
Same HTML, Different CSS
19.2.2020
Ahmad Shadeed covers the idea of a card component that has a fixed set of semantic HTML with some BEMy classes on it. There is a title, author, image, and tags. Then he redesigns the card into five totally different designs without touching any of the HTML just the CSS.
If this is an ah-ha moment...
Market Update: Bitcoin Halving Hype, Golden Cross Signals, and GBTC’s 41% Premium
19.2.2020
Cryptocurrency markets have seen fresh gains on Wednesday after the slight pullback that started two days prior. Most of the top 10 digital currencies by market cap have gained between 4-8% and the entire market valuation of all cryptos has hovered between $295-300 billion. Also Read: Voluntary...
Mike Bloomberg’s 2020 Finance Policy Proposes Strict Bitcoin Regulations
19.2.2020
The 2020 U.S. Presidential candidate Michael Bloomberg addressed the subject of cryptocurrencies and initial coin offerings (ICO) in his recently published Financial Reform Policy. Bloomberg wants more “regulatory oversight” when it comes to this promising technology, claiming he sees...
Centering a div That Maintains Aspect-Ratio When There’s Body Margin
18.2.2020
Andrew Welch had a little CSS challenge the other day to make an ordinary div:
• centered vertically + horizontally• scales to fit the viewport w/ a margin around it• maintains an arbitrary aspect ratio• No JS
There's a video in that tweet if it helps you visualize the challenge. I saw Paul...
Solving Sticky Hover States with @media (hover: hover)
18.2.2020
Mezo Istvan does a good job of covering the problem and a solution to it in a blog post on Medium¹.
If you tap on something that has a :hover state but you don't leave the page then, on a mobile device, there is a chance that :hover state "sticks." You'll see this with stuff like jump-links used...
Voluntary Financing: Bitcoin Cash Devs Reveal Noncustodial Funding App Flipstarter
18.2.2020
On February 15, a user on the read.cash blog site announced the development of a new Bitcoin Cash fundraising project called Flipstarter.cash. The developers behind the platform highlighted the recent questions people have been asking about voluntary funding of the Bitcoin Cash commons....
Web Component for a Code Block
18.2.2020
We'll get to that, but first, a long-winded introduction.
I'm still not in a confident place knowing a good time to use native web components. The templating isn't particularly robust, so that doesn't draw me in. There is no state management, and I like having standard ways of handling that. If...
Moving from Vanilla JavaScript to a Reusable Vue Component
17.2.2020
I recently wrote an article explaining how you can create a countdown timer using HTML, CSS and JavaScript. Now, let’s look at how we can make that a reusable component by porting it into Vue using basic features that the framework provides.
Why do this...
Blame the implementation, not the technique
17.2.2020
I'm not sure we've gotten much better at this since Tim Kadlec wrote this in 2012:
Stop me if you’ve heard this one before.
“Responsive design is bad for performance.”“User agent detection is bad. Don’t segment the web.”“Hybrid apps don’t work as well as native apps.”“CSS preprocessors shouldn’t...