Search
DeFi coverage protocol expands protection against centralized exchange hacks
12.1.2021
Nexus Mutual is now allowing users to cover their centralized exchange accounts
Newsweek's positive coverage of Bitcoin underscores paradigm shift in public perception
6.1.2021
The publication explores whether Bitcoin will become the new gold standard
Late to Logical
7.12.2020
2020 brought another wave of logical property features to major browsers and I’ve thoroughly enjoyed my investment into logical, rather than physical, web styling. I feel like I’ve learned a new way to speak about the box model that results in less written code with more global coverage.
p {
...
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...
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...
AMFEIX Threatens Users Who Share Coverage That Criticizes the Company
28.7.2020
The purported investment fund is exhibiting some shady behavior
Backdrop Filter effect with CSS
16.7.2020
I love these little posts where some tricky-looking design is solved by a single line of CSS using a little-known property. In this case, the design is a frosted glass effect and the CSS property is backdrop-filter.
The approach? Easy peasy:
.container {
backdrop-filter: blur(10px);
}
The...
LIVE COVERAGE: Join Us as We Discuss the Ongoing Twitter Hack
16.7.2020
Cointelegraph is going live to discuss the ongoing Twitter attack
Youtube Reinstates Bitcoin.com’s Official Channel After Suspension
15.6.2020
Just recently, the official Bitcoin.com Youtube channel was suspended and removed from the popular video platform. During the last 12 months, Youtube has censored information and banned cryptocurrency video coverage with no remorse. As the censorship continues to wreak havoc on innocent content...
Bakkt Announces New Insurance Coverage, Claims More Than 70 Custody Clients
18.5.2020
Bakkt has onboarded 70 clients to its custody services, and signed a deal with insurance broker Marsh to provide customers with an optional extra $500 million of coverage
Notion-Powered Websites
14.5.2020
I’m a big fan of Notion, as you likely know from previous coverage and recent video. It’s always interesting to see what other people do with Notion, and even how Notion uses Notion.
I’d say most usage of Notion is private and internal, but any page on Notion can be totally...
Crypto.com Claims Industry Record for Insurance Coverage as Users Double
14.5.2020
After its user base doubled in six months, Crypto.com claims to have secured the largest insurance policy held within the crypto asset sector
Chromium lands Flexbox gap
9.5.2020
I mentioned this the other day via Michelle Barker’s coverage, but here I’ll link to the official announcement. The main thing is that we’ll be getting gap with flexbox, which means:
.flex-parent {
display: flex;
gap: 1rem;
}
.flex-child {
flex: 1;
}
That’s excellent...
React Integration Testing: Greater Coverage, Fewer Tests
1.5.2020
Integration tests are a natural fit for interactive websites, like ones you might build with React. They validate how a user interacts with your app without the overhead of end-to-end testing. 
This article follows an exercise that starts with a simple website, validates behavior with unit...
Why You Should Follow Cointelegraph’s Coverage of Virtual Blockchain Week
27.4.2020
A collectible Cointelegraph NFT is just one tiny reason
Coinbase Taps Ex-Barclays Markets Exec to Head Institutional Coverage
20.4.2020
Coinbase has hired former Barclays markets veteran, Brett Tejpaul, to head up institutional coverage at the San Francisco-based crypto exchange
Chinese Province: All Our Cities Have Blockchain Platform Coverage
30.3.2020
Danxia landform, Zhangye City, Gansu Province, China. The Northwestern Chinese province of Gansu says that all of its cities are now covered by its Blockchain Service Network (BSN) service platform.
Per a report from the Chinese Communist Party's official newspaper the People's Daily, Gansu first...
How to use CSS Scroll Snap
27.3.2020
Nada Rifki demonstrates the scroll-snap-type and scroll-snap-alignCSS properties. I like that the demo shows that the items in the scrolling container can be different sizes. It is the edges of those children that matter, not some fixed snapping distance.
I like Max Kohler's coverage...
CSS Viewport Units
26.3.2020
Deep dive from Ahmad. I like the coverage of vmin and vmax, which I think I don't reach for as often as I should.
I'm thinking that if you are doing something highly directional (e.g. a full bleed trick), then directly using vw is necessary. On the other hand, if you're doing a calculation where...
Automated Selenium Testing with Jest and LambdaTest
5.3.2020
You know what the best thing is about building and running automated browser tests is? It means that the site you're doing it on really matters. It means you're trying to take care of that site by making sure it doesn't break, and it's worth the time to put guards in place against that breakages....