Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View xenor's full-sized avatar

xenor xenor

View GitHub Profile
@xenor
xenor / run.php
Created June 28, 2011 16:41
yay, i discovered the world-algorithm
<?php
include "universe.class.php";
$universe = new Universe(42);
include "world.class.php";
$world = new World($universe);
include "life.class.php";
$xenor = new Human();
@xenor
xenor / main.java
Created June 7, 2011 07:15
an easy-to-understand caesar-encryption program in java
package main;
import basis.*;
public class Caesar
{
// Liste (Array) mit allen Buchstaben:
public static char[] abc = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};