Skip to content

Instantly share code, notes, and snippets.

View axionl's full-sized avatar
ArielAxionL is typing...

ArielAxionL axionl

ArielAxionL is typing...
View GitHub Profile
@axionl
axionl / unbound.conf
Created February 22, 2019 13:36 — forked from raymond-yn/unbound.conf
unbound.conf
#Use this to include other text into the file.
include: "/usr/local/etc/unbound/conf.d/*.conf"
forward-zone:
name: "."
forward-addr: 8.8.8.8
# The server clause sets the main parameters.
server:
# number of threads to create. 1 disables threading.
num-threads: 1
@axionl
axionl / tmux-cheatsheet.markdown
Created September 14, 2018 06:03 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@axionl
axionl / WallBreaker.py
Created December 7, 2017 07:42 — forked from ysc3839/WallBreaker.py
WallBreaker
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys, socket, select, SocketServer, struct, logging
from time import sleep
logging.basicConfig(level=logging.INFO)
BUFLEN = 1024
SLEEPTIME = 0.4