Search
Cyberpunk 2077's Netflix Anime Series Looks Great
9.6.2022
Netflix just dropped the first trailer for its anime series based on Cyberpunk 2077. Whatever complaints you might have about the game, you may want to leave those at the door.Read more
Y'all Morbed Too Hard, Now Morbius Is Coming Back To 1,000 Theaters
3.6.2022
For the past few months, a lot of people have been sharing memes connected to terrible superhero film Morbius, which stars noted method actor Jared Leto as a living vampire guy or something…look, I’ve not seen the film, okay? Anyway, all these memes, jokes, and online ha-has have been fun,...
Please Give Me Some Space
3.6.2022
There’s all kinds of ways to do that. Some more advisable and better-suited for certain situations than others, of course.
We could do it directly in HTML:
<pWe go from one line...<br<brdown a couple more.</p
But that’s …
Please Give Me Some Space originally...
French Institution Bans English Words Like 'eSports' And 'Streaming'
2.6.2022
For centuries now, the Académie Française has basically overseen the entire French language, being responsible for everything from grammar to publishing French dictionaries to acting as the “official authority on the language”. An important part of that role in recent decades has been to ward...
GTA Vice City, Goodfellas Star Ray Liotta Dead At 67
26.5.2022
Actor and producer Ray Liotta, famous for his starring role as Tommy Vercetti in the PS2 open-world classic Grand Theft Auto: Vice City, has died. He was 67 years old. He leaves behind a daughter and fiancée. Read more
Hunter x Hunter Creator Joins Twitter, Reveals Manga’s Long Hiatus Is Ending
24.5.2022
After a four-year hiatus, the creator of the popular shonen manga Hunter x Hunter not only created a Twitter account today, but announced that he is working on four new chapters of the series.Read more
It’s Stardew Valley Plus Spirited Away (Who Are We Kidding, You Already Clicked)
18.5.2022
You can never have too many cozy games between all the big AAA launches, in my opinion, and that’s exactly what makes upcoming slice-of-life sim Spirittea look so inviting.Read more
Let’s Create a Tiny Programming Language
10.5.2022
By now, you are probably familiar with one or more programming languages. But have you ever wondered how you could create your own programming language? And by that, I mean:
A programming language is any set of rules that convert
…
Let’s Create a Tiny Programming Language originally...
Legacy String Methods for Generating HTML
26.4.2022
I’m always really excited to see new methods on JavaScript primitives. These additions are acknowledgement that the language needs to evolve and that we’re doing exciting new things. That being said, I somehow just discovered some legacy String methods that you probably shouldn’t...
Super Mario Bros. Movie Delayed, Now Out In 2023
26.4.2022
Nintendo’s Shigeru Miyamoto has just posted a short statement on Twitter, saying that the upcoming Super Mario Bros. animated movie will no longer be released this year.Read more
Germany Shuts Down Hydra Market, Seizes Servers and Bitcoin
5.4.2022
Law enforcement agencies in Germany have targeted Hydra, a leading darknet market (DNM). As part of an operation conducted with U.S. support, the German police were able to establish control over the servers of the Russian-language platform in the country and take down its website. Investigators...
Toei Animation Hacked, Delaying Dragon Ball Anime Movie
21.3.2022
Originally slated for an April 22 release in Japan, Dragon Ball Super: Super Hero has been delayed after an unauthorized third party hacked Toei Animation.Read more
Metametaverse Secures $2 Million — Aims to Achieve Metaverse Interoperability
20.3.2022
Metametaverse, a company whose purpose is the integration and interoperation of different metaverses, has already secured funding of $2 million for this idea. Joel Dietz, the founding father of this initiative and also from the uber-popular wallet Metamask, has stated this task might be achieved...
Crusader Kings III Makes A Change Following Russia's Invasion Of Ukraine
18.3.2022
While Paradox’s grand strategy game Crusader Kings III is set centuries before the present day, and so could be expected to have done little in the wake of Russia’s invasion of Ukraine, the development team have found one way to make a change, and that’s with the game’s spelling.Read more
Trailing Slashes on URLs: Contentious or Settled?
25.2.2022
A fun deep dive from Zach. Do you have an opinion on which you should use?
1) https://website.com/foo/
2) https://websites.com/foo
The first option has a “trailing slash.” The second does not.
I’ve always preferred this thinking: you use a trailing …
Trailing Slashes...
Hideaki Anno Is Creating His Version Of The Marvel Universe
14.2.2022
The common connection for many universes in movies and TV is corporate. So, what joins the Marvel Cinematic Universe is, well, Marvel. Of course, there are exceptions. The latest of which is the newly announced Shin Japan Heroes Universe.This upcoming collab will bring Godzilla, Ultraman, Kamen...
Multi-Value CSS Properties With Optional Custom Property Values
11.2.2022
Imagine you have an element with a multi-value CSS property, such as transform: optional custom property values:
.el {
transform: translate(100px) scale(1.5) skew(5deg);
}
Now imagine you don’t always want all the transform values to be applied, so some …
Multi-Value CSS Properties With...
No Motion Isn’t Always prefers-reduced-motion
8.2.2022
There is a code snippet that I see all the time when the media query prefers-reduced-motion is talked about. Here it is:
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms...
How to Cycle Through Classes on an HTML Element
26.1.2022
Say you have three HTML classes, and a DOM element should only have one of them at a time:
<div class="state-1"</div<div class="state-2"</div<div class="state-3"</div
Now your job is to rotate them. That is, cycle through classes …
How to Cycle Through Classes on...
What the Heck is Node?
20.1.2022
(This is a sponsored post.)
Here’s what you need to know about Node.js (or simply Node) and how it relates to npm right off the bat:
Node is JavaScript, but as a server-side language.
This is possible because of
…
What the Heck is Node? originally published on CSS-Tricks. You should...