Search
Record for OVR NFTs: 5,000 OVRLand Sold Every Day
15.3.2021
OVRLand is selling around 5,000 different NFTs every day. In total, OVR has sold 60,000 NFTs since its launch on November 30th. Meanwhile, the token has also reached the $1 mark. Each OVRLand is essentially an ERC721 token in which there is a 3D environment that can host games, events...
MDN on GitHub
14.12.2020
Looks like all the content of MDN is on GitHub now. That’s pretty rad. That’s been the public plan for a while. Chris Mills:
We will be using GitHub’s contribution tools and features, essentially moving MDN from a Wiki model to a pull request (PR) model. This is so much better...
Bolivia Essentially Banned Crypto but Blockchain Advocates Are Pushing Back
4.12.2020
Bolivia is one of the rare countries that has essentially banned cryptocurrency, but the nation's blockchain advocates aren't giving up
How to Conditionally Add Attributes to Objects
16.10.2020
JavaScript is full of tricks that you don’t know you want until you … want … them. Or maybe just until you see them. One trick I recently realized was conditionally adding attributes to React elements. Of course this trick essentially boils down to conditionally adding properties...
Fed Chairman Claims ‘Now Is Not the Time’ to Worry About the Federal Budget
7.10.2020
According to the Federal Reserve Chairman, Jerome Powell, the road to economic recovery is far from over and the Covid-19 pandemic has fueled the tragedy. During his speech at the National Association for Business Economics annual meeting, Powell highlighted that the federal budget was essentially...
On the Web Share API
6.10.2020
I think the Web Share API is very cool (here’s our coverage). In a nutshell, it taps into the native sharing features on whatever platform you’re on, if that platform supports it. So essentially…
I like this:
Web Share API activated on iOS
A heck of a lot more than these...
Styling Complex Labels
5.10.2020
Danielle Romo covers the HTML pattern you need when you have a wordy <label> with fancy styling for an <input type="radio">.
The trick? The ol’ <span class="hidden-visually"> that contains the label that you want to be read, and a <span aria-hidden="true"> with...
Re-Mining Simulation Shows Satoshi Used a Single High-End PC to Mine 1.1M Bitcoin
23.8.2020
Cryptocurrency advocates have been recently discussing the mysterious Bitcoin inventor Satoshi Nakamoto as RSK’s chief scientist, Sergio Dermain Lerner, published a paper called “The Patoshi Mining Machine.” Essentially, Lerner simulated Satoshi’s mining experience....
How to Earn Interest with Bitcoin
5.8.2020
When I was young I remember looking at my bank book and seeing nice interest payments for cash I had in the bank. Fast forward to today and banks are giving essentially nothing for interest — your money just sits there collecting dust. In an ideal world you could put it into the stock market...
Triple-Entry Bookkeeping: How Satoshi Nakamoto Solved the Byzantine Generals’ Problem
3.8.2020
In 2008, Satoshi Nakamoto essentially solved the infamous computational issue called the “Byzantine generals’ problem” or the “Byzantine Fault.” Throughout the history of man, people used ledgers to record economic transactions and property ownership. A ledger is often...
The GitHub Profile Trick
28.7.2020
Monica Powell shared a really cool trick the other day:
The profile README is created by creating a new repository that’s the same name as your username. For example, my GitHub username is m0nica so I created a new repository with the name m0nica.
Now the README.md from that repo is essentially...
Quick Tips for High Contrast Mode
27.6.2020
Sarah Higley has some CSS tricks up her sleeve for dealing with High Contrast Mode on Windows, which I learned is referred to as WHCM.
Here’s the first trick:
[…] if the default CSS outline property doesn’t give you the visual effect you want [in WHCM] for focus states...
Grid for layout, flexbox for components
26.6.2020
When should we reach for CSS grid and when should we use flexbox? Rachel Andrew wrote about this very conundrum way back in 2016:
Flexbox is essentially for laying out items in a single dimension – in a row OR a column. Grid is for layout of items in two dimensions – rows AND columns.
Ahmad...
Meet Mistcoin – The First Mineable SLP Token Implementation Launched on Bitcoin Cash
22.6.2020
Bitcoin Cash proponents have been introduced to a new project built using the Simple Ledger Protocol (SLP) framework called mistcoin (MIST). The new token is essentially the first mineable implementation of colored coins on Bitcoin Cash. Mist allows participants to mine the SLP tokens “using...
Playing With (Fake) Container Queries With watched-box & resizeasaurus
5.5.2020
Heydon’s <watched-box> is a damn fantastic tool. It’s a custom element that essentially does container queries by way of class names that get added to the box based on size breakpoints that are calculated with ResizeObserver. It’s like a cleaner version of what Philip...
‘A Drop-in Replacement for ABC’ – BCH Devs Release Bitcoin Cash Node Software
28.2.2020
On February 27, a group of developers behind the Bitcoin Cash Node implementation released the first version of the project’s codebase. The new client is essentially a drop-in replacement for Bitcoin ABC 0.21.0, as the code aims to disable the Infrastructure Funding Proposal (IFP). Also Read:...
wpaudit.site
24.2.2020
A big checklist of things you could/should be doing to make your website the best it can be. 80% of which is a good idea for any website, not just a WordPress website.
I'm linking to it because I like how plain language it is, and because it's a good example of how giving something away helps more...
wpaudit.site
24.2.2020
A big checklist of things you could/should be doing to make your website the best it can be. 80% of which is a good idea for any website, not just a WordPress website.
I'm linking to it because I like how plain language it is, and because it's a good example of how giving something away helps more...
Understanding Defi Flash Loans: Complex Attacks, Inflation and Composable Systems
23.2.2020
Two recent flash loans on the defi platform Bzx have started a fierce debate about the subject of using uncollateralized loans in a quick trade. Essentially these flash loans are providing people with the ability to borrow crypto without relinquishing any collateral. The scheme was used to exploit...
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...