I hereby claim:
- I am zeratax on github.
- I am zeratax (https://keybase.io/zeratax) on keybase.
- I have a public key whose fingerprint is 44F7 B797 9D3A 27B1 89E0 841E 8333 735E 784D F9D4
To claim this, I am signing this object:
| /** | |
| * NeonByte NavBar | |
| */ | |
| body{ | |
| background-color: #555555; | |
| } | |
| a { | |
| font-size:100%; | |
| vertical-align:baseline; |
I hereby claim:
To claim this, I am signing this object:
| <div class="background"></div> | |
| <div class="widget"> | |
| <div class="center"> | |
| <h1>漢字</h1> | |
| <img id="object"> | |
| </div> | |
| </div> | |
| <div class="info"> | |
| <p>Source: | |
| <a href="https://danbooru.donmai.us/posts/2735908" target="_blank"> |
| from PIL import Image | |
| from matplotlib import pyplot as plt | |
| import numpy as np | |
| # Edit these values | |
| file = "quecksilber_graphonly.BMP" | |
| line_color = np.array([0, 192, 192]) | |
| # colors in rgb | |
| black = np.array([0, 0, 0]) | |
| white = np.array([255, 255, 255]) |
| from bs4 import BeautifulSoup | |
| import requests | |
| def get_google_img(query): | |
| """ | |
| gets a link to the first google image search result | |
| :param query: search query string | |
| :result: url string to first result | |
| """ |
| import discord | |
| import asyncio | |
| from datetime import datetime | |
| import time | |
| client = discord.Client() | |
| import discord | |
| import asyncio | |
| import cool_names | |
| client = discord.Client() | |
| invite = "https://discordapp.com/api/oauth2/authorize" | |
| permissions = "201326592" | |
| @client.event |
| from flask import Flask, request, abort, jsonify, request | |
| import hashlib | |
| import hmac | |
| import requests | |
| SERVER_LOCATION = 'https://homeserver.tld/' | |
| SHARED_SECRET = b'registration_shared_secret see homeserver.yaml' | |
| app = Flask(__name__) |
| // ==UserScript== | |
| // @name twiblur | |
| // @namespace mail@zera.tax | |
| // @version 0.2 | |
| // @description blur twitter images | |
| // @author ZerataX | |
| // @license Unlicense | |
| // @match https://twitter.com/* | |
| // @grant GM_addStyle | |
| // @run-at document-start |