Skip to content

Instantly share code, notes, and snippets.

View alionar's full-sized avatar

Aulia Lionar alionar

View GitHub Profile
@alionar
alionar / Block Indonesia Telco Trackers with pihole.txt
Last active December 6, 2020 11:30
Block Indonesia Telco Trackers for pihole (domain lists from bebasid repo -> https://github.com/bebasid/bebasid/blob/master/releases/hosts)
# [Indihome]
a01.uadexchange.com
a02.uadexchange.com
a03.uadexchange.com
a04.uadexchange.com
a05.uadexchange.com
block.uzone.id
cdn1.uzone.id
cdn2.uzone.id
cdn3.uzone.id
@alionar
alionar / Practical SSH Tunneling for Dev.md
Last active June 26, 2020 16:23
Access your remote server's ports easily...
  1. Setup SSH for Remote Server and add any LocalPort and RemotePort that you want to access via ssh tunneling by editing ~/.ssh/config
# --- REMOTE SERVER Internal Access ---
Host REMOTE_SERVER_NAME             # Any name
	Hostname REMOTE_SERVER_IP         # Change it
	User REMOTE_SERVER_USER           # Change it
	# Example
	LocalForward 8080 127.0.0.1:8080  # LocalPort RemotePort
	LocalForward 5555 127.0.0.1:5555  # LocalPort RemotePort
	LocalForward 8882 127.0.0.1:8882 # LocalPort RemotePort
@alionar
alionar / regex.txt
Last active May 2, 2019 11:10
Useful RegEx
Test it here: https://regex101.com
Indonesia Cell Phone Number (between 10-12 digit)
^08[0-9]{10,12}$