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 - maverick

Pages: 1 ... 383940 4142 ... 144
1171
The Flood / Re: so i graduate in a few hours
« on: June 03, 2017, 03:46:08 PM »
My HS graduation was followed by me setting my alarm for 5am the next day, just so I had the satisfaction of turning it off in the morning and going back to sleep.
wtf how early we're your classes?

1172
Is the next stage of the Deci cycle about to begin already?

1173
Serious / Re: So Trump is pulling the USA out of the Paris Accords
« on: June 02, 2017, 07:07:40 PM »
YouTube


Pretty good video on the subject.
"They don't care about China poaching trees"

1174
Serious / Re: So Trump is pulling the USA out of the Paris Accords
« on: June 02, 2017, 05:13:56 PM »
>Climate change is still going to be fought by American companies
>Billions in taxes aren't going to help "developing countries" switch

Trump was playing chess while everyone else was playing checkers.

1175
Serious / Re: So Trump is pulling the USA out of the Paris Accords
« on: June 01, 2017, 08:15:05 PM »
Behold. I believe I found the source of PSU's data:

Quote
As a result of the plan, one can expect that by 2035, there will be:

  • An overall average shortfall of nearly 400,000 jobs;
  • An average manufacturing shortfall of over 200,000 jobs;
  • A total income loss of more than $20,000 for a family of four;
  • An aggregate gross domestic product (GDP) loss of over $2.5 trillion; and
  • Increases in household electricity expenditures between 13 percent and 20 percent.

http://www.heritage.org/environment/report/consequences-paris-protocol-devastating-economic-costs-essentially-zero

1176
Serious / Re: Explosion in Manchester at a concert
« on: May 26, 2017, 05:28:05 PM »
I heard one of the CIA's operations didn't fly so good.
Or perhaps he's wondering why someone would destabilize a country, before bombing it out of a plane.

1177
The Flood / Re: GoT Season 7 trailer
« on: May 25, 2017, 01:02:12 AM »
GRRM ought to just bring on a co-writer to churn out the last books and coast on the shitloads of royalties he's earning by now.
As long as it's not Elio and Linda and George is still coaching the writer along, I'd be down.

1178
The Flood / Re: just got a tinder to cover up the pain of losing O
« on: May 24, 2017, 09:57:12 PM »

Not looking for hookups.
Isn't that what Tinder is for?
For guys, it is.

1179
Yeah talking to yourself is a big sign of autism. He might not even realize he's doing it
Is constantly whistling a sign of autism too? Because if it is then I must be autistic as fuck xDDDD CURSE YOU BEETHOVEEEEEEEN
Nah, I'd say you're fine.

1180
Yeah talking to yourself is a big sign of autism. He might not even realize he's doing it

1181
Why does Cheat let this dude continue posing?
I think I've suggested a loaf-only board, where he thinks he's posting on the normal flood and we don't have to see it.

1182
The Flood / Whatever happened to kupo
« on: May 24, 2017, 08:29:06 PM »
first one to talk gets to stay on my aircraft

1183
Serious / Re: Seven in 10 Brits support 'world government'...
« on: May 24, 2017, 02:46:19 PM »
The Swedish foundation also issued a report, called Global Catastrophic Risks 2017, which detailed a diverse range of possible threats.

A giant asteroid hitting Earth, disease pandemics, a massive volcanic eruption, artificial intelligence turning against us, weapons of mass destruction and ecological collapse all made the list.
lol

Maybe we should make a space military in case aliens decide to attack.

1184
fuck I cut myself

1185
The Flood / Re: GoT Season 7 trailer
« on: May 24, 2017, 01:59:21 PM »
Spoiler
>Dany gives more indication she lost the coin toss by burning Sam's dad. She's clearly not the immaculate caloreesi the normies think she is anymore
Spoiler
They'll probably make him a wife-beating, pedophile, murderer out of no where so the audience won't fell conflicted.

1186
The Flood / Re: GoT Season 7 trailer
« on: May 24, 2017, 01:56:17 PM »
The fact that (according to spoilers)

Spoiler
CIA dies

makes this season an immediate flop.
This is when I lost all interest in the season.
Spoiler
The showwriters just have no idea how to write the scheming characters from the books, which is why Doran got murdered out of no where and Varys just works for Dany now. It's a shame a show that is great in every other aspect can be trash just because of the writers.

1187
The Flood / Re: Ever been hit on by a gay dude?
« on: May 24, 2017, 01:56:43 AM »
Nope. I look too alpha and hetero so they don't even bother.

1188
The Flood / Hello fellow robots
« on: May 23, 2017, 07:21:46 AM »
Stayed up all night making this beatable AI tic tac toe game.

Spoiler
Code: [Select]
#include <iostream>
#include <stdlib.h>
#include <cstdlib>
#include <ctime>

using namespace std;

void MakeMove(char[]);
void PrintBoard(char[]);
void GameOver(char[]);
void algorithm(char[]);

