Jump to content

General Chat Thread


Apple      Bloom

Recommended Posts

3 minutes ago, Sir Punicpunch said:

I'm probably going to get a 3 TB 7200 RPM HDD. The 4 TB one I got was 5400 RPM.

Are there any brands I should look at specifically?

Mine's a Western Digital drive. Any other brand can work, but I'd look at the reviews.


a0AgWVX.png

<>

Link to comment
Share on other sites

Haven't actually bought the 4TB yet though - got a 1TB 5400 in there (one I removed from the primary drive of another laptop for an SSD upgrade) until I find a reasonably priced 4TB drive in the 2.5" form factor.


ᚾᛖᚹ ᛚᚢᚾᚨ ᚱᛖᛈᚢᛒᛚᛁᚴ - ᚦᛖ ᚠᚢᚾ ᚺᚨᚦ ᛒᛖᛖᚾ ᛞᛟᚢᛒᛚᛖᛞ

image.png.1d67db17f637a25cb8070c016012d5cf.png

Link to comment
Share on other sites

Oh, I almost forgot. This:

// Member function: Make a tautological street name
// Examples: Avenue Road, Street Avenue, Street Street, Lane Drive, etc
// This is just an easter egg; there is no other reason to have this function =P
// Maybe have it so that 1 out every 100 random name generations have this funny name
void ObjStreet::makeStreetNameTauto()
{
	streetName = makeStreetTitle() + " " + makeStreetTitle();
}
	// This IF statement determines whether the street gets a normal name
	// or a tautological name; chance of a tautological name is 1 in 100 by default
	if (rand() % 100 + 1 < 100) streetName = n[rand() % n.size()] + " " + makeStreetTitle();
	else makeStreetNameTauto();

 

Edited by Ganaram Inukshuk

a0AgWVX.png

<>

Link to comment
Share on other sites

Oh my it's been forever since I have been in here.. Might as well wave a hoof and say hello, though I see that things aren't all that active in here, I guess it has it's spurts I guess.

How is everyone doing today? I am about to get ready for a big move in the next few weeks, it will be the first time living away from my parents, I hope things go well.

  • Brohoof 1

siggeh163.png

I'm a COLT/STALLION, not a filly/mare. Just because I have a round muzzle does not mean I'm female. Remember that. =3

Signature made by me, vectors in signature and avatar also made by me.

Link to comment
Share on other sites

4 hours ago, Lil'Cinnamon said:

Oh my it's been forever since I have been in here.. Might as well wave a hoof and say hello, though I see that things aren't all that active in here, I guess it has it's spurts I guess.

How is everyone doing today? I am about to get ready for a big move in the next few weeks, it will be the first time living away from my parents, I hope things go well.

Cinny-Minny, I'm literally in the same boat as you, and I just woke up.


a0AgWVX.png

<>

Link to comment
Share on other sites

Just now, Sir Punicpunch said:

I wake up normally at about 2 PM nowadays.

That'll change when school starts.

I have that bad habit of not falling asleep early enough, too. This is why I should never sign up for morning classes if I can avoid it.

Also, did you see the code I shared?


a0AgWVX.png

<>

Link to comment
Share on other sites

42 minutes ago, Ganaram Inukshuk said:

I have that bad habit of not falling asleep early enough, too. This is why I should never sign up for morning classes if I can avoid it.

Also, did you see the code I shared?

Yeah, is it a random street namer?

Ironically, I'm quite bad with code.


img-26989-1-img-26989-1-img-26989-1-img-

Your Resident Robot Cyberneticist

 

 

 

 

Link to comment
Share on other sites

Just now, Sir Punicpunch said:

Yeah, is it a random street namer?

Ironically, I'm quite bad with code.

It's C++. I'm curious; are there any other programming languages you know? All I know is Visual Basic and C++, but I prefer C++. I also know a bit of HTML and CSS, but at this point, I'm quite rusty.

Also, it's a C++ class. Maybe it'll help if I shared what that functions look like.

std::string ObjStreet::makeStreetTitle()
{
	// List of possible names may be expanded on in the future,
	// but there aren't many possible titles to add in
	// There are currently 10 entries
	std::vector<std::string> t =
	{
		"Avenue",	"Circle",	"Court",	"Crescent",
		"Drive",	"Lane",		"Road",		"Street",
		"Trail",	"Way"
	};

	return t[rand() % t.size()];
}
void ObjStreet::makeStreetName()
{
	// Current street names are based off of street names in my area,
	// one for each letter of the alphabet, including names whose letter
	// isn't included

	// This list may be modified someday
	std::vector<std::string> n =
	{
		/* Random street names go here, enclosed in quotes and separated by commas */
	};

	// This IF statement determines whether the street gets a normal name
	// or a tautological name; chance of a tautological name is 1 in 100 by default
	if (rand() % 100 + 1 < 100) streetName = n[rand() % n.size()] + " " + makeStreetTitle();
	else makeStreetNameTauto();
}

 


a0AgWVX.png

<>

Link to comment
Share on other sites

1 hour ago, Ganaram Inukshuk said:

It's C++. I'm curious; are there any other programming languages you know? All I know is Visual Basic and C++, but I prefer C++. I also know a bit of HTML and CSS, but at this point, I'm quite rusty.

Also, it's a C++ class. Maybe it'll help if I shared what that functions look like.


std::string ObjStreet::makeStreetTitle()
{
	// List of possible names may be expanded on in the future,
	// but there aren't many possible titles to add in
	// There are currently 10 entries
	std::vector<std::string> t =
	{
		"Avenue",	"Circle",	"Court",	"Crescent",
		"Drive",	"Lane",		"Road",		"Street",
		"Trail",	"Way"
	};

	return t[rand() % t.size()];
}

void ObjStreet::makeStreetName()
{
	// Current street names are based off of street names in my area,
	// one for each letter of the alphabet, including names whose letter
	// isn't included

	// This list may be modified someday
	std::vector<std::string> n =
	{
		/* Random street names go here, enclosed in quotes and separated by commas */
	};

	// This IF statement determines whether the street gets a normal name
	// or a tautological name; chance of a tautological name is 1 in 100 by default
	if (rand() % 100 + 1 < 100) streetName = n[rand() % n.size()] + " " + makeStreetTitle();
	else makeStreetNameTauto();
}

 

I don't know many languages, I know of JavaScript anyways. 

Code looks confusing, but I get some of it.


img-26989-1-img-26989-1-img-26989-1-img-

Your Resident Robot Cyberneticist

 

 

 

 

Link to comment
Share on other sites

Just now, Sir Punicpunch said:

I don't know many languages, I know of JavaScript anyways. 

Code looks confusing, but I get some of it.

It's gonna get worse since I'm also considering making a person name generator, a family generator, and a household generator.


a0AgWVX.png

<>

Link to comment
Share on other sites

Such a bore to play Fallout 3 after you've played New Vegas.

zzzzzzzzzzzzzzzzzzzzzzzzzz.

Link to comment
Share on other sites

22 minutes ago, Ganaram Inukshuk said:

I'll go dig your grave right now.

Thanks.

 

17 minutes ago, Royce said:

Such a bore to play Fallout 3 after you've played New Vegas.

zzzzzzzzzzzzzzzzzzzzzzzzzz.

It's interesting to see just how different Fallout games are. Fallout 4 is super different from New Vegas.

That goes without saying though.


img-26989-1-img-26989-1-img-26989-1-img-

Your Resident Robot Cyberneticist

 

 

 

 

Link to comment
Share on other sites

I shall poke this chat with my hoof.... How is everyone doing today? Also.. I am going to dump a new picture of me that I just recently took.....

000000-5bs.png


siggeh163.png

I'm a COLT/STALLION, not a filly/mare. Just because I have a round muzzle does not mean I'm female. Remember that. =3

Signature made by me, vectors in signature and avatar also made by me.

Link to comment
Share on other sites

27 minutes ago, Lil'Cinnamon said:

I shall poke this chat with my hoof.... How is everyone doing today?

Learning OpenGL on my own right now. Very daunting task, but then did me from when I was 15 years old ever foresee becoming so good at Inkscape?


a0AgWVX.png

<>

Link to comment
Share on other sites

39 minutes ago, Ganaram Inukshuk said:

Learning OpenGL on my own right now. Very daunting task, but then did me from when I was 15 years old ever foresee becoming so good at Inkscape?

I may as well ask... What would you say I am doing in that new picture I posted up there? And like how I am feeling, Just wonder your opinion on that.

Also, long time no speak Ganny, how are you?


siggeh163.png

I'm a COLT/STALLION, not a filly/mare. Just because I have a round muzzle does not mean I'm female. Remember that. =3

Signature made by me, vectors in signature and avatar also made by me.

Link to comment
Share on other sites

Just now, Lil'Cinnamon said:

I may as well ask... What would you say I am doing in that new picture I posted up there? And like how I am feeling, Just wonder your opinion on that.

Also, long time no speak Ganny, how are you?

I'd guess he's sneaking around and about two weeks before fall quarter begins.


a0AgWVX.png

<>

Link to comment
Share on other sites

20 minutes ago, Ganaram Inukshuk said:

I'd guess he's sneaking around and about two weeks before fall quarter begins.

Who's sneaking around? If you are talking about me, you mean me. xD (I thought you knew I prefer second pony words when you are talking directly to me about my pony self. xD)

But nah, since I don't go to school, if that's what you meant by fall quarter


siggeh163.png

I'm a COLT/STALLION, not a filly/mare. Just because I have a round muzzle does not mean I'm female. Remember that. =3

Signature made by me, vectors in signature and avatar also made by me.

Link to comment
Share on other sites

18 hours ago, Lil'Cinnamon said:

Who's sneaking around? If you are talking about me, you mean me. xD (I thought you knew I prefer second pony words when you are talking directly to me about my pony self. xD)

But nah, since I don't go to school, if that's what you meant by fall quarter

Well, I'm moving to the dorm soon, so yeah.

Also, OpenGL shaders have melted my brain, so I need a break.


a0AgWVX.png

<>

Link to comment
Share on other sites

I'm kind of excited right now, because I think I may have found another pegasister at my school, this girl I have been getting to know better since I got put in the same form as her was humming the mlp intro in lunch queue. It's possible it was just stuck on her head for some other reason, but I'm planning to do some investigating here... 

IMG_0643.PNG

  • Brohoof 1
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...