woensdag 26 september 2012

Back to the THC HackSuite

After finishing the hackchallenge site I dived back into Tools & Design. However while I was coding I didn't quite know where I was heading and what I wanted, so instead left the site like that and jumped back into the THC HackSuite CMS and finished the new version 0.3.

Haven't released it yet, will release the HackSuite 0.3 with at least the x template and maybe add some extra features above the ones I already did. Here's the changelog: http://www.hacksuite.com/forum/cms/59-official-changelog-thc-hacksuite-03-thread.html

zaterdag 14 juli 2012

22 challenges left to verify!

22 challenges left to verify! :)
- penetrate: Ad Dope, Geek United 1 and Geek UNited 2
- programming: all

Latter will probably take the least time..

dinsdag 10 juli 2012

Hack challenge to do list

I usually never post these kind of things, but making an exception here:

Here's the entire to do list:
// test the pen:real forms
// check the last 25 challenges
// link to wechall
// log activity in pen:real
// users online last 24 hrs returns wrong value
// logout cookie is logged as cookie poisoning attempt

After I finish the challenge site, here's what I will do next:
- redesign Tools & Design
- redesign THC HackSuite

Also will release a new version of the THC HackSuite CMS, but we're still far away from there.

vrijdag 15 juni 2012

THC HackChallenges, we're almost there..

Yes we are!
It's just a matter of stitching the final stuff together, I managed to bring down the total amount of flags and bugs back to just 8. I want to complete all the challenges first to see if there are still bugs in there, you could expect the site launch within a timespan of about two months, maybe way earlier...maybe not...who knows?

Stay tuned!

zaterdag 14 januari 2012

Sometimes coding can be extremely funny

Didn't know how hilarious this piece of my code was until I woke up this morning.

function ShowLimit(what,kids,howmany){
    $(what).children(kids).each(
        function(index){
            if(index>=howmany){
                $(this).hide('fast');
            }
        }
    );
}
The message behind the code is that if you have too much kids, then its better to hide the oversupply fast..ehm sort of.