Search
Bank of Russia wants to block ‘emotional’ and suspicious crypto activity
15.9.2021
The Russian central bank is planning to slow down payments to crypto exchanges and combat suspicious crypto activity
Solana Full Service Expected Soon, SOL Recovering
15.9.2021
west reached at the start of September 15, SOL had dropped 14%. It has since then recovered nearly 9%.SOL price chart:Source: coingecko.comSolana validators have successfully restarted its Mainnet Beta after nearly a day of downtime, expecting block explorers, dapps (decentralized appl
On the `dl`
15.9.2021
Blogging about HTML elements¹? *chefs kiss*
Here’s Ben Myers on the (aptly described) “underrated” Definition List (<dl>) element in HTML:
You might have also seen lists of name–value pairs to describe lodging amenities, or to list
…
The post On the `dl` appeared...
Solana Block Production Stalls for Hours, SOL Holders Unable to Transact, Validators Deploy a Fix
14.9.2021
According to reports on social media, crypto forums, onchain metrics, and the Solana Status Twitter account indicate that Solana’s blockchain has stalled. Solana mainnet-beta suffered a four-hour downtime and is still down after a technical glitch. Solana’s Network Stalls In recent...
Your Boy’s Here, So Let’s Get Real
14.9.2021
What’s up, Kotaku? I’m Jeremy Winslow, your second Black staff writer, and while I hustled for this spot and know that I earned it through years of hard work and dedication, part of me still can’t believe I actually made it here.Read more
Bank of Russia Recommends Banks to Block Cards, Wallets Used to Transact With Crypto Exchangers
14.9.2021
The central bank of Russia has advised commercial banks on how to identify and block cards and wallet accounts used by shady businesses. Along with illegal forex dealers and financial pyramids, the regulator has also listed crypto exchangers as suspicious entities. New AML Recommendations by Bank...
Russian Central Bank Tells Domestic Banks to Block Crypto Exchange Transactions
13.9.2021
gal business activities” such as “cryptocurrency exchanges,” which it clumped together in the same group as “online casinos and lotteries,” “financial pyramid schemes” and forex dealers.The central bank said it wanted domestic financial institutions to “block transactions” and “completely sto
Not dead yet: Bitcoin network records 700,000th block as adoption grows
11.9.2021
Block after block, Bitcoin highlights the power of programmable monetary policy even as calls for its death grow louder
“Just in Time” CSS
10.9.2021
I believe acss.io is the first usage of “Atomic CSS” where the point of it is to be a compiler. You write CSS like this:
<div class="C(#fff) P(20px)"text
</div
And it will generate CSS like:
.C\(\#333\) {
color: #333;
…
The post “Just in Time” CSS appeared...
The Latest Nintendo Lego Set Is Super Mario 64 Block
9.9.2021
Get ready to revisit Super Mario 64 with the Lego’s newly announced set. Say hello to Lego Super Mario 64 Block. On the outside, it’s a large Question Block, but inside, there are four different Super Mario 64 levels: Peach’s Castle, Bob-omb Battlefield, Cool, Cool Mountain and Lethal Lava Trouble....
Hashrate Follows Price: Bitcoin Hashrate Jumps 92% in 2 Months, Difficulty Expected to Increase in 4 Days
3.9.2021
Bitcoin prices have improved a great deal in recent times and the network’s hashrate remains higher than it was 67 days ago when it tapped a low of 69 exahash on June 28. Today, statistics show Bitcoin’s hashrate has increased more than 92% since then and the network is due...
New research claims 21 accounts pumped the $4.4B EOS ICO with wash trades
3.9.2021
New research asserts that EOS and ETH were wash-traded on exchanges to manipulate prices during EOS’s multi-billion dollar ICO
I completely ignored the front-end development scene for 6 months. It was fine.
3.9.2021
Have you ever fretted that front-end web development moves so fast that if you stepped away for a while, you’d be lost coming back? Rachel Smith has:
The hectic pace of needing to learn one thing after the next
…
The post I completely ignored the front-end development scene for...
What I Wish I Knew About CSS When Starting Out As A Front-Ender
2.9.2021
Nathan Hardy shares when things “clicked”:
Reflecting back on this time, I think there are a few key concepts that were vital to things finally all making sense and fitting together. These were:
• The Box Model (e.g. box-sizing, height, width, margin, padding)•...
You want enabling CSS selectors, not disabling ones
31.8.2021
I think this is good advice from Silvestar Bistrović:
An enabling selector is what I call a selector that does a job without disabling the particular rule.
The classic example is applying margin to everything, only to have to remove …
The post You want enabling CSS selectors, not disabling...
British Auction House Christie’s to Present Full Set of NFT Curio Cards on October 1
31.8.2021
The British auction house Christie’s has been immersed in the non-fungible token (NFT) art and collectibles industry for quite some time. Christie’s has auctioned blockchain-backed items like Block 21 of “Portraits of a Mind,” Cryptopunks, and Beeple’s NFT that...
One Way to Convert Code Indentation
26.8.2021
A question:
If you copy a code sample that uses two-space indentation and you want to convert it to four-space indentation, what’s the *fastest* and easiest option?
Matt Stauffer, Twitter
I wrote about doing this in Sublime Text a …
The post One Way to Convert Code Indentation...
Architecting With Next.js
24.8.2021
(This is a sponsored post.)
Free event hosted by Netlify coming up next week (Wednesday, August 25th): Architecting with Next.js. It’s just a little half-day thing. No brainer.
Join us for a special event where we’ll highlight business
…
The post Architecting With Next.js...
Detecting Media Query Support in CSS and JavaScript
23.8.2021
You can’t just do @media (prefers-reduced-data: no-preference) alone because, as Kilian Valkhof says:
[…] that would be false if either there was no support (since the browser wouldn’t understand the media query) or if it was supported but the
…
The post...
Native JavaScript Routing?
23.8.2021
We can update the URL in JavaScript. We’ve got these APIs:
// Adds to browser history
history.pushState({}, "About Page", "/about");
// Doesn't
history.replaceState({}, "About Page", "/about");
JavaScript is also capable of replacing any content in the DOM....