Search
Let's Rank The Hitman Trilogy Levels, From Worst To Best
27.2.2021
With the release of Hitman 3, the latest Hitman trilogy has concluded. After three games and two DLC levels, the new entry has over 20 levels set around the globe and countless ways to kill people. Let’s rank them! Read more
BTC Transaction Stuck? Bitcoin Cash-Powered Accelerators Can Speed Up Transfers
18.2.2021
At the time of publication, there’s more than 69,000 transactions waiting in line to get confirmed by a bitcoin miner. Since bitcoin’s price rise, at certain times, transaction fees have climbed to $10 to $20 per transfer, and people who pay less than the median fee may have to wait...
Nvidia’s GeForce limits hash rate to divert crypto miners to new CMP line
18.2.2021
The California chipmaker says GeForce RTX 360 is for gamers, not cryptocurrency miners. The latter camp will get its own CMP mining infrastructure in the near future
Use CSS Clamp to create a more flexible wrapper utility
17.2.2021
I like Andy’s idea here:
.wrapper {
width: clamp(16rem, 90vw, 70rem);
margin-left: auto;
margin-right: auto;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
Normally I’d just set a max-width there, but as Andy says:
This becomes a slight issue in mid-sized viewports, such...
Black Panther: Sins of the King Blurs the Line Between Life and Death
11.2.2021
Though Serial Box’s Black Panther: Sins of the King audiobook is set firmly outside the continuities of Marvel’s Cinematic Universe and its comic books, the new narrative drama is coursing with the same epic, politically charged energy that first made T’Challa and the nation of Wakanda some of...
All-Star Celebrity Line-Up Launches Ethernity – A Debut Collection of NFTs
11.2.2021
Winklevoss Twins, Swish DJ Alesso, and 76ers owner Michael Rubin debut digital artworks alongside an all-star celebrity line-up. The non-fungible tokens (NFTs) are a collection of NFTs distributed by the art collective Ethernity. Ethernity Provides a Way for Stars to Support Philanthropic Causes...
How to Favicon in 2021
10.2.2021
I always appreciate someone looking into and re-evaluating the best practices of something that literally every website needs and has a complex set of requirements. Andrey Sitnik has done that here with favicons.
The final suggestion:
<link rel="icon" href="/favicon.ico"
…
The post...
Simple CSS Line Hover Animations for Links
10.2.2021
A couple of simple & subtle CSS-based line hover animations for links.
The post Simple CSS Line Hover Animations for Links appeared first on Codrops
Animating a CSS Gradient Border
8.2.2021
This little trick for gradient borders is super useful:
.border-gradient {
border: 5px solid;
border-image-slice: 1;
border-image-source: linear-gradient(to left, #743ad5, #d53a9d);
}
Here’s some basic demos from our article on the subject. Sephanie Eckles was sharing around the idea...
Some Typography Blog Posts I’ve Bookmarked and Read Lately
4.2.2021
Font-size: An Unexpectedly Complex CSS Property — From Manish Goregaokar in 2017. Of many oddities, I found the one where font: medium monospace renders at 13px where font: medium sans-serif renders at 16px particularly weird.
The good line-height — Since
…
The post Some Typography Blog...
A Reddit Army Blurs The Line Between Crypto and Traditional Finance
1.2.2021
Philip Gradwell is Chief Economist at Chainalysis. He provides data and insight on the uses of cryptocurrencies and the direction of the market at markets.chainalysis.com.
______
What does the phenomenon of retail traders coordinating on the internet to turn finance on its head have to do with...
Listujeme novým Computerem: za které on-line služby platíme, a za které platíte vy?
29.1.2021
Velký test herních monitorů a reproduktorů se subwooferem • Za které služby platíme my a za které platíte vy? • Ochrana mobilu dětí: má smysl?
Telegram přichází s importem konverzací z jiných aplikací. Třeba WhatsAppu či Line
28.1.2021
Komunikátor Telegram se snaží naplno využít situace, kdy mnoho uživatelů hledá alternativu k populárnímu WhatsAppu. Nyní přichází s funkcí, která umožní přenést konverzace právě z kecálku od Facebooku, či z Line a KakaoTalk.
Nedávno se Telegram pochlubil celosvětově 500 miliony aktivních
Philippine Central Bank Widens Cryptocurrency Regulation — Sees ‘Accelerated Growth’ in Crypto Activity
27.1.2021
The Philippines’ central bank, the Bangko Sentral ng Pilipinas (BSP), has expanded the country’s cryptocurrency regulation after seeing “accelerated growth” in the use of crypto exchanges. The new regulatory framework is in line with the guidelines recommended by...
You want minmax(10px, 1fr) not 1fr
22.1.2021
There are a lot of grids on the web like this:
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
My message is that what they really should be is:
.grid {
display: grid;
grid-template-columns: repeat(3, minmax(10px, 1fr));
}
Why? In …
The post You want minmax(10px, 1fr)...
Paramount+: nová on-line streamovací služba se spouští 4. března, míří proti Disney+
21.1.2021
Dynamic, Conditional Imports
13.1.2021
With ES Modules, you can natively import other JavaScript. Like confetti, duh:
import confetti from 'https://cdn.skypack.dev/canvas-confetti';
confetti();
That import statement is just gonna run. There is a pattern to do it conditionally though. It’s like this:
(async ()
…
The post...
Whack-a-Mole: The CSS Edition
6.1.2021
We’ve seen the checkbox hack and how it can be used to build a complete state machine in CSS. Today, we’ll take that line of thought a step further and build a simple game of Whack-A-Mole, where the player needs …
The post Whack-a-Mole: The CSS Edition appeared first on CSS-Tricks.
You...
CSS Individual Transform Properties in Safari Technology Preview
30.12.2020
The WebKit blog details how to use individual CSS Transform properties in the latest version of Safari Technology Preview. This brings the browser in line with the CSS Transforms Module Level 2 spec, which breaks out the translate(), …
The post CSS Individual Transform Properties in Safari...
Open a Browser Tab with DevTools Open by Default
28.12.2020
Using command line flags is a great way to subtly improve productivity. Whether saving yourself keystrokes or enabling specific features, it’s very much worth knowing the application flags available to you. To launch a new tab with DevTools in Chrome, you can use...