Posts

Fix OneDrive issue

How to Fix OneDrive Error 0x8004def4 Symptoms Error code 0x8004def4 appears. OneDrive asks you to restart OneDrive and if the problem presist, to restart Windows. Start with a reset. If the problem persists, perform a clean reinstall. Method 1 - Reset OneDrive Open Run ( Win + R ) or Command Prompt and run: %localappdata%\Microsoft\OneDrive\OneDrive.exe /reset Note If resetting does not resolve the issue, continue with the clean reinstall below. Method 2 - Clean Reinstall OneDrive Step 1 - Uninstall OneDrive Open Command Prompt as Administrator . Uninstall OneDrive: %SystemRoot%\System32\OneDriveSetup.exe /uninstall Verify that OneDrive has been removed: dir "%localappdata%\Microsoft\OneDrive" Expected result: OneDrive.exe should no longer exist. If OneDrive.exe is gone but some files remain, terminate any remaining OneDrive processes: taskkill /F /IM OneDrive.exe taskkill /F /IM OneDrive.App.exe taskkill /F /IM FileC...

Install Windows Subsystem For Android

Installing WSA Download MustardChef WSA Builds . Extract the files to C:\Android . Run PowerShell as Administrator . Run the following commands: cd C:\Android Set-ExecutionPolicy Bypass -Scope Process -Force .\Install.ps1 Uninstalling WSA Run PowerShell as Administrator . Run the following commands: wsl --shutdown Get-AppxPackage *WindowsSubsystemForAndroid* | Remove-AppxPackage Remove-Item C:\Android -Recurse -Force WSA Sideloader WSA Sideloader is a simple tool that allows you to easily install APK files on Windows Subsystem for Android (WSA). It also supports installing XAPK , APKM , and APKS files.

Install MySQL Workbench as portable app

Run in CMD or PowerShell: msiexec /a mysql-workbench-community-8.0.xx-winx64.msi /qb TARGETDIR=C:\wbtemp Replace the filename with your actual MSI name. The wbtemp folder will be created automatically. This does NOT install the application. It only extracts the files. Find MySQLWorkbench.exe inside the extracted files and copy the entire folder to a new location, for example: C:\PortableWorkbench Then run: MySQLWorkbench.exe This method should work for most applications distributed as MSI installers.

Compare Local and Remote Branches with external tools

✅ Use VS Code as diff tool (clean setup) Run this once in your terminal (WSL or normal): git config --global diff.tool vscode git config --global difftool.vscode.cmd "code --wait --diff $LOCAL $REMOTE" git config --global difftool.prompt false 🚀 How to use it git difftool origin/UAT...HEAD 👉 Result: Opens each file in side-by-side diff view Clean UI (like VS Code) 🧠 Tip (very useful) If you want just one file : git difftool origin/UAT -- path/to/file.php ✅ Set up WinMerge as diff tool (Windows) Now let’s wire up WinMerge . 🔧 1. Install WinMerge Download & install normally (if not already). Make sure path looks like: C:\Program Files\WinMerge\WinMergeU.exe or C:\WinMerge\WinMergeU.exe 🔧 2. Configure Git Run this in Windows Git Bash (important, not WSL): git config --global diff.tool winmerge git config --global difftool.winmerge.cmd '"/mnt/c/WinMerge/WinMergeU.exe" -e -u -dl Local -dr Remote "...

Logout from Amazon Q VSC

1. Force sign-out from VS Code Accounts In VS Code: Press Ctrl + Shift + P Run: Accounts: Sign Out Select: AWS Builder ID or anything related to Amazon / AWS . Then restart VS Code. 2. Remove authentication sessions manually Inside WSL run: rm -rf ~/.vscode-server/data/User/globalStorage/ms-vscode.authentication and also: rm -rf ~/.vscode-server/data/User/secrets Then restart VS Code. 3. Clear browser AWS login (very important) Amazon Q authentication comes from AWS Builder ID via browser OAuth. Logout here: https://profile.aws.amazon.com/ or open private/incognito window before logging in again. 4. Nuclear reset (guaranteed) Close VS Code completely, then run in WSL: rm -rf ~/.vscode-server Then reopen the project: code . This forces VS Code to reinstall the server and removes all cached auth tokens .

MySQL search value methods

If you want to find a specific value anywhere in a MySQL database (any column, any table), there are a few common approaches—ranging from quick-and-dirty to more systematic. 1️⃣ Search a known table but any column If you know the table but not the column: SELECT * FROM your_table WHERE col1 = 'value' OR col2 = 'value' OR col3 = 'value'; ⚠️ This requires you to list columns manually. 2️⃣ Search all columns of all tables (automatic way) This is the practical solution when you have no idea where the value lives. Step 1: Generate search queries using INFORMATION_SCHEMA SELECT CONCAT( 'SELECT "', TABLE_NAME, '" AS table_name, "', COLUMN_NAME, '" AS column_name FROM ', TABLE_SCHEMA, '.', TABLE_NAME, ' WHERE ', COLUMN_NAME, ' = ''your_value'';' ) FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'your_database'; This generates SQL statem...

Join vs Model vs Relationship in Laravel

Understanding SQL joins, Eloquent relationships, and model accessors. 1) Join (Database level) A join is a database operation used to combine rows from multiple tables. It happens at the SQL level and is focused on performance and filtering. Example: SELECT users.name, posts.title FROM users JOIN posts ON posts.user_id = users.id; Runs in the database Returns raw rows Very fast 2) Relationship (Eloquent ORM level) A relationship defines how models are connected. It represents business meaning, not just raw data. class User extends Model { public function posts() { return $this->hasMany(Post::class); } } Usage: $user->posts; Returns model objects Supports lazy & eager loading Encodes domain logic 3) Model Accessor (Presentation level) An accessor is a computed attribute on a model. It does not fetch data from the dat...