Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ban me

Pages: 1 ... 117118119 120121 ... 170
3541
The Flood / Re: Beer!
« on: November 15, 2015, 05:50:56 PM »
Last night I got hammered on Old Rasputin.

3542
The Flood / Re: ITT: I give you a mexican sounding nickname
« on: November 15, 2015, 02:00:56 PM »
Go.

3543
The Flood / Re: thissfurom is shti ia m goin tirto berd
« on: November 15, 2015, 10:30:43 AM »
Even if you were drunk it just looks like you were trying too hard.
To be fair, I was trying too hard... whilst drunk. I was literally laughing my ass off as I was typing that shit last night. I do type sicnifigantly worse while drunk, but last night I was so drunk that I found it hilarious to just mash the keyboard. So it was kind of a combination of both.

3544
The Flood / Re: How do you feel about the France attacks?
« on: November 15, 2015, 10:25:10 AM »
Greatly angered by Islam. I don't view the attacks as just an attack on France, but as an attack on all of Western civilization.

3545
Gaming / Re: Game developer quote thread
« on: November 15, 2015, 08:35:59 AM »
"Make the lie big, make it simple, keep saying it, and eventually they will believe it."
-Deej

3546
I suppose various Christian empires spread the teachings of the bible peacefully prior to the Islamic expansion?

Rhetorical question because that's not the point, arguing who was more morally just thousands of years ago is fucking stupid.
To be fair, Christianity was spread mostly by missionaries at that point. It wasn't until Charlemagne that Christianity began to spread by the sword.

3547
Serious / Re: Shootings/explosions/hostages held in Paris. [129 dead]
« on: November 15, 2015, 08:17:17 AM »
One of the attackers was a Syrian migrant who entered the EU via Greece earlier this year.

The attacker that was gunned down by police was only 15.

Why does the age matter?
Because a fucking 15 year old took part in a terrorist attack?

3548
The Flood / Re: Hangover Food
« on: November 15, 2015, 06:06:36 AM »
The best way to avoid a hangover is to not get drubk in the first place :^)
That's something a complete beta male would say.

3549
Serious / Re: Democratic Debate #2
« on: November 15, 2015, 06:00:54 AM »
Can I get a TL;DR of the debate?

3550
The Flood / Hangover Food
« on: November 15, 2015, 05:48:38 AM »
I fucking need it right now. Please recommed me some good hangover food.

3551
The Flood / Re: Okay, it was nice for a little while.
« on: November 15, 2015, 05:47:15 AM »
So THAT'S why this forum was less faggoty.

3552
The Flood / Re: Is my new avatar French enough?
« on: November 15, 2015, 05:45:09 AM »
I'm really disappointed that it wasn't just a white rectangle.
FUCK why didn't I think of that?

3553
The Flood / Re: thissfurom is shti ia m goin tirto berd
« on: November 15, 2015, 05:35:05 AM »
not sure if drunk or trying too hard to fake it
Nope. That was actual drunk. When I get THAT drunk I give literally no shits about what I post. I was basically dragging my fingers across the keyboard and not bothering to correct any of my errors.

Oh, and for the record, I am hungover as absolute shit right now.

3554
The Flood / thissfurom is shti ia m goin tirto berd
« on: November 14, 2015, 11:15:48 PM »
fae rtghggotys

3555
The Flood / Re: evgdstbniggers
« on: November 14, 2015, 11:13:10 PM »
ADDAWREFGBALS;SS

3556
The Flood / evgdstbniggers
« on: November 14, 2015, 11:12:09 PM »
fuuceyra

3557
The Flood / Re: Petition to make Verbatim go back to Fuddy-duddy
« on: November 14, 2015, 11:08:17 PM »
Cleaning up drunkpost. Nothing to see here.

3558
The Flood / Re: compete hammered amaa
« on: November 14, 2015, 11:04:33 PM »
yeaaa

3559
Serious / Re: Democratic Debate #2
« on: November 14, 2015, 11:02:36 PM »
Cleaning up drunkpost. Nothing to see here.

3560
The Flood / Re: compete hammered amaa
« on: November 14, 2015, 11:01:55 PM »
WHEN WERE THE LAST THINGS

WHY DID THE FIRST 0101010010101010#include<iostream>
#include<cmath>

using namespace std;

