Skip to content

Instantly share code, notes, and snippets.

View theChandrayMurmu's full-sized avatar
🇮🇳
Mastering Design Tools

Chandray Murmu theChandrayMurmu

🇮🇳
Mastering Design Tools
View GitHub Profile
@ixahmedxi
ixahmedxi / settings.json
Created January 2, 2024 20:45
VSCode settings.json
{
// open json editor for settings
"workbench.settings.editor": "json",
// Theme
"workbench.colorTheme": "Aura Dark",
"workbench.iconTheme": "moxer-icons",
// Change font
"editor.fontFamily": "Geist Mono",
@ThioJoe
ThioJoe / Appx-Uninstaller.ps1
Last active April 20, 2025 16:48
A basic script for uninstalling a list of app packages in Windows 10/11, including those pre-installed with Windows
# A basic script for uninstalling app packages in Windows 10/11, including those pre-installed with Windows
#
# Note: If you get an error about the script not being allowed to run, the below command will change the execution polciy temporarily for one session only:
# Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
#
# To execute the script, open a Powershell window to the directory with the script and run the following command using your scripts file name (and don't forget the .\ )
# .\WhateverScriptName.ps1
# -------------------------------------------------------------------------------------------
# Script by ThioJoe - https://github.com/ThioJoe
@theChandrayMurmu
theChandrayMurmu / gamelist.md
Last active October 23, 2019 05:48
IQ BASED GAMES
@theChandrayMurmu
theChandrayMurmu / git.md
Created October 16, 2019 04:49
Git Commands

Git is a version control system for tracking changes in computer files and coordinating work on those files among multiple people.

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.

Git is easy to learn and has a tiny footprint with lightning fast performance. It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase with features like cheap local branching, convenient staging areas, and multiple workflows.