Skip to content

Instantly share code, notes, and snippets.

View mobarak10's full-sized avatar
🇧🇩
Bangladesh

Mobarak Hossain mobarak10

🇧🇩
Bangladesh
View GitHub Profile
@adrianhajdin
adrianhajdin / App.css
Last active May 23, 2025 05:09
Build and Deploy a React Admin Dashboard App With Theming, Tables, Charts, Calendar, Kanban and More
@import url('https://cdn.syncfusion.com/ej2/material.css');
.sidebar {
box-shadow: rgb(113 122 131 / 11%) 0px 7px 30px 0px;
}
.nav-item,
.navbar {
z-index: 10000;
}
@media screen and (max-width:800px) {
@shibbirweb
shibbirweb / 1ReadMe.md
Last active February 21, 2023 13:33
Laravel Bangladesh GEO Locaiton Migration, Seeder, Model

How to use

  1. After download all files from gist place files in correct folder follow as File Hierarchy (Given below).
  2. Run those command serially
composer dump-autoload

php artisan migrate
@shibbirweb
shibbirweb / .htaccess
Last active December 28, 2020 09:53
Redirect non-www to www & http to https .htaccess scripts
RewriteEngine On
#redirect non-www to www for all domain
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
#redirect non-www to www for specific domain
RewriteCond %{HTTP_HOST} ^example\.com
RewriteRule ^(.*)$ http://www.example.com/$1 [R=permanent,L]