int main()
{
//——-defining variables and initializing them————-   
    double num1,num2;
    char operation,redo;
//——--Printing my name on screen—————-   
    cout<<"Welcome to the calculater program v.1.0 written by Your Name"<<endl;
    cout<<"***************************************************************"<<endl;
    cout<<endl<<endl<<endl;
//--here do loop is used so that the program can be used more then one time
//without exiting the run screen—————————   
    do
    {
 //—-receiving the variables from input————--         
    cout<<" Please enter an operation which you like to calculate (+,-,*,/,s)";
    cout<<"[s stands for swap]:";
    cin>>operation ;
    cout<<endl<<endl;
     cout<<" Please enter two numbers to apply your requested operation(";
    cout<<operation<<"):"<<endl<<"1st num:";
    cin>>num1;
    cout<<"2nd num:" ;
    cin>>num2;
    cout<<endl;
 //—used switch function so thet the operater can be decided———— 
    switch (operation)
    {
//——calculating the requested equation for inputs————-
//——-at the same time printing the results on screen———--         
     case'+':           
             cout<<"The addition of two numbers ("<<num1<<","<<num2<<"):";
             cout<<num1+num2<<endl;
             break;
     case'-':
             cout<<"The substraction of two numbers ("<<num1<<","<<num2<<"):";
             cout<<num1-num2<<endl;
             break;
      case'*':
             cout<<"The multiplication of two numbers ("<<num1<<","<<num2<<"):";
             cout<<num1*num2<<endl;
             break;
      case'/':
             cout<<"The division of two numbers ("<<num1<<","<<num2<<"):";
             if(num2==0)
             {
             cout<<"not valid"<<endl;
             }
             cout<<(num1/num2)<<endl;
             break;
      case's':
             cout<<"The swap of two numbers ("<<num1<<","<<num2<<"):";
             swap(num1,num2);
             cout<<"1stnumber="<<num1<<"and 2nd number="<<num2<<endl<<endl;                   
           break;
      default:
              cout<<"unknown command"<<endl;
     
           }
 //—-now once again the program will ask the user if want to continue or not         
           cout<<"enter y or Y to continue:";
           cin>>redo;
           cout<<endl<<endl;
           }
           while(redo=='y'||redo=='Y');
           
   system("pause");
    return 0;
   
    }
im not readdin thatt

3561
The Flood / Re: Why isn't nasty a ninja yet?
« on: November 14, 2015, 11:01:03 PM »
cus you gay

3562
The Flood / Re: [OC]Shit tier memes
« on: November 14, 2015, 10:59:44 PM »
Cleaning up drunkpost. Nothing to see here.

3563
The Flood / Re: compete hammered amaa
« on: November 14, 2015, 10:53:46 PM »
youvw nver been drunk
But I have.
not ass dunk as i

Truth is im too drunk too put any aeffott into what i ttyope.

i literally ccant even seee rtaict right niow

3564
The Flood / Re: compete hammered amaa
« on: November 14, 2015, 10:50:27 PM »
Do you realize it's perfectly possible to spell while drunk? Either put in the effort, or cut the act.
at this point ice had so many beers iif i had one more il throww u p ll over the placeee. imm kenda just mashin the kwyboard at this point.

yuou wouldn't know of coiurs youvw nver been drunk

3565
Gaming / Re: I'm going to play 1257AD and you should too.
« on: November 14, 2015, 10:47:48 PM »
How do you get this game
It's a Mount and Blade Warband mod

Spoiler
a shit one
kyyyyyyyyyyssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss

No, it's pretty bad.
die

3566
The Flood / Re: compete hammered amaa
« on: November 14, 2015, 10:46:53 PM »
webshit

3567
The Flood / Re: How many times do I have to tell you (Warming: GRAPHIC)
« on: November 14, 2015, 10:46:20 PM »
ALL I SEE AR   BUNCH OF CHINKS

3568
The Flood / Re: ITT: I will overlay the French flag on your avatar
« on: November 14, 2015, 10:43:44 PM »
Cleaning up drunkpost. Nothing to see here.

3569
The Flood / Re: Petition to make Verbatim go back to Fuddy-duddy
« on: November 14, 2015, 10:42:33 PM »
There, I darkened it.
fuck of fudy dudyy

3570
The Flood / Re: compete hammered amaa
« on: November 14, 2015, 10:36:28 PM »

Pages: 1 ... 117118119 120121 ... 170