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 ShoutboxAdvanced | |
| // @version 0.3 | |
| // @namespace ShoutboxAdvanced | |
| // @description Advanced shoutbox mod for Rune-Server. | |
| // @include http://www.rune-server.org/forums.php* | |
| // @require http://userscripts.org/scripts/source/85365.user.js | |
| // ==/UserScript== | |
| var $ = unsafeWindow.jQuery; | |
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
| import java.util.HashMap; | |
| import java.util.LinkedList; | |
| import java.util.List; | |
| import java.util.Map; | |
| import java.util.Queue; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; | |
| import java.util.concurrent.locks.LockSupport; | |
| /** |
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 KissAnime Linker | |
| // @namespace https://github.com/kLeptO- | |
| // @version 0.1 | |
| // @description Direct linker for KissAnime. | |
| // @author kLeptO | |
| // @match *.me/Anime/* | |
| // @require http://code.jquery.com/jquery-latest.js | |
| // @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
| package test; | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.util.LinkedList; | |
| import java.util.Scanner; | |
| public class PathSum { | |
| public static void main(String[] args) throws Exception { |