Search
FTX's Bahamas Liquidators Seek to Exclude Over $200M Worth of Luxury Properties From Liquidation
13.12.2022
The unwinding of Sam Bankman-Fried’s sprawling empire is proving as unwieldy as the company itself
Adding Box Shadows to WordPress Blocks and Elements
7.12.2022
The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.
Adding Box Shadows to WordPress Blocks and Elements originally...
Former Alameda CEO Spent $10,000,000+ on Luxury Properties Months Before FTX Collapse – Did He Know What Was Happening?
6.12.2022
As the collapse of major crypto exchange FTX and sister firm Alameda Research continues to generate controversy within the cryptosphere, Sam Trabucco, Alameda’s former co-CEO, reportedly went on a shopping spree shortly before the two companies’ implosion. Among others, he bought two luxury...
Bahamas Property Worth $121 Million Acquired by FTX, SBF’s Parents, Report Unveils
22.11.2022
Bankrupt crypto exchange FTX and its founder’s parents have purchased properties for almost $121 million in the Bahamas, according to a media report. Some of these were supposed to be used by the company’s senior executives, quoted documents have revealed. Bankman-Fried’s Parents Trying to Return...
SBF, FTX execs reportedly spend millions on properties in the Bahamas
22.11.2022
At least 19 properties worth around $121 million were reportedly purchased under FTX's name, Sam Bankman-Fried’s parents and senior-level executives
Effective Altruism: Former FTX CEO’s Alleged $40M Penthouse Listed for Sale, Report Says Firm Spent $74M on Real Estate
14.11.2022
In light of a recently published real estate listing, former FTX CEO Sam Bankman-Fried (SBF) is reportedly selling a 12,000-square-foot penthouse in the Bahamas for $39.9 million. Moreover, reports further detail that FTX Property Holdings spent roughly $74 million on real estate purchases in...
What CSS Do You Absolutely Have to Know in 2022?
8.11.2022
Sacha Greif openly wondered whether CSS has gotten to be, you know, too big. With all the goodies that’ve shipped in browsers the past couple of years — container queries! relative color syntax! cascade layers! logical properties…
What CSS Do You Absolutely Have to Know in 2022?...
Santander Proposes Project to Tokenize and Trade Properties With the Brazilian CBDC
24.10.2022
Santander, the Spain-based bank, has presented a project to use tokenization in tandem with the digital real, the proposed Brazilian cryptocurrency, in order to facilitate property transactions. The proposal, part of the LIFT challenge, would be focused on simplifying the sale of real estate...
Manuel Matuzovic: max() Trickery
18.10.2022
By way of a post by Manuel Matuzović which is by way of a demo by Temani Afif.
.wrapper {
margin-inline: max(0px, ((100% - 64rem) / 2));
}
You’d be doing yourself a favor to read Manuel’s breakdown of …
Manuel Matuzovic: max() Trickery originally published on CSS-Tricks, which...
Pure CSS Bezier Curve Motion Paths
17.10.2022
Are you a Bezier curve lover like I am?
CodePen Embed Fallback
Besides being elegant, Bezier curves have nice mathematical properties due to their definition and construction. No wonder they are widely used in so many areas:
As a
…
Pure CSS Bezier Curve Motion Paths originally published...
Adding Fluid Typography Support to WordPress Block Themes
7.10.2022
Fluid typography is a fancy way of “describing font properties, such as size or line height, that scale fluidly according to the size of the viewport”. It’s also known by other names, like responsive typography, flexible type, fluid type, …
Adding Fluid Typography Support to WordPress Block...
How to Create Wavy Shapes & Patterns in CSS
26.9.2022
The wave is probably one of the most difficult shapes to make in CSS. We always try to approximate it with properties like border-radius and lots of magic numbers until we get something that feels kinda close. And that’s before …
How to Create Wavy Shapes & Patterns in CSS originally...
How I Made an Icon System Out of CSS Custom Properties
22.9.2022
SVG is the best format for icons on a website, there is no doubt about that. It allows you to have sharp icons no matter the screen pixel density, you can change the styles of the SVG on hover …
How I Made an Icon System Out of CSS Custom Properties originally published on CSS-Tricks, which...
Making a Real-Time Clock With a Conic Gradient Face
19.9.2022
Gradients have been a part of the CSS spectrum for quite some time now. We see a lot of radial and linear gradients in a lot of projects, but there is one type of gradient that seems to be a …
Making a Real-Time Clock With a Conic Gradient Face originally published on CSS-Tricks, which...
Interpolating Numeric CSS Variables
30.8.2022
We can make variables in CSS pretty easily:
:root {
--scale: 1;
}
And we can declare them on any element:
.thing {
transform: scale(--scale);
}
Even better for an example like this is applying the variable on a user …
Interpolating Numeric CSS Variables originally published...
Upland Sustains Mass Market Readiness With All-Inclusive Economy
12.8.2022
Upland is a mobile-first blockchain metaverse that allows users to buy virtual properties based on real world addresses, build on those properties to increase their value, and sell them to increase their virtual real estate portfolio. Upland has the unique position to attract mass markets due...
Central Bank of Brazil Director Praises Bitcoin as a Financial Innovation, Talks Programmable Digital Real
6.8.2022
Fabio Araujo, Director of the Central Bank of Brazil, has praised the properties of Bitcoin, saying it is a financial innovation using new technologies. To Araujo, Bitcoin was the catalyst for what is today known as Web3. At an event, Araujo also commented about the status of the development of...
Exploring CSS Grid’s Implicit Grid and Auto-Placement Powers
1.8.2022
When working with CSS Grid, the first thing to do is to set display: grid on the element that we want to be become a grid container. Then we explicitly define the grid using a combination of grid-template-columns, grid-template-rows…
Exploring CSS Grid’s Implicit Grid and Auto-Placement...
Logical Properties for Useful Shorthands
20.7.2022
Michelle Barker with my favorite sorta blog post: short, practical, and leaves you with a valuable nugget for your time. Here, she gets into logical property shorthands in CSS, particularly those that set lengths just on a single axis, …
Logical Properties for Useful Shorthands originally...
How stroke-dasharray Patterns Work
15.7.2022
Say you have a line in SVG:
<svg<line x1="0" y1="30" x2="500" y2="30" stroke-color="#f8a100" /</svg
You can use the stroke-dasharray property in CSS to make dashes:
line {
stroke-dasharray: 5;
}
That 5 value is a relative unit based …
How stroke-dasharray Patterns...