Explaining the BBcode?
1
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?
441
Name:
sage
2011-11-12 7:17
XXXXXXXXXXX X X X X X X X X X X
442
Name:
sage
2011-11-12 7:24
XXXXXXXXXXXXXXXXXXXXX X X X X X X X X X X
443
Name:
sage
2011-11-12 7:26
XXXXXXXXXXXXXXXXXXXXXXXXXX X X X X X X X X X XXXXXXXXXXXXXXXXXXXXXXXXXX X X X X X X X X X X
444
Name:
sage
2011-11-12 7:27
XXXXXXXXXXXXXXXXXXXXXXXXXX X X X X X X X X X XXXXXXXXXXXXXXXXXXXXXXXXXX X X X X X X X X X XXXXXXXXXXXXXXXXXXXXXXXXXX X X X X X X X X X XXXXXXXXXXXXXXXXXXXXXXXXXX X X X X X X X X X X
445
Name:
Anonymous
2011-11-14 22:47
Test.
446
Name:
Anonymous
2011-12-11 23:40
== Testing ==
447
Name:
Anonymous
2012-02-18 21:07
[spoiler] faggot faggot faggot[spoiler]
448
Name:
Anonymous
2012-02-18 21:12
OP is a cool guy
449
Name:
Anonymous
2012-02-18 21:16
niggerssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss
450
Name:
Anonymous
2012-02-18 21:17
[sup] D[sup] E[sup] S[sup] Usup]K[sup] A!
451
Name:
Anonymous
2012-02-22 13:10
[color=#660000]classy[/color] yet?
452
Name:
Anonymous
2012-02-22 13:10
[color=#red]classy[/color] yet?
453
Name:
Anonymous
2012-02-22 13:28
>>450
>>451
>>452
Stop embarrassing yourself and learn D.
454
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
455
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
456
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.
457
Name:
Anonymous
2012-02-22 15:43
>>454
>>455
Should've learned D
458
Name:
Anonymous
2012-03-02 1:55
bold
459
Name:
Anonymous
2012-03-02 2:02
italics
460
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;
}
461
Name:
Anonymous
2012-03-06 15:49
Test.
462
Name:
Anonymous
2012-03-09 0:54
t(o m o t)
463
Name:
Anonymous
2012-03-26 6:28
One
> Two
> Three
464
Name:
Anonymous
2012-04-08 20:30
test
465
Name:
Anonymous
2012-04-09 3:44
>>462
IF IT'S NOT t(o mo t) IT'S SHIT!
466
Name:
Anonymous
2012-04-09 10:30
467
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.
468
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)
469
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)
470
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)
471
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
472
Name:
Anonymous
2012-05-12 23:48
[aa] TEST[aa]
473
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
474
Name:
Anonymous
2012-05-13 15:32
sup?
475
Name:
Anonymous
2012-05-13 15:33
o
476
Name:
Anonymous
2012-05-13 15:34
[sup] s[sup] u[sup] p
477
Name:
Anonymous
2012-05-13 16:47
bbbbbbbb
478
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/!
479
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
480
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