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

Update on the MEME WARS 2009

Name: Cactuar 2009-08-03 10:09

It has certainly been a dramatic year for memes on /lounge/ so far! Here's the situation:
2008's clear meme victor DRIVE LIKE JEHU is still going strong in 2009.It's popularity has been spreading as far as /b/, where it has been gaining traction and inspiring many "shoops". Unfortunately this expansion has meant less posts on /lounge/, endangering its status as king of memes.
The Pleasure Of Being Cummed Inside/SPAM DRINK COCA COLA are still being forced by the single samefag. Same as has been happening since 2007. Unfortunately these memes lack imagination, consistency and originality and are deeply unlikely to even gain popularity with anyone other than the OP, let alone be the meme victors of 2009
fail. GTFO is probably /lounge/'s oldest surviving meme. It has recently been suffering from underuse, however. Many suspect its glory days are behind it.
KIKES seems to have dropped from the meme wars. We all mourn it and pray for the speedy return of this classic meme.
The fuck one/listen hear, jerkface/sure, why not have recently fallen out of favor with the posters on /lounge/ and are being kept artificially alive by one samefag, the same one who originally coined them. While it is a shame to see the death of memes, these were clearly only flash-in-the-pan memes, temporary fads with no staying power.
I admit my role/gave him the goatfinger are new entries, unfortunately they lack the ability to be easily reworked into different contexts humorously and are already looking like failmemes.
BOOMP/BOOMPSY of the lol /lounge/ thread is the hottest, freshest meme on /lounge/ right now. Shockingly it was coined by RedCream, one of /lounge/'s lamest, stalest posters. But irregardless of who coined the meme it has caught on in a BIG way. If any /lounge/ meme stands a chance of toppling DRIVE LIKE JEHU from 2009's top spot it is the almighty BOOMPSY.
Who will emerge from this as 2009's top meme? My pick so far is for BOOMP followed by DRIVE LIKE JEHU. What do you think /lounge/?

Name: Anonymous 2009-08-15 16:08

>>118
* Anyone seen a pig farmer around here?

Name: Anonymous 2009-08-15 19:55

>>120
But RedCram doesnt appear to be liberal.  He appears more closet-gay republician.

RedCram does Bobby Jindal go to your gay fisting sesions at the bathhouse?

Name: RedCream 2009-08-15 20:10

>>120
Who are you talking to?  Your reference is in the wrong place.  My name is RedCream, not "RedCram".

Name: Anonymous 2009-08-15 20:14

THE FUCK ON

Name: Anonymous 2009-08-15 20:16

>>123
Not only do you deny your homosexually you also deny your own name.

You truely are one sick individual.

Please seek professional advice.

Name: Anonymous 2009-08-15 20:25

>>122
Actually RedCram is Libertarian. Bobby Jindal? Perhaps.

Name: Anonymous 2009-08-15 20:28

>>124
SPAM

DRINK COCA COLA FOR THAT REFRESHING BROWNNESS

Name: RedCream 2009-08-15 20:28

>>125
What's to deny?  My name is RedCream, as it says right above this line.

Name: Anonymous 2009-08-15 20:30

It says >>125 above "your line".

Name: RedCream 2009-08-16 12:24

>>129
The scope of "above this line" is more expansive than that.

Name: Anonymous 2009-08-16 14:16

>>130
The only expansive thing around here is your anus after the bathhouse.

Name: Anonymous 2009-08-17 7:09

I dream of cocks drifting across the blue sky.

Name: Anonymous 2009-08-20 7:06



    I dream of cocks drifting across the blue sky.

Name: Anonymous 2009-08-20 10:29

Everyone knows that the true winner is "You're an anus!"
SEARCH YOUR HEART, YOU KNOW IT TO BE TRUE

Name: milkribs 2009-08-20 10:57

Name: is 2009-08-20 10:57

Name: an 2009-08-20 10:57

Name: anus 2009-08-20 10:57

Name: !MILKRIBS4k 2009-08-20 10:58

>>135
>>136
>>137
>>138
I don't think so anon!

Name: Anusymous 2009-08-20 10:59

>>139
You're an anus?

Name: Anonymous 2009-08-20 10:59

inb4 anus

Name: Anonymous 2009-08-20 11:01

>>140
Fuuuuuu
That is the first time the bot has beaten me though

Name: Anonymous 2009-08-20 11:10

>>139
OPTIMISE YOUR FUCKING QUOTES

Name: C3PO 2009-08-22 3:50

>>1
new entry: C3PO is lazy and stupid

Name: Anonymous 2009-08-22 3:54

>>144
hottest, freshest meme on /lounge/

Name: Anonymous 2009-08-22 4:01

Sign in or sign up

Name: C3PO 2009-08-22 4:25

>>144-145
GAY

Name: C3PO 2009-08-22 4:31

C3PO is lazy and stupid

Name: Anonymous 2009-08-22 4:54

>>148
SO GAY

Name: The Amazing Anus !tly/rANUS. 2009-08-22 13:03

