This file contains 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 osu! Logo template | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description try to take over the canvas! | |
// @author oralekin, LittleEndu, ekgame | |
// @match https://hot-potato.reddit.com/embed* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com | |
// @grant none | |
// ==/UserScript== |
This file contains 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
group 'lt.ekgame' // change the group to what suits you | |
version '0.0.1-SNAPSHOT' | |
buildscript { | |
ext.kotlin_version = '1.1.4-3' // May need to be hhanged | |
ext.bukkit_version = "1.12.1-R0.1-SNAPSHOT" // May need to be hhanged | |
repositories { | |
mavenCentral() | |
jcenter() |
This file contains 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 lt.ekgame.storasbot.utils; | |
import java.awt.image.BufferedImage; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.util.function.Consumer; | |
import javax.imageio.ImageIO; | |
import org.apache.http.entity.ContentType; |
This file contains 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 lt.ekgame.animation_test; | |
import java.awt.Color; | |
import java.awt.Graphics2D; | |
import java.awt.image.BufferedImage; | |
import java.io.ByteArrayInputStream; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.sql.SQLException; |
The further discussion for this concept has been moved to a proper git repository where you can post issues/requests and make pull requests.
https://github.com/ekgame/osu-client-api-concept/
This is a proposal for osu! client side API for third-party applications. The API is designed to provide information as well as to allow interaction with the osu! client.
osu! client here is refered as a Server, third party applications are refered to as Client.