Skip to content

Instantly share code, notes, and snippets.

View ruant's full-sized avatar
High five

Rune Antonsen ruant

High five
View GitHub Profile
@Tydus
Tydus / config_vwifi.sh
Created December 7, 2016 14:38
config virtual wi-fi APs
#!/bin/sh
#=======================================
# config_vwifi.sh
# Config virtual wi-fi (bridge to vlans)
#=======================================
# show which port you have by `robocfg show'
PORT_LIST="0t 1t 2t 3t 4t 8t"
@touilleMan
touilleMan / SimpleHTTPServerWithUpload.py
Last active November 25, 2025 02:03 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload - Python3 version
#!/usr/bin/env python3
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
see: https://gist.github.com/UniIsland/3346170
"""