/* spam.c - Spam a thread on the BBS boards.
 *
 * USAGE: spam <times> <wait> <folder>
 *
 *
 * <wait> is the period in milliseconds between posts.
 *
 * In order to spam a thread, you need a folder containing
 * a HEADER.TXT and a MSG.TXT.
 *
 * The HEADER.TXT contains all HTTP info to be sent to the server.
 * The MSG.TXT contains the content string -- ie. your name, email, and your
 * post.  It also contains the ID of the thread you wish to spam, and which
 * board it can be found in.
 *
 * * EXAMPLE *
 *
 * > spam 50 6000 progsage
 *
 * If you have the files progsage\header.txt and progsage\msg.txt, the program
 * will spam a thread (specified in MSG.TXT) with 50 posts, waiting 6 seconds
 * (6000 milliseconds) between each post.
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#include <winsock.h>

const int port = 80;

unsigned long int times, count=0, rest=0;

char threadid[11];

FILE* fp;
FILE* fpmsg;
FILE* logfp;

SOCKET sock;
SOCKADDR_IN addr;
struct hostent* host;

char http_clength[64];

char content[8192];

char buffer[1024];
char rbuffer[2048];

char folder[256];
char f_header[256];
char f_msg[256];



int main(int argc, char* argv[])
{
     /*** Winsock startup variable */
     WSADATA wsaData;
     int loop, i;


     if (argc != 4)
     {
          printf("usage: spam <times> <interval> <folder>\n");
          printf("       folder must contain a header.txt and a msg.txt\n");
          return 0;
     }

     /* <times> to spam the thread */
     times = atoi(argv[1]);

     /* <interval> in milliseconds between posts */
     rest = atoi(argv[2]);

     /* folder to find header.txt and msg.txt inside */
     if (strlen(argv[3]) <= 244)
          strcpy(folder, argv[3]);
     else {
          printf("folder too long.\n");
          return 0;
     }


     if (WSAStartup(MAKEWORD(2,0), &wsaData))
     {
          printf("Failed to start WinSock.\n");
          return 0;
     }


     strcat(f_header, folder);
     strcat(f_header, "\\header.txt");
     printf("HEADER: %s\n", f_header);

     strcat(f_msg, folder);
     strcat(f_msg, "\\msg.txt");
     printf("MSG: %s\n", f_msg);

     while (count++ < times)
     {
          /* Create our socket */
          sock = socket(AF_INET, SOCK_STREAM, 0);

          host = gethostbyname("dis.4chan.org");

          memset(&addr, 0, sizeof(addr));
          addr.sin_family = AF_INET;
          addr.sin_addr.s_addr = ((struct in_addr*)(host->h_addr))->s_addr;
          addr.sin_port = htons(port);

          if (connect(sock, (SOCKADDR*) &addr, sizeof(addr)))
          {
               printf("Unable to connect to host. %u\n", WSAGetLastError());
               return 0;
          }

          printf("Connected successfully.\n");

          printf("Sending header.\n");

          fp = fopen(f_header, "r");

          loop = 0;
          while (!feof(fp))
          {
               ++loop;
               fgets(buffer, 1024, fp);
               i = strlen(buffer);
               buffer[i-1] = 0x0D;
               buffer[i] = 0x0A;
               buffer[i+1] = 0;
               printf("%s", buffer);
               send(sock, buffer, strlen(buffer), 0);
          }


          /* GetContent(); */
          fpmsg = fopen(f_msg, "r");
          fgets(content, 8191, fpmsg);
          fclose(fpmsg);

          /*** Create content-length ***/
          sprintf(http_clength, "Content-Length: %u", strlen(content));
          printf("%s\n", http_clength);
          send(sock, http_clength, strlen(http_clength), 0);

          sprintf(buffer, "\x0D\x0A\x0D\x0A");
          send(sock, buffer, 4, 0);


          printf("%s\n", content);
          send(sock, content, strlen(content), 0);

          sprintf(buffer, "\x0D\x0A");
          send(sock, buffer, 2, 0);

          recv(sock, rbuffer, 2048, 0);
          printf("\n%s\n", rbuffer);

          closesocket(sock);
          fclose(fp);

          printf("\nFinished! %d/%d\n", count, times);

          if (count < times) 
               Sleep(rest);

     }


     printf("*** COMPLETE ***\n\n");

     WSACleanup();
}


-
Here is the HEADER.TXT

POST /post HTTP/1.1
Host: dis.4chan.org
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.20) Gecko/20081217 Firefox/2.0.0.20 (.NET CLR 3.5.30729)
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Referer: http://dis.4chan.org/prog/
Cookie: nws_style=Yotsuba; __utma=228619097.3169207663460969500.1242172576.1249734563.1249740607.280; ws_style=Yotsuba B; 4chan_pass=bZitTCnk; __utmz=228619097.1249693429.274.7.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=%22A%20fatal%20error%20occured%21%22%20%22Please%20don%27t%20click%20on%20that%20link%20again%21%22; __qca=1242172584-47686337-4694767; 4chan_email=noko; __qcb=557482846; __utmb=228619097.219.10.1249740607; __utmc=22861909
Content-Type: application/x-www-form-urlencoded


It may be good to have a new line at the end of the file there, I'm not sure if it's needed though.

Here is an example MSG.TXT:

bbs=lounge&id=1239439150& lol what 2&kotehan=&meiru=sage&com=1000+posts&email=

Place that line in MSG.TXT... Note that The &id= field in that line needs to be set to the ID of the thread you want to spam.  You may also adjust the bbs=board field.

Name: !MILKRIBS4k 2009-08-22 13:39

>>149
Robots cannot be gay! Dingus head!

Name: Anusymous 2009-08-22 13:45

>>151
You're an anus!

Name: Anonymous 2009-08-22 13:49

>>151
homosexual anus

Name: Anonymous 2009-08-22 13:49

>>151
homosexual

Name: Anonymous 2009-08-22 13:49

>>151
homosexual anus

Name: Anonymous 2009-08-22 13:49

>>151
anus

Name: !MILKRIBS4k 2009-08-22 13:51

>>152
>>153
>>154
>>155
>>156
Don't want to hear that dirty talk around here, OK!

Name: Anusymous 2009-08-22 13:53

>>157
That was cleaver!

Name: Anonymous 2009-08-22 13:54

>>157
Please optimise your quotes

Name: Anonymous 2009-08-22 13:54

>>157
 optimise  quotes

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