Skip to content

Instantly share code, notes, and snippets.

View thecodermehedi's full-sized avatar
🧑‍💻
Solo Levelling

Mehedi Hasan thecodermehedi

🧑‍💻
Solo Levelling
View GitHub Profile
@thecodermehedi
thecodermehedi / settings.json
Last active June 6, 2023 10:36
Windows Terminal Settings
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions": [],
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"firstWindowPreference": "defaultProfile",
"initialCols": 80,
"initialRows": 20,
"profiles":
{
@thecodermehedi
thecodermehedi / settings.json
Last active June 6, 2023 15:22
vscodium customization settings
{
//* Workbench
"window.menuBarVisibility": "toggle",
"workbench.sideBar.location": "left",
"window.autoDetectColorScheme": true,
"workbench.list.smoothScrolling": true,
"workbench.editor.labelFormat": "short",
"workbench.startupEditor": "newUntitledFile",
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "material-icon-theme",
@thecodermehedi
thecodermehedi / office2021activator.cmd
Last active March 22, 2025 20:48
Office 2021 LTS Activation Script
@echo off
title Activate Microsoft Office 2021 (ALL versions) for FREE - MSGuides.com&cls&echo =====================================================================================&echo #Project: Activating Microsoft software products for FREE without additional software&echo =====================================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2021&echo - Microsoft Office Professional Plus 2021&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2021VL_KMS*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo =====================================================================================&echo Activating your product...&cscript //nologo slmgr.vbs /ckms >nul&c
@thecodermehedi
thecodermehedi / bootstrap-breakpoint.css
Last active May 15, 2023 10:04 — forked from WebDevSimplified/bootstrap-breakpoint.css
This stylesheet adds text describing the current Bootstrap Breakpoint in the top right corner of the screen.
body {
margin-top: 40px; /* This margin just makes the text easier to read. You can remove it if you want since it can mess with your other styles. */
}
body::before {
content: "XS";
color: red;
font-size: 2rem;
font-weight: bold;
position: fixed;