Search
Trump or Biden? It Doesn’t Matter To Crypto
28.10.2020
Juan Villaverde is an econometrician and mathematician devoted to the analysis of cryptocurrencies since 2012. He leads the Weiss Ratings team of analysts and computer programmers who created Weiss cryptocurrency ratings.
Dr. Bruce Ng is an educator in the field of Distributed Ledger Technology...
South Korean gov't doesn't know who will protect crypto exchanges from Kim Jong-Un’s hackers
23.10.2020
Can anyone hold North Korea responsible for its attacks on the crypto industry?
Russia doesn’t need to be first with a digital currency, says state expert
23.10.2020
Russia is purportedly taking a fast-second strategy for the digital ruble
xm
21.10.2020
This is a neat little HTML preprocessor from Giuseppe Gurgone. It has very few features, but one of them is HTML includes, which is something I continue to be baffled that HTML doesn’t support natively. There are loads of ways to handle it. I think it’s silly that it’s been...
“Durable”
20.10.2020
Looks like the word “durable” is an emerging term in the world of serverless. As I understand it, it’s like allowing for state in places you wouldn’t normally expect to have it. For example, you call some cloud function and run some JavaScript… unless you have it...
How to Prevent Pasting into an Input
19.10.2020
Every once in a while I get to a website that doesn’t allow me to paste into a form input. In most cases it’s something to do with login credentials (username and or password) and auth codes. So how are they preventing me from pasting information? It’s as easy as you’d...
Yearn Finance's founder says he 'doesn't build for speculators'
15.10.2020
Andre Cronje's "I test in prod" statement is not as bad as it seems
Reserve Bank of Australia still researching the CBDC it says it doesn’t need
14.10.2020
The Reserve Bank of Australia is continuing to explore how to design and operate a CBDC
DeFi market fall showcases how rising TVL doesn’t tell the full story
12.10.2020
Could the DeFi market be a bubble as both market capitalization and indices crash?
Ripple Could Leave US If Regulatory Environment Doesn’t Change, Chairman Tells Fortune
6.10.2020
Larsen told Fortune that nearly every country in the world has more favorable crypto regulation than the US
Parsel: A tiny, permissive CSS selector parser
2.10.2020
If you’ve ever thought to yourself, gosh, self, I wish I could have an Abstract Syntax Tree (AST) of this CSS selector, Lea has your back.
If you’ve ever thought that same thing for an entire CSS file, that’s what PostCSS is, which has gone v8. PostCSS doesn’t do anything...
Web Technologies and Syntax
24.9.2020
JavaScript has a (newish) feature called optional chaining. Say I have code like:
const name = Data.person.name;
If person happens to not exist on Data, I’m going to get a hard, show-stopping error. With optional chaining, I can write:
const name = Data.person?.name;
Now if person...
Stellar’s Jed McCaleb: Crypto Doesn’t Need More Regulation, It Needs Clarity
20.9.2020
“Crypto Titans” is a series of personal interviews conducted by CoinMarketCap with prominent and forward-thinking minds tinkering on and behindContinue Reading
The post Stellar’s Jed McCaleb: Crypto Doesn’t Need More Regulation, It Needs Clarity appeared first...
More pump than dump: 22% UniSwap (UNI) price drop doesn’t faze traders
19.9.2020
UniSwap’s UNI governance token soared to $8.60 before pulling correcting sharply but top traders expect the price to rise higher
Nvidia doesn't want to give up its 2017 'crypto craze' docs
18.9.2020
Nvidia is trying not to hand over internal documents to plaintiffs who allege that the GPU manufacturer misrepresented its financials during the 2017 bull run
First Mover: Binance’s CZ Doesn’t Even Dispute That DeFi Might Be Inevitable
16.9.2020
Big crypto exchanges like Binance, Huobi and OKEx are rushing out DeFi platforms to cash in on the fast-growing industry and stanch user defections
Virtual Event Registrations with Wufoo Forms
15.9.2020
(This is a sponsored post.)
We’ve seen many events shift from in-person to online this year. That may have required a huge change to how you collect attendee registrations in the past, but with a paid Wufoo account and Zoom — along with a sprinkle of Zapier — it’s easier than ever to...
Digital Assets Data CEO says mainstream finance still doesn't trust Bitcoin
11.9.2020
Bitcoin still has ground to make up in the mainstream world
Modifying Specific Letters with CSS and JavaScript
10.9.2020
Changing specific characters can be a challenge in CSS. Often, we’re forced to implement our desired changes one-by-one in HTML, perhaps using the span element. But, in a few specific cases, a CSS-focused solution may still be possible. In this article, we’ll start by looking at some CSS-first...
Using max() for an inner-element max-width
7.9.2020
I go into all this in The “Inside” Problem. The gist: you want an edge-to-edge container, but the content inside to have a limited width. I think there is absolutely no problem using a nested element inside, but it’s also fun to look at the possibilities of making that work on...