Skip to content

Instantly share code, notes, and snippets.

@ToxicProxy
ToxicProxy / Wlanpass.py
Created October 1, 2017 19:14
Wifi Passwords
import subprocess
import re
# List of Wlan interfaces connected before/frequently
cmd = subprocess.Popen('netsh wlan show profiles', shell=True, stdout=subprocess.PIPE)
ssids = [];
for line in cmd.stdout:
line = line.strip()
searchObj = re.search( ': ', line, re.M|re.I)
@magicznyleszek
magicznyleszek / jekyll-and-liquid.md
Last active January 12, 2024 03:46
Jekyll & Liquid Cheatsheet

Jekyll & Liquid Cheatsheet

A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.

Running

Running a local server for testing purposes: