Skip to content

Instantly share code, notes, and snippets.

View blgnksy's full-sized avatar

Bilgin Aksoy blgnksy

  • METU
  • Berlin, Germany
View GitHub Profile
@blgnksy
blgnksy / PythonObfuscating.md
Created September 5, 2019 12:25
Python Obfuscating

Python Obfuscating

python -OO -m py_compile <your program.py>
@blgnksy
blgnksy / Grep.sh
Last active October 22, 2020 13:52
Grep
# (Lines after and before keyword)
grep -A5 -B5 keyword
# Find empty lines
grep -E --line-number --with-filename '^$' file.txt