Skip to content

Instantly share code, notes, and snippets.

View mahmoud-eskandari's full-sized avatar
🪲
What the bug? WTB?

Mahmoud Eskandari mahmoud-eskandari

🪲
What the bug? WTB?
View GitHub Profile
@mahmoud-eskandari
mahmoud-eskandari / first-j-weekday.sql
Last active January 22, 2022 12:10
بدست آوردن نیمه شب شنبه‌ی هفته‌ی جاری در SQL, MySQL
TIMESTAMP(DATE_SUB(CURDATE(),INTERVAL
CASE weekday(CURDATE())
WHEN 0 THEN 2
WHEN 1 THEN 3
WHEN 2 THEN 4
WHEN 3 THEN 5
WHEN 4 THEN 6
WHEN 5 THEN 0
WHEN 6 THEN 1
END
@mahmoud-eskandari
mahmoud-eskandari / docker-compose.yml
Created February 8, 2022 09:31
squid-authenticated Docker / Telegram mtproto
version: '3.8'
services:
sq:
image: robhaswell/squid-authenticated
restart: always
ports:
- "3128:3128"
environment:
- "SQUID_USERNAME=user"
- "SQUID_PASSWORD=pass..."
@mahmoud-eskandari
mahmoud-eskandari / README.md
Last active April 16, 2025 09:38
Install v2ray on Bridge:(Ubuntu +18 via systemd) - Upstream (Ubuntu +18/CentOS +7 via docker)

پنل x-ui

پنل تحت وب مدیریت V2ray و ساخت کاربر و مدیریت سرور

mkdir x-ui && cd x-ui
docker run -itd --network=host \
    -v $PWD/db/:/etc/x-ui/ \
 -v $PWD/cert/:/root/cert/ \
@mahmoud-eskandari
mahmoud-eskandari / server_publish_mp4_as_hls_golag.go
Last active July 2, 2024 05:43
Simple Golang Mp4 to hls server
package main
import (
"bytes"
"fmt"
"io"
"math"
"net/http"
"os"
"path"
@mahmoud-eskandari
mahmoud-eskandari / innodb_to_ndbcluster_migration.sh
Last active August 11, 2024 21:29
MySQL InnoDB to NDBCluster migration script (ignores non-compatible foreign keys)
#!/bin/bash
# Written by Mahmoud Eskandari @ BoomerangApp - 2024
# Warning: Backup your innoDB before run!
# ****** Caution ******
# If you mistakenly swap the source and destination,
# the source database will be deleted. This script will also delete and recreate the destination database.
# Please be careful.
#