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.io.BufferedReader; | |
| import java.io.InputStreamReader; | |
| import java.net.HttpURLConnection; | |
| import java.net.URL; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import java.util.UUID; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; |
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
| acl acpi-support-base acpid adduser alsa-base alsa-utils analog apache2 apache2-doc apache2-mpm-worker apache2-utils apache2.2-bin apache2.2-common apt apt-listchanges apt-utils aptitude aptitude-common aspell aspell-de aspell-de-alt aspell-en at avahi-daemon base-files base-passwd bash bash-completion bc bind9-host binutils blt bsd-mailx bsdmainutils bsdutils build-essential busybox bzip2 ca-certificates cgroup-bin cifs-utils colord console-setup console-setup-linux consolekit coreutils cpio cpp cpp-4.6 cpp-4.7 cron cups cups-bsd cups-client cups-common cups-filters cups-ppdc curl dash db5.1-util dbus dbus-x11 dc dconf-gsettings-backend:armhf dconf-service debconf debconf-i18n debconf-utils debian-archive-keyring debian-faq debian-reference-common debian-reference-en debianutils desktop-base desktop-file-utils dictionaries-common diffutils dillo discover discover-data dkms dmsetup dnsutils doc-debian dosfstools dphys-swapfile dpkg dpkg-dev e2fslibs:armhf e2fsprogs ed eject epiphany-browser epiphany-browser-d |
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 org.anonymous; | |
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import net.lingala.zip4j.core.ZipFile; | |
| import net.lingala.zip4j.exception.ZipException; |
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 org.anonymous; | |
| import java.util.Random; | |
| public class Matrix | |
| { | |
| public static final char[] CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".toCharArray(); | |
| public static void main(String[] args) throws InterruptedException | |
| { |
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 de.codebucket.math; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Random; | |
| import java.util.concurrent.atomic.AtomicBoolean; |
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 de.codebucket.dynquiz.awt; | |
| import java.awt.DisplayMode; | |
| import java.awt.Frame; | |
| import java.awt.GraphicsDevice; | |
| import java.awt.GraphicsEnvironment; | |
| import java.awt.Rectangle; | |
| import java.awt.Toolkit; | |
| import javax.swing.JFrame; |
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 de.codebucket.utils; | |
| import java.io.BufferedReader; | |
| import java.io.DataOutputStream; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.net.HttpURLConnection; | |
| import java.net.Proxy; | |
| import java.net.URL; | |
| import java.util.UUID; |
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 de.codebucket.utils; | |
| import java.io.InputStreamReader; | |
| import java.net.HttpURLConnection; | |
| import java.net.URL; | |
| import java.util.UUID; | |
| import org.json.simple.JSONObject; | |
| import org.json.simple.parser.JSONParser; |
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 de.codebucket.accounttool; | |
| import java.util.UUID; | |
| import de.codebucket.utils.NameFetcher; | |
| import de.codebucket.utils.UUIDFetcher; | |
| public class MojangRepository | |
| { | |
| public static String getUsername(UUID uuid) throws Exception |
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
| private InetAddress inet; | |
| private long start; | |
| private long end; | |
| public PingTest(InetAddress inet) | |
| { | |
| this.inet = inet; | |
| this.start = System.currentTimeMillis(); | |
| this.end = (this.start -1); | |
| } |