Search
CD Projekt Red Apologizes For Cyberpunk 2077 Bugs, Says It's Avoiding Crunch On 'All Future Projects'
13.1.2021
In a video on Twitter and Q&A posted on the company’s website, CD Projekt Red co-founder Marcin Iwiński apologized for the state Cyberpunk 2077 launched in on consoles, shared a road map for updates to the game coming in the future, and said the studio would deliver these fixes “without...
Assassin’s Creed Valhalla Gets New Abilities But Only If You Disconnect Your Console From The Internet
6.1.2021
A few weeks back, Assassin’s Creed Valhalla players spotted a handful of new abilities in the game’s elaborate skill tree. Then, those abilities disappeared.Read more
Herní konzole od KFC je skutečná. Umí i ohřát jídlo
29.12.2020
Fastfoodový řetězec to už poněkolikáté zkouší s virální reklamou, a i tentokrát se mu daří strhnout pozornost. Chystá se totiž nabízet podivnou herní konzoli s přihrádkou na ohřev jídla. V praxi je to v podstatě jen na míru vyrobený herní počítač
Cyberpunk 2077 Execs Say They 'Ignored' Signals That The Console Versions They Hyped Were In Rough Shape
16.12.2020
It’s clear by now that Cyberpunk 2077 is a bit of a disaster, especially on consoles. During a recent conference call with CD Projekt Group’s management board, executives said they knew the game was busted before its December 10 launch.Read more
SNK Is Making A New Game Console, It Seems
15.12.2020
At one time, SNK made what was considered the Roll Royce of video game consoles. As a kid, I remember thinking that the Neo-Geo was the most amazing game hardware I had ever seen. And now earlier today, the company announced that it making a new game machine.Read more
Four Generations Of Xbox Console Can Play The Same Game Together
15.12.2020
When we think of backwards compatibility we tend to only think of a game from an older system running on its replacement. But as this video shows, in the right circumstances, a console released in 2001 can play the same game at the same time as one released in 2020, as well as the two consoles...
GameStop's Last-Minute Console Rush Puts Workers At Risk
14.12.2020
A new allocation of PlayStation 5 and Xbox Series X / S bundles brought crowds of hopeful customers to physical GameStop locations over the weekend, according to a report by Bloomberg and corroboration by a Kotaku source. Staffing shortages and the threat of the ongoing covid-19 pandemic in...
Square Enix’s Project Athia Is Console Exclusive On PS5 For ‘At Least 24 Months’
8.12.2020
Project Athia, the next game from the team behind Final Fantasy XV, will be console-exclusive to the PlayStation 5 for “at least 24 months,” a new Sony demo reel of upcoming games revealed.Read more
Amplify, Amplified
2.12.2020
First, quickly: AWS Amplify has a new Admin UI. Amplify always had a CLI that helps you build projects by setting up stuff like auth, storage, and APIs. That’s super useful, but now, you can do those things with the new Admin UI. And more, like model your data (!!), right from a local...
Wednesday's Best Deals: New M1 MacBooks, Xbox Game Pass Ultimate, Christmas Tree Skirts, Switch Pro Controller Bundle, Too Faced Lipstick, and More
2.12.2020
Apple’s new MacBooks and Xbox Game Pass Ultimate lead Wednesday’s best deals.Read more
console.log({ myVariable });
19.11.2020
I think this might be my most popular tweet of all time, but I’m not sure how to verify that these days. I’ll restate this neat little trick here because blogging is cool and fun.
I used to do this a lot while debugging JavaScript:
console.log("myVariable: ", myVariable);
But now I...
Netlify Edge Handlers
13.10.2020
Some very cool news from Netlify: Edge Handlers are in Early Access (request it here). I think these couple of lines of code do a great job in explaining what an Edge Handler is:
export function onRequest(event) {
console.log(`Incoming request for ${event.request.url}`);
...
Practical Use Cases for JavaScript’s closest() Method
12.8.2020
Have you ever had the problem of finding the parent of a DOM node in JavaScript, but aren’t sure how many levels you have to traverse up to get to it? Let’s look at this HTML for instance:
<div data-id="123"<buttonClick me</button</div
That’s pretty straightforward, right? Say...
Offscreen Text for Copy & Paste
15.5.2020
The relationship between HTML and CSS is special: mixing content via HTML with presentation from CSS to make an awesome presentation. Sometimes, however, you need to employ CSS tricks solely to enhance functionality. This could be one of those cases. When browsing through the Firefox DevTools...
A Guide to Console Commands
21.2.2020
The developer’s debugging console has been available in one form or another in web browsers for many years. Starting out as a means for errors to be reported to the developer, its capabilities have increased in many ways; such as automatically logging information like network requests, network...
Listen to your web pages
16.2.2020
A clever idea from Tom Hicks combining MutationObserver (which can "observe" changes to elements like when their attributes, text, or children change) and the Web Audio API for creating sounds. Plop this code into the console on a page where you'd like to listen to essentially any DOM change...
Override window.alert
11.2.2020
For years the only bit of feedback web developers could get was via alert("{str}") calls. These days we have the web console but, in rare cases, we don’t have a console and alert calls are our only window into a value at a given time. One problem: if an alert sneaks into production code, your...
How many CSS properties are there?
15.1.2020
Tomasz Łakomy posted a joke tweet about naming all the CSS attributes and Tejas Kumar replied with a joke answer, going as far as making an npm module. You can even run a terminal command to see them:
npx get-all-css-properties
You'll get 259 of them. The source code uses the website quackit.com...
Weekly Platform News: Internet Explorer Mode, Speed Report in Search Console, Restricting Notification Prompts
14.11.2019
In this week's roundup: Internet Explorer finds its way into Edge, Google Search Console touts a new speed report, and Firefox gives Facebook's notification the silent treatment.
Let's get into the news!
Edge browser with new Internet Explorer mode launches in January
Microsoft expects to release...
Collective #565
14.11.2019
Next-generation web styling * Sketch 60 * The 2019 Web Almanac * Markup from hell * Video Game Console Logos
Collective #565 was written by Pedro Botelho and published on Codrops