Tuesday, January 27, 2009

Watch Da Cor Do Pecado With English Subtitles

Underworld 3 sub esp Heroes 3rd Season



Here I give you the direct download links from the third season of Heroes, hope you like.


3x01 The Second Coming
http://www.megaupload.com/?d=2G1SJDCH

3x02 The Butterfly Effect

http://www.megaupload.com/?d=ZFHS3PO0
3x03 One of Us, One of Them
http://www.megaupload.com/?d=T9YUMKEG

3x04 I Am Become Death
http://www.megaupload.com/?d=X5P3IZQE

3x05 Angels and Monsters
http:/ / www.megaupload.com/?d=6I2WHGJU

3x06 Dying of the Light''''
http://www.megaupload.com/?d=25TO94N6

3x7 ''Eris Quod Sum''
http://www.megaupload.com/?d=GEU4K0WU

3x8 "Villains"
http://www.megaupload.com/?d=RZ1J29N6

3x9 "It's Coming"
http://www.megaupload.com/?d=G26CEYMH

3x10 "The eclipse: part 1"
http://www.megaupload.com/?d=4STSQMWZ


3x11 The Eclipse : Parte 2
http://www.megaupload.com/?d=G26CEYMH



3x12 Our Father
http://www.megaupload.com/?d=KDLK1JNW


3x13 Duality (Fin de temporada)
http://www.megaupload.com/?d=2I9M1KYU

Thursday, January 22, 2009

Bottomless Party Poster

FREE ...

FREE WITH THE WORLD IN MY HANDS
Lord and Master of my freedom,
of my dreams and fantasies,,,
WAITING FOR THE MIRACLE OF LIFE ...


M @ R,,,

Wednesday, January 21, 2009

Has Anyone Taken Fish Mox

UNZIP

Here I give you a couple of java functions that can decompress a ZIP file via code. I hope to serve you ^ _ ^

  private static void unzip (File f) throws IOException {ZipFile zip 
;
zip = new ZipFile (f);
zip.entries Enumeration e = ();
while (e . hasMoreElements ()) {ZipEntry zen
= (ZipEntry) e.nextElement ();
if (zen.isDirectory ()) {
continue;}

int size = (int) zen.getSize ();
InputStream zis = zip.getInputStream (zen)
extractfile = f.getParentFile String (). getAbsolutePath () + File.separator + Zen.getName ();

WriteFile (zis, new File (extractfile), size);
zis.close ();}

zip.close ();}


/ ***
* Allows Writing a jar file to disk * @ throws IOException

* / private static void WriteFile
(InputStream zis, File file, int size) throws IOException {File
file.getParentFile parentFile = ();
if (! parentFile.exists ()) {
parentFile.mkdirs ();// this is important}


FileOutputStream fos = null;

try {fos = new FileOutputStream (file);
byte [] bytestream = new byte [(int) size];
int buf = -1;
int rb = 0;
while ((((int) size - rb)> 0)) {buf = zis.read
(bytestream, rb, (int) size - rb )

if (buf == -1) {
break;}

rb + = buf;}

fos.write (bytestream);

} catch (IOException e) {throw new IOException
("UNZIP_ERROR ");

} finally {if (fos! = null) {
fos.close ();

}}}


Note: This same code works to unpack JAR's the only thing that would have to change is the "ZipFile" by "Jarfile."