Search
Nintendo Releases Surprise Metroid Dread Demo
28.10.2021
Most people who have played Metroid Dread say the game is very good, but what if you are not one of those people, and for whatever reason do not trust those people? Well, now you can simply download part of the game for free and try it for yourself.Read more
Command Line trash
24.10.2021
One of the first commands you learn when experimenting with command line is rm, the utility for deleting files and directories. Deletion is a core computer UI operation but operating systems use a “Trash” paradigm, where files are stored before truly deleted. With the rm utility...
Ubitquity to Give Live Demo of SmartEscrow Platform
12.10.2021
Ubitquity LLC is a blockchain-based enterprise dedicated to real estate businesses and recordkeeping. The company recently announced the successful launch of the SmartEscrow platform for the United States real estate market, including banks, underwriters, title and escrow industries. SmartEscrow...
Terminate Process on a Port from Command Line
10.10.2021
Once a week I have to deal with a zombie process or try to start a process that’s already running on its designated port. In most cases I use macOS’s Activity Monitor to kill the process, which is time-consuming. What if we could just kill a process on a given port from command line?...
Free PS5 Game Trials Make You Race Against The Clock
4.10.2021
Over the weekend, Sony rolled out some new game trials to let PS5 owners try out specific games before actually committing to a purchase. It sounded great, but players soon discovered a hitch: The trials are for a limited time, and the clock starts ticking the second you click download.Read more
CSS accent-color
4.10.2021
For better or worse, form fields have been somewhat difficult to style with CSS. Form control display is dependent upon device, operating system, and browser, so you can imagine the difficulty in making styling easy. We have slowly been given some controls over form control display, as evidenced...
How to Create a UUID in JavaScript
30.9.2021
The UUID identifier has been used in programming since the days a baby-faced David Walsh became a professional software engineer. My first exposure to UUIDs was via a ColdFusion app I inherited and … the less we say about that the better. In any event, I was recently surprised to see that...
AggregateError
17.9.2021
One of the big themes of the web these days is concurrency, which leads to accomplishing tasks asynchronously. In doing so, the possibility of multiple errors can occur. Instead of providing a generic error, optimally you’d provide a wealth of error information. TheAggregateError error lets...
Epic, Bless Its Heart, Is Trying To Sell An Unreal Demo Fortnite Skin
8.9.2021
Behold the Fortnite version of Echo Windwalker! Wait, sorry, Windwalker Echo. You know, the hero from last year’s Unreal Engine 5 demo? The one that was running on a PlayStation 5? Fortnite has been trying to convince me to add Windwalker Echo to my slowly growing collection of game skins since...
CSS Pseudo Commas
30.8.2021
A bonafide CSS trick if there ever was one! @ShadowShahriar created a CodePen demo that uses pseudo-elements to place commas between list items that are displayed inline, and the result is a natural-looking complete sentence with proper punctuation.
CodePen Embed…
The post CSS Pseudo Commas...
jq for JSON
27.8.2021
I old enough to remember when we thought XML was going to change the programming world…then JSON saved us from that hell. Parsing and querying JSON data is fundamental task we’ve all coded for, but sometimes I just want to get some data locally with minimal fuss. I just learned of...
Equilibrium and Genshiro Are Organizing an Online Kusama Demo Day
27.8.2021
Equilibrium and Genshiro are organizing an online Kusama demo day, which takes place on September 2, at 2:00 pm, CET. Participants attending the event will see a number of presentations by high-impact Kusama-based projects that have already made it into production. The demo day will also cover...
Vyzkoušejte demo české hry Repeat, zaměřuje se na prostorové puzzly
24.8.2021
React usePrevious Hook
23.8.2021
Hooks are essential for the functional component pattern in React. One frequent logic comparison with class components was comparing a previous prop value with a current prop value via lifecycle methods. So what’s an easy pattern for duplicating previous value comparisons in functional...
You Should Try The Tales of Arise Demo To See How Far Series Has Come
10.8.2021
Tales of Arise, the next entry in Bandai Namco’s long-running RPG series, comes out next month for PlayStation, Xbox, and PC. On August 18, it’ll get a free demo, Bandai Namco announced in a tweet today. A demo that’ll only be available on PlayStation and Xbox. Sorry, PC players. You’re SOL....
Steam demo showcases: officially good for sales!
9.8.2021
That's the headline of the week, folks
Set a Default Node Version with nvm
9.8.2021
As I’ve shown you in the past, nvm an excellent utility for switching between Node.js versions. Whether your host machine or CI, building and testing your apps on different Node versions is a necessity. I’ve recently found a few nvm commands that I found really useful during local...
onInput Event
3.8.2021
Coding HTML forms has been painful my entire career. Form controls look different between operating systems and browsers, coding client side and server side validation is a nightmare, and inevitably you forget something somewhere along the line. Some behaviors don’t act the way you’d...
Dark Mode in One Line of Code!
19.7.2021
Dark mode has seemingly become the desired visual mode for websites and mobile apps alike. Dark mode is easier on the eyes, especially for those like me who like to burn the midnight oil by coding and reading tutorials. Unfortunately not all websites offer dark mode, so it’s up to me...
Fix Seeing “0” in Your JSX Code
9.7.2021
The early days of the web felt like the wild west when it came to coding practices — just make it work. Then we became enlightened to better practices, separating HTML from CSS and JavaScript. Then came React and JSX, where we combine JavaScript, HTML, and even CSS with Styled Components...