- A Slack workspace
- autodl-irssi set up in ruTorrent
- Docker (sort of optional)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, Response | |
import requests | |
from bs4 import BeautifulSoup | |
app = Flask(__name__) | |
@app.route("/") | |
def index(): | |
resp = scrape_releases() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Depends on Lynx: | |
# | |
# $ apt-get -y install lynx | |
# | |
URL="https://www.dvdsreleasedates.com/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# i3blocks config file | |
# | |
# Please see man i3blocks for a complete reference! | |
# The man page is also hosted at http://vivien.github.io/i3blocks | |
# | |
# List of valid properties: | |
# | |
# align | |
# color | |
# command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in {1..51}; do | |
j=$((51 - $i)) | |
printf %"$j"s | |
if [[ $i > 1 ]]; then | |
p=$(($i + $i)) | |
fi | |
printf %"$p"s | tr " " "*" | |
echo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind-key j | |
unbind-key k | |
bind-key j down | |
bind-key k up | |
bind-key ^D pagedown | |
bind-key ^U pageup | |
color listfocus color98 color234 | |
#color listnormal color98 color234 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# finds all Windows thumbnail caches in the current directory | |
# and all subdirectories, then extracts the thumbnail images | |
# with vinetto to a directory. | |
# | |
# a little dirty, but it works. | |
file_list=() | |
while IFS= read -d $'\0' -r file ; do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# autostart applications | |
# some of these probably shouldn't be in here | |
# i am a lazy whore | |
exec /home/wigglytuff/.screenlayout/default1.sh | |
exec xset -dpms | |
exec xset s noblank | |
exec xset s 0 0 | |
exec xset s off | |
exec xset r rate 200 25 | |
exec compton & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# i3blocks config file | |
# | |
# Please see man i3blocks for a complete reference! | |
# The man page is also hosted at http://vivien.github.io/i3blocks | |
# | |
# List of valid properties: | |
# | |
# align | |
# color | |
# command |
NewerOlder