Skip to content

Instantly share code, notes, and snippets.

View mahdyar's full-sized avatar
🌱

Mahdyar Hasanpour mahdyar

🌱
View GitHub Profile
@mahdyar
mahdyar / TODO.SH
Created April 25, 2019 20:53
Simple TODO-List Manager
#!/bin/sh
TODO=~/.TODO
# The Path of The TODO-List
alias clt="rm -rf $TODO" # For make the List empty.
alias adt="echo '#'$1 >> $TODO" # For add an Item to the List.
# Displaying the List..
if test -f "$TODO";then
@mahdyar
mahdyar / keybase.md
Created August 28, 2020 10:57
keybase.md

Keybase proof

I hereby claim:

  • I am mahdyar on github.
  • I am mahdyar (https://keybase.io/mahdyar) on keybase.
  • I have a public key whose fingerprint is 0C45 1EE6 1812 7F21 271C 77ED 15DF CA00 8893 751D

To claim this, I am signing this object:

@mahdyar
mahdyar / ir-whois.go
Last active January 30, 2021 21:21
Whois lookup script written in Golang for .ir domains
package main
import (
"fmt"
"net"
)
/*************************************************************************
@mahdyar
mahdyar / whichiswhich.sh
Last active March 1, 2021 14:46
Detect which apps are running under Rosetta2 or native on Apple Silicon M1.
for appFolder in /Applications/*/ ; do
cd "$appFolder/Contents/MacOS/" 2> /dev/null
if [[ "$?" != 0 ]]; then continue; fi
for file in * ; do
if [ ! -d "$file" ] && [[ $file != *"."* ]]; then
architecture=$(file "$file")
if [[ $architecture != *"arm64"* ]]; then
echo "\"$file\" doesn't support arm64."
@mahdyar
mahdyar / AllowedUsername.php
Last active April 18, 2021 20:53
Prevent your users to register with your route paths like login, or reserved usernames as their usernames in Laravel. More: https://blog.mahdyar.me/2021/04/18/route-paths-and-reserved-usernames-in-laravel/
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
use Illuminate\Support\Facades\Route;
class AllowedUsername implements Rule
{
/**
@mahdyar
mahdyar / awesome-dark-theme-switch.markdown
Created May 11, 2021 09:28
Awesome Dark theme switch
@mahdyar
mahdyar / creditcardverification.php
Created May 9, 2022 17:02
بررسی صحت شماره کارت ایرانی در PHP
<?php
function validateCardNumber($cardNumber)
{
if (empty($cardNumber) || strlen($cardNumber) !== 16) {
return false;
}
$cardToArr = str_split($cardNumber);
$cardTotal = 0;
for ($i = 0; $i < 16; $i++) {
wir(){
NAME=$(sed 's/ /_/g' <<< "$@")
INITIAL=$(echo $NAME | head -c 1)
IMDB_ID=$(curl -ks "https://v2.sg.media-imdb.com/suggestion/$INITIAL/$NAME.json" | jq -r '.d[0].id')
LINK="https://wir31.site/${IMDB_ID}/"
curl -ks "$LINK" | lynx -dump -nonumbers -listonly -stdin | grep -e '.mkv' -e '.mp4' | grep 'http://'
}
@mahdyar
mahdyar / vo-asiatech.php
Created August 21, 2022 12:04
سرویس سامانه پیامکی آسیاتک برای افزونه پیام کوتاه WHMCS وهاب آنلاین
<?php
/*
*
*
*
* Developed by Mahdyar.me
* Contact: hi@mahdyar.me
*
@mahdyar
mahdyar / functions.php
Created September 2, 2022 20:26
Hide the default "Add to cart" button and show a customized "Add to cart" button in WooCommerce
<?php
/*
*
* Customized add to cart button for WooCommerce
* © mahdyar.me (hasanpour@mahdyar.me)
*
* Add this to the end of your template's "functions.php" file (without "<?php" at the begining of this file)
*
*/