DeveloperBreeze

Notes Programming Tutorials, Guides & Best Practices

Explore 57+ expertly crafted notes tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Commonly used English phrases and their natural spoken

Note January 16, 2025

No preview available for this content.

CSS Grid

Note January 05, 2025

No preview available for this content.

Note on `npm run dev` in a Laravel Project

Note October 24, 2024

During development, assets might be split into multiple files for better organization. Laravel Mix combines and optimizes these files during the production build (npm run prod), ensuring better performance by minifying the assets.

Laravel Mix supports versioning by appending unique hashes to filenames, which is essential for cache busting. When assets are updated, browsers are forced to re-download the new versions due to the filename changes.

Finding and Displaying Laravel Log Modification Time Using find and stat

Note October 24, 2024

Running the command may produce output like this:

2024-12-06 10:32:45.123456789 /var/www/project1/storage/logs/laravel.log
2024-12-05 18:25:10.987654321 /var/www/project2/storage/logs/laravel.log

How to Completely Uninstalling Steam on Linux

Note October 24, 2024

# Step 1: Remove Steam and Steam launcher
sudo apt-get remove steam steam-launcher

# Step 2: Purge Steam along with configuration files
sudo apt-get purge steam steam-launcher

# Step 3: Remove Steam directory and links in the home folder
rm -rf ~/.local/share/Steam && rm -rf ~/.steam*

This will fully uninstall Steam and delete any related configuration or leftover files.