int main()
{
    srand(time(0));
    int choice;
    char mark;
    char board[10] = {'o', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
    MakeMove(board);
}

void MakeMove(char board[])
{
    char choice;
    PrintBoard(board);
    cout << "\n   Choose Square #: ";
    cin >> choice;
    cout << endl << endl;
    if (choice == '1' && board[1] == '1')
    {
        board[1] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '2' && board[2] == '2')
    {
        board[2] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '3' && board[3] == '3')
    {
        board[3] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '4' && board[4] == '4')
    {
        board[4] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '5' && board[5] == '5')
    {
        board[5] = 'X';
        static int table[] = {1, 3, 7, 9};
        int i = rand() % (sizeof table / sizeof *table);
        board[i] = 'O';
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '6' && board[6] == '6')
    {
        board[6] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '7' && board[7] == '7')
    {
        board[7] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '8' && board[8] == '8')
    {
        board[8] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else if (choice == '9' && board[9] == '9')
    {
        board[9] = 'X';
        if (board[5] == '5')
            board[5] = 'O';
        else algorithm(board);
        PrintBoard(board);
        GameOver(board);
        MakeMove(board);
    }
    else
        MakeMove(board);
}

void PrintBoard(char b[])
{
    system("cls");
    cout << "\n\n\t   Tic Tac Toe\n\n";
    cout << "   Player 1 (X)  -  Player 2 (O)" << endl << endl;
    cout << "\t     |     |     " <<endl;
    cout << "\t  " << b[1] << "  |  " << b[2] << "  |  " << b[3] << "  " <<endl;
    cout << "\t—--|—--|—--" <<endl;
    cout << "\t  " << b[4] << "  |  " << b[5] << "  |  " << b[6] << "  " <<endl;
    cout << "\t—--|—--|—--" <<endl;
    cout << "\t  " << b[7] << "  |  " << b[8] << "  |  " << b[9] << "  " <<endl;
    cout << "\t     |     |     " <<endl << endl;
}

void GameOver(char board[])
{
    if (board[1] != '1' && board[2] != '2' && board[3] != '3' &&
        board[4] != '4' && board[5] != '5' && board[6] != '6' &&
        board[7] != '7' && board[8] != '8' && board[9] != '9')
    {
        cout << "Cat's game!" << endl << endl;
        exit(0);
    }
    else if (board[1] == 'X' && board[2] == 'X' && board[3] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[1] == 'X' && board[4] == 'X' && board[7] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[2] == 'X' && board[5] == 'X' && board[8] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[4] == 'X' && board[5] == 'X' && board[6] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[3] == 'X' && board[6] == 'X' && board[9] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[7] == 'X' && board[8] == 'X' && board[9] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[1] == 'X' && board[5] == 'X' && board[9] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[3] == 'X' && board[5] == 'X' && board[7] == 'X')
        {cout << "You win!" << endl << endl;
        exit(0);}
    else if (board[1] == 'O' && board[2] == 'O' && board[3] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[1] == 'O' && board[4] == 'O' && board[7] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[2] == 'O' && board[5] == 'O' && board[8] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[4] == 'O' && board[5] == 'O' && board[6] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[3] == 'O' && board[6] == 'O' && board[9] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[7] == 'O' && board[8] == 'O' && board[9] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[1] == 'O' && board[5] == 'O' && board[9] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
    else if (board[3] == 'O' && board[5] == 'O' && board[7] == 'O')
        {cout << "You lose!" << endl << endl;
        exit(0);}
}

void algorithm(char board[])
{
    //offensive moves
    if (board[1] == 'O' && board[2] == 'O' && board[3] == '3')
        board[3] = 'O';
    else if (board[1] == 'O' && board[4] == 'O' && board[7] == '7')
        board[7] = 'O';
    else if (board[1] == 'O' && board[5] == 'O' && board[9] == '9')
        board[9] = 'O';
    else if (board[1] == 'O' && board[3] == 'O' && board[2] == '2')
        board[2] = 'O';
    else if (board[1] == 'O' && board[7] == 'O' && board[4] == '4')
        board[4] = 'O';
    else if (board[1] == 'O' && board[9] == 'O' && board[5] == '5')
        board[5] = 'O';
    else if (board[2] == 'O' && board[3] == 'O' && board[1] == '1')
        board[1] = 'O';
    else if (board[2] == 'O' && board[5] == 'O' && board[8] == '8')
        board[8] = 'O';
    else if (board[2] == 'O' && board[8] == 'O' && board[5] == '5')
        board[5] = 'O';
    else if (board[3] == 'O' && board[6] == 'O' && board[9] == '9')
        board[9] = 'O';
    else if (board[3] == 'O' && board[9] == 'O' && board[1] == '6')
        board[6] = 'O';
    else if (board[3] == 'O' && board[5] == 'O' && board[7] == '7')
        board[7] = 'O';
    //defensive moves
    else if (board[1] == 'X' && board[2] == 'X' && board[3] == '3')
        board[3] = 'O';
    else if (board[1] == 'X' && board[4] == 'X' && board[7] == '7')
        board[7] = 'O';
    else if (board[1] == 'X' && board[5] == 'X' && board[9] == '9')
        board[9] = 'O';
    else if (board[1] == 'X' && board[3] == 'X' && board[2] == '2')
        board[2] = 'O';
    else if (board[1] == 'X' && board[7] == 'X' && board[4] == '4')
        board[4] = 'O';
    else if (board[1] == 'X' && board[9] == 'X' && board[5] == '5')
        board[5] = 'O';
    else if (board[2] == 'X' && board[3] == 'X' && board[1] == '1')
        board[1] = 'O';
    else if (board[2] == 'X' && board[5] == 'X' && board[8] == '8')
        board[8] = 'O';
    else if (board[2] == 'X' && board[8] == 'X' && board[5] == '5')
        board[5] = 'O';
    else if (board[3] == 'X' && board[6] == 'X' && board[9] == '9')
        board[9] = 'O';
    else if (board[3] == 'X' && board[9] == 'X' && board[1] == '6')
        board[6] = 'O';
    else if (board[3] == 'X' && board[5] == 'X' && board[7] == '7')
        board[7] = 'O';
    //misc moves
    else if (board[1] == '1')
        board[1] = 'O';
    else if (board[2] == '2')
        board[2] = 'O';
    else if (board[3] == '3')
        board[3] = 'O';
    else if (board[4] == '4')
        board[4] = 'O';
    else if (board[5] == '5')
        board[5] = 'O';
    else if (board[6] == '6')
        board[6] = 'O';
    else if (board[7] == '7')
        board[7] = 'O';
    else if (board[8] == '8')
        board[8] = 'O';
    else if (board[9] == '9')
        board[9] = 'O';
}

Feel free to let me know how shitty it is.

1189
The Flood / Re: ITT: Movies that scared you as a kid
« on: May 22, 2017, 09:35:15 PM »
Anything where a human would get eaten alive or disentigrated would fuck me up as a kid. I specifically remember the tripods in War of the Worlds and the Cyclops from the Odyssey having a lasting impact. If I had seen something like Attack on titan as a kid, I probably would have been a cutter by middle school.

1190
The Flood / Re: Guys I think there is something wrong with me
« on: May 22, 2017, 09:16:38 PM »
They're basically supposed to be a parody of more mainstream memes, I believe. Making memes a meme so to speak.

1191
Serious / Re: Explosion in Manchester at a concert
« on: May 22, 2017, 08:56:15 PM »
That's pretty much a given. It's just that some might consider it a bit disrespectful to start posting memes in the midst of a tragedy.

1192
Serious / Re: Explosion in Manchester at a concert
« on: May 22, 2017, 07:06:54 PM »
It's an Ariana Grande concert with mostly kids in attendance...

1193
The Flood / Re: Yo Deci
« on: May 22, 2017, 01:08:41 AM »
Tell the mods to lock so that nothing starts ITT

The Deci Cycle must continue. There is no other option.
I was basically going to post this. The Deci Cycle is a force of nature and cannot be stopped.

1194
The Flood / Re: Just for my own records on this site
« on: May 21, 2017, 11:41:00 PM »
SO MUCH TO SHOOT
SO MUCH TO THROW
SO WHAT'S WRONG WITH TAKING THE MASK OFF
HEY NOW
YOU'RE A BIG GUY
TAKE THE MASK OFF
SEE-AYE-AYY

BRAAAAVO NOLAN I LOVE YOU
ONLY SHOOTING A MAN BEFORE THROWING HIM OUT OF A PLANE BREAKS THE MOOOOOLD

1195
The Flood / Re: deci
« on: May 20, 2017, 06:58:37 PM »
neme
mice

1196
The Flood / Re: Jive Turkey: A Tinder Story
« on: May 20, 2017, 04:23:44 PM »
I deleted mine after four days
I would too if I was some honking dork
Have fun wasting hours swiping just to get curved, Deci.

1197
The Flood / Re: Jive Turkey: A Tinder Story
« on: May 20, 2017, 02:24:30 AM »
I deleted mine after four days

1198
The Flood / Re: just got a tinder to cover up the pain of losing O
« on: May 19, 2017, 05:38:24 PM »
How many pictures do you have

1199
The Flood / Re: BAZOOPLE
« on: May 19, 2017, 12:04:41 AM »
So they're basically going to ruin the one thing the show has going for it by giving their best actor's role to a nine-year-old.

1200
The Flood / Re: I cried watching this
« on: May 18, 2017, 11:24:36 PM »
I wasn't born yesterday. This website hates my videos and hates me all together. Why would anyone want to react to any of my content other than the fact to just point and laugh saying how much of a retard I am and whatever comes to their mind?
There was nothing wrong with the video. People just do this shit because they know they'll get a reaction.

Pages: 1 ... 383940 4142 ... 144