Search
Award-Winning Carbon Broker to Assist XELS With Offset Procurement and Strategy
4.5.2021
PRESS RELEASE. Redshaw Advisors will support XELS mission of increasing participation in carbon markets in Japan and beyond. Tokyo, Japan — XELS, a revolutionary blockchain-based carbon offset platform has announced that it has joined forces with renowned carbon brokerage and risk management...
Mastercard NFTs will help consumers offset carbon ‘down to a cup of coffee’
23.4.2021
Mastercard is set to incorporate carbon footprint tracking into its blockchain-based solution, to help consumers offset carbon emissions through their purchases
XELS Launches Eco-Conscious Blockchain Platform for Carbon Offset Credits
7.4.2021
PRESS RELEASE. Blockchain-based carbon offset platform XELS provides global access to the decentralized carbon market and its ERC20 token will launch on Bittrex Global on April 8th, 2021. 7th April 2021, Date Tokyo, Japan — XELS is one of the leading startups tackling climate change...
Carbon Offsets for NFTs Don't Address the Deeper Problem
25.3.2021
The NFT space has a ballooning carbon problem. But rather than address emissions head-on, platforms may be turning to at best, self-deception and at worst, greenwashing by relying on carbon offsets.Read more
The Wisemining Sato Boiler- A Product That Aims to Heat Your Home and Offset Costs by Mining Bitcoin
19.3.2021
In just over two weeks, a company called Wisemining plans to launch a new product called Sato, a boiler that can provide heat to a home by leveraging ASIC mining rigs for heat production. It also means that the heater provides revenue in the form of cryptocurrency, which offsets the costs...
Beeple Joins NFT Allstar Artists to Combat Climate Change with Charity Fundraiser
17.3.2021
Social Alpha Foundation is set to auction works from top NFT artists on the Nifty Gateway to support Open Earth Foundation’s efforts to bring open digital solutions designed to address climate-related issues. Auction Sponsor Render Network To Donate Carbon Credits To Offset NFT Impact...
Ridesharing Giant Cabify to Track and Offset Carbon Emissions Using Blockchain Platform
3.12.2020
Cabify, one of the world's largest ridesharing companies, is moving to offset its carbon emissions with the help of blockchain marketplace ClimateTrade
Hive Reports $7.4M Q2 Profit as Lower Costs More Than Offset ‘Big Spend’ on Expansion
1.12.2020
Hive shares have gained over 1,200% in 2020
A Dynamically-Sized Sticky Sidebar with HTML and CSS
20.11.2020
Creating page content that sticks to the viewport as you scroll, something like a jump-to-anchor menu or section headings, has never been easier. Throw a position: sticky into your CSS ruleset, set the directional offset (e.g. top: 0) and you’re ready to impress your teammates with minimal effort....
When Can You Use Crypto Losses as an Offset?
5.11.2020
If you own crypto, you can assert any crypto losses in the course of your crypto trading on taxes to offset your capital gains. It is essential to claim a crypto capital loss for various reasons. The article will break down why you have to deal with your crypto taxes, even when you face losses....
KPMG Airs Blockchain Solution to Help Corporates Offset Carbon Emissions
8.10.2020
"Big Four" firm KPMG says its patent-pending blockchain solution will help organizations measure, report and offset their carbon emissions
ztext.js
22.9.2020
Super cool project from Bennett Feely! It makes any web type into 3D lettering with a mouseover effect that moves the 3D objects in space. It’s reminiscent of Zdog, but for type. It works its magic by stacking a bunch of copies of the glyphs on top of each other that are offset by some...
Irregular-shaped Links with Subgrid
16.7.2020
Michelle Barker covers a situation where you need offset rectangles part of a clickable area. The tricky part is having just the rectangles be clickable. That rules out using some parent element and making the whole larger encompassing rectangle clickable, which is a common (but equally tricky)...
Kim Jong Un May Be Using Stolen Crypto to Offset Economic Fallout
14.5.2020
The latest reports suggest that North Korea could be encouraging the Lazarus group to steal crypto globally
Different Approaches to Responsive CSS Motion Path
24.4.2020
As a follow-up to Jhey’s recent post on responsive motion paths, Michelle Barker notes that another approach could be to just transform: scale() the whole dang element.
The trade-off there is that you’re scaling both the path and the element on the path at the same time; Jhey’s...
Create a Responsive CSS Motion Path? Sure We Can!
15.4.2020
There was a discussion recently on the Animation at Work Slack: how could you make a CSS motion path responsive? What techniques would be work? This got me thinking.
A CSS motion path allows us to animate elements along custom user-defined paths. Those paths follow the same structure as SVG paths....
How They Fit Together: Transform, Translate, Rotate, Scale, and Offset
30.3.2020
Firefox 72 was first out of the gate with "independent transforms." That is, instead of having to combine transforms together, like:
.el {
transform: rotate(10deg) scale(0.95) translate(10px, 10px);
}
...we can do:
.el {
rotate: 10deg;
scale: 0.95;
translate: 10px 10px;
}
That's extremely...
Get Moving (or not) with CSS Motion Path
3.2.2020
We just linked up the idea that offset-path can be cleverly used to set type on a path. Don't miss Michelle Barker's experimentation either, with drawing paths or animating text along a path.
Dan Wilson has also been following this tech for quite a while and points out why the sudden surge...
Set Type on a Circle… with offset-path
28.1.2020
Here's some legit CSS trickery from yuanchuan. There is this CSS property offset-path. Once upon a time, it was called motion-path and then it was renamed. I sort of rolled my eyes at the time, because the property is so obviously for animating things along a path. But you don't have to use it...
A Trick That Makes Drawing SVG Lines Way Easier
14.1.2020
When drawing lines with SVG, you often have a <path> element with a stroke. You set a stroke-dasharray that is as long as the path itself, as well as a stroke-offset that extends so far that you that it's initially hidden. Then you animate the stroke-offset back to 0 so you can watch...