Skip to content

Instantly share code, notes, and snippets.

View FlorianCassayre's full-sized avatar

Florian Cassayre FlorianCassayre

View GitHub Profile
@FlorianCassayre
FlorianCassayre / Fractals_.gitignore
Created January 23, 2016 14:21
Fractals generator
# Created by https://www.gitignore.io/api/intellij
### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
*.iml
## Directory-based project format:
.idea/
@FlorianCassayre
FlorianCassayre / WorldGenCaves.java
Created January 3, 2016 13:08
Modify the minecraft cave generation behavior by increasing/decreasing caves density.
import net.minecraft.server.v1_8_R2.*;
import org.bukkit.craftbukkit.v1_8_R2.CraftWorld;
import org.bukkit.craftbukkit.v1_8_R2.generator.NormalChunkGenerator;
import java.lang.reflect.Field;
/**
* @author Florian Cassayre (6infinity8)
*/
public class WorldGenCaves extends net.minecraft.server.v1_8_R2.WorldGenCaves
@FlorianCassayre
FlorianCassayre / Quine.java
Created November 13, 2015 20:29
Quick Quine on Processing (Java)
/**
* @author Florian Cassayre
*/
void setup()
{
String[] string = {
"/**",
" * @author Florian Cassayre",
" */",
"void setup()",