Search
Last Month Casascius Owners Redeemed the Highest Number of Physical Bitcoins in 3 Years
3.12.2020
On November 30, 2020, bitcoin crossed an all-time price high on a few global exchanges and between spot and derivatives markets there’s been a lot of action. One metric people didn’t notice was the fact that November 2020 saw the most number of redeemed Casascius physical bitcoins...
Earnfinance Is a Powerful DeFi Platform for Staking, Farming and Borrowing – YFE Presale Is Live
30.11.2020
PRESS RELEASE. What is yield farming? Yield farming, also referred to as liquidity mining, is a way to generate rewards with cryptocurrency holdings. In simple terms, it means locking up cryptocurrencies and getting rewards. In some sense, yield farming can be paralleled with staking. However...
console.log({ myVariable });
19.11.2020
I think this might be my most popular tweet of all time, but I’m not sure how to verify that these days. I’ll restate this neat little trick here because blogging is cool and fun.
I used to do this a lot while debugging JavaScript:
console.log("myVariable: ", myVariable);
But now I...
Copyediting with Semantic HTML
17.11.2020
Tracking changes is a quintessential copyediting feature for comparing versions of content. While we’re used to tracking changes in a word processing document, we actually have HTML elements capable of that. There are a lot of elements that we can use for this process. The main ones we’ll look...
Logical layout enhancements with flow-relative shorthands
16.11.2020
Admission: I’ve never worked on a website that was in anything other than English. I have worked on websites that were translated by other teams, but I didn’t have much to do with it. I do, however, spend a lot of time thinking in terms of block-level and inline-level elements....
DealDefi Network Presale is Now Open to the Public
16.11.2020
PRESS RELEASE. The DealDefi network is a scalable heterogeneous blockchain for lending/borrowing & marketplace decentralized finance. The DealDefi Network prides itself in four major unique features; – Minimum or no gas fee on transactions, decentralization, privacy and fast/instant...
Calling Tops and Bottoms: 2020’s Most Popular Bitcoin Traders and Analysts
15.11.2020
Bitcoin and cryptocurrency trading is quite popular these days. With the price upswings and volatility in 2020, crypto traders have made and lost a lot of money. In the last few years, a number of digital currency enthusiasts have been attracted to professional traders and analysts routinely...
How Film School Helped Me Make Better User Experiences
12.11.2020
Recently, I finished a sixty-day sprint where I posted hand-coded zombie themed CSS animation every day. I learned a lot, but it also took me back to film school and reminded me of so many things I learned about storytelling, cinematography, and art.
Turns out that much of what I learned back then...
Libraries for SVG Drawing Animations
11.11.2020
In 2013, Jake Archibald introduced this cool trick of animating an SVG path to look like it’s drawing itself. It’s 2020 now, and the trick is still popular. I’ve seen it on a lot of websites I’ve visited recently. I, too, feature an animated SVG loader on my website using one of the libraries I’ll...
Stanley Druckenmiller Owns Bitcoin, Calls It Attractive Store of Value
10.11.2020
Billionaire investor Stanley Druckenmiller has revealed that he owns bitcoin, calling it an asset class that has a lot of attraction as a store of value and could be a better investment than gold. Stan Druckenmiller Owns Bitcoin Stanley Druckenmiller revealed on Monday that he owns bitcoin...
A Continuous Integration and Deployment Setup with CircleCI and Coveralls
9.11.2020
Continuous Integration (CI) and Continuous Deployment (CD) are crucial development practices, especially for teams. Every project is prone to error, regardless of the size. But when there is a CI/CD process set up with well-written tests, those errors are a lot easier to find and fix.
In this...
Bidirectional scrolling: what’s not to like?
6.11.2020
Some baby bear thinking from Adam Silver.
Too hot:
[On horizontal scrolling, like Netflix] This pattern is accessible, responsive and consistent across screen sizes. And it’s pretty easy to implement.
Too cold:
That’s a lot of pros for a pattern that in reality has some critical...
How to Automate Project Versioning and Releases with Continuous Deployment
2.11.2020
Having a semantically versioned software will help you easily maintain and communicate changes in your software. Doing this is not easy. Even after manually merging the PR, tagging the commit, and pushing the release, you still have to write release notes. There are a lot of different steps,...
Bitcoin Whales Just Split Up $5.5B Into Smaller Wallets: Flipside Crypto
27.10.2020
Clearly the recent increase in the price of Bitcoin caused accounts with a lot of BTC to do something. ButContinue Reading
The post Bitcoin Whales Just Split Up $5.5B Into Smaller Wallets: Flipside Crypto appeared first on CoinMarketCap Blog
$250 Trillion in Assets Looking for Ideal Store of Value: A Bull Case for Bitcoin
26.10.2020
The CEO of Nasdaq-listed billion-dollar company Microstrategy has made a strong bull case for bitcoin. He says there is a $250 trillion ocean of assets looking for the ideal store a value right now and bitcoin is a better store of value than gold or tech stocks, so “a lot of that monetary...
Filecoin Miners Start a Strike – FIL Validators Claim the Project’s Economic Model Is Not Working
19.10.2020
The Filecoin project has surely seen a lot of hype but during the last few weeks before the launch, the cooperative digital storage crypto project has been criticized a great deal. This weekend a few Filecoin miners have been on strike and claim the economic model is not working out for them. Just...
187,000 BTC Drained: Over $2 Billion in Bitcoin Leave the Top Exchanges Since June
17.10.2020
Cryptocurrency reserves held on digital asset exchanges have been dropping to new lows, as some of the top exchanges have seen significant bitcoin reserve balance drops. A few months ago trading platforms had a lot more bitcoin reserves on hand and onchain data shows a few exchanges have seen...
The :focus-visible Trick
16.10.2020
Always worth repeating: all interactive elements should have a focus style. That way, a keyboard user can tell when they have moved focus to that element.
But if you use :focus alone for this, it has a side effect that a lot of people don’t like. It means that when you click (with a mouse)...
Let’s Create Our Own Authentication API with Nodejs and GraphQL
13.10.2020
Authentication is one of the most challenging tasks for developers just starting with GraphQL. There are a lot of technical considerations, including what ORM would be easy to set up, how to generate secure tokens and hash passwords, and even what HTTP library to use and how to use it. 
In...
Using JavaScript to Adjust Saturation and Brightness of RGB Colors
6.10.2020
Lately I’ve been taking a look into designing with color (or “colour” as we spell it where I’m from in New Zealand). Looking at Adam Wathan and Steve Schroger’s advice on the subject, we find that we’re going to need more than just five nice looking hex codes from a color palette...