Skip to content

Instantly share code, notes, and snippets.

View hfoxy's full-sized avatar

Harry Fox hfoxy

View GitHub Profile

Keybase proof

I hereby claim:

  • I am ParaPenguin on github.
  • I am haribo (https://keybase.io/haribo) on keybase.
  • I have a public key whose fingerprint is 30BD 7AD8 4233 D0EF 763C 25DB 32B5 C7DB A0BC B79A

To claim this, I am signing this object:

@hfoxy
hfoxy / Spruce
Last active August 29, 2015 13:59
Updated XML
<?xml version="1.0"?>
<map proto="1.3.0">
<name>Spruce War</name>
<version>1.0</version>
<objective>Destruye el core y defiende el propio!</objective>
<authors>
<author>BrayanGamer</author>
</authors>
<contributors>
<contributor contribution="Diseño">LautaroMC</contributor>
@hfoxy
hfoxy / Pyramid.java
Created April 30, 2014 17:26
Pyramid
int rows = 4;
for(int i = 0; i < rows; i++) {
StringBuilder builder = new StringBuilder();
for(int i2 = 0; i2 < i; i2++) {
builder.append(" ");
}
for(int i2 = 0; i2 <= i; i2++) {
builder.append("*");
if(i2 > 0) {
import java.util.Random;
public class Juuuulion {
public static void main(String ... args) {
System.out.println(mT(-229985457)+' '+ mT(-1479096120));
}
public static String mT(int t) {
Random r = new Random(t);
StringBuilder sb = new StringBuilder();
@hfoxy
hfoxy / Die.java
Last active August 29, 2015 14:04
Kill the bot!
import com.skype.*;
public class Die {
public static void main(String[] args) {
try {
for(Chat chat : Skype.getAllChats()) {
if(chat.getWindowTitle().equals("MC-SG BOT v1.46 Drawing options")) {
chat.send("/leave");
}