Search found 2 matches

by driest
Mon Nov 08, 2010 11:21 am
Forum: BitBath
Topic: String concatenations allowed?
Replies: 1
Views: 16745

String concatenations allowed?

Hi, for debugging purposes i have a lot of string concatenations with the + operator in my bot. running natively it works like a charm, when i try to run it in the HackJVM i get this Exception: 08.11.2010 12:11:09 ojvm.machine.ControlUnit makeAndThrow INFO: new exception: java.lang.LinkageError, msg...
by driest
Sat Oct 16, 2010 2:17 pm
Forum: Challenges Solved
Topic: Russian Dolls
Replies: 40
Views: 4635

Python solution:

Code: Select all

import gzip
while 1:
    f = gzip.open('doll.bin', 'rb')
    content = f.read()
    f.close()
    out = open('doll.bin', 'wb')
    out.write(content)
    out.close()