00:05 *** Joins: ADragonDreaming (ADra@Pony-b49hj1.20dc.fhnt.0406.2601.IP)
00:06 * LibrarianofHope plops on Lumindia
00:06 <LibrarianofHope> no energy, i plop
00:08 * Cepheid plops alongside LibrarianofHope. "Same."
00:09 <LibrarianofHope> We must plop on Lumindia, that is the way
00:10 <Cepheid> I'd prefer not to, since I'm sick, and I don't want Lumindia to get sick. I'll plop here in the middle of the room.
00:10 * Cepheid paints a circle around themself on the floor.
00:12 *** Quits: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net) (Connection closed)
00:16 <LibrarianofHope> i have the plague, but its the beauty of the irc, no tranmsiion
00:16 * LibrarianofHope glomps ali
00:16 *** Joins: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net)
00:19 *** Quits: Sanix (Sanix@Pony-qd0.49p.131.94.IP) (Quit: Leaving)
00:28 * Cepheid reads comics. "Ah, Cheryl. Having a sibling 8 years older than you isn't much different from a sibling that's 2 years older than you. I should know."
00:37 *** Quits: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net) (Connection closed)
00:46 *** Joins: Surreal_Nightmares (Surreal@Cutest.Floofy.Changeling.Batpone)
00:46 * Schism is the oldest sister. o3o;
00:46 <Cepheid> Younger sibling here.
00:46 <Cepheid> My sister is 5 years older than me.
00:47 * Surreal_Nightmares kneads Cepheid!
00:47 * Surreal_Nightmares wonder if know C!
00:47 <Cepheid> C?
00:48 * Surreal_Nightmares bounces because C code!
00:48 <Cepheid> Oh, C, as in C programming language.
00:48 <Cepheid> Sorry, yeah, I know C and C++.
00:48 * Surreal_Nightmares wonder how to append a char array to another char array!
00:49 <LibrarianofHope> my brother is a year and a half younger
00:50 <LibrarianofHope> so doesnt feel different
00:50 <LibrarianofHope> we like similar stuff and the gap is not much
00:52 *** Joins: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net)
00:52 <Cepheid> Surreal_Nightmares, the simplest way is to use dynamic allocation. Create a buffer large enough to contain both arrays. Copy the first array to the start of the buffer, then the second array to the rest of the buffer. Return the buffer. You can't do it with statically-sized arrays.
00:53 <Cepheid> So for example, if array A has 25 elements, and array B has 25 elements, you create an array with size 50, and then copy array A to locations 0 to 24 in that new array, and then copy array B to locations 25 to 49.
00:56 <Cepheid> The only problem is, you can't create an array of appropriate size in the form of "int array[x]" where x is a variable. The number has to be a constant.
00:57 <Cepheid> So you have to use malloc() or calloc() to allocate a chunk of memory on the heap large enough to contain both arrays, copy the data, and then use the dynamic array, then make sure to de-allocate the dynamic array when you're done with it.
00:57 <Cepheid> Welcome to the hell that is C, C++ and manual allocation and deallocation.
00:58 * Ali is an only pono..
00:58 * Surreal_Nightmares mowl!
00:59 * Surreal_Nightmares only has to copy an input array to a buffer array and then append another array with words already inside of it to the buffer array!
00:59 <Cepheid> Oh, so the buffer array is already the correct size?
01:00 * Surreal_Nightmares just set da buffer array to size 999!
01:00 <Cepheid> That works too I suppose.
01:00 *** Crimson_Ta1l is now known as Crimson_Tail
01:01 * Surreal_Nightmares kneads Cepheid because she used strncat to copy the name array to the buffer array already and it prints fine!
01:02 <Cepheid> I wasn't thinking in terms of strings, heh.
01:02 * Surreal_Nightmares eee because she has to append char last = ' job well done!' to the buffer char array now!
01:03 * Schism wanders around in Control.
01:03 * Surreal_Nightmares mleps
01:03 <Schism> Mlem. o3o;
01:04 <Schism> My general physician has stated, reasonably enough, that I need to get my blood sugars under control before I'll have any hormonal adjustments, which is perfectly reasonable, sensible, and kind of makes me want to throw the phone at the wall.
01:04 <Cepheid> Should just be a simple case of calling strncat() on the same destination buffer, with the new string to append to it.
01:05 <Schism> And I'm in the meantime being pathologically reasonable, agreeing on all points, which has to be a little bit weird for him.
01:06 * Surreal_Nightmares kneads Cepheid because the name array haz a size of 32 but she doesn't know how to append after buffer[32]!
01:06 * Surreal_Nightmares mewl because the char last also gibs error to strncat!
01:06 * Surreal_Nightmares is trying to do strncat(buffer[32], last, 16)!
01:07 <Cepheid> What's the name of your 999 character buffer?
01:07 * Surreal_Nightmares eee because it's just called buffer!
01:07 <DerpyBot> New post on Equestria Daily by Sethisto: Say Something Nice About Thorax [ https://tinyurl.com/yahaozt8 ]
01:08 * Surreal_Nightmares wonder if she can send Cepheid picture of code!
01:08 <Surreal_Nightmares> o5o
01:08 <Cepheid> strncat(buffer, name, strlen(name)). strncat(buffer, "some other string", ...) where the ... is the length of the string to be appended. It should be automatically.
01:08 <Cepheid> Picture, or just pastebin will do, yeh.
01:09 <Surreal_Nightmares> https://i.imgur.com/ba5Ak7b.png
01:09 <Surreal_Nightmares> o6o
01:09 <Cepheid> Okay.
01:11 <Cepheid> First off, line 10 should be: char* last = " job well done!";
01:11 <Surreal_Nightmares> o7o
01:11 <Cepheid> char by itself, with no [] appended to the name of the variable, is only enough space for one character.
01:11 * Surreal_Nightmares thought she tried that
01:12 * Surreal_Nightmares is super confuse from C!
01:12 <Cepheid> Anyhoo..
01:13 * Surreal_Nightmares climbs onto Cepheid and floof
01:13 * Surreal_Nightmares wonder wat it means to write a loop to process single-characgter input, storing it in a buffer called name[]
01:13 <Cepheid> Line 16, use strncat(buffer, name, strlen(name)). strlen() returns the length of the string, and is a better choice than hardcoding the count.
01:13 <Surreal_Nightmares> o6o
01:14 <Cepheid> Line 17, strncat(buffer, last, strlen(last)).
01:15 * Surreal_Nightmares bounces at Cepheid!
01:15 <Cepheid> Hmm?
01:16 * Surreal_Nightmares wonder wat this means
01:16 <Surreal_Nightmares> https://i.imgur.com/Uy7t4rk.png
01:16 <Cepheid> The prompt you're doing right.
01:16 * Surreal_Nightmares bounces!
01:17 <Surreal_Nightmares> yis!o 4o
01:18 <Cepheid> The description of single-character input makes it sound like they want a loop using getchar(). https://en.cppreference.com/w/c/io/getchar It says this is for C++, yes, but cppreference has an entire section on C stuff.
01:22 *** Quits: LibrarianofHope (Librarianof@Pony-m4o.2tp.207.187.IP) (Quit: Connection closed)
01:22 <Cepheid> Create a buffer B of size N, an index variable I starting off at 0. Read in character with getchar(), assign it to B[I], increment I, go to read another character with getchar(), repeat until some termination condition.
01:23 <Cepheid> I'd like to be more explicit in the solution, but knowing that it appears to be a homework assignment makes me hesitant now to write code for you to use. :P
01:24 * Surreal_Nightmares mew cause she already did that with a while loop!
01:24 <Surreal_Nightmares> https://i.imgur.com/tTv9IBd.png
01:24 <Surreal_Nightmares> o6o
01:25 * Surreal_Nightmares is just super confuse because when she did that earlier it didnt werk!
01:25 <Cepheid> Oh OH no, NO NO NO do not do it that way.
01:25 <Schism> Cepheid: "Quack if you can understand my words."
01:25 <Cepheid> I'm working around her lack of proper communication.
01:28 <Schism> OH, is that for CrossCode?
01:29 <Cepheid> No, I'm dealing with Surry, who doesn't speak apparently. :P
01:29 <Surreal_Nightmares> o6o
01:31 * Surreal_Nightmares fixed it!
01:33 * Surreal_Nightmares bounces on top of Cepheid head and eeeeeeee because she fix it!
01:33 * Surreal_Nightmares melt
01:34 <Cepheid> Huzzah!
01:37 <Cepheid> That said, your approach does leave me wondering if it could be reworked to do it in a funky manner similar to it.
01:40 <Cepheid> It does. Leaves something to be desired readability-wise though.
01:40 <Cepheid> Your line 22 can be rewritten to read: while (&name[x] != &name[32]) {, and make sure to increment x after the getchar().
01:41 * Schism dies.
01:41 <Cepheid> I... would honestly just check for x < 32 in that case, though.
01:41 <Schism> '[f#*$ you, awkward voice recording.]' --the protagonist of Control
01:41 <Cepheid> Heh.
01:42 <Cepheid> Been finding the creepy stuff?
01:42 <Schism> Of course, but this was fun based on the fact that she said exactly what I was thinking.
01:42 <Cepheid> Ah, heh.
01:43 <Cepheid> Cat of mine, what are you doing?
01:43 * Surreal_Nightmares purr at Cepheid because she is learn C!
01:43 <Cepheid> Is this for school or self-teaching?
01:45 <Cepheid> Oh gods.
01:45 <Cepheid> Earendel is pushing a bunch of changes to Space Exploration.
01:50 * Surreal_Nightmares eee because it is self teach!
01:50 <Cepheid> Oh. Okay, that makes things a bit easier for me if you ever have any questions then.
01:50 <Cepheid> I thought it was school because you showed a requirements thing.
01:51 * Surreal_Nightmares mlep!
01:52 <Cepheid> Usually such requirements are part of assignments. :P
01:52 <Cepheid> Assignments rarely, if ever, cover real-world situations.
01:52 * Surreal_Nightmares butts her head against Cepheid tummy
01:52 * Surreal_Nightmares purrrrrr
01:53 * Surreal_Nightmares kneads Ali for food!
01:54 <Ali> And what changes to SE are there? Make it even more unbearable?
01:56 <Cepheid> Too much to list, but looks mostly like bug fixes.
02:00 * Surreal_Nightmares hungry at Schism!
02:00 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Connection closed)
02:06 <Schism> I'm angrybug. :<
02:07 <DerpyBot> New post on Equestria Daily by Calpain: Nightly Discussion #2445 [ https://tinyurl.com/y9ov7f5p ]
02:13 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
02:16 <Cepheid> Why?
02:20 <Schism> Cepheid: You know that bit in Control where you have to go through an obstacle course?
02:20 <Cepheid> Oh, that, yes.
02:20 <Schism> Yup. "(#$* you, Awkward Voice Recording."
02:21 <Schism> I'm amused, because she's just as angry as I am at that point.
02:21 <Schism> I'm REALLY CLOSE to clearing it, but... nerp.
02:21 <Cepheid> It's... not that difficult, last I recall? I did it in like, 2 tries.
02:22 <Schism> I know, and I'm not that far removed from clearing it, but for some reason I just can't seem to do so.
02:23 * Schism throws a tire into a requisite box.
02:24 *** Joins: cabbage (cabbage@Pony-aj9mbi.dynamic.sonic.net)
02:24 * Cepheid notices some new stuff built on Nauvis on the server. Looks at the ma- WHAT THE [REDACTED] RAZOR!?
02:25 <Cepheid> He's got 63 core drillers planned out.
02:25 <Schism> "Course failed. Try again, Ranger."
02:26 <Cepheid> Reckless mode engage!
02:26 <Schism> (#$*.
02:27 <Schism> Why yes, I'd greatly like to pull up the box I'm SPECIFICALLY TARGETING.
02:29 <Cepheid> Launching at enemies is a good way to kill them quickly. Quicker than shooting anyways.
02:29 <Cepheid> Turns out enemies don't like being hit with pieces of concrete.
02:30 *** Joins: Crimson_Ta1l (zeta@batpones.are.for.snuggles)
02:30 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Ping timeout: 121 seconds)
02:46 * Cepheid wanders off to take a very, very long shower. Feels the need to scrub her skin free of all contaminants.
02:52 <Schism> Kill everything. Eat their heads. </Fafnir>
03:01 <Schism> "And if it's the end of the world, don't blame yourself..."
03:03 <Cepheid> So, while I was in the shower, my brain inexplicably started thinking of squared numbers. And I came across an oddity.
03:06 <Cepheid> Apparently, n^2 = (n - 1) * (n + 1) + 1. n = 1, 1^2 = 1. (1 - 1) * (1 + 1) + 1 = 0 * 2 + 1 = 1. n = 2, 2^2 = 4. (2 - 1) * (2 + 1) + 1 = 1 * 3 + 1 = 4. It seems to work with whole integers.
03:06 <Cepheid> n = 8, 8^2 = 64. (8 - 1) * (8 + 1) + 1 = 7 * 9 + 1 = 63 + 1 = 64
03:07 <Cepheid> I'm sure Finwe has an explanation for what this is.
03:08 *** Quits: Angeline (Scootaloo@I.Will.Fly.Higher) (Ping timeout: 121 seconds)
03:17 <Schism> My doctor told me today that I should perhaps take a little bit more time to get my diabetes under control, before taking a series of drugs which results in my diabetes having issues.
03:18 <Cepheid> Oops.
03:18 <Schism> And then I said, "Well. This seems perfectly reasonable. What time-frame do you think?" And he said, "Two weeks?" and I responded with, "Sounds fine."
03:19 <Schism> And so I'll be working alongwide my endocrinologist and main doctor to get that going and reasonable before I cause myself to have a bloody heart attack.
03:19 <Cepheid> Fun fun.
03:20 <Schism> Those of us with at least SOME understanding know better than to run ahead.
03:23 <Schism> "You realize that this is going to cause potential blood clots." "Yes. And that's why I want to make sure that I'm not going to have major concerns therewith." "The latter anti-androgen is a better choice for--" "And I'm still fine with Spiro if you think that's viable."
03:23 <Cepheid> Dangit, what is going on with my left arm? Last few days, it's been feeling funny. Kinda like someone's poking at the funny bone.
03:25 <Cepheid> My guess is, it's related to the pulled muscles in my neck preventing me from turning my head to the far left or right.
03:48 * Cepheid grabs laptop, some pillows, a sheet to cover up, and heads downstairs to the couch to read.
03:57 <PinkieShy> ...
03:58 <PinkieShy> Earlier today got criticized a bit for not being as talkive as most people are.
03:59 <PinkieShy> Asked another friend a few minutes ago about this and they said tehre might be medicine for it
03:59 <PinkieShy> I mean.. I don't want to be a person that becomes like a zombie from medicine.
04:17 <PinkieShy> Socializing is odd very odd like.. Judgement is real, The fact that what i might say can come off as goofy sometimes when i don't mean to
04:17 <PinkieShy> and the fact what i say is random.
04:20 <PinkieShy> I'm actually glad I am like this most of the time.. The Fact is i am not like the rest of the world i am very different.
04:20 <PinkieShy> Being this different makes me unique
04:36 <Ali> I donno if there is meds for it to be honest
04:36 <Ali> I'm very scared of socializations..
04:37 <PinkieShy> These people that criticized me for it earlier are the type that says you need conversation to keep friendships and relationships..
04:37 * Ali wouldn't know, has neither of those.
04:37 <PinkieShy> I mean what about those that CAN'T talk at all due to some vocal disability? I know sign language but not everyone knows that
04:38 <PinkieShy> I myself can speak thankfully
04:39 <Cepheid> So, I found out what the ingredient in the ramen broth from that local ramen place I like is.
04:39 <Cepheid> It's basically just a hot pepper paste.
04:39 <Cepheid> Mix it in with a chicken broth or any other kind of broth, it adds that flavour and spiciness I like.
04:40 <Cepheid> Now I just need to find the right brand of noodles.
04:57 *** Quits: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net) (Connection closed)
04:59 * Surreal_Nightmares kneads Ali tummy
04:59 * Surreal_Nightmares eeeeeeeeeeeeeeeee
04:59 * Surreal_Nightmares skreeeeeeeeeeeeeeeeeeeeeeeeeeeee
04:59 * Surreal_Nightmares prurrrrrrrrrrrrr
04:59 * Ali puts mango into Surreal_Nightmares mouf
04:59 * Surreal_Nightmares nom nom nom nom nom nom nom nom nom
05:00 *** Joins: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net)
05:01 *** Quits: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net) (Connection closed)
05:07 <DerpyBot> New post on Equestria Daily by Sethisto: My Little Pony Generation 5 Netflix Movie Revealed by Entertainment Tonight! [ https://tinyurl.com/y857eaw8 ]
05:12 *** Joins: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net)
05:31 <Cepheid> !mail RazorSharpFang Thinking of setting up a secondary Factorio server running Krastorio2. Thoughts? In theory it should fare better than SE for loading in multiplayer.
05:31 <DerpyBot> Thank you for using the Derpy Mail Service 6_9
05:41 <Surreal_Nightmares> !mail Ali eeeeeeeeeeeee!
05:41 <DerpyBot> Mail delivered! Thank you for using the Derpy Mail Service 6_9
05:41 <Surreal_Nightmares> o5o
05:41 * Surreal_Nightmares eeeeeeeeeee
05:42 * Surreal_Nightmares bleps and climbs ontot Schism
05:43 <PinkieShy> Just saw on Roku screensaver a few minutes ago that Tubi Tv has the MLP Movie free to watch with ads
05:45 * Cepheid noms some old cheddar. Damn that stuff is potent.
05:45 <Cepheid> Seems like a cheddar that'd go well in a mac and cheese, though.
05:45 *** Joins: ConfusionRift (ConfusionRi@Pony-2jv.ofe.132.45.IP)
05:45 *** ChanServ sets mode: +o ConfusionRift
05:46 <ConfusionRift> Hello everypony.
05:46 <Cepheid> Hey Rifty.
06:01 *** Quits: Pony|17147 (Pony17147@Pony-taj8dp.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
06:06 * Surreal_Nightmares purrs and snugglies into ConfusionRift
06:14 * ConfusionRift patpats Surreal_Nightmares.
06:14 * Surreal_Nightmares purrrr and bleps happily!
06:16 *** Quits: cabbage (cabbage@Pony-aj9mbi.dynamic.sonic.net) (Connection closed)
06:18 <Cepheid> http://www.scpwiki.com/scp-4390 Heh.
06:41 <ConfusionRift> "My name is Curtis Geronimo Alpany Serrano McLean Brexxin Hirabachi Yiaxie Ferinidio Epzius Thatcher-" | I know it's protocol, but jeez. Just needed your first and last name, and position. So we can- | "-Carthright Ulkeluya Geondo Jr. III." | (sighs)
06:47 <ConfusionRift> Joke aside, this is one of those SCPs that are somewhat interesting.
06:52 <Finwe> Good morning, everypony!
06:54 <ConfusionRift> RAdm. Finwe. (salutes)
06:54 <Finwe> Mlles Ali, Filly_Nightmares and Surreal_Nightmares, and Schism; Messrs PinkieShy, Cepheid and ArchPegasusMichael.
06:54 * Finwe doffs his hat.
06:54 <Finwe> Lt Cdr ConfusionRift, Capt Koopz.
06:54 <Finwe> o7
06:54 <Finwe> Cepheid: It's elementary algebra.
06:56 <Finwe> (n+1)(n-1) = n² - n + n - 1 = n² - 1, so if you add one you get n².
06:58 * Finwe noms on both Filly_Nightmares and Surreal_Nightmares.
06:58 * Surreal_Nightmares hungry at Finwe!
06:58 <Koopz> RAdm. Finwe o7
07:00 * Finwe gives an apple to Surreal_Nightmares.
07:02 <PinkieShy> Finwe I don't know algebra.
07:03 <PinkieShy> The class i was in back when i was in school never thought it was necessary
07:03 <PinkieShy> Well They might have but not that kind of stuff.
07:03 <PinkieShy> They taught us PEMDAS.
07:05 * Filly_Nightmares purrrrrr
07:07 * PinkieShy hands Filly_Nightmares a picture of fluffle puff
07:18 * Filly_Nightmares kneads picture into PinkieShy face floof!
07:18 * Filly_Nightmares skreeeeeeeeeeeeeeeeeee!
07:29 <Finwe> Real algebra is another thing, adding some more abstraction to the school algebra.
07:44 <ConfusionRift> Be back in a bit.
08:14 * Finwe listens to the Council of State declare stricter lockdown.
08:14 <Finwe> Closing restaurants in March is becoming an annual tradition.
08:20 <Schism> ConfusionRift: "This is a compelling story, I'll admit, but it doesn't answer the question of why you showed up in my shower this morning."
08:21 <Schism> I like how the implication is that the Foundation Agents' showers are recorded, too.
08:21 <Schism> Just in case.
08:23 <Schism> "Why would you keep a file folder full of naughty pictures of yourselves?!" --in which Asst. Director Duncan doesn't quite get the joke.
08:31 <Schism> "As a representative of Wondertainment, you are going to watch every moment of our team's progress..." "Um." "And critique the game." "Can't you just kill me instead?" "We figure that sending you back as a gibbering wreck will send a better message." "You have a million gibbering wrecks on staff." "Okay, we're just feeling mean."
08:31 <Schism> (That's just a bit of microfic from my insane bean.)
08:37 * Finwe lockdowns Schism.
08:38 * Schism still manages to doff her bowl of pho.
08:39 *** Quits: PinkieShy (coolm@Pony-ck81je.67-212-45-net.sccoast.net) (Connection closed)
08:40 * Finwe adds some rawit chilli to Schism's soup.
08:41 * Schism headtilts and picks out the chili, but not before they impart some capsaicin to the soup.
08:44 <Finwe> Lemongrass is also obligatory.
08:46 <Finwe> And spring onions.
09:20 *** Quits: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net) (Connection closed)
09:21 *** Joins: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net)
09:27 *** Quits: Ali (Ali@Pony-n3j093.iplsin.sbcglobal.net) (Quit: Leaving)
09:29 * ConfusionRift returns.
09:29 <ConfusionRift> That took longer than I wanted.
09:35 <ConfusionRift> Schism: The foundation should be used to it by this point; both odd surveillance and apparitions out of nowhere. :P
09:37 <Schism> Yes, but I suspect the agent immediately brought up their sidearm and pointed it at centre of mass. Because of _course_ Foundation agents keep their sidearms in the shower, due to odd surveillance and apparitions out of nowhere.
09:38 <ConfusionRift> One of these? :P https://concealednation.org/wp-content/uploads/2019/07/ScreenHunter_2509-Jul.-28-13.43.jpg
09:39 <ConfusionRift> Or probably one of those who has one in every nook and cranny that exists in their room.
09:39 <Schism> Mm, close enough.
09:40 <ConfusionRift> Or has one at all times, and they never take it off. So they're just showering with a leg holster on.
09:42 * Schism cracks up at SCP-4914. "Oh, dear. Thing about Gamers Against Weed, they come up with stupid jokes and then they just kind of explode."
09:42 <ConfusionRift> As for the surveillance, many of the SCPs in containment have the ability to either teleport, break through most known materials, or can affect personnel beyond visual range.
09:43 <Schism> I don't want to say that the Foundation is justified in their consideration of GaW as a group of interest, but they are totally justified.
09:43 <ConfusionRift> Having a camera everywhere (and I mean EVERYWHERE) should be kind of a given.
09:44 <Schism> Well, yeah. With careful antimemetic agents on said cameras.
09:47 * ConfusionRift laughs. "I that's why I don't play competitive MP games."
09:49 <ConfusionRift> Guy was on cover, with no one firing, and no one in sight. He's low and has to reload soon, but hesitates because he could get flanked easy. As soon, AS SOON, as he presses to reload and the character grabs the mag, an enemy shows up on the peripheral and wipes him.
09:51 <Schism> Hah. Yup, you only want to play multiplayer FPSes and _afterwards_ upload the stream.
09:52 *** Joins: Golden (uid250033@Pony-sd90bk.tooting.irccloud.com)
09:52 <ConfusionRift> Edit it like it never happened. :P
09:52 <Schism> Meanwhile, I'm going to play more Control today.
09:55 <ConfusionRift> I'm going to jump to FO4. Or... maybe to one of the games I haven't played.
09:56 <Schism> Finish up CrossCode in preparation for the DLC today?
09:57 * Schism had forgotten that this exists. She might need to bench the rest of the day in lieu...
10:07 <ConfusionRift> "Hey man, I found this game and it's really good. It's called Hades." | Yeah, heard of it, but it's a roguelike, and I'm not moving to those right now. | "Oh, well... OH, there's also this cool action game, it's called Hades." | I already told you. Not jumping to any roguelikes right now. I got way too many occupying space, and have left them due to frustration. | "Oh okay... OH, there's this game, it's an action RPG with a
10:07 <ConfusionRift> kinda Diablo-esque thing going, and it's-" | If it's Hades, you're muted. | "..." | [mutes]
10:10 <ConfusionRift> Yes, it looks good. Yes, it's by the same people who worked on Bastion. Yes, everyone's praising it. No, not playing it. I have actually reached the point that roguelikes are in my exclusion list.
10:11 <ConfusionRift> Just mentioning it, because this guy went from talking about it in chat to texting me about it. -_-
10:15 <Finwe> One thing modern roguelikes have in common is that they are usually almost entirely unlike Rogue.
10:20 <Schism> ... Tanuki Sunset is a nice game, but its controls are slippy and it's kind of ... I mean, it's okay...
10:21 <Finwe> Roguelike being defined as "a subgenre of role-playing video games characterized by a dungeon crawl through procedurally generated levels, turn-based gameplay, tile-based graphics, and permanent death of the player character".
10:24 <Finwe> I guess this would have to count, though: https://upload.wikimedia.org/wikipedia/commons/e/e3/Vultures-2.1.0_screenshot.jpg
10:27 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
10:27 *** Quits: Crimson_Ta1l (zeta@batpones.are.for.snuggles) (Ping timeout: 121 seconds)
10:34 <ConfusionRift> Have no clue what that is.
10:38 <Finwe> ConfusionRift: NetHack rendered with isometric graphics instead of the usual ASCII graphics.
10:42 <Schism> One of these days... I will start putting memetic hazards into the shoes of resellers which cause them to march right into the ocean.
10:42 <Finwe> o3o
10:42 <Schism> "Turn yourself east and start walking."
10:43 <Schism> I'll share this with every producer ever. "If you intended to sell this product at a 200% markup or more, start walkin'."
10:47 <ConfusionRift> Oh, i see.
10:49 <Schism> This is also relevant to those in Portland, Oregon. They can start walking east, and never stop.
10:50 <ConfusionRift> "Not intended for resale. Attempting to do so may result in spontaneous combustion of reselling source."
10:52 <ConfusionRift> Wait... stuffed armor? I have never seen this before.
10:54 <Schism> Stuffed armour is fine. Padded armour, and even _quilted_ armour, that's a thing.
10:54 <Schism> Plus, you need to have an inlay of some cloth and padding underneath the metal, or else things are going to be Very Bad.
10:54 <ConfusionRift> It's literally just a stuffed plush tied to cloth banding. :P
10:58 <Schism> Oh, well, I suppose that's fine for LARPing, where you're basically throwing around NERF swords... :P
10:59 * ConfusionRift wants to find more Teddy Armor pieces.
11:09 <Schism> This is a really, really good illustration of Telephone. https://pbs.twimg.com/media/Eu7c9NSXEAAuJbL?format=jpg&name=large
11:10 *** Joins: Crimson_Ta1l (zeta@batpones.are.for.snuggles)
11:10 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Ping timeout: 121 seconds)
11:12 <ConfusionRift> How things can always go in full circle. :P
11:14 <Schism> Of course. o3o
11:15 * Schism sighs at this song. https://www.youtube.com/watch?v=W2TE0DjdNqI
11:17 *** Crimson_Ta1l is now known as Crimson_Tail
11:22 <ConfusionRift> o_0
11:22 <Schism> Porter Robinson's Worlds album is quite a trip.
11:27 * ConfusionRift bookmarks.
11:29 <Schism> This track is rather more upbeat. https://www.youtube.com/watch?v=5S21AIWMLbw
11:30 <Schism> Slightly, anyway. The hope that one might meet one's true love, eventually.
11:32 * ConfusionRift sighs. Notices that somehow these have Chip=WIN tracks as suggested, and is now sad.
11:33 * Schism hugs. :<
11:35 <ConfusionRift> Some were asking what happened to their community, and they apparently just disbanded to do other things. So the community won't be taking in those albums anymore. Actually, all of their albums got removed.
11:36 <ConfusionRift> It happened some time ago, but I had no idea till recently.
11:37 * Golden flops.
11:38 <Finwe> Mr Golden.
11:38 * Finwe flops back to Golden.
11:38 <Golden> Yo
11:47 <Schism> Blergh... 'Something Comforting' is a really good example of an illustration of gender dysphoria and what it feels like to flip back and forth and aaaa.
12:27 *** Quits: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net) (Connection closed)
12:29 *** Joins: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net)
12:29 <Finwe> Schism: Did you know that Ludwig van Beethoven had, from time to time, difficulties finding his mentor during his musical studies in Vienna.
12:31 <Finwe> This was mostly because he was…
12:31 * Finwe puts on glasses.
12:31 <Finwe> … Haydn.
12:32 * Finwe hides behind AppleDash.
12:40 *** Joins: Dapper_Dappled (IceChat9@Pony-6gbca1.ok.cox.net)
12:46 * Dapper_Dappled mildly grumbles about player interaction in Sea of Thieves. Yeah yeah, it's a piracy game and players gonna pirate and bother each other, and when I have loot, I get that. But when I'm just fishing cause of the event that just started, you'd think that they could go after something... I don't know,
12:46 * Dapper_Dappled profitable.
12:46 *** Joins: RazorSharpFang (FourthChoic@Pony-q34o18.tpgi.com.au)
12:47 <RazorSharpFang> Cepheid, I've never ran Krastorio
12:57 *** Quits: Surreal_Nightmares (Surreal@Cutest.Floofy.Changeling.Batpone) (Connection closed)
13:02 * Filly_Nightmares wigglewaggles and suckles on Dapper_Dappled floof
13:02 * Dapper_Dappled hugs Filly_Nightmares.
13:07 * Filly_Nightmares purr loudly
13:11 * Dapper_Dappled go bed after frustrating pirate game. Hopefull will be better tomorrow.
13:11 *** Quits: Dapper_Dappled (IceChat9@Pony-6gbca1.ok.cox.net) (Quit: Wink, Wink, nudge, nudge. Know what I mean?)
13:26 *** Joins: Angeline (Scootaloo@I.Will.Fly.Higher)
13:29 <Finwe> Mlles Angeline and Filly_Nightmares.
13:29 * Finwe doffs his hat.
13:30 * Filly_Nightmares eees and snugglies into Finwe floof
13:30 * Finwe hugs Filly_Nightmares.
13:34 *** Quits: Angeline (Scootaloo@I.Will.Fly.Higher) (Ping timeout: 121 seconds)
13:35 <RazorSharpFang> I have a BLDC motor with 4 cables, red, black, yellow, and blue. Any idea which cables do what?
13:36 <Finwe> Black is ground, red is voltage.
13:39 <ConfusionRift> Normally, red is positive, black is negative, and yellow is ground. I have not clue what blue is.
13:39 <RazorSharpFang> I'm thinking that yellow is not ground.
13:40 <ConfusionRift> Wait...
13:41 <ConfusionRift> Motor lines?
13:41 <RazorSharpFang> Yes, I said it was a BLDC motor
13:43 <ConfusionRift> I'm looking at the diagram for a controller for said motor. Apparently, yes, red and black are as expected. Yellow, green, and blue are for motor lines. My guess is for additional torque?
13:43 <RazorSharpFang> I don't have green.
13:43 <RazorSharpFang> This is for model `ksb06105ha`
13:44 <ConfusionRift> I know, but those are the color codes, hence my confusion.
13:47 <Finwe> Yellow is signal in and blue is stop, green is usually soft start.
13:47 *** Quits: ArchPegasusMichael (Poni@Keep.In.A.Friendly.And.Pony.Place) (Ping timeout: 121 seconds)
13:47 <Finwe> But I think you can manage with just the signal in, if you stop by switching off power.
13:48 <RazorSharpFang> My intention was to rotate the motor by hand to produce voltage.
13:49 <ConfusionRift> ...eeeh?
13:53 <Finwe> Basically an electric motor works also as a generator.
13:53 <ConfusionRift> I know. Was just... okay, maybe it's for a crank generator.
13:54 <RazorSharpFang> But I have no idea which lines will show a voltage when I turn it by hand.
13:58 <RazorSharpFang> It is tempting to strip and measure the wires empirically.
13:59 *** Joins: ArchPegasusMichael (Poni@Keep.In.A.Friendly.And.Pony.Place)
14:00 <Finwe> As stated before, there should be voltage between the red and the black wire.
14:00 <ConfusionRift> ^
14:00 <RazorSharpFang> Perhaps I can just ignore the yellow and blue lines then.
14:00 <ConfusionRift> They're for use on a motor controller to actuate the motor, but current still follow red and black.
14:01 <RazorSharpFang> Perhaps it's the difference between the rudder and propeller
14:01 *** Quits: Golden (uid250033@Pony-sd90bk.tooting.irccloud.com) (Quit: Connection closed for inactivity)
14:17 <DerpyBot> New post on Equestria Daily by Sethisto: Overanalyzing The My Little Pony Generation 5 Movie Screenshot [ https://tinyurl.com/ycffzcln ]
14:32 <RazorSharpFang> Gamestop 160, up 70%
14:38 <RazorSharpFang> (Yes it's happening again)
14:39 <Schism> Why not, if it worked once already.
14:39 <Schism> And if the people in the financial institutions were so stupid as to short stock a second time.
14:40 <RazorSharpFang> What could possibly go wrong.
14:41 <Schism> I doubt it'll leap as far as before, but for the love of Finagle, why would you pick the same stock in the same manner and short it in the same way?!
14:42 <Schism> I bet they announced it ahead of time, too.
14:42 <RazorSharpFang> If at first you don't succeed, continue doing the same thing without changing anything.
14:43 <ConfusionRift> Ah, the scientific method. :P
14:43 <RazorSharpFang> Unfortunately the markets are irrational
14:44 <Schism> I would say that in this circumstance, it's the companies which are irrational.
14:47 <RazorSharpFang> Which form a part of the market.
14:48 <Schism> Yeah, yeah...
14:51 <Schism> I trust that your app is still carefully holding against shorts on GSE and Blackberry?
14:52 <RazorSharpFang> GSE? GSE SYSTEMS INC? Never heard of them.
14:53 <Schism> Ahem. GME. You know that. :p
14:53 * Schism typoes, she's quite tired at 10 AM.
14:54 <RazorSharpFang> These days I swear you can press a few random keys and it'll happen to be a stock ticker.
14:57 <RazorSharpFang> "Yes, I'll like to buy stock in WSB" "Ah yes, good choice sir"
15:09 * ConfusionRift flops to sleep.
15:09 *** Quits: ConfusionRift (ConfusionRi@Pony-2jv.ofe.132.45.IP) (Quit: Recharging the batteries. Laters! *shutdown*)
15:15 <ADragonDreaming> My manager mentioned it in our brief meeting this morning.
15:15 <Schism> Huh.
15:15 <Schism> Hey, Cepheid. You noticed that butter is harder at room temperature recently?
15:17 <DerpyBot> New post on Equestria Daily by Sethisto: Hasbro Investor Event 2021 - Liveblogging and My Little Pony News Gathering! [ https://tinyurl.com/y7oehe9v ]
15:21 <ADragonDreaming> it's been working out.
15:22 <RazorSharpFang> What has? Also what was mentioned?
15:22 <Schism> Heh. Butter's been harder of late due to the addition of palm oil to livestock feed.
15:23 <RazorSharpFang> Isn't that the oil that's bad for you?
15:24 <Schism> Well, not _the_ oil, but _an_ oil.
15:32 *** Joins: LibrarianofHope (Librarianof@Pony-m4o.2tp.207.187.IP)
15:32 * Cepheid awakens.
15:32 <LibrarianofHope> helloooo
15:33 <LibrarianofHope> razor! i have a spider question
15:33 <RazorSharpFang> Oh no
15:33 <LibrarianofHope> what is the coolest looking spider you know?
15:33 <RazorSharpFang> Australian Red Back Spider
15:33 <LibrarianofHope> im going to buy a big spider to paint
15:34 <LibrarianofHope> it is cool!
15:34 <RazorSharpFang> It is deadly, do not touch.
15:34 <LibrarianofHope> ill add some reds to other bitts
15:35 <LibrarianofHope> https://images.app.goo.gl/KrMoPQXg16GXbksx5
15:35 <LibrarianofHope> im gonna buy that and paint it
15:35 <LibrarianofHope> black and red does work nice
15:36 <Cepheid> My mother would hate that.
15:36 <LibrarianofHope> my dad rarely comes to my library, and he is pretty chill on my minis
15:37 <LibrarianofHope> if he didnt complain in Ngash he wot mind spider boi
15:38 <LibrarianofHope> im also getting a skeleton king, cant beat that classic skeleton warrior aesthethic
15:41 <LibrarianofHope> so how has the day been treating al of you owo
15:42 <RazorSharpFang> I am in the red today, but that's okay - entering new positions for potential profits if it turns green again.
15:46 <LibrarianofHope> do you have an exit plan?
15:46 <LibrarianofHope> in general?
15:49 <RazorSharpFang> It's complicated, and depends on the scenario. I sell stock-options, particularly Put options.
15:49 <RazorSharpFang> I will buy to close a position at somewhere between 50% to 90% profit depending on my confidence.
15:50 <RazorSharpFang> If this does not occur, then I must surely be In-The-Money (Technical term) and will tank assignment if I have sufficient funds, else roll the position.
15:51 <Schism> Cepheid: This is a real moth. https://www.snopes.com/uploads/2013/07/GettyImages-494803337-e1556126134682.jpg
15:52 <Schism> Well, sort of. Not _quite_ real, but here's the actual thing. Why yes, that does look like Paolumu. https://www.snopes.com/tachyon/2013/07/article-2191817-14A469F9000005DC-270_964x817.jpg
16:07 <DerpyBot> New post on Equestria Daily by The Illustrious Q: ‘My Little Pony’ Franchise Gallops to Netflix with All- New Animated Feature Film and Series [ https://tinyurl.com/yazm2b9c ]
16:28 *** Quits: Taoki (MirceaKitsu@Pony-sme.fv9.240.188.IP) (Quit: http://www.furaffinity.net/user/mircea/)
16:30 *** Joins: Taoki (MirceaKitsu@Pony-sme.fv9.240.188.IP)
16:37 <DerpyBot> New post on Equestria Daily by Sethisto: New Male Mane-Cast Pony Revealed for Generation 5 Movie - Plus Animated Look at the Ponies! [ https://tinyurl.com/ydbld9yg ]
17:02 *** Quits: RazorSharpFang (FourthChoic@Pony-q34o18.tpgi.com.au) (Connection closed)
17:07 <DerpyBot> New post on Equestria Daily by Sethisto: New Generation 5 My Little Pony Merchandise / Toys Revealed - Brushable Figures [ https://tinyurl.com/yaz8m998 ]
17:17 <Schism> Panels 3 to 5 are how I often feel. https://www.egscomics.com/index.php?id=1914
17:24 *** Joins: Ali (Ali@Pony-n3j093.iplsin.sbcglobal.net)
17:24 *** ChanServ sets mode: +qo Ali Ali
17:24 * Ali flops over the Schism
17:26 <Cepheid> Hum. So the Frost Islands of Rise were the area of a great battle between hunters and a gigantic dragon.
17:26 <Cepheid> ... Gee, I wonder what we're going to fight at some point.
17:28 <Cepheid> "The series' evergreen monster is back again to throw fireballs at your face." - Regarding Rathian.
17:31 <Schism> Eventually I'll get that Switch...
17:31 * LibrarianofHope flops on Ali
17:31 <LibrarianofHope> comfy Ali is comfy
17:31 <Schism> And cute, but we knew that.
17:32 * Ali is not cute darn it
17:32 * Schism puffycheeks at Ali.
17:32 * Ali puffycheeks right back at Schism
17:33 * Schism puffycheeks much more, floats up into the air, and is murdered by a monster hunter on suspicion of being a Paolumu.
17:34 <Ali> So a pokemon direct tomorrow
17:34 <Ali> And of course everyone is screaming for a gen 4 remake
17:35 <Schism> D/P certainly aren't the worst...
17:35 <Ali> I can tell you one major flaw of D/P
17:36 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Connection closed)
17:36 <Schism> Times.
17:36 <Ali> Guess how many fire types there were
17:36 <Schism> Oh. Yes, that was a major issue.
17:36 <Ali> And to make that worse
17:36 <Ali> An Elite Four member was a Fire type user
17:36 <Schism> Had all the Fire types (and then several none-fire types).
17:36 <Schism> non-*
17:37 <Ali> Cause there was only three fire type lines in the game
17:37 <Ali> And one of them was the starter
17:38 <Schism> Rapidash, Steelix, Drifblum, Lopunny, and Infarnape. Had _TWO_ fire-types.
17:38 <Ali> Huh, but Gen 4 had the Magmar line
17:38 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
17:38 <Schism> But of course Lopunny has Fire Punch (which isn't a STAB of course), and their Steelix had Fire Fang and Sunny Day.
17:39 <Ali> Or did they not add Magmortar?
17:39 <Ali> Steel type
17:39 <Ali> Sunny Day
17:39 <Schism> They could have. Didn't.
17:39 <Schism> And yup. Steel/Ground, Sunny Day.
17:39 <Ali> *inserts coffin dance meme*
17:39 <Ali> I mean I understand why grass types can learn sunny day
17:40 <Ali> But its so dangerous cause it boosts fire damage
17:40 <Schism> Oh, and their Derpblum (Drifblum) had Will-O-Wisp, Ominous Wind, Double Team, and Baton Pass, which is at least SOMEWHAT understandable.
17:40 <Ali> Bet the competitve people lose their crap when that happens
17:40 *** Joins: Pony|44767 (Pony44767@Pony-taj8dp.cable.virginm.net)
17:40 <Ali> NUUU YOU CAN'T EVADE BOOST!!!!
17:40 <Ali> I'd still say this
17:41 <Ali> Evasion tricks is a lot less stupid than free damage from stealth rock
17:42 <Ali> Lets have a move that does free damage, and pretty much makes anything x4 weak to rock unplayable
17:42 <Schism> I should also note that Infernape has only one Fire-type move, and only Flare Blitz and Mach Punch are STAB.
17:42 <Ali> And flare blitz is an ouchie move
17:43 <Schism> Hmm, 120 Power and recoil. Yech.
17:43 <Ali> It wasn't until they gave Flareon that move that it became useful
17:43 <Ali> Cause you know, it suffered from the gen 1 stat distrabution
17:44 <Ali> Lets make a mon with high attack
17:44 <Ali> And then give it no moves or stab that match it.
17:44 <Ali> It at least now has access to Flare Blitz and Iron Tail
17:44 <Ali> But it still struggles
17:44 <Schism> Flint's Rapidash also has Solar Beam, which I mean, I _guess_ procs better with Sunny Day, but ...
17:45 <Ali> Its a trick move
17:45 <Ali> To nail water mons hard thinking they'll have it easy
17:45 <Ali> Or trying to wall with a rock/ground
17:45 <Schism> That's reasonable. But anyone and their grandmother can see it coming.
17:46 <Ali> Yes but people can be oblivious
17:46 <Ali> Also don't forget that back then, you were actually underleveled for the Elite Four
17:46 <Ali> Unlike now where its a joke
17:47 <Ali> With that stupid feature starting in X/Y
17:47 <Ali> I had a Lvl 81 starter by the time I got to the Elite Four
17:47 <Schism> Started a bit before, but wasn't quite so outrageous...
17:48 <Schism> Black/White did bring about some ridiculous leveling schemae.
17:48 <Ali> EXP Share has been in the game forever
17:48 <Ali> But X/Y took it to the extreme to effect the entire party
17:49 <Schism> Yeah, but X/Y brought it to the forefront. I was talking about that one pokemon whose entire purpose was to give you 4x or 8x experience.
17:49 <Ali> Audino?
17:49 <Schism> That's the bunny.
17:49 <Ali> No, its the Gen 5 replacement chansey
17:49 <Ali> Also gave crap tons of XP on defeating it
17:50 <Schism> Um... I found it quite readily, MUCH more so than any Chansey I've ever seen.
17:50 <Ali> Eeyup
17:50 <Ali> It had a much higher encounter rate
17:50 <Ali> And almost always showing up in the shaking grass
17:50 <Ali> So you could actually farm for the stupid thing
17:51 <Schism> Yeah, every time the grass shook...
17:51 <Ali> And yes, I hated Black and White for the one big reason
17:51 <Ali> Lvl 64 to get Hydreneon{sp}
17:52 <Ali> And then Ghetsis always using a Lvl 50 version of it
17:52 <Ali> Its Lance's Dragonites all over again
17:59 <Schism> Ooh.
17:59 <Schism> New Pokeshots Movesets from NCH. https://www.youtube.com/watch?v=gw7TW5YI1To
18:01 <Schism> ... okay, this is...
18:01 <Ali> I... don't get this
18:03 <Schism> It's silly.
18:04 <Ali> What does this have to do with pokemon?
18:04 <Schism> Taking moves and being _totally_ literal with them.
18:07 <Schism> It becomes evident at the end, but.... yeeeeah.
18:09 * Ali flops over Schism to nibble an ear
18:45 *** Joins: RAIDEN-48HR (RAIDEN-48HR@Pony-do4.4r6.58.172.IP)
18:46 *** Joins: RAIDEN_48HR (RAIDEN_48HR@Pony-do4.4r6.58.172.IP)
18:49 *** Quits: RAIDEN-48HR (RAIDEN-48HR@Pony-do4.4r6.58.172.IP) (Ping timeout: 121 seconds)
19:07 <DerpyBot> New post on Equestria Daily by Silver Quill: After the Fact: MLP #95 [ https://tinyurl.com/y8kmweaa ]
19:14 *** Joins: PinkieShy (coolm@Pony-ck81je.67-212-45-net.sccoast.net)
20:12 *** Joins: Angeline (Scootaloo@I.Will.Fly.Higher)
20:26 <Finwe> Mlles Ali, Angeline, Filly_Nightmares and Schism; Messrs Cepheid and PinkieShy.
20:26 <Cepheid> Finwe.
20:26 * Finwe doffs his hat.
20:26 <Finwe> Lt Pony|44767.
20:26 <Finwe> o7
20:26 * Pony|44767 wave.
20:38 * Cepheid bursts into flames.
20:44 * RAIDEN_48HR Bows
20:52 <LibrarianofHope> tireeed
20:52 <LibrarianofHope> the virus is exhausting
20:53 <Cepheid> I'm exhausted myself, despite getting a decent amount of sleep for a change.
21:06 <Cepheid> I think the next game I'm gonna try to complete is Dragon's Dogma, for a change.
21:06 <Cepheid> Go around as an aging granny kicking monster butt.
21:07 <DerpyBot> New post on Equestria Daily by Makenshi: EQG Song Remix: Daniel Ingram - Shake Your Tail (FazFent Bootleg) [Happy Hardcore] [ https://tinyurl.com/ybf7rmcm ]
21:12 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Connection closed)
21:12 <Cepheid> Heck with it, I'm gonna set up a Krastorio 2 server as well.
21:18 <Cepheid> Same server address, just port 27502 instead of 27500.
21:19 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
21:19 <Cepheid> Should actually be easier on your PC, Ali, unlike SE.
21:20 <Ali> Kay, my other game is down due to a stupid glitch
21:20 <Cepheid> Also on your mind a bit.
21:20 <Cepheid> I got another lecture in 10 minutes, 2 hours long. I'll be available at 6:30, but you're free to get started.
21:21 <Ali> Not sure about starting alone in a new mod I know nothing about
21:21 <Cepheid> !mail RazorSharpFang I set up a Krastorio 2 server as a "something else to do," since SE is burning me out a slight bit. It's on the same address, port 27502.
21:21 <DerpyBot> Thank you for using the Derpy Mail Service 6_9
21:21 <Cepheid> It includes a small in-game manual, and FNEI is there.
21:21 <Cepheid> Plus, we get "bots" from the get-go.
21:22 <Cepheid> I included a mod called Companion Bots. It provides a small floating bot that can be equipped with stuff for defense, building, etc.
21:22 <Cepheid> It starts you off with 2 automatically.
21:22 <Cepheid> So defense should be okay.
21:23 <Ali> I hear you, just bug fighting isn't my specialty and even worse now that i tend to play with them off
21:23 <Cepheid> Fortunately, the bots do a great job of it.
21:23 <Cepheid> I played around with the mod pack for a bit with the bots, those things are OP for the initial bugs.
21:24 <Cepheid> They know how to fight. Keeping their distance from attackers, and fighting at a range, etc.
21:25 <Ali> Getting no response from the server
21:26 <Cepheid> Let me take a look see.
21:26 * Finwe noms on Ali's Internet connection.
21:27 * Ali noms on Finwe's tail
21:27 * Finwe tail-wiggles!
21:27 <Finwe> !plot
21:27 <DerpyBot> *wigglewiggle*
21:27 <Finwe> *wigglewiggle*
21:28 <Cepheid> Hum. Yeah, not working on my end either. I'll have to look into it later, unfortunately.
21:29 <Cepheid> It's all set up the same as the other server, so I have no idea why. Unless it's binding to a different address for some danged reason.
21:31 <RAIDEN_48HR> !mail
21:31 <RAIDEN_48HR> hmm
21:31 <Cepheid> Yeah, sorry, I'll have to go figure this out later.
21:33 <Finwe> !mail DerpyBot a box of muffins
21:33 <DerpyBot> For..for me? Are there muffins inside??
21:33 <Finwe> Yes!
21:33 <DerpyBot> Thank you!!
21:33 * DerpyBot glomps Finwe
21:34 <Ali> Not a problem
21:36 <PinkieShy> hmm i wonder if it works with just muffins.
21:36 <PinkieShy> !mail DerpyBot muffins
21:36 <DerpyBot> For..for me? Are there muffins inside??
21:36 <PinkieShy> Yes of course :D
21:36 <DerpyBot> Thank you!!
21:36 * DerpyBot glomps PinkieShy
21:37 <DerpyBot> New post on Equestria Daily by Sethisto: New Generation 5 My Little Pony Merchandise / Toys Revealed - Brushable Figures [ https://tinyurl.com/yaz8m998 ]
21:38 <DerpyBot> New post on Equestria Daily by Silver Quill: After the Fact: MLP #95 [ https://tinyurl.com/y8kmweaa ]
21:38 <DerpyBot> New post on Equestria Daily by Sethisto: GIANT Drawfriend Stuff (Pony Art Gallery) #3618 [ https://tinyurl.com/ycp2y2xa ]
21:41 <RAIDEN_48HR> !hug
21:41 <DerpyBot> Hugtiem? :3
21:41 * DerpyBot wraps her front hooves around RAIDEN_48HR in a tight embrace
21:41 <RAIDEN_48HR> POG
21:41 *** Quits: Pony_34230 (Bloodrose@Pony-0jfibs.by.lunarbnc.net) (Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net)
21:42 *** Joins: Bloodrose (Bloodrose@Pony-0jfibs.by.lunarbnc.net)
21:43 *** Bloodrose is now known as Pony_80333
21:44 <Cepheid> Oh. I probably need to restart the router. Can't do that right now.
21:44 <Cepheid> Nah, there we go.
21:44 <Cepheid> Ali, it should work now.
21:55 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Ping timeout: 121 seconds)
21:56 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
22:02 <PinkieShy> Might talk with my dad about getting up at 9:30 tomorrow..
22:02 <PinkieShy> So i can stop by lowes get a rack to move dirt, buy some bags of dirt and rocks..
22:02 <PinkieShy> and work on trying to fix the yard up just a bit.
22:08 <Cepheid> My back is killing me, but my left arm's doing much better today.
22:09 <Cepheid> My mother offered to let me use her bed for the next few days while she works nights to try and recover, since it's probably from sleeping on my bed in a weird way, because I don't exactly fit it.
22:11 *** Joins: Dapper_Dappled (IceChat9@Pony-6gbca1.ok.cox.net)
22:13 <PinkieShy> Werewolf on the phone got renamed to Wolvesville..
22:13 <PinkieShy> I bet it was copyright reasons they can call themselves Werewolf online..
22:13 <PinkieShy> *can't
22:14 <Finwe> Mr Dapper_Dappled.
22:14 * Finwe doffs his hat.
22:14 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Connection closed)
22:14 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
22:17 * PinkieShy licks Finwe
22:18 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Connection closed)
22:20 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
22:28 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Connection closed)
22:29 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
22:47 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Ping timeout: 121 seconds)
22:47 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
22:48 *** Quits: DerpyBot (DerpyBot@is.in.your.pants.eating.your.muffins) (The TLS connection was non-properly terminated.)
22:48 *** Joins: DerpyBot (DerpyBot@is.in.your.pants.eating.your.muffins)
22:48 *** ChanServ sets mode: +ao DerpyBot DerpyBot
22:49 <DerpyBot> *derp*
23:01 *** Joins: Jackie (Jackie@smol.librarian.mare)
23:02 <Jackie> I'm never going to get used to the new g5 ponies
23:02 <Finwe> Miss Jackie.
23:03 * Finwe doffs his hat.
23:03 <DerpyBot> New post on Equestria Daily by Sethisto: Drawfriend - Equestria Girls / Anthro MLP Art Gallery #274 [ https://tinyurl.com/y8cp3etp ]
23:03 <Finwe> It's clearly becoming an annual tradition to close down the restaurants in March.
23:04 <Finwe> This year it happened one week earlier than last year.
23:04 <Cepheid> Here, it's more tradition to close down the bars and re-open under new management.
23:04 <Finwe> Or is going to happen, rather.
23:05 <Finwe> Our PM announced today that restaurants, sports facilities and whatnot are goign to be closed again from March 8 onwards.
23:06 <Cepheid> I wish our local governments would stop screwing around and decide how it's going to deal with the pandemic.
23:06 <Finwe> Back in 2020 it was only restaurants and the lockdown started on 17th of March.
23:08 <RAIDEN_48HR> My government is like, closed! now open! oh that was a bad idea closed again! repeat that about 15 times
23:09 <Cepheid> I hate modern society.
23:09 <RAIDEN_48HR> The internet was a mistake
23:09 <Cepheid> It's not the Internet.
23:09 <RAIDEN_48HR> oh it is for me
23:10 <Cepheid> This is going to be a calling the kettle black type thing, given my past history, but a thing that really grates on my nerves is how quickly people rally to one side, or express extreme negative emotions so quickly.
23:10 <Cepheid> Got one person basically treating me like shit because of ONE FAUX PAS.
23:10 <Cepheid> Like... calm down.
23:11 <RAIDEN_48HR> oof
23:11 <RAIDEN_48HR> people still say oof right?
23:11 <Cepheid> Yes.
23:11 <LibrarianofHope> oof
23:13 <RAIDEN_48HR> according to google trends it peaked in Q4 2018
23:13 <RAIDEN_48HR> ahh Q4 2018
23:13 <RAIDEN_48HR> I miss it
23:14 * Cepheid sighs.
23:14 <Cepheid> Their hair trigger response was because of the association with police.
23:14 <RAIDEN_48HR> politics make brain hurty
23:15 <Cepheid> I grow tired of this.
23:15 <RAIDEN_48HR> I'm sorry
23:16 <Cepheid> I'm on the fence. On one hand, I have to trust the police, because there are situations where they are appropriate that, without them, could potentially become worse.
23:16 <Cepheid> But at the same time, I understand that there are problems in the police system, with bad apples and the like that need to be removed.
23:16 <RAIDEN_48HR> Oh you mean , i though you were growing tired of reading my pointless drivel
23:16 <Cepheid> So it creates a conflict between me and many people, because A) I'm not on either side, and B) Being on neither side is being a part of the problem.
23:16 <Cepheid> So people will have problems with me regardless of WHAT I SAY OR DO.
23:17 <Jackie> !link https://youtu.be/U3dgD03nY5E
23:17 <DerpyBot> I need to ask Twilight about that one.
23:17 <DerpyBot> Twilight told me this video is about My Little Pony: Generation 5 - First Look
23:18 <RAIDEN_48HR> I think police are necessary, like it only makes sense, but I also think they need to be trained better, vetted more, and like, should focus on de-escalation
23:18 <LibrarianofHope> its official?
23:18 <LibrarianofHope> thtas g5?
23:18 <Cepheid> RAIDEN_48HR, that's my thought pattern regarding police. Sometimes, talking a person down just isn't viable. I should know.
23:19 <Jackie> LibrarianofHope: yes
23:19 <Jackie> It's from Hasbro's Investor's event
23:19 <LibrarianofHope> so 3d now?
23:19 <Cepheid> The problem is, because of this police brutality/mistreatment shit, I am put in positions where I can, and will, hurt myself in the presence of police, and they won't do anything about it.
23:19 <LibrarianofHope> wonder if they are even going to try to go for a new brony rise
23:20 <Cepheid> The last time I ended up in a hospital thanks to the university, I repeatedly ordered the security and the police to cuff me for my own safety. They refused. I later injured myself needing an x-ray.
23:20 <Cepheid> They didn't want to cuff me "because it would look bad."
23:21 <RAIDEN_48HR> Even de-escalation can involve physical restraint if necessary
23:21 <RAIDEN_48HR> like
23:21 <Jackie> LibrarianofHope: some bronies will be mixed with new ones
23:21 <RAIDEN_48HR> for sure, not everyone can be talked down
23:22 <RAIDEN_48HR> some have to be sedated, restrained, tased, knocked out
23:22 <LibrarianofHope> if they can make strong chracters and a get good writers the looks wont matter
23:22 <RAIDEN_48HR> but the goal isnt to end them, its to make sure they cant hurt others or themselves
23:23 <Jackie> Well, just pray that it won't be like MLPS
23:23 <LibrarianofHope> it is a hard act to follow, G4
23:23 <Jackie> Also both the movie and the series is going to be in netflix
23:24 <LibrarianofHope> the wholoe brony thing is very unique
23:25 <Cepheid> RAIDEN_48HR, unfortunately, police and security in this city have reached a point where they won't do that for me.
23:25 <Cepheid> I understand their concerns with how it may look, but I've been living with this temper of mine all my life.
23:25 <Cepheid> When I say do something to restrain me or something of the sort, you do it. No questions asked. I am ordering you to do it because I know what will happen otherwise.
23:25 <Cepheid> That is the total amount of control I have over myself.
23:26 <Cepheid> And yet, it won't happen now because they're too afraid to do anything.
23:26 <Cepheid> For fear of being caught even innocuous things.
23:26 * Cepheid twitches.
23:26 <RAIDEN_48HR> Ah, i see your point
23:27 <RAIDEN_48HR> Yeah, cancel culture, hivemind thought, I hate it as well
23:28 <Cepheid> One of these days, I'm going to have a tool on my person, lose my mind, and jam it into my hand or something like that, because oftentimes that's the thing I want to do most.
23:28 <Cepheid> And the people who should be stopping me will let it happen. At which point I will hate the people who made them so indecisive even more.
23:29 <Cepheid> Guh. I didn't mean to get into this topic or be this distressed, but my mind just... went to a bad place.
23:29 <RAIDEN_48HR> I also have, rather bad urges, I cannot walk near traffic or bridges
23:30 <Cepheid> I am, by some inherent, possibly genetic nature, a fighter.
23:31 <Cepheid> Were it not for the self-control I have, I'd pick fights with people.
23:31 <Cepheid> And I'm talking fisticuffs. Not verbal arguments.
23:31 <Cepheid> Unfortunately, my self-control extends to "not picking fisticuff fights with others."
23:31 <Cepheid> It doesn't extend to "attacking walls, benches, doors, etc."
23:32 <RAIDEN_48HR> I cant fight people, it makes my physically sick, to the point of where once i regain composure i will certainly throw up
23:33 <RAIDEN_48HR> Okay, I *Can* fight people, but it just, makes me need to throw up
23:34 <RAIDEN_48HR> adrenaline sensitivity? i dont know
23:34 <Cepheid> Fortunately, as of late, the problem's been less of a concern. I was put on a medication that seems to help me control the temper a bit. I no longer go into a recursive spiral of self-hatred and crying.
23:35 <RAIDEN_48HR> I havent been on my anti depression meds for a bit over 2 years now, the past year has been, difficult to say the least, ive been considering going back on meds
23:35 <Cepheid> This isn't an antidepressant.
23:36 <Cepheid> It's an antipsychotic.
23:36 <RAIDEN_48HR> I know
23:36 <RAIDEN_48HR> I was just, telling you about myself too i guess
23:37 <Cepheid> Right, right.
23:39 <RAIDEN_48HR> Anyway its nice to hear your meds are helping
23:39 <RAIDEN_48HR> My memory is very bad
23:39 <RAIDEN_48HR> but
23:39 <RAIDEN_48HR> I remember your name from
23:39 <RAIDEN_48HR> 2015 i think
23:39 <RAIDEN_48HR> i cant remember any interactions we had
23:39 <RAIDEN_48HR> but i do remember your name
23:40 <Cepheid> Yeah, I've been around for a few years.
23:40 <Cepheid> Still not sure how I'm still around.
23:40 <Cepheid> Pretty sure I violated the rules a number of times.
23:41 <RAIDEN_48HR> I dont really like talking in here honestly, since unix kitty logs everything, and it makes me, paranoid
23:44 <Cepheid> I don't mean to creep you out with this, but you are aware that anyone, at any time, could be logging this channel? It's a common feature of IRC clients. At least Unix Kitty is open about it, and shows what IS being logged.
23:45 <RAIDEN_48HR> yes, I am
23:45 <Cepheid> In any case, all that can be logged is anything that's public. Anything else, such as a PM/Query, is private, and not even the sysadmins of the network are allowed to view that content. I would hope, anyways.
23:45 <Cepheid> Otherwise, the server software is doing something horribly wrong.
23:47 * Cepheid plays some Factorio.
23:48 <Schism> Cepheid: I kinda want a Jeremy of my own. https://www.egscomics.com/comic/party-050
23:49 <Cepheid> Heh.
23:50 <RAIDEN_48HR> Its just, a singular entity privately logging doesnt bother me, but, when those logs are publicly and openly displayed on google accessible by simply googling my username, it makes me paranoid and uncomfortable, and yes, I know, Its entirely within their right, as this is a public channel in a public IRC server, so I dont fault them for it, im just very mentally ill and paranoid at many things unnecessarily
23:50 *** Quits: Jackie (Jackie@smol.librarian.mare) (Connection closed)
23:50 *** Joins: Jackie_ (Jackie@smol.librarian.mare)
23:50 *** Quits: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net) (Connection closed)
23:51 <Finwe> Schism: Jeremy the Hedgecat?
23:51 <Schism> Indeed.
23:52 <Finwe> I wonder whether a Hedgecat is entirely unlike a hedge knight.
23:53 *** Joins: NitroTheFurry (Nitro@Pony-l010ql.mi.comcast.net)
23:53 *** Quits: DerpyBot (DerpyBot@is.in.your.pants.eating.your.muffins) (The TLS connection was non-properly terminated.)
23:53 *** Joins: DerpyBot (DerpyBot@is.in.your.pants.eating.your.muffins)
23:53 *** ChanServ sets mode: +ao DerpyBot DerpyBot
23:54 <DerpyBot> *derp*
23:54 *** Joins: Jackie (Jackie@smol.librarian.mare)
23:54 <Finwe> Mlles DerpyBot and Jackie.
23:54 * Finwe doffs his hat.
23:54 <Finwe> !hug
23:54 <DerpyBot> Hugtiem? :3
23:54 <Finwe> :3
23:54 * DerpyBot wraps her front hooves around Finwe in a tight embrace
23:56 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Connection closed)
23:56 * Finwe boops Schism with the longest word ever used in Greek, in a play from 391 BCE.
23:56 <Finwe> Viz., λοπαδοτεμαχοσελαχογαλεοκρανιολειψανοδριμυποτριμματοσιλφιοκαραβομελιτοκατακεχυμενοκιχλεπικοσσυφοφαττοπεριστεραλεκτρυονοπτοκεφαλλιοκιγκλοπελειολαγῳοσιραιοβαφητραγανοπτερύγων.
23:56 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
23:58 *** Quits: Jackie_ (Jackie@smol.librarian.mare) (Ping timeout: 121 seconds)
23:58 *** Joins: Jackie_ (Jackie@smol.librarian.mare)
23:58 *** Quits: Jackie (Jackie@smol.librarian.mare) (Ping timeout: 121 seconds)
23:59 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Connection closed)
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!