Skip to content

Instantly share code, notes, and snippets.

View thakyZ's full-sized avatar
👬
This emoji was one to show up when searching soup 👍

Neko Boi Nick thakyZ

👬
This emoji was one to show up when searching soup 👍
View GitHub Profile
@thakyZ
thakyZ / pyproject.json
Last active March 18, 2024 18:00 — forked from zevisert/pyproject.json
pyproject.toml json-schema including poetry definitions
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"poetry-authors": {
"type": "array",
"description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.",
"items": {
"type": "string",
"pattern": "(?:\\S+?\\s)+?(?:<(?:[a-z\\d!#$%&'*+\/=?^_`{|}~-]+(?:\\.[a-z\\d!#$%&'*+\/=?^_`{|}~-]+)*|\"(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21\\x23-\\x5b\\x5d-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])*\")@(?:(?:[a-z\\d](?:[a-z\\d-]*[a-z\\d])?\\.)+[a-z\\d](?:[a-z\\d-]*[a-z\\d])?|\\[(?:(?:25[0-5]|2[0-4][\\d]|[01]?[\\d][\\d]?)\\.){3}(?:25[0-5]|2[0-4][\\d]|[01]?[\\d][\\d]?|[a-z\\d-]*[a-z\\d]:(?:[\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x21-\\x5a\\x53-\\x7f]|\\\\[\\x01-\\x09\\x0b\\x0c\\x0e-\\x7f])+)\\])>)?"
}
@thakyZ
thakyZ / de.sidneys.userscripts.save-as.js
Last active July 9, 2023 19:14 — forked from sidneys/de.sidneys.userscripts.save-as.js
Userscript | Download File As
// ==UserScript==
// @name Save-As Userscript Library
// @namespace de.sidneys.userscripts
// @homepage https://gist.github.com/thakyZ/b25049e7a49d95dbda9141fc4ca39190/raw/
// @version 3.0.1
// @description "Save As..." for any URL
// @author sidneys
// @icon https://www.greasespot.net/favicon.ico
// @include *://*/*
// @grant unsafeWindow
@thakyZ
thakyZ / status.php
Last active January 31, 2021 20:30 — forked from dkesberg/status.php
A short server info page, showing server status and player info
<?php
/**
* @author Daniel Kesberg <kesberg@gmail.com>
* @copyright (c) 2013, Daniel Kesberg
*/
error_reporting(E_ALL);
ini_set('display_errors', false);
$parseTimeStart = microtime(1);
@thakyZ
thakyZ / tweet_from_sink.py
Created November 14, 2019 17:13 — forked from pmnlla/tweet_from_sink.py
tweet_from_fridge with replies (Python)
import sys, os, time
import tweepy
#Credit to KonradIT on GithubGist for making the original script, tweet_from_fridge.py
#I had only modified it so it can reply to tweets, nothing else.
#All credit goes to the original author.
keys = dict(
consumer_key='put',
consumer_secret='your',