Skip to content

Instantly share code, notes, and snippets.

View Abzol's full-sized avatar

Olivia!! Abzol

View GitHub Profile
@Abzol
Abzol / raidboy.py
Created August 21, 2017 19:37
a raid calendar tracking bot
#TODO COMMENT THIS SHIT
#TODO fnmatch (e.g. 'wed' matches 'wednesday')
import discord
import asyncio
import json
ADMIN = ["49627337024606208", #olivia
]
READY = 2
NOTREADY = 1
@Abzol
Abzol / foo.yaml
Created April 22, 2017 19:01
5e feats yaml demo
---
- Alert: >
Always on the lookout for danger, you gain the following benefits:
• You gain a +5 bonus to initiative.
• You can't be surprised while you are conscious.
• Other creatures don't gain advantage on attack rolls against you
as a result of being hidden from you.
- Athlete: >
You have undergone extensive physical training to gain the following
benefits:
@Abzol
Abzol / nordickey.ahk
Created March 23, 2017 12:43
ahk script for nordic special charater input
#SingleInstance force
SendMode Input
^!+SC027:: ; ctrl-alt-shift-ö -> Ø
    Send, {U+00D8}
return
^!SC027:: ; ctrl-alt-ö -> ø
    Send, {U+00F8}
return
@Abzol
Abzol / armenian.py
Created March 1, 2017 22:31
dumbest armenian checker
#!/usr/bin/python
import re, sys
if __name__ == "__main__":
r_a = re.compile("[\u0531-\u058F]")
r_e = re.compile("[A-Za-z]")
fn = sys.argv[1]
try:
with open(fn, "r") as f:
a = 0