DeveloperBreeze

How to Completely Uninstalling Steam on Linux

# 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.

Continue Reading

Discover more amazing content handpicked just for you

Note

Commonly used English phrases and their natural spoken

No preview available for this content.

Jan 16, 2025
Read More
Note

CSS Grid

No preview available for this content.

Jan 05, 2025
Read More
Note

Note on `npm run dev` in a Laravel Project

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.

Oct 24, 2024
Read More
Note

Finding and Displaying Laravel Log Modification Time Using find and stat

  • For each file found:
  • stat retrieves detailed information about the file.
  • --format="%y %n" formats the output to show:
  • %y: The last modification time of the file.
  • %n: The full file name.

This command is particularly useful for systems where the ls --time=modification option is not supported. It provides an efficient way to:

Oct 24, 2024
Read More
Note
javascript nodejs

Vite vs Webpack

  • Vite: Vite handles modern JavaScript features natively, leveraging the browser’s capabilities during development and optimizing for production only when needed.
  • Webpack: Webpack can bundle any kind of asset (JavaScript, CSS, images, etc.) and provides advanced features like code splitting, tree shaking, and asset management, but these can add complexity to the build process.
  • Vite: Vite has a growing ecosystem with plugins, and it's designed to be framework-agnostic, although it has strong support for Vue and React.
  • Webpack: Webpack has a mature ecosystem with a vast array of plugins and integrations, making it suitable for complex and large-scale projects.

Aug 14, 2024
Read More
Note
javascript css +1

Automatically add Tailwind CSS and jQuery classes to any table

  • bg-gray-50: Light gray header background.
  • px-6 py-3: Padding.
  • text-left text-xs font-medium text-gray-500 uppercase tracking-wider: Header text styling.
  • border-b border-gray-200: Bottom border.

Aug 03, 2024
Read More

Discussion 0

Please sign in to join the discussion.

No comments yet. Start the discussion!