Skip to content

Instantly share code, notes, and snippets.

View s4w3d0ff's full-sized avatar
:shipit:
1 ¯\_(ツ)_/¯ 0

s4w3d0ff s4w3d0ff

:shipit:
1 ¯\_(ツ)_/¯ 0
View GitHub Profile
@s4w3d0ff
s4w3d0ff / steam.sh
Created May 8, 2016 01:56
Install Steam on Ubuntu 14.04 LTS 64bit (one line)
sudo bash -c 'dpkg --add-architecture i386 && apt-get update && apt-get install -y libcgmanager0:i386 libgl1-mesa-glx-lts-utopic:i386 libudev1:i386 libc6:i386 libgl1-mesa-dri-lts-utopic:i386 libglapi-mesa-lts-utopic:i386 steam'
@s4w3d0ff
s4w3d0ff / something_or_somebody.txt
Created May 2, 2016 04:42
Something or somebody is a magician...
Something or somebody made /var/lib/tor disappear.
Creating one for you again.
Something or somebody made /var/log/tor disappear.
Creating one for you again.
* Starting tor daemon...
@s4w3d0ff
s4w3d0ff / burn-btc.md
Last active November 13, 2015 03:33 — forked from CoinWhisperer/burn-btc
A simple python program to create Bitcoin (or Bitcoin based coins) burn addresses.
@s4w3d0ff
s4w3d0ff / openConf.py
Last active June 21, 2019 15:47
Opens a bitcoin.conf and puts contents into a dict
import os
def readCfg(location):
# Make sure file exists...
if not os.path.exists(location):
return False
with open(location) as f:
cfg= {}
for line in f:
line = line.strip()