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 fr.glowstoner.firehub; | |
import java.lang.reflect.Field; | |
public class FireReflection { | |
public static final String VERSION = "v1_8_R3"; | |
public static final String PATH = "net.minecraft.server.v1_8_R3"; | |
public static Class<?> getClass(String cname) { |
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 fr.glowstoner.fireapi.bukkit.nms.scoreboard; | |
import java.lang.reflect.Field; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer; | |
import org.bukkit.entity.Player; | |
import fr.glowstoner.fireapi.bukkit.nms.FireReflection; |
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
from tkinter.messagebox import * | |
from tkinter import * | |
import math | |
def valid(win, n): | |
""" | |
Affiche une boite de dialogue informative communiquant le résulat | |
win: fenetre tkinter | |
n: nombre d'itérations | |
Retourne None |
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
#!/bin/python3 | |
from time import time | |
import pygame | |
import math | |
c = lambda z: z*z - 1.476 | |
REFRESH_TIMES = 20 | |
COLOR = (255,255,0) |