This file contains hidden or 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
''' | |
original script was written by @lenforiee | |
''' | |
import asyncio, time | |
import re | |
import traceback | |
from typing import TYPE_CHECKING, Union | |
NAME = "kuriso!irc" | |
WHITE_SPACE = re.compile(r"\r?\n") |
This file contains hidden or 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
// ==UserScript== | |
// @name Dnevnik.mos.ru Homework editor | |
// @namespace http://dnevnik.mos.ru/ | |
// @version 0.1 | |
// @description Просто давайте редактировать домашку | |
// @author KotRik | |
// @match https://dnevnik.mos.ru/student_diary/student_diary/* | |
// @grant none | |
// @require http://code.jquery.com/jquery-3.4.1.min.js | |
// ==/UserScript== |
This file contains hidden or 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
// ==UserScript== | |
// @name Sticker Remover VK IM | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Remove sticker messages in IM VK | |
// @author KotRik | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js | |
// @match https://vk.com/im* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 PIL import Image | |
from PIL import ImageDraw | |
from PIL import ImageFont | |
from PIL import ImageOps | |
import datetime, io | |
f_s = 13 | |
font1 = ImageFont.truetype("roboto.ttf", f_s) |
This file contains hidden or 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
package goddrinksjava; | |
/** | |
* The program GodDrinksJava implements an application that | |
* creates an empty simulated world with no meaning or purpose. | |
* | |
* @author momocashew | |
*/ | |