Skip to content

Instantly share code, notes, and snippets.

View Shaz3e's full-sized avatar

Shahrukh Akhtar Shaz3e

View GitHub Profile
@Shaz3e
Shaz3e / extensions.json
Last active September 23, 2024 20:42
My VS Code Extension List to code faster and easier
// .vscode/extensions.json
{
"recommendations": [
"rangav.vscode-thunder-client",
"bmewburn.vscode-intelephense-client",
"donjayamanne.githistory",
"DavidAnson.vscode-markdownlint",
"eamodio.gitlens",
"GitHub.vscode-pull-request-github",
"PKief.material-icon-theme",

###Many applications require a MySQL table of all the countries in the world and their corresponding country codes, but compiling that manually would be a bit of a chore!

Copy the contents of the countries.sql into the 'Contents' tab in phpMyAdmin, or use the 'Import' tab to upload the file directly. See 'next' link below for importing via command line.

@Shaz3e
Shaz3e / .htaccess
Last active November 26, 2015 15:54
RewriteEngine On
RewriteCond $1 !^(index\.php)
RewriteRule ^(.*)$ index.php?l=$1 [L]
@pascalmaddin
pascalmaddin / parallax-image-with-text.html
Last active May 14, 2021 14:38
An Image with parallax-effect and with some text, which is fading out while scrolling
<div id="banner">
<div class="wrap-center">
<div class="banner-centered" id="banner-text">
<h2>Hello <strong>We Are Company-Name</strong>, Glad To See You. :-)</h2>
</div>
</div>
</div>