Skip to content

Instantly share code, notes, and snippets.

View matinwd's full-sized avatar
🎯
Focusing

MatinWD matinwd

🎯
Focusing
View GitHub Profile
@rajibdpi
rajibdpi / index.html
Last active August 20, 2021 21:24
Shopping Cart Dropdown
<nav>
<div class="container">
<ul class="navbar-left">
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
</ul> <!--end navbar-left -->
<ul class="navbar-right">
<li><a href="#" id="cart"><i class="fa fa-shopping-cart"></i> Cart <span class="badge">3</span></a></li>
</ul> <!--end navbar-right -->
@mabuak
mabuak / fileUploadTrait.php
Created May 19, 2018 09:27
Laravel File Upload Trait
<?php
/**
* Created by PhpStorm.
* User: DhanPris
* Date: 15/05/2018
* Time: 11:51
*/
namespace App\Http\Traits;
@MoienTajik
MoienTajik / iranian-phone-numbers-regex.md
Last active May 11, 2025 11:51
Regex For Iranian Mobile Phone Numbers

Regex For Iranian Phone Numbers

This regex supports all kinds of Iranian mobile phone numbers :

^(\+98|0)?9\d{9}$


Regex Visualized