Skip to content

Instantly share code, notes, and snippets.

View AYehia0's full-sized avatar
🐍
busy learning

Yehia AYehia0

🐍
busy learning
View GitHub Profile
@AYehia0
AYehia0 / .tmux.conf
Created June 13, 2022 11:41 — forked from tsl0922/.tmux.conf
vim style tmux config
# vim style tmux config
# use C-a, since it's on the home row and easier to hit than C-b
set-option -g prefix C-a
unbind-key C-a
bind-key C-a send-prefix
set -g base-index 1
# Easy config reload
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
@AYehia0
AYehia0 / wgcf.py
Created February 10, 2021 11:33 — forked from oskar456/wgcf.py
Cloudflare WARP linux client (using wg-quick for actual tunnel setup)
#!/usr/bin/env python3
import subprocess
import json
import os
from pathlib import Path
import requests
from requests.compat import urljoin