Skip to content

Instantly share code, notes, and snippets.

@Edoxile
Edoxile / ILC tikz.tex
Created October 9, 2018 08:51
Tikzpicture of ILC schematic
\begin{figure}[h!]
\centering
\begin{tikzpicture}
\begin{tiny}
\bXInput{A}
\bXCompSum*{B}{A}{}{-}{}{}
\bXLink[$r\quad$]{A}{B}
\bXBloc[4]{C}{$C$}{B}
\bXLink[$e\qquad$]{B}{C}
\bXBranchy[-15]{B-C}{G}
@Edoxile
Edoxile / API.pl
Created March 8, 2013 09:50
New API for Saphira
#!/usr/bin/env perl
use warnings;
use strict;
use Config::IniFiles;
package Saphira::IRC::Bot;
my $version = '2.0.0';
1;
@Edoxile
Edoxile / .screenrc
Created July 25, 2012 22:26
My .screenrc
# An alternative hardstatus to display a bar at the bottom listing the
# windownames and highlighting the current windowname in blue. (This is only
# enabled if there is no hardstatus setting for your terminal)
hardstatus on
hardstatus alwayslastline
defscrollback 5000
backtick 1 60 60 $HOME/.screenrc.acpi #.screenrc.acpi contains: acpi | awk -F ', ' '{print $2}'
hardstatus string "%{.bW}%-w%{.rW}%n %t%{-}%+w %=%{..G} %H %{..Y} %m/%d %C%a | %1`%{-}"
@Edoxile
Edoxile / intersection.syntax
Created November 3, 2011 16:08
Tweakcart intersection syntax
Type of carts:
Storage cart (s)
Powered cart (-) -> ignored because never used anyway
Minecart (m)
Any (a)
Voorwaarden:
empty (&)
full (*)
@Edoxile
Edoxile / gist:1287795
Created October 14, 2011 17:46
TweakCart diff
diff --git a/libs/craftbukkit-0.0.1-SNAPSHOT.jar b/libs/craftbukkit-0.0.1-SNAPSHOT.jar
index 5567fe6..7aff0e0 100644
Binary files a/libs/craftbukkit-0.0.1-SNAPSHOT.jar and b/libs/craftbukkit-0.0.1-SNAPSHOT.jar differ
diff --git a/plugin.yml b/plugin.yml
index 2129efc..7b9475c 100644
--- a/plugin.yml
+++ b/plugin.yml
@@ -2,5 +2,9 @@ name: TweakCart
main: com.tweakcart.TweakCart
authors: [Meaglin, The-Sec, windwarrior, Edoxile]
@Edoxile
Edoxile / CFBanner.java
Created September 2, 2011 15:47
CFBanner updated by me
package me.cain.cfbanner;
import com.nijiko.permissions.PermissionHandler;
import com.nijikokun.bukkit.Permissions.Permissions;
import org.bukkit.ChatColor;
import org.bukkit.entity.Player;
import org.bukkit.event.Event;
import org.bukkit.event.player.PlayerJoinEvent;
import org.bukkit.event.player.PlayerListener;
import org.bukkit.plugin.Plugin;
@Edoxile
Edoxile / InfiniteTools.java
Created May 28, 2011 01:49
InfiniteTools for Minecraft
package com.edoxile.bukkit.infinitetools;
import org.bukkit.event.Event;
import org.bukkit.event.player.PlayerInteractEvent;
import org.bukkit.event.player.PlayerListener;
import org.bukkit.inventory.ItemStack;
import org.bukkit.plugin.java.JavaPlugin;
import java.util.logging.Logger;