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

Explaining the BBcode?

Name: Anonymous 2009-07-25 5:49

I don't quite think lurk moar would cover this, considering the BBcodes are interpreted and then we only see their output. I understand [u], [i], [b], [spoiler], and [code]. I've seen, but I don't know if [sup] and [sub] work. I have just a few questions.
How do you overline text?
Is there an order to the tags, or can they all be ordered in anyway, like '[i][u][b]' , '[b][u][i]' , '[u][b][i]' , etc.?
To do multilayered spoilers do you simply layer the tag? I saw this one spoilered text that was A-Z and if you highlighted A, it was only A, and B was both A and B, and highlighting Z showed the whole text.
How do you make the text that has the preceeding |, but the background changes color slightly when you hover over it?

Name: sage 2011-11-12 7:17

XXXXXXXXXXXXXXXXXXXXX

Name: sage 2011-11-12 7:24

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Name: sage 2011-11-12 7:26

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Name: sage 2011-11-12 7:27

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Name: Anonymous 2011-11-14 22:47

Test.

Name: Anonymous 2011-12-11 23:40

== Testing ==

Name: Anonymous 2012-02-18 21:07

[spoiler]faggot faggot faggot[spoiler]

Name: Anonymous 2012-02-18 21:12

OP is a cool guy

Name: Anonymous 2012-02-18 21:16

niggerssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss

Name: Anonymous 2012-02-18 21:17

[sup]D[sup]E[sup]S[sup]Usup]K[sup]A!

Name: Anonymous 2012-02-22 13:10

