Search
Sony and Astar Network Launch Web3 Incubation Program for NFT and DAO-Focused Projects
19.2.2023
On Feb. 17, 2023, Tokyo-based Sony Network Communications announced that it is co-hosting a Web3 incubation program with the multichain smart contract platform Astar Network. The program has started accepting applications, and Sony and Astar will jointly mentor Web3 projects “focused on...
Microsoft Reportedly Made An AI That Plays Minecraft For You
18.2.2023
Much of the science fiction genre would have you believe that artificial intelligence would bring about humanity’s downfall by rising up and slaughtering its creators, but the recent boom in AI tech has instead amounted to labor crimes like journalistic malpractice and robbing artists of their...
Octopath Traveler 2 Has A Free Demo On Switch, And You Should Play It
8.2.2023
During today’s Nintendo Direct presentation, the company briefly talked about Square Enix’s upcoming turn-based RPG Octopath Traveler 2, which launches on February 24 for Nintendo Switch, PC, and PlayStation consoles. Nintendo also revealed that a free demo will be available later today. The best...
Marvel's Midnight Suns láká na dvou a tří hodinový trial
8.2.2023
How to Open a Tor Brave Window from Command Line
6.2.2023
I love the Brave web browser for many reasons: ad blocking, Brave rewards, crypto integration, and even a Tor tab feature. I’ll often use the Tor feature but wanted to know how I could automated opening Tor windows from command line. To open a Brave Tor tab, you can use the following command:...
Blíží se nové demo ambiciózní soulslike Wo Long: Fallen Dynasty
6.2.2023
How to Open an App from Anywhere on Mac Command Line
31.1.2023
Many engineers like myself live in the command line, and perform actions from command line that most others would click an icon for. I’ve always found opening apps from command line on Macs painful. You need to references the Applications directory, add .app to the name, etc. I just want...
Awesome Demos Roundup #23
30.1.2023
The latest compilation of innovative and captivating demos and code experiments from the web
How to Create a Diff of Two Images
30.1.2023
When I was a child, I loved looking for Waldo in the “Where’s Waldo?” book series. These days I’m a sucker for TMZ’s “What’s the Big Frigin Difference” images, where TMZ slightly changes an image and you have to spot the differences between the two....
New Soulslike Game Is A Solid Marriage Between Nioh And Sekiro
19.1.2023
Soulslikes, a genre of punishing action RPGs popularized by Japanese developer FromSoftware, are all too common these days. Ever since Dark Souls came onto the scene in 2011,a bunch of studios have been trying their hands at FromSoft’s iconic formula. Some attempt to mix things up by introducing...
5 Web Design Trends for 2023 That You Should Pay Attention To (Sponsored)
17.1.2023
The start of a new year is usually a time when we start looking for ways to make something a little better. That something could be our life, work, or what we produce. Web designers, for example, might look for ways to make their designs more interesting or effective. In this post we will focus...
fetch with Timeout
16.1.2023
A few years back I wrote a blog post about how write a fetch Promise that times out. The function was effective but the code wasn’t great, mostly because AbortController , which allows you to cancel a fetch Promise, did not yet exist. With AbortController and AbortSignal available...
Sandeep Nailwal-backed Web3 accelerator launches demo day for first cohort
10.1.2023
The Web3 developer program received interest from over 1,000 projects but only 15 were selected for Cohort 0
Customizing HTML Form Validation
9.1.2023
Form validation has always been my least favorite part of web development. You need to duplicate validation on both client and server sides, handle loads of events, and worry about form element styling. To aid form validation, the HTML spec added some new form attributes like required and pattern...
Vyzkoušejte na Switchi demo na Sonic Frontiers
6.1.2023
How to Determine a JavaScript Promise’s Status
3.1.2023
Promises have changed the landscape of JavaScript. Many old APIs have been reincarnated to use Promises (XHR to fetch, Battery API), while new APIs trend toward Promises. Developers can use async/await to handle promises, or then/catch/finally with callbacks, but what Promises don’t tell...
Detect XR Support with JavaScript
2.1.2023
A few years ago I wrote an article about how to detect VR support with JavaScript. Since that time, a whole lot has changed. “Augmented reality” became a thing and terminology has moved to “XR”, instead of VR or AR. As such, the API has needed to evolve. The presence...
Document.elementFromPoint
30.12.2022
Reacting to events with JavaScript is the foundation of a dynamic experiences on the web. Whether it’s a click event or another typical action, responding to that action is important. We started with assigning events to specific elements, then moved to event delegation for efficiency, but...
Detect Browser Bars Visibility with JavaScript
30.12.2022
It’s one thing to know about what’s in the browser document, it’s another to have insight as to the user’s browser itself. We’ve gotten past detecting which browser the user is using, and we’re now into knowing what pieces of the browser UI users are seeing....
JavaScript print Events
30.12.2022
Media queries provide a great way to programmatically change behavior depending on viewing state. We can target styles to device, pixel ratio, screen size, and even print. That said, it’s also nice to have JavaScript events that also allow us to change behavior. Did you know you’re...