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

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.

In development mode (npm run dev), source maps are generated, allowing developers to debug their original source code (e.g., JavaScript or Sass) within the browser, even if the code served is minified.

Finding and Displaying Laravel Log Modification Time Using find and stat

Note October 24, 2024

find /var/www -name "laravel.log" -exec stat --format="%y %n" {} +
  • Searches for files named laravel.log within the /var/www directory and its subdirectories.
  • You can replace /var/www with any directory path where you want to search.

How to Completely Uninstalling Steam on Linux

Note October 24, 2024

No preview available for this content.