EDDYMENS

Published 2 days ago

Tailwindcss: Could Not Determine Executable To Run [Fix]

With the release of Tailwind version 4 , came with it some changes. One that can lead to the error below when you run : ...

Published 6 days ago

Give Your Website A Retro Look

In this tutorial we will look at simple CSS style changes or additions you can make to give your website a retro vibe. This style gives your website the look of a monochrome green terminal. Style ...

Published a month ago

How To Access Your WSL Files From Windows Explorer

Follow the 2-step process below to access your WSL directory from Windows File Explorer: Open File Explorer in Windows In the address bar, type and press enter. You should see one or more folders with the names of your WSL distros, then click the one y...

Published a month ago

How To Remove All Comments From Code In VS Code Using Regex

Its the third time I have seen a person spend over a minute deleting comments from code they generated using a certain tool that shall not be named. This seems to have become a common task people indulge in, So I thought, why not show you how to wipe out all comments in one clean swoop? An...

Published 2 months ago

How To Disable The WSL Debug Console Window On Startup

This quick fix is for that strange "WSL debug console" window that pops up when you open Windows File Explorer. It's triggered by a setting in your system, and the solution is to simply turn it off. Follow the steps below to disable it. Open up File Explorer a...

Published 3 months ago

How To Override The Default 404 Error Page In Laravel 12

Once of the first things I quickly tweak whenever I start a new Laravel project is to override the error pages to match the theme of my project. However, from time to time, Laravel changes how error handling is dealt with between versions. I have had to do this for my recent project which ...