I hereby claim:
- I am der-eddy on github.
- I am dereddy (https://keybase.io/dereddy) on keybase.
- I have a public key ASA9n5hZWqWbsAkIJdCyamimlWAfptJpdZuEIpVohknezgo
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Post Template | |
| // @namespace Elitepvpers | |
| // @include *//www.elitepvpers.com/forum/* | |
| // @version 1.1 | |
| // @author Der-Eddy | |
| // @grant none | |
| // ==/UserScript== | |
| (function($){ | |
| // '\n' steht für eine Leerzeile |
| import keyboard #https://github.com/boppreh/keyboard | |
| import time | |
| import sys | |
| import os | |
| counter = 0 | |
| prefixCounter = 'Death Count:' | |
| file = os.path.join(sys.path[0], 'count.txt') | |
| def addCounter(): |
| geheimnis = 1337 | |
| versuch = 0 | |
| zaehler = 0 | |
| while versuch != geheimnis: | |
| versuch = int(input("Raten Sie: ")) | |
| if versuch < geheimnis: | |
| print("zu klein") | |
| if versuch > geheimnis: |
| from tkinter import * | |
| def sortText(): | |
| text = T.get(1.0, END)[:-2] | |
| lst = text.split('\n\n') | |
| lst.sort() | |
| print(lst) | |
| T.delete(1.0, END) | |
| T.insert(END, '\n\n'.join(lst)) |
I hereby claim:
To claim this, I am signing this object:
| import os | |
| import platform | |
| import requests | |
| oauthURL = 'https://anilist.co/api/v2/oauth/authorize?client_id=XXXX\&response_type=code' | |
| api = 'https://graphql.anilist.co' | |
| headers = {'user-agent': platform.system().lower() + ':anicli:v.1.0', 'Content-Type': 'application/json', 'Accept': 'application/json'} | |
| accessToken = 'def50200a9891a ... currently hard coded for testing purposes' | |