sudo pacman -S deluge pygtk
DelugeSimpleDark Theme: http://fav.me/dblwxeh
$ unzip theme.zip
| # Should shellinaboxd start automatically | |
| SHELLINABOX_DAEMON_START=1 | |
| # TCP port that shellinboxd's webserver listens on | |
| SHELLINABOX_PORT=4200 | |
| # Parameters that are managed by the system and usually should not need | |
| # changing: | |
| # SHELLINABOX_DATADIR=/var/lib/shellinabox | |
| # SHELLINABOX_USER=shellinabox |
| <IfModule mod_ssl.c> | |
| <VirtualHost _default_:443> | |
| ServerAdmin webmaster@localhost | |
| ServerName 1.2.3.4:443 | |
| DocumentRoot /var/www/html | |
| # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, | |
| # error, crit, alert, emerg. | |
| # It is also possible to configure the loglevel for particular |
| #!/usr/bin/env python | |
| # Traffic generation script for Cyber Magic 2016 | |
| # author - github.com/vesche | |
| import random | |
| import time | |
| # import urllib2 | |
| from selenium import webdriver | |
| from selenium.webdriver.common.action_chains import ActionChains |
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| ###################################### | |
| # Advent of Code 2016, Day 07 - Part 1 | |
| # https://github.com/vesche | |
| ###################################### | |
| import re |
| sudo date -s "$(wget -qSO- --max-redirect=0 google.com 2>&1 | grep Date: | cut -d' ' -f5-8)Z" |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # pygame raycaster proto | |
| # | |
| import math | |
| import time | |
| import pygame |
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # frontsidefix | |
| # https://github.com/vesche | |
| # | |
| import argparse | |
| import os |
sudo pacman -S deluge pygtk
DelugeSimpleDark Theme: http://fav.me/dblwxeh
$ unzip theme.zip
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| hacky mass rename with quality | |
| let's hope this doesn't fuck up | |
| """ | |
| import os |
| #!/usr/bin/env python | |
| import pyautogui | |
| import random | |
| import time | |
| def r(): return random.randint(1, 10) | |
| while 1: | |
| time.sleep(r()) |