[color=#660000]classy[/color] yet?

Name: Anonymous 2012-02-22 13:10

[color=#red]classy[/color] yet?

Name: Anonymous 2012-02-22 13:28

>>450
>>451
>>452
Stop embarrassing yourself and learn D.

Name: Anonymous 2012-02-22 13:49

stop trying to force a meme

my keyboar now lacks the letter between s an f (just tore it off in anger) and i hope you're happy `` '' language spammer now i'm going to fail all of my classes because i can't use one of the most commonly use wors in the english language. you fucking faggot. im never learning `` '' not ever. reporte, hope mrvacbob bans your ass

Name: Anonymous 2012-02-22 13:52

i am really fucking ma at the  lang spammer because i wante to write my father a car saying "thanks a i love you you mean the worl to me" but half of it's fucking missing thanks asshole rot in hell

Name: Anonymous 2012-02-22 13:57

>>454
i can't use one of the most commonly use wors in the english language.
E is the most commonly used letter in the english language. But now, your other car will never be a cdr.

Name: Anonymous 2012-02-22 15:43

>>454
>>455
Should've learned D

Name: Anonymous 2012-03-02 1:55

bold

Name: Anonymous 2012-03-02 2:02

italics

Name: Hello friend 2012-03-02 9:30

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

char buffa[BUFSIZ];

void die(char *why) {
    fprintf(stderr, "%s\n", why);
    exit(1);
}

void printbinary(unsigned int num, char zero, char one, int end) {
    if (num < 1) {
        putchar(zero);
    } else {
        while (num > 0) {
            unsigned int u = num & 1;
            putchar(u ? one : zero);
            num = num >> 1;
        }
    }
    if (end) putchar(' ');
}

char readbinary(char *s, char zero, char one) {
    int i, len = strlen(s);
    char c = 0, mask = 1;
    for (i = 0; i < len; i++) {
        if (s[i] == one) {
            c |= mask;
        } else if (s[i] == zero) {
            // Do nothing
        } else {
            die("SYNTAX ERROR");
        }
        mask = mask << 1;
    }
    return c;
}

void encode(FILE *in) {
    char *fmt = "%s";
    unsigned int i, j, len, cfloor;
    asprintf(&fmt, "%%%ds", BUFSIZ);

    for (j = 0; j < 0xffff; j++) {
        if (feof(in)) {
            puts("tomot");
            break;
        }
        fscanf(in, fmt, buffa);
        if ((len = strlen(buffa))) {
            cfloor = 0xffff;
            for (i = 0; i < len; i++)
                if (buffa[i] < cfloor)
                    cfloor = buffa[i];

            for (i = 0; i < len; i++)
                printbinary(buffa[i] - cfloor, 'U', 'u', i < len - 1);

            printbinary(cfloor, '?', '!', 1);
        }
        fscanf(in, " ");
    }

    free(fmt);
}

void decode(FILE *in) {
    unsigned int i, j, cfloor, wdlen;
    char *ufmt = " %[uU]",
         *pfmt = "%[?!]",
         *tfmt = " %[tom]",
         wdbuf[BUFSIZ];
    asprintf(&ufmt, " %%%d[uU]", BUFSIZ);
    asprintf(&pfmt, "%%%d[?!] ", BUFSIZ);
    asprintf(&tfmt, " %%%d[tom]", BUFSIZ);

    wdlen = 0;
    wdbuf[0] = '\0'; // strlen(wdbuf) == 0

    for (j = 0; j < 0xffff; j++) {
        if (fscanf(in, pfmt, buffa) > 0) {
            // Finish reading a word
            if (wdlen < 1) die("SYNTAX ERROR");
            wdbuf[wdlen] = '\0';

            cfloor = readbinary(buffa, '?', '!');
            for (i = 0; i < wdlen; i++)
                wdbuf[i] += cfloor;

            // Don't print immediately
            wdlen = 0;
        } else if (fscanf(in, ufmt, buffa) > 0) {
            if (wdlen == 0 && strlen(wdbuf) > 0)
                // Print previous word + space
                printf("%s ", wdbuf);
            wdbuf[wdlen++] = readbinary(buffa, 'U', 'u');
        } else if (fscanf(in, tfmt, buffa) > 0) {
            if (wdlen > 0) die("UNEXPECTED END OF MESSAGE");
            if (strcmp(buffa, "tomot") != 0) die("SYNTAX ERROR");
            // Print final word + newline
            printf("%s\n", wdbuf);
            break; // Clean exit
        } else {
            die("UNKNOWN ERROR");
        }
    }

    free(ufmt);
    free(pfmt);
    free(tfmt);
    return;
}

int main(int argc, char **argv) {
    int i, mode = 0;
    for (i = 1; i < argc; i++)
        mode |= strcmp(argv[i], "--decode") | strcmp(argv[i], "-d");

    if (mode != 0)
        decode(stdin);
    else
        encode(stdin);

    return 0;
}

Name: Anonymous 2012-03-06 15:49

Test.

Name: Anonymous 2012-03-09 0:54

t(omot)

Name: Anonymous 2012-03-26 6:28

One
> Two
> Three

Name: Anonymous 2012-04-08 20:30

test

Name: Anonymous 2012-04-09 3:44

>>462
IF IT'S NOT t(omot) IT'S SHIT!

Name: Anonymous 2012-04-09 10:30

Name: Anonymous 2012-04-09 11:48

How do you make the text that has the preceeding |, but the background changes color slightly when you hover over it?
I have no idea.

Name: Anonymous 2012-04-09 13:06

                    SICP (Sinus Implemented in CPython)
>>                    SICP (Sinus Implemented in CPython)
>>>>>                 SICP (Sinus Implemented in CPython)
>>>>>>>>              SICP (Sinus Implemented in CPython)
>>>>>>>>>>>           SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>        SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>     SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>   SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>   SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>     SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>       SICP (Sinus Implemented in CPython)
>>>>>>>>>>>           SICP (Sinus Implemented in CPython)
>>>>>>>>              SICP (Sinus Implemented in CPython)
>>>>>                 SICP (Sinus Implemented in CPython)
>>>                   SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
>>>                   SICP (Sinus Implemented in CPython)
>>>>>                 SICP (Sinus Implemented in CPython)
>>>>>>>>              SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>          SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>       SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>     SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>   SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>   SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>     SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>        SICP (Sinus Implemented in CPython)
>>>>>>>>>>>           SICP (Sinus Implemented in CPython)
>>>>>>>>              SICP (Sinus Implemented in CPython)
>>>>>                 SICP (Sinus Implemented in CPython)
>>                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
>>>                   SICP (Sinus Implemented in CPython)
>>>>>>                SICP (Sinus Implemented in CPython)
>>>>>>>>>             SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>          SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>       SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>    SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>   SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>     SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>        SICP (Sinus Implemented in CPython)
>>>>>>>>>>            SICP (Sinus Implemented in CPython)
>>>>>>>               SICP (Sinus Implemented in CPython)
>>>>                  SICP (Sinus Implemented in CPython)
>>                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)
>>>                   SICP (Sinus Implemented in CPython)
>>>>>>                SICP (Sinus Implemented in CPython)
>>>>>>>>>             SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>          SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>      SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>    SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>>  SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>>>>   SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>>>>      SICP (Sinus Implemented in CPython)
>>>>>>>>>>>>>         SICP (Sinus Implemented in CPython)
>>>>>>>>>>            SICP (Sinus Implemented in CPython)
>>>>>>>               SICP (Sinus Implemented in CPython)
>>>>                  SICP (Sinus Implemented in CPython)
>>                    SICP (Sinus Implemented in CPython)
                    SICP (Sinus Implemented in CPython)

Name: Anonymous 2012-04-09 13:07

> > > > > > > > >                    SICP (Sinus Implemented in CPython)
> > > > > > > > > > > >              SICP (Sinus Implemented in CPython)
> > > > > > > > > > > > > > >        SICP (Sinus Implemented in CPython)
> > > > > > > > > > > > > > > > >    SICP (Sinus Implemented in CPython)
> > > > > > > > > > > > > > > > >    SICP (Sinus Implemented in CPython)
> > > > > > > > > > > > > > > > >    SICP (Sinus Implemented in CPython)
> > > > > > > > > > > > > > > >      SICP (Sinus Implemented in CPython)
> > > > > > > > > > > > > >          SICP (Sinus Implemented in CPython)
> > > > > > > > > > >                SICP (Sinus Implemented in CPython)
> > > > > > >                        SICP (Sinus Implemented in CPython)
> > > >                              SICP (Sinus Implemented in CPython)
>                                    SICP (Sinus Implemented in CPython)
                                       SICP (Sinus Implemented in CPython)
                                         SICP (Sinus Implemented in CPython)
                                         SICP (Sinus Implemented in CPython)
                                         SICP (Sinus Implemented in CPython)
                                     SICP (Sinus Implemented in CPython)
> > >                                SICP (Sinus Implemented in CPython)
> > > > > >                          SICP (Sinus Implemented in CPython)
> > > > > > > > >                    SICP (Sinus Implemented in CPython)

Name: Anonymous 2012-04-09 13:10

       SICP (Sinus Implemented in CPython)
       SICP (Sinus Implemented in CPython)
>      SICP (Sinus Implemented in CPython)
>      SICP (Sinus Implemented in CPython)
>      SICP (Sinus Implemented in CPython)
>      SICP (Sinus Implemented in CPython)
>      SICP (Sinus Implemented in CPython)
>      SICP (Sinus Implemented in CPython)
       SICP (Sinus Implemented in CPython)
       SICP (Sinus Implemented in CPython)
         SICP (Sinus Implemented in CPython)
           SICP (Sinus Implemented in CPython)
           SICP (Sinus Implemented in CPython)
           SICP (Sinus Implemented in CPython)
           SICP (Sinus Implemented in CPython)
           SICP (Sinus Implemented in CPython)
           SICP (Sinus Implemented in CPython)
           SICP (Sinus Implemented in CPython)
         SICP (Sinus Implemented in CPython)
       SICP (Sinus Implemented in CPython)

Name: Anonymous 2012-04-09 13:12

    SICP (Sinus Implemented in CPython)
  SICP (Sinus Implemented in CPython)
  SICP (Sinus Implemented in CPython)
    SICP (Sinus Implemented in CPython)
      SICP (Sinus Implemented in CPython)
      SICP (Sinus Implemented in CPython)
    SICP (Sinus Implemented in CPython)

I feel bad for my sinii

Name: Anonymous 2012-05-12 23:48

[aa]TEST[aa]

Name: Anonymous 2012-05-13 12:17

LOL
LOL
LOL
> LOL
> > LOL
> > > LOL
> > > > LOL
> > > > > LOL
> > > > > > LOL
> > > > > > LOL

> > > > > LOL

> > > > LOL

> > > LOL

> > LOL

> LOL

LOL

LOL

LOL

Name: Anonymous 2012-05-13 15:32

sup?

Name: Anonymous 2012-05-13 15:33

o

Name: Anonymous 2012-05-13 15:34

[sup]s[sup]u[sup]p

Name: Anonymous 2012-05-13 16:47

bbbbbbbb

Name: Anonymous 2012-05-13 16:49

I love you /prog/!I love you /prog/!I love you /prog/!I love you /prog/!I love you /prog/!I love you /prog/!I love you /prog/!I love you /prog/!

Name: Anonymous 2012-05-13 16:58

0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1

Name: Anonymous 2012-05-13 16:59

0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1

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