Jump to content
Banner by ~ Wizard

General Chat Thread


Apple      Bloom

Recommended Posts

 

Welp, time for me to call it a day. See ya later folks!

 

Have a dancing pony

7t3Tvff.gif

 

Fc89744_I_WANT_THAT_CAKE.jpg

  • Brohoof 1

ForDJRainbowDash_zps2b58bbf2.png

" I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are." - Mewtwo

My Friendship is Magic Fanfiction Pagehttp://www.fimfiction.net/user/The%20DJ%20Rainbow%20Dash

-Signature art designed by the lovely vinyl_scratch 13

 

Link to comment
Share on other sites

Good morning folks

 

I really want a cat ._.

 

7G09HJo.gif

 

 

 

Pityriasis (tinea versicolor)

That's doesn't sound so good... Have you had it checked yet?

 

 

 

Anyone else feel like this?

Me :3

 

I don't really care about the reputation/karma thing, and I'm a lazy fuckface to boot

 

 

 

#Lurkmoar

Snickers. Removing the cho from the psycho since 2002

  • Brohoof 1

k3v45pe.jpg?1

Link to comment
Share on other sites

 

 

I really want a cat
You should get one. They're neat. Just be careful about leaving it home alone. It might get lonely and break stuff. Or break stuff in general....

Flutters_and_Dash.png

Link to comment
Share on other sites

 

 

You should get one. They're neat. Just be careful about leaving it home alone. It might get lonely and break stuff. Or break stuff in general....

If I ever get myself a cat, she won't be lonely. There are a lot of chickens and children around here. I wouldn't lock her inside the house so she can play with them as much as she would like it, but the real problem came from the cat food ._.

 

I can barely feed myself. orz


k3v45pe.jpg?1

Link to comment
Share on other sites

If I ever get myself a cat, she won't be lonely. There are a lot of chickens and children around here. I wouldn't lock her inside the house so she can play with them as much as she would like it, but the real problem came from the cat food

She'd eat them. 0.0

 

Like, seriously, she would kill those chickens and eat them, and maybe even the children! Okay, kidding, not the children. But those chickens are doomed.

 

Also, the cat might run away, especially if there is food out in the wild. A cat only stays inside your home because it is safe and there is food.

I can barely feed myself. orz

You don't make enough money? Maybe you can find an old lady who likes cats to provide food for your hypothetically little kitty?

Edited by Bari

Flutters_and_Dash.png

Link to comment
Share on other sites

That's doesn't sound so good... Have you had it checked yet?

 

That's the only reason why I know it's called pityriasis. XD

Yes, in a word.

 

And the yeast lives on everyone. It just develops on some people, and only in warm moist climates. So it isn't contagious or anything.

Link to comment
Share on other sites

@@Bari,

 

Not like I'd ever expect you to understand anything I say, but what if I made a version of this where the names of ponies are instead names of users here?

 

 

// Wanna know the odd part?
// When I was sick, I created a program that made use of an array, and I posted the swaurce code online.
// So I searched for it online, and pulled it out. Not easy.
// http://mlpforums.com/topic/56198-general-chat-thread/page-4575#entry1342443

#include <iostream>
#include <iomanip>
#include <string>
using namespace std;

// Function prototypes
void PrintOutEveryPonyName(string [], int);
void PrintOutEveryPonyActivity(string [], int);
 
int main()
{
	// Declaration of Variables and Populating of Arrays
	signed int day, month, arrayNumber1, arrayNumber2;
	string YourPonyName;
	const int arraysize1 = 42;
	const int arraysize2 = 30;
	string ponyname[arraysize1] =
		{"Twilight Sparkle", "Rainbow Dash", "Fluttershy", "Rarity", "Applejack", "Pinkie Pie",
		"Apple Bloom", "Scootaloo", "Sweetie Belle", "Babs Seed", "Diamond Tiara", "Silver Spoon",
		"Carrot Top", "Bonbon", "Lyra", "Derpy Hooves", "Berry Punch", "Cheerilee",
		"Nurse Redheart", "Mayor Mare", "Cloudchaser", "Flitter", "Thunderlane", "Caramel",
		"Snips", "Snails", "The Great and Powerful Trixie", "Featherweight", "Octavia", "Vinyl Scratch",
		"Princess Luna", "Princess Celestia", "Princess Cadance", "Shining Armor", "a Royal Guard Pony", "Pony Joe",
		"a", "a", "a", "a", "a", "a"};
	// 42 pony names to choose from. It needs six more pony names...
	string ponyactivity[arraysize2] =
		{"discover an ancient evil with", "bake a cake with", "sail across the world with", "have a race against",
		"go fishing with", "travel to Appaloosa with", "go stargazing with", "pick apples for",
		"get punched through the fourth wall by", "will have to use the bathroom of", "hug", "surprise hug",
		"get tickled by", "write a book with", "perform a show with", "give flowers to",
		"ride a train with", "ride a balloon with", "return a letter to", "play video games with",
		"draw a painting of"};
	// 30 pony activities to choose from, but this one doesn't have enough elements; It's missing 9 elements.
	// That's a possible max of 1260 combinations, versus the other "birthday games" that have a max of 372...
	// Take that, Derpibooru!!!
 
	// Preliminary input
	cout << "Enter your pony name.
";
	cin >> YourPonyName;

	// Diagnostic for printing out everything
	if (YourPonyName == "diagnostic")
	{
		PrintOutEveryPonyName(ponyname, arraysize1);
		PrintOutEveryPonyActivity(ponyactivity, arraysize2);
		system("pause");
	}
	// Diagnostic for printing out every pony name
	else if (YourPonyName == "ponyname")
	{
		PrintOutEveryPonyActivity(ponyname, arraysize1);
		system("pause");
	}
	// Diagnostic for printing out every pony activity
	else if (YourPonyName == "activity")
	{
		PrintOutEveryPonyActivity(ponyactivity, arraysize2);
		system("pause");
	}
	// Main stuff happens here
	else
	{
		cout << "Input the day and month (the number) of your birthday.
";
		cin >> day >> month;
		arrayNumber1 = day + month - 2;
		if (month < day)
			arrayNumber2 = day - month - 1;
		else if (day < month)
			arrayNumber2 = month - day - 1;
		else if (day == month)
			arrayNumber2 = day;
		cout << "You, " << YourPonyName << ", will " << ponyactivity[arrayNumber2] << " " << ponyname[arrayNumber1] << ".
";
		system("pause");
	}
}

