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
(function() { | |
'use strict'; | |
// Your code here... | |
Object.defineProperty(document, "hidden", { value : false}); | |
console.log("Fuck you twitch :)"); | |
})(); |
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
{ | |
"_default": { | |
"1": { | |
"salt": "$2b$12$GUhqZjxSFGQ.9RzD/j1pte", | |
"flags": { | |
"is_admin": true | |
}, | |
"username": "aww", | |
"password": "$2b$12$GUhqZjxSFGQ.9RzD/j1pteV0IOcUjixGkp6c1PCYnTDbPCemqAIRW" | |
} |
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, render_template, jsonify, request | |
from threading import Timer, Thread | |
from time import sleep | |
app = Flask(__name__) | |
@app.route("/api/<method>") | |
def api(method): | |
data = { |
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
""" | |
Colorize - nick and URL coloring for XChat/Hexchat | |
------------------------------------------------------------------------------ | |
Copyright (c) 2013 Shaun Duncan and Contributors | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights |
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
#! /usr/bin/env python3 | |
# dm.py | |
# This script cleans up the downloads folder | |
# For uncompress to work you need to install p7ip-full | |
import glob | |
import os | |
import time | |
import subprocess |
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
Cape of Eternal Justice | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
---|---|---|---|---|---|---|---|---|---|
Cape of the Trinity | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
Chromatic Cloak | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
Cloak of Clarity | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
Cloak of Concentrated Hatred | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
Cloak of Consumption | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
Cloak of Draconic Might | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
Cloak of Firemaw | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
Cloak of Flames | back | 0 | 0 | 0 | 0 | 0 | Nothing | ||
Cloak of Suturing | back | 0 | 0 | 0 | 0 | 0 | Nothing |
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
#!/usr/bin/env python2 | |
import sqlite3 | |
import sys | |
# Path to Tasker DB | |
DB_PATH = "/home/aww/tasker.db" | |
connection = sqlite3.connect(DB_PATH) | |
cursor = connection.cursor() |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
privmsg_msg = ':[email protected] PRIVMSG ##Aww-Test :Hello, World!' | |
join_msg = ':[email protected] JOIN ##Aww-Test' | |
part_msg = ':[email protected] PART ##Aww-Test :"good bye"' | |
quit_msg = ':[email protected] QUIT :Read error: Connection reset by peer' | |
notice_msg = ':[email protected] NOTICE Aww :Hello, World!' | |
mode_msg = ':[email protected] MODE ##Aww-Test +v Aww' | |
action_msg = ':[email protected] PRIVMSG ##Aww-Test :\x01ACTION Jumps\x01' |
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
import hexchat | |
import json | |
import os | |
__module_author__ = 'Aww' | |
__module_name__ = 'Nick to name' | |
__module_version__ = '1.0' | |
__module_description__ = 'Puts the persons real name [if known] next to their nick' | |
# SETTINGS |
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
import xchat | |
import os | |
__module_author__ = 'Lunatrius' | |
__module_name__ = 'HighlightLog' | |
__module_version__ = '0.1' | |
__module_description__ = 'Logs highlights to a window, per-server basis.' | |
def catch_highlight(word, word_eol, userdata): |
NewerOlder