Skip to content

Instantly share code, notes, and snippets.

@MasterEx
MasterEx / output.rss
Created June 26, 2011 21:21
Shell RSS writer
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>yo</title>
<link>http://www.google.com</link>
<description>hello wold</description>
<language>en-us</language>
<generator>just a shell script rss writer</generator>
<item>
<title>AUEB FOSS COMMUNITY</title>
package lib.transformations;
import java.awt.Graphics;
import java.awt.color.ColorSpace;
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.awt.image.ColorConvertOp;
import java.util.ArrayList;
import java.util.List;
@MasterEx
MasterEx / ascii.css
Created February 28, 2011 16:20
bansky art
.ascii {
text-align: center;
color: black;
text-decoration: none;
width:99%;
margin:auto;
}
@MasterEx
MasterEx / zipFiles.php
Created February 20, 2011 13:39
PHP zip file creation
<?php
/*
* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
* <[email protected]> wrote this file. As long as you retain this notice you
* can do whatever you want with this stuff. If we meet some day, and you think
* this stuff is worth it, you can buy me a beer in return Periklis Ntanasis
* ----------------------------------------------------------------------------
*/
@MasterEx
MasterEx / Main.java
Created December 2, 2010 22:47
A lucene application for my Information Retrieval class.
/**
* A lucene application for my Information Retrieval class.
*/
package luceneir;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.List;