// Definition of Functions
void PrintOutEveryPonyName(string ponyname[], int size)
{
	cout << "The sum of the number of your month and the number of your day will be used to determine which pony your paired with.
";
	for (int index = 0; index < size; index++)
		cout << index + 1 << " = " << ponyname[index] << "
";
}

void PrintOutEveryPonyActivity(string ponyactivity[], int size)
{
	cout << "The difference between the number of your month and the number of your day will be used to determine which pony activity you will do.
"
		<< "If the month and day are the same, then the number of your day will be used instead.
";
	for (int index = 0; index < size; index++)
		cout << index + 1 << " = " << ponyactivity[index] << "
";
}

@@Nightfall,

 

Remember how I said last night I needed you as a guinea pig?

 

Well...

 

9l5u6F4.png

Edited by TGAP-NAM-TP-PrinGDI_Cannon

a0AgWVX.png

<>

Link to comment
Share on other sites

BdyIToz.jpg

 

 

 

She'd eat them. 0.0

 

Like, seriously, she would kill those chickens and eat them, and maybe even the children! Okay, kidding, not the children. But those chickens are doomed.

 

Also, the cat might run away, especially if there is food out in the wild. A cat only stays inside your home because it is safe and there is food.

 

Dude... There are a lot of chickens here, and a good number of them are the males. Those can get quite big and scary, you know :wacko:

Not to mention there will be their owners hanging around.

 

I guess you're right on the last part. She might run away if she doesn't have a reason to stay inside my care ._.

I'll have to buy a new home then...

*sobs*

 

 

 

You don't make enough money? Maybe you can find an old lady who likes cats to provide food for your hypothetically little kitty?

inb4 the kitty betrayed me and start to life with the old lady

 

 

 

That's the only reason why I know it's called pityriasis. XD Yes, in a word. And the yeast lives on everyone. It just develops on some people, and only in warm moist climates. So it isn't contagious or anything.

Ewww D:

 

Still, you said there is a mold there. Since you already gone to a doctor, I guess you already have the ointment or whatever? Rashes is not exactly a fun thing to have anywhere :x

  • Brohoof 1

k3v45pe.jpg?1

Link to comment
Share on other sites

 

 

what if I made a version of this where the names of ponies are instead names of users here?

Sounds fun, unless people get themselves. 

 

 

Dude... There are a lot of chickens here, and a good number of them are the males. Those can get quite big and scary, you know

Then it's goodbye kitty. Those roosters will mess her up due to the advantage of numbers.

 

 

I'll have to buy a new home then...

Er, why?

 

 

inb4 the kitty betrayed me and start to life with the old lady
 lol

Flutters_and_Dash.png

Link to comment
Share on other sites

Is that what your going to be majoring in? For how long you been into do this?

Kinda, sorta, yeah, and it was just about a few months ago that I began to appreciate the real power of programming.


a0AgWVX.png

<>

Link to comment
Share on other sites

So I scheduled my classes for college today. Yay.
 

Shit.
Something pony related that I can't pretend that I dislike because there's no flaws.

 
That video made my day.
 

I feel sorry for you, being so unable to see the day with optimism and happiness. You settled yourself with the worst of humanity and refuse to seek for a betterment.

 
>Star
>saying this
 
What have you done with him?
 

Thats a really good idea since nowadays technology is always advancing *computer wise*. I am currently majoring in Computer Networking.

 

Computer Engineering, here. Well, I will be in the Fall, but yeah.

Edited by bluetrace
  • Brohoof 1

1080657448_1218611__safe_solo_fluttershy_underhoof_spreadwings_cloud_sky_signature_falling_artist-colon-miokomata2.jpg.b66a3f8b89a05cc464d47a4c38bf96e1.jpg

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Join the herd!

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...