View pi.txt
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
3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593344612847564823378678316527120190914564856692346034861045432664821339360726024914127372458700660631558817488152092096282925409171536436789259036001133053054882046652138414695194151160943305727036575959195309218611738193261179310511854807446237996274956735188575272489122793818301194912983367336244065664308602139494639522473719070217986094370277053921717629317675238467481846766940513200056812714526356082778577134275778960917363717872146844090122495343014654958537105079227968925892354201995611212902196086403441815981362977477130996051870721134999999837297804995105973173281609631859502445945534690830264252230825334468503526193118817101000313783875288658753320838142061717766914730359825349042875546873115956286388235378759375195778185778053217122680661300192787661119590921642019893809525720106548586327 |
View hello.pl
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
R1.1(V0[:SIG]) => R0 | |
R1.2(V0[:M X SIG]) => R0 | |
0 => I | M + 1 => J | |
[W [ I < J -> [ R1.1(V0[I: M X SIG]) => R0 | I + 1 => I ] ] ] END | |
R1.3() => R0 | |
‘H’;’E’;’L’;’L’;’O’;’,’;’ ‘;’W’;’O’;’R’;’L’;’D’;’!’ => Z0[: M X SIG] R1.2(Z0) => R0 | |
END |
View hello.for
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
program hello | |
! This is a comment line; it is ignored by the compiler | |
print *, 'Hello, World!' | |
end program hello |
View helloworld.asm
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
org 0x100 | |
mov dx, msg | |
mov ah, 9 | |
int 0x21 | |
mov ah, 0x4c | |
int 0x21 |
View helloworld.bf
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
>++++++++[<+++++++++>-]<. | |
>++++[<+++++++>-]<+. | |
+++++++.. | |
+++. | |
>>++++++[<+++++++>-]<++. | |
------------. | |
>++++++[<+++++++++>-]<+. | |
<. | |
+++. | |
------. |
View FizzBuzz.java
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
public class FizzBuzz { | |
public static void main(String[] args) { | |
for(int i = 1; i != 101; i++) { | |
if(i % 3 == 0 && i % 5 == 0) { | |
System.out.println("FizzBuzz"); | |
} else if(i % 3 == 0) { | |
System.out.println("Fizz"); | |
} else if(i % 5 == 0) { | |
System.out.println("Buzz"); |
View NordVPN-Server-IP-List.txt
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
103.120.66.35 | |
103.120.66.51 | |
103.227.255.101 | |
103.60.9.27 | |
103.60.9.75 | |
103.62.49.193 | |
103.62.49.195 | |
103.62.49.198 | |
103.62.49.203 | |
103.62.49.205 |
View MyPlugin.java
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
import org.bukkit.Bukkit;import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.event.player.AsyncPlayerChatEvent; import org.bukkit.plugin.java.JavaPlugin; public class MyPlugin extends JavaPlugin implements CommandExecutor, Listener { @Override public void onEnable() { getCommand("one").setExecutor(this::onCommand); Bukkit.getPluginManager().registerEvents(this, this); getLogger().info("Enabled OneLine"); } @Override public void onDisable() { getLogger().info("Disabled OneLine!"); } @Override public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { sender.sendMessage("Boo!"); return true; } @EventHandler public void onEvent(AsyncPlayerChatEvent event) { if(event.getMessage().toLowerCase().contains("boo")) { event.getPlayer().sendMessage("Scary!");} } } |
View SimpleLogger.java
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
/* | |
* Worlds Worst Logger Framework For Java | |
* Made By: Reputation | |
*/ | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
public class SimpleLogger { |
View WebhookUtil.java
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 com.sliceclient.loader.util; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.PrintWriter; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.net.URLEncoder; | |
import java.security.MessageDigest; |