Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-4041-

Directories constructed as a tree in C

Name: Anonymous 2013-10-30 13:11



#include<stdio.h>
#include <string.h>
int main()
{
 /*The output file*/
FILE *fo;

/*The input file*/
FILE *fi;

/*The current character we are on*/
char c[2];
c[1]=0;

/*The array to build the word we are on*/
char *s=malloc(900000);

/* Opens the file for reading */
fi=fopen("d.txt","r");
c[0]=getc(fi);
/* While loop responsible for reading current character,
 creating the string of directories linked to that character
 , and placing the word at the end*/
while(c[0]!=EOF)
{
strcat(s,"lib\\");
/*While loop that checks the current char for a space or a newline*/
    while((c[0]!=' '&&c[0]!='\n'))
    {


       strcat(s,c);

    strcat(s,"\\");
 c[0]=getc(fi);
    }
    printf(s);
    /*Makes the directory following the string of characters (IE: Character would be c\h\a\r\a\c\t\e\r)*/
    mkdir(s);

    s=malloc(9000);
c[0]=getc(fi);

}


return 0;
}

The new problem that I am encountering is most likely due to my allocation of memory, as when I get to the printf statement that prints out the composed string, I get lib\a\a\r\d\v\a\r\k\% where the % sign represents any ascii character, selected at random(probably due to some data that was at the ending of the string). How do I fix this problem?

Name: Anonymous 2013-10-30 13:21

Dude what the fuck is this? You're probably running through the loop one too many times. You can try s-- before you printf. This shit is fucked up, though.

Name: Anonymous 2013-10-30 14:32

OK, solved the problem by changing the  s=malloc(9000); into s=realloc(s,90000); but now I have a new problem where it is taking forever to even get to the halfway of my b's. The program takes in an input from file fi, which is set to a dictionary. Why is it so slow to realloc? the file fi is from http://www.mieliestronk.com/corncob_lowercase.txt

Name: Anonymous 2013-10-30 15:08

<prog>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
 /*The output file*/
FILE *fo;

/*The input file*/
FILE *fi;

/*The current character we are on*/
char c[2];
c[1]=0;

/*The array to build the word we are on*/
char *s=(char* )malloc(600);

/* Opens the file for reading */
fi=fopen("d.txt","r");
c[0]=getc(fi);
/* While loop responsible for reading current character,
 creating the string of directories linked to that character
 , and placing the word at the end*/
while(c[0]!=EOF)
{
strcpy(s,"lib");
/*While loop that checks the current char for a space or a newline*/
    while((c[0]!=' '&&c[0]!='\n')){

    strcat(s,"\\");
    strcat(s,c);
    c[0]=getc(fi);

    }

    /*Makes the directory following the string of characters (IE: Character would be c\h\a\r\a\c\t\e\r)*/
    mkdir(s,"w+");
 printf(s);
    s=(char* )realloc(s,600);
c[0]=getc(fi);

}


return 0;
}

</prog>

All prior problems are solved, only problem left is creating the directory from the string s. How can this be achieved, as my mkdir isn't doing anything. Sample text of one snippet of s is "lib\a\a\r\d\v\a\r\k". If I input that into mkdir, why doesn't it make a directory in the execution folder under that name?

Name: sage 2013-10-30 15:46

sage

Name: Anonymous 2013-10-30 16:03

Solved,

strcpy(s,"lib");

/*While loop that checks the current char for a space or a newline*/
    while((c[0]!=' '&&c[0]!='\n')){

    strcat(s,"\\");
    strcat(s,c);
    c[0]=getc(fi);
mkdir(s,"w")

Name: Anonymous 2013-10-30 19:12

install gentoo

Name: Anonymous 2013-10-30 19:24

>>6
strcat(s,c);
Won't even compile.

Name: Anonymous 2013-10-30 20:04

>>8
>le pedophile sage

Name: Anonymous 2013-10-31 10:46

install gentoo

Name: Anonymous 2013-10-31 12:32

>>6
It looks cool, but the source code is too complicated for me to determine if it secretly installs malware or not, so I guess I'll never know what it does.

Name: Anonymous 2013-10-31 13:29

install gentoo

Name: Anonymous 2013-10-31 16:05

>>8
Do you have the proper libraries imported? string.h and stdio.h?
Mind that this is C, not C++, and it works fine for me. Also, revision so it actually creates notepads with the names of the words in the directories. IE: a/a/r/d/v/a/r/k/aardvark.txt and a/a/r/d/v/a/r/k/s/aardvarks.txt

[prog]
#include <stdio.h>

 #include <stdlib.h>

  #include <string.h>

  int main()

  { /*The output file*/ FILE *fo;

  /*The input file*/ FILE *fi;

  /*The current character we are on*/

  char c[2];

  c[1]=0;

  char *name=(char* )malloc(200);

  /*The array to build the word we are on*/

  char *s=(char* )malloc(200);

   /* Opens the file for reading */

   fi=fopen("d.txt","r");

   c[0]=getc(fi);

   /* While loop responsible for reading current character,

   creating the string of directories linked to that character ,

   and placing the word at the end*/

   while(c[0]!=EOF)

    { strcpy(s,"lib");

   strcpy(name,"");

   /*While loop that checks the current

   char for a space or a newline*/

   while((c[0]!=' '&&c[0]!='\n'))

    { mkdir(s,"w");

   strcat(s,"\\");

   strcat(s,c);

   strcat(name,c);

    c[0]=getc(fi);

    }

    mkdir(s, "w");

    strcat(s,"\\");

     strcat(s,name);

     strcat(s,".txt");

      printf(s);

      /*Makes the directory following the string of characters (IE: Character would be c\h\a\r\a\c\t\e\r)*/

      fo=fopen(s,"w");

   fclose(fo);

    fo=0;

    name=(char* )realloc(name,200);

    s=(char* )realloc(s,200);

     c[0]=getc(fi);

      }

      return 0;

       }
[/prog]

Name: Anonymous 2013-10-31 16:13

>>8
And you might be missing the file d.txt, so create that file wherever you are running it from. You can put any set of words in any kind of format, and it will do everything correctly.

Name: Anonymous 2013-11-02 16:52

Okay, new problem, same program. I know have all of the directories set-up, and the text files generated, however I can't get anything to print in the text files. Shouldn't it just be fine if I split the giant while loop into two smaller ones, and have the first one check for a space, and the second while loop check for the \n marker? The general feel of the structure of the sentence to be read is in the format "Aardvark (n,s): A furry animal". When encountering the first loop, it would return a string saying "lib\a\a\r\d\v\a\r\k\Aardvark.txt" creating the directories and the text file simultaneously. The second loop would come into play after seeing the space after Aardvark,  and immediately write into the Aardvark.txt file; "(n,s): A furry animal". after exiting the loop, it would close this file, and start over again for the next word.

<code>
while(c[0]!=EOF)

    {   strcpy(s,"lib");

        strcpy(name,"");

   /*While loop that checks the current

   char for a space or a newline*/

   while((c[0]!=' '))
    { mkdir(s,"w");
        strcat(s,"\\");
        strcat(s,c);
        strcat(name,c);
        c[0]=getc(fi);
    }
    mkdir(s, "w");
    strcat(s,"\\");
     strcat(s,name);
     strcat(s,".txt");
    fo=fopen(s,"w");
   while((c[0]!='\n'))
    {printf(c);
    fputc(c[0],fo);
    c[0]=getc(fi);
    }
      fclose(fo);
    fo=0;

    name=(char* )realloc(name,200);

    s=(char* )realloc(s,200);

     c[0]=getc(fi);

      }
</code>

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-02 17:14

IS DIS THRED, A FUCKIN JOKE?

UR SHITTY CODE DISGRACES  ME, IT DISGRACES DEANIS RICKY, AND IT'S SO BAD THAT IT DISGRACES EVEN ALL DA STUPID, BRAIN-DEAD INDIANS WHO USE TURBO C AND READ "LET US C" BY YASHAVANT KANETKAR.

I DON'T GO INTO UR CESS POOLS AND START KICKING UR SHIT AROUND, SO DON'T COME TO MY BOARD AND POST DISGRACEFUL C CODE. U KEEP THIS SHIT UP AND I'M GONNA POUR WATER INTO UR CESS POOLS SO U RETARDS HAVE NOTHING TO PLAY WITH.

NOW GET DA FUCK OUT OF MY THRED AND DON'T COME BACK TILL U CAN EXPLAIN TO ME, IN DETAIL, DA RETURN VALUES OF realloc, getc, AND fopen.

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-02 17:15

>>16
s/RETARDS/RETOIDS

AND DAT SURE AS FUK TAKES CARE OF DAT.

Name: Anonymous 2013-11-02 17:36

>>16
>>17
If I hadn't seen some of your posts from other threads, I would be offended. Thank you however for pointing out parts where I do need to learn more about, especially since this is my first time coding in C.

Name: Anonymous 2013-11-02 17:40

I actually had some questions from beforehand. I know I need to use malloc to create space for my string to be stored, but I didn't know how to deconstruct(help me if I'm wrong, english isn't my first language either)/set it equal to 0/erase the contents of the string. That is where I got the idea of using realloc, as it returns a pointer to the newly allocated memory. What would be the best way of deallocating memory?

Name: Anonymous 2013-11-02 17:44

>>19
Please don't tell me I just am supposed to set it equal to 0.

Name: Anonymous 2013-11-02 17:54

>>16
as for the fopen comment, I don't see where I am using that incorrectly. It returns a pointer to fo or fi, depending on where you are looking at it. For a non-existing file, it will create the file and give me a pointer to it.

Name: Anonymous 2013-11-02 18:06

Just saw that the realloc was pointless because I was using strcpy. Deleted the realloc statements.

Name: Anonymous 2013-11-02 18:25

i think i read once that good programmers dont use malloc due to buffer overflows or some shit.

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-02 18:32

>>18
especially since this is my first time coding in C
DEN TRY REEDING K&R2 INSTED OF POKIN AROUND LIKE A STACK BOI RETOID.

>>19
calloc IS A FINE CHOICE THO, OF DA SCALAR TYPES, U SHUD ONLY USE IT WITH INTEGER TYPES. IF U USE IT WITH FLOATING OR POINTER TYPES UR A FUCKIN STACK BOI RETOID WHO AINT RED DA STANDARD.

That is where I got the idea of using realloc, as it returns a pointer to the newly allocated memory
WAT DA FUK. malloc, calloc, AND realloc ALL DO DAT, YA FUKIN RETOID. DATS LIKE SAYING "I decided to use fputc instead of putc because fputc writes a character to a stream." DA ONLY THING UR MISSING IS DAT THEY ONLY DO IT WHEN DEY SUCCEED, AND WHEN DEY FAIL UR SHITTY PROGRAM BLOWS UP COS U DEREFERENCE A NULL POINTER LIKE A STACK BOI RETOID.

BOTTOM LINE: JUST REED K&R2 N DON'T COME BACK TILL U'VE RED IT N DONE MOST OF DA EXERCISES.

>>21
ROFL. WAT IF U DON'T HAVE PERMISSION TO CREATE A FILE IN A CERTAIN DIRECTORY? OR WAT IF DA DIRECTORY DONT FUCKIN EXIST? IT CAN FAIL FOR MANY REASONS, N WHEN IT DOES IT RETURNS A NULL POINTER.

Name: Anonymous 2013-11-02 19:20

>>24
ROFL. WAT IF U DON'T HAVE PERMISSION TO CREATE A FILE IN A CERTAIN DIRECTORY? OR WAT IF DA DIRECTORY DONT FUCKIN EXIST? IT CAN FAIL FOR MANY REASONS, N WHEN IT DOES IT RETURNS A NULL POINTER.
We are always creating the directories that we are writing to, and always writing to a place where we have complete access. Other than that, I was laughing wholeheartedly as I see where you are coming from. I will look into K&R2, however I don't see how my copy-pasted code that should write to a file doesn't work.

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-03 1:31

>>25
WAT IF DERS NO SPACE LEFT ON UR DISK TO CREATE ANOTHER FILE/DIRECTORY STRUCTURE IN DA FILE SYSTEM? WAT IF SPACE FOR DA "FILE" STRUCTURE NEEDS 2 BE ALLOCATED AND malloc/calloc/realloc FAIL? WAT IF DER ARE TOO MANY FILES OPENED ON UR SYSTEM WHEN DA PROGRAM IS RUNNING? WAT IF U RUN DA PROGRAM IN A READ-ONLY FILE SYSTEM?

SIMILAR THINGS CUD BE SAID ABOUT mkdir. UR JUST ASKIN' FOR UR PROGRAM TO CRASH, STACK BOI.

Name: Anonymous 2013-11-03 2:33

install gentoo

Name: Anonymous 2013-11-03 6:48

*YOU HAVE BEEN VISITED BY LE TOP LEL OF COMEDY GOLD** POST THIS IN 3 threads or lose your sides!
░░░░░░░▄▀▀▀░▄▄▄▄░░░▀▀▀▀▀▀▀▀▄▄░▀
░░░░░░░█░░░░░░░░▀▀▀▀▀▄▄▄▄▄▄▄▄▀░░█
░░░░░▄▀░░░░░░░░░░▄░░░░░░░░▄▄░░░░░▀▄
░░░▄▀░░░░░▄▀▀▀█▄░▀░░░░▄▀▀▀██▀▀▄░░░░░▀
░░▄▀░░▄▄░░▀▀▀▀████▀░░░▀▄▄▀▀▀▀▄█░░░░░░█
░▄▀░▄▀█░░▄▄░░░░░░░█░░░░░▄▄▄░░░▀▀░░░░░░█
▄▀░░█░█░▀░░▀▀▄░░░░░█░░░░░░░▀▀▀▀▀▄░░░░░█
▀▄░░▀░█░░░▄░░░░░░▄▀░░░░▀▄░░░▄▄░░▀▄░█░▄▀
░░▀▄░░░░█▀▄░░░░░▀█░░░░▀▀░█▄▀▄░█░░░█░█
░░░░█░░█░▀▄▀▄▄░░░░▀▀▀░░░▄█▀░▄▀█░░░░▄
░░░░░█░░█░▀▀▄░▀▄▄▄▄▄▄▄▀█░▄█▀▄▀░░░░░
░░░░░█░░▀▄▄░░▀█░░░█░░▄▄▀▀▄▄█▀░░░░▀
░░░░▄▀░░░▀▄▀▀▄░▀▀▀▀▀▀▄▄▀▀▀▄▀░░░░▀
░░░▄▀░░░░░░▀▄░█▄▄▄▄▀▀░▀▄▀▀░░░▄▀▀
░░▄▀░░░░░░░░░▀▄▄▄▄█▄▄▀▀░░░░▄
░░█░░░░░░▀▄▄░░░▄▄▄▄▄▄▀░░░▄▀
░░█░░░░░░░░░▀▀▀▄▄▄▄▄▄▄▀▀
░░░█░░░░░░▀▀▀▀▀░░░░▄
░░░▀▀▄▄▄▄▄▄▄▄▄▀▀▀

Name: Anonymous 2013-11-03 20:51

>>26
Lambda, no one cares if a program crashes. No one. If it works well enough in 51% of the test cases, it's time to ship. The world has moved on and you're an anachronism from an era that is best forgotten. Computers are just tools - tools to make money. Stability is the OS's job and execution speed is left up to the hardware monkeys. Any time that is wasted on rigid adherence to the standard is time that could have been spent adding new features and increasing value.

You'd do well to remember that.

Name: Anonymous 2013-11-04 3:12

>>26
For all intents and purposes we can assume that both the file system will not get bogged down, and that our disk space will not fill up. This is running on an array of 6 3tb HDDs

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-04 7:40

>>29
NOT A DAY GOES BY WHERE I DON'T ENCOUNTER A STUPID BUSINESS BOI LIKE URSELF WHO WALKS AROUND LIKE A FAT, CLUELESS DINOSAUR WITH A HARDWARE MONKEY SHOVED UP HIS ASS. IF I GAVE U $250,000 TO EAT A PILE OF SHIT (AND I WUD JUST FOR DA FUKIN LAUGHS) U'D PROBABLY DO THAT. BACK AWAY FROM PROGRAMMING BEFORE U BURDEN PEOPLE WITH UR SHITTY, BROKEN SOFTWARE. GO HOME. IF U WANNA MAKE MONEY GO PROSTITUTE URSELF. IT'S EASIER WORK FOR UR TINY RETOID BRAIN AND U'LL MAKE MORE MONEY. ONLY PROBLEM IS U HAVE TO HAVE ZERO SELF RESPECT, WHICH SHUDN'T BE A PROBLEM FOR A BUSINESS BOI LIKE URSELF.

>>30
WHY DA FUK ARE U DEFENDING SHIT? DA STANDARD'S A CONTRACT BETWEEN DA PROGRAMMER AND DA AUTHOR OF DA C IMPLEMENTATION. IF UR BOTH OF DOSE PEOPLE THEN U CAN GO AHEAD AND WRITE UR SHITTY CODE SINCE U DON'T EVEN NEED DA STANDARD, BUT DON'T TRY TO PASS IT OFF AS VALID C CODE WHEN IT FUKIN AIN'T.

NOW GET OFF DIS FUCKIN BOARD AND EITHER REED K&R2 AND LERN TO PROGRAM IN A RESPONSIBLE WAY, OR GO BACK TO UR FUCKING CESS PIT AND SPEND UR LIFE PLAYING WITH SHIT.

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-04 7:50

>>29
LOL U KNOW WHO U ARE? UR FUCKIN ABELSON. EXCEPT UR MORE CLUELESS, WORRIED, AND UR TOO BUSY TO WALK WITH GOOD POSTURE. U WALK WITH UR HEAD LEANING FORWARD AND UR ASS STICKING OUT. IF I SAW U IN REAL LIFE I'D GO AND KICK U RIGHT IN UR FAT, DINO ASS WHILE UR ON UR WAY TO UR NEXT FUKIN APPOINTMENT.

U BUSINESS BOIS ARE FUKIN HILARIOUS.

Name: Anonymous 2013-11-04 14:44

                        ██████████████████████                                                                           
      ██████████████████                      ████            ██████████████    ████    ██    ██  ██████    ████    ██    ██
    ██                      ██                    ████  ████████████████████  ██    ██  ██    ██  ██      ██    ██  ██  ██
    ██                  ████            ██            ████    ██████████████  ██        ████████  ████    ██        ████ 
      ██████████████████          ██████                ██    ██████████████  ██    ██  ██    ██  ██      ██    ██  ██  ██
                    ██        ████    ██                ██    ██████████████    ████    ██    ██  ██████    ████    ██    ██
                    ██████████        ██                ██    ██████████████                                             
                      ██          ████  ██              ██    ██████████████  ██████████  ██    ██  ██████  ██      ██   
                        ██████████      ██              ██    ██████████████      ██      ██    ██  ██      ████  ████   
                          ██        ████  ██            ██    ██████████████      ██      ████████  ████    ██  ██  ██   
                            ████████      ██            ██    ██████████████      ██      ██    ██  ██      ██      ██   
                            ██        ████              ██    ██████████████      ██      ██    ██  ██████  ██      ██   
                              ████████            ████████    ██████████████                                             
                                      ████████████      ████████████████████                                             
                                                              ██████████████

Name: Cudder !MhMRSATORI!fR8duoqGZdD/iE5 2013-11-06 7:42

WTF are you trying to do here? Are you sure you need an O(n) algorithm when it could be done in O(1)?

If all you want is to create nested directories based on characters of a string, then

1. If you already have the string in memory:
void mkdurr(char *s) {
 char c;
 while(c = *s) {
  *(s+1) = 0;
  mkdir(s);
  *++s = c;
 }
}


2. If your string is coming from input:
void mkdurr() {
 char cs[2] = " ";
 int c;
 int l = 0;
 while((c=fgetc(in))!=EOF) {
  cs[0] = c;
  mkdir(cs);
  chdir(c);
  l++;
 }
 while(l--)
  chdir("..");
}

Name: Anonymous 2013-11-06 7:44

What an idiot you are. The original is a rock anthem. A Classic. So awesome in fact, that this duo chose to cover it. If the original was crap, they wouldn't have covered it. And while is doesn't rock like the original, it is interesting is a dance/pop kinda way. Lots of glam metal tracks are great covers as they have timeless riffs, just like this one.

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-06 14:25

>>34
WAT DA FUK KINDA STAK BOI CODE IS DAT? GO BAK TO JERKIN OFF TO UR JAPANIMATION CHARACTERS.

U SHUD USE 'const char *' SINCE U DON'T MODIFY DA PATH, INDICATE TO DA CALLER WHETHER ANY DIRECTORIES CUDN'T BE MADE, AND ALLOW DA CALLER TO SPECIFY DA MODE SETTING FOR DA FUKIN DIRECTORIES.

int mkdirs(const char *s, mode_t mode)
{
    char buf[2];
    int rval;

    buf[1] = '\0';
    rval = 0;
    while (*s != '\0') {
        buf[0] = *s++;
        rval |= mkdir(buf, mode);
    }
    return rval;
}


ALSO, IF UR REEDING FROM A STREAM, IT WUD MAKE SENSE TO IGNORE CHARACTERS DAT DON'T FALL INTO A SPECIFIC CLASS. DIS WAY U DON'T END UP WITH A FUK-LOAD OF NEW LINE CHARACTERS N SHIT FOR DIR NAMES.

int fmkdirs(FILE *iop, mode_t mode, int (*valid) (int c))
{
    char buf[2];
    int c, rval;

    buf[1] = '\0';
    rval = 0;
    while (c = getc(iop), c != EOF) {
        if (!valid(c))
            continue;
        buf[0] = c;
        rval |= mkdir(buf, mode);
    }
    return rval;
}


WHO DA FUK SOLD DA COMPUTERS TO DA STACK BOIZ? DATS WAT I WANNA KNO.

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-06 14:31

>>36
O, OF COURSE, U DO MODIFY DA PATH IN UR CODE, BUT DATS ONLY COS UR A STAK BOI RETOID WHO DON'T KNOW HOW TO WRITE N DESIGN REAL PROGRAMS.

Name: Anonymous 2013-11-06 14:46

c is shit

Name: Anonymous 2013-11-06 15:09

>>34
`
>that shit
>O(1)

select one

Name: Anonymous 2013-11-06 23:59

>>36
>>34

Took a quick glance over your code, need to sleep right now, will get back sometime around friday. Looking good though, however I haven't run into any directory problems, only problems I have been having are those that I run into while trying to print into the files that I have been creating. Also, the giant while loop has been deprecated in favour of isalphanum()

Name: Anonymous 2013-11-07 0:00

Also, http://stackoverflow.com/questions/19746838/trouble-writing-into-a-text-file-in-c is the official thread for the problem, I added info for every line of code that was written, in the hopes that it solves my clarity issues.

Name: Cudder !MhMRSATORI!fR8duoqGZdD/iE5 2013-11-07 8:21

>>39
The second one can be O(1).

Name: Anonymous 2013-11-07 8:30

wat

Name: Anonymous 2013-11-07 8:45

>>42
I didn't press (Post truncated.) because I was too boraed, so I saw only one

Name: Anonymous 2013-11-07 8:52

S ᴴᴵᴳᴳᵞ H ᴵᴳᴳᵞ Y ᴵᴳᴳᵞ G ᴵᴳᴳᵞ D ᴵᴳᴳᵞ D ᴵᴳᴳᵞ T ᴵᴳᴳᵞ

Name: Anonymous 2013-11-07 9:54

OP IS A FAGGOT

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-08 8:39

>>40
DATS isalnum YA FUKIN RETOID. REED DA STANDARD, WILL YA?

>>41
STAK OVERFLOW HUH? YEA, DAT SOUNDS LIKE A GOOD WEBSITE FOR A STAK BOI RETOID LIKE URSELF. GET DA FUK OUTTA MY THRED.

Name: Anonymous 2013-11-08 9:13

>>47
This is not your thread, retard. /prog/ is dead once again, which means no one will take you seriously or think you're funny. Move on and find another programming textboard to post on, or enjoy being ignored.

Name: Anonymous 2013-11-08 11:51

>le pedophile sage

Name: Anonymous 2013-11-08 12:00

>>48
I think he's p funny :)

Name: L. A. Calculus !!wKyoNUUHDOmjW7I 2013-11-08 14:48

>>48
HAHA, SHOWS WAT U KNO YA RETOID. IF I WERE BEIN' IGNORED YA WOULDN'T HAVE EVEN RESPONDED TO MY POST, WUD YA?

FOR MORE INFO. SEE >>50

DEN GET DA FUK OUTTA MY THRED.

Name: Anonymous 2013-11-08 20:49

                        ██████████████████████                                                                           
      ██████████████████                      ████            ██████████████    ████    ██    ██  ██████    ████    ██    ██
    ██                      ██                    ████  ████████████████████  ██    ██  ██    ██  ██      ██    ██  ██  ██
    ██                  ████            ██            ████    ██████████████  ██        ████████  ████    ██        ████ 
      ██████████████████          ██████                ██    ██████████████  ██    ██  ██    ██  ██      ██    ██  ██  ██
                    ██        ████    ██                ██    ██████████████    ████    ██    ██  ██████    ████    ██    ██
                    ██████████        ██                ██    ██████████████                                             
                      ██          ████  ██              ██    ██████████████  ██████████  ██    ██  ██████  ██      ██   
                        ██████████      ██              ██    ██████████████      ██      ██    ██  ██      ████  ████   
                          ██        ████  ██            ██    ██████████████      ██      ████████  ████    ██  ██  ██   
                            ████████      ██            ██    ██████████████      ██      ██    ██  ██      ██      ██   
                            ██        ████              ██    ██████████████      ██      ██    ██  ██████  ██      ██   
                              ████████            ████████    ██████████████                                             
                                      ████████████      ████████████████████                                             
                                                              ██████████████

Name: Anonymous 2013-11-08 23:26

>>50
>>51
>le pedophile samefag

Name: Anonymous 2013-11-09 9:12

*YOU HAVE BEEN VISITED BY LE TOP LEL OF COMEDY GOLD** POST THIS IN 3 threads or lose your sides!
░░░░░░░▄▀▀▀░▄▄▄▄░░░▀▀▀▀▀▀▀▀▄▄░▀
░░░░░░░█░░░░░░░░▀▀▀▀▀▄▄▄▄▄▄▄▄▀░░█
░░░░░▄▀░░░░░░░░░░▄░░░░░░░░▄▄░░░░░▀▄
░░░▄▀░░░░░▄▀▀▀█▄░▀░░░░▄▀▀▀██▀▀▄░░░░░▀
░░▄▀░░▄▄░░▀▀▀▀████▀░░░▀▄▄▀▀▀▀▄█░░░░░░█
░▄▀░▄▀█░░▄▄░░░░░░░█░░░░░▄▄▄░░░▀▀░░░░░░█
▄▀░░█░█░▀░░▀▀▄░░░░░█░░░░░░░▀▀▀▀▀▄░░░░░█
▀▄░░▀░█░░░▄░░░░░░▄▀░░░░▀▄░░░▄▄░░▀▄░█░▄▀
░░▀▄░░░░█▀▄░░░░░▀█░░░░▀▀░█▄▀▄░█░░░█░█
░░░░█░░█░▀▄▀▄▄░░░░▀▀▀░░░▄█▀░▄▀█░░░░▄
░░░░░█░░█░▀▀▄░▀▄▄▄▄▄▄▄▀█░▄█▀▄▀░░░░░
░░░░░█░░▀▄▄░░▀█░░░█░░▄▄▀▀▄▄█▀░░░░▀
░░░░▄▀░░░▀▄▀▀▄░▀▀▀▀▀▀▄▄▀▀▀▄▀░░░░▀
░░░▄▀░░░░░░▀▄░█▄▄▄▄▀▀░▀▄▀▀░░░▄▀▀
░░▄▀░░░░░░░░░▀▄▄▄▄█▄▄▀▀░░░░▄
░░█░░░░░░▀▄▄░░░▄▄▄▄▄▄▀░░░▄▀
░░█░░░░░░░░░▀▀▀▄▄▄▄▄▄▄▀▀
░░░█░░░░░░▀▀▀▀▀░░░░▄
░░░▀▀▄▄▄▄▄▄▄▄▄▀▀▀

Don't change these.
Name: Email:
Entire Thread Thread List