Search
NSFW Mousepad Gets A Surprising Number Of Pre-Orders
24.2.2021
Late last year, a mouse pad for the character Kashino from browser game Azur Lane was announced. This was no ordinary mouse pad.Read more
Here’s Where To Pre-Order All of the Latest Nintendo Direct’s Biggest Games
18.2.2021
The Legend of Zelda: Skyward Sword HD | $60 | Best BuyMario Golf: Super Rush | $60 | Best BuyNo More Heroes 3 | $60 | Best BuyRead more
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...
Celsius Network, Argo Blockchain Back Pre-Seed Round for Bitcoin Mining Startup
16.2.2021
Luxor Technologies will use the funds to expand its hashrate and hire more engineers
What are your game's pre-release 'story beats'?
15.2.2021
Nobody beats the biz
What are your game's pre-release 'story beats'?
15.2.2021
Nobody beats the biz
Some Of Our Favorite (Pre-Pandemic) Cosplay From 2020
15.2.2021
While the majority of the year was a complete write-off, for obvious reasons, we did actually squeeze a few big cosplay shows into the early, pre-pandemic months of 2020. So rather than look back on nine months of almost nothing happening on this website, let’s look at the three months something...
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...
Tales From The Borderlands Returns To Digital Storefronts On February 17
10.2.2021
During today’s Borderlands presentation, the folks at Gearbox revealed that Telltale Games’ excellent Tales from the Borderlands will be returning to digital storefronts next Wednesday, February 17.Read more
Nested Media Queries
9.2.2021
We don’t have “regular” nesting in CSS. Maybe this becomes a thing someday, or something like it. That would be cool, although that pre-spec doesn’t mention anything about media queries. I’d hope we get that right out of the gate …
The post Nested Media Queries...
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...
How To Pre-Order Mass Effect: Legendary Edition and Time Travel Back To Your Gaming Glory Days
2.2.2021
Mass Effect: Legendary Edition (PS4) | $60 | Amazon, Best BuyMass Effect: Legendary Edition (Xbox) | $60 | Amazon, Best BuyMass Effect Legendary Cache | $150 | Best BuyRead more
Ford's Incredible And Barely Remembered 1982 Concept Car Had Pre-GPS SatNav And The First Integrated Video Game Console
2.2.2021
Intellectually, we all know that the advancements and technological marvels that we all take for granted in modern cars — big center-stack color touchscreen displays, integrated computers, global navigation via a network of satellites, and even video game systems built right into the car — didn’t...
New Pokémon Snap Pre-Orders Are Live: Here’s Where To Capture a Copy for Yourself
29.1.2021
New Pokémon Snap | $60 | Amazon, Best Buy, GameStopNew Pokémon Snap + Magnetic Photo Frame | $60 | TargetRead more
A Look at Facebook’s Diem Wallet- Token Sale Accepts 3 Cryptos, Strict KYC, Hefty Data Collection
29.1.2021
During the last two years, there’s been a lot of interest in Facebook’s cryptocurrency diem (formally libra) and rumors of a nearing launch date went viral last November. Now the social media giant is advertising the crypto asset’s pre-sale heavily on the platform, as people...
Crypto Exchange Giant Coinbase to Sell Shares Privately Ahead of Public Offering
25.1.2021
According to a recent report, the San Francisco-based cryptocurrency exchange Coinbase is purportedly planning to sell stock on Nasdaq’s private market ahead of the initial public offering (IPO). Coinbase reportedly notified shareholders that they will receive information pertaining to...
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)...
Pre-Register Now on Aladdin Exchange to Receive 100 TNC Coins
17.1.2021
PRESS RELEASE. UAE-based crypto exchange Aladdin opens its platform for pre-registered users. This digital asset exchange is the newest one in the cryptocurrency market. As part of its pre-launching event, the Aladdin Exchange team invites everyone to pre-register and refer people to join...
Stealthily Save $6 When You Pre-Order Hitman 3 on Xbox
15.1.2021
Hitman 3 (Xbox Digital) | $54 | Newegg | Use code EMCEHHW35 Read more
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...