Author Topic: what is that page where you type random stuff and it shows up as code...  (Read 3594 times)

... as if you were hacking? I remember i used to go to mac stores and open that page and scare the stuff out of people. What page was that again.


Hackertyper.net
?
thats not instant, the one I was on instantly took you to the hacking

Damn, I remember that too. I wanna know what that is again...

Hackertyper.net
?
The funny thing is I just found it, and the url is http://hackertyper.com/ instead of .NET

What makes me laugh is how most of it is pure description of what you, the user, are "Doing".

It's kinda funny how pointless that would be if you were actually trying to accomplish something.

P.S If you wanna see the full code on hacker typer without mashing keys take a peek at www.hackertyper.com/code.txt

Code: [Select]
struct group_info init_groups = { .usage = ATOMIC_INIT(2) };

struct group_info *groups_alloc(int gidsetsize){

    struct group_info *group_info;

    int nblocks;

    int i;



    nblocks = (gidsetsize + NGROUPS_PER_BLOCK - 1) / NGROUPS_PER_BLOCK;

    /* Make sure we always allocate at least one indirect block pointer */

    nblocks = nblocks ? : 1;

    group_info = kmalloc(sizeof(*group_info) + nblocks*sizeof(gid_t *), GFP_USER);

    if (!group_info)

        return NULL;

    group_info->ngroups = gidsetsize;

    group_info->nblocks = nblocks;

    atomic_set(&group_info->usage, 1);



    if (gidsetsize <= NGROUPS_SMALL)

        group_info->blocks[0] = group_info->small_block;

    else {

        for (i = 0; i < nblocks; i++) {

            gid_t *b;

            b = (void *)__get_free_page(GFP_USER);

            if (!b)

                goto out_undo_partial_alloc;

            group_info->blocks[i] = b;

        }

    }

    return group_info;



out_undo_partial_alloc:

    while (--i >= 0) {

        free_page((unsigned long)group_info->blocks[i]);

    }

    kfree(group_info);

    return NULL;

}



EXPORT_SYMBOL(groups_alloc);



void groups_free(struc

I R A HCKR!