Skip to content

Instantly share code, notes, and snippets.

View shahaj90's full-sized avatar
🏠
Working from home

Shahajuddin shahaj90

🏠
Working from home
View GitHub Profile
@shahaj90
shahaj90 / vs config
Created April 30, 2026 08:31
VS code config File
{
// --- UI & Workbench ---
"workbench.colorTheme": "Learn with Sumit - Peace of the eye - Dracula version",
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "none",
"workbench.layoutControl.enabled": false,
"workbench.secondarySideBar.showLabels": false,
"workbench.secondarySideBar.defaultVisibility": "visible",
"window.customTitleBarVisibility": "auto",
"vsicons.dontShowNewVersionMessage": true,
@shahaj90
shahaj90 / zed editor config
Last active April 30, 2026 12:09
Zed editor config file
{
"theme": "One Dark",
"icon_theme": "Material Icon Theme",
"ui_font_size": 22,
"buffer_font_size": 20,
"title_bar": {
"show_branch_name": false
},
"debugger": {
"button": false
@shahaj90
shahaj90 / .htaccess
Last active December 25, 2024 18:13
Nuxtjs htaccess file for cPanel
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
@shahaj90
shahaj90 / .htaccess
Last active March 9, 2024 17:17
Laravel htaccess file for cPanel
<IfModule mod_rewrite.c>
# That was ONLY to protect you from 500 errors
# if your server did not have mod_rewrite enabled
RewriteEngine On
# RewriteBase /
# NOT needed unless you're using mod_alias to redirect
RewriteCond %{REQUEST_URI} !/public
RewriteRule ^(.*)$ public/$1 [L]
@shahaj90
shahaj90 / .htaccess
Last active March 9, 2024 17:16
Nextjs htaccess file for cPanel
<IfModule mod_rewrite.c>
RewriteEngine on
# Remove trailing slash if it exists
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Serve HTML files without extension
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
</IfModule>