00:04 <PinkieShy> Finally learned the british way to say 'Water'
00:07 <DerpyBot> New post on Equestria Daily by Sethisto: Discussion: What Do You Think of the Student Six Now That The Dust Has Settled? [ http://tinyurl.com/ycpvoqfr ]
00:07 <Ali> Man I've gotten all these fish with just the bamboo rod, almost to fishing 8
00:08 <Ali> Yet still can't catch that stupid octapus
00:12 <Cepheid> Because octapus don't exist. You're thinking of octopus.
00:17 <Ali> Yes I know, I can't spell
00:18 *** Quits: Angeline (Scootaloo@I.Will.Fly.Higher) (Ping timeout: 121 seconds)
00:18 <PinkieShy> Temperature with a window open, and 4 fans going is working out great
00:18 <PinkieShy> ITs falling fast in the house :3
00:18 <PinkieShy> Went from 83F to 79
00:30 <Cepheid> https://i.redd.it/ui4xoip45dx41.jpg
00:30 <Cepheid> I feel like I should watch that series. Too bad it isn't available for streaming anywhere in Canada.
00:43 * Cepheid decides to toy with threading today. Yesterday was P/Invoke. Today, threading.
00:51 *** Joins: cabbage (cabbage@Pony-u30cht.dynamic.sonic.net)
00:58 * Schism works on clearing out his retainers somewhat.
01:03 <Cepheid> Threading is tricky.
01:04 <Cepheid> Especially in a "job" setup.
01:05 <Cepheid> I have sixteen threads. Once started, they simply sleep and wait for the controller to give them a task. In this case, the task is just to sleep for a variable amount of time between 1 and 3 seconds to create the illusion of varying difficulties of work.
01:06 <Cepheid> The controller in this case is the primary thread, the one running the main loop. It's job is to accept jobs to be done, and wait for one or more threads to be available to take on those jobs, and then assigns them. It then goes back to sleep until there are more jobs, or more threads become available to assign work.
01:07 <Cepheid> Thread pooling, in other words.
01:07 <DerpyBot> New post on Equestria Daily by Sethisto: My Little Pony Speedpaint Compilation #135 [ http://tinyurl.com/y6uvfxb3 ]
01:08 <Cepheid> Sounds easy on the top of things when you look down at it. You got sixteen people, you're the one who doles out work. You give all sixteen people a task, they go off and do it, and you wait, collecting up more tasks from those higher up to do. After a while, some of your people come back, so you assign more tasks.
01:09 <Cepheid> Except in the world of computing, this is annoying to implement, because there's a special problem not apparent in this human variant.
01:12 <RichardMist> byee gotta go!
01:13 *** Quits: RichardMist (User@tor.sasl.RichardMist) (Quit: Leaving.)
01:25 *** Joins: Velveeta (Velveeta@Pony-k9vam2.res.rr.com)
01:32 *** Quits: FruitNibbler (Eogan@Pony-b1c0og.dip0.t-ipconnect.de) (Connection closed)
01:49 *** Joins: PurpleTie (PurpleTie@Pony-th3.adl.251.205.IP)
01:49 *** Quits: PurpleTie (PurpleTie@Pony-th3.adl.251.205.IP) (Connection closed)
01:52 *** Joins: PurpleTie (PurpleTie@Pony-70a.2da.115.199.IP)
01:54 *** Quits: PurpleTie (PurpleTie@Pony-70a.2da.115.199.IP) (Quit: Leaving)
01:58 <Cepheid> Huzzah, did it!
02:04 *** Quits: Stormspark (stormspark@Pony-25m.dcd.98.172.IP) (Ping timeout: 121 seconds)
02:05 * Cepheid decides to make the thread count configurable and see what the durations of completing all the "work" is.
02:06 *** Joins: Stormspark (stormspark@Pony-25m.dcd.98.172.IP)
02:06 <Cepheid> Obviously, at 32 jobs total, 1 second per job, it'll take 1 thread 32 seconds.
02:06 * Schism provides Cepheid with a kittybank. https://ffxiv.gamerescape.com/wiki/Fat_Cat_Bank
02:07 <DerpyBot> New post on Equestria Daily by Calpain: Nightly Discussion #2154 [ http://tinyurl.com/y7brlmlj ]
02:09 <Cepheid> Heh.
02:15 *** Quits: Stormspark (stormspark@Pony-25m.dcd.98.172.IP) (Quit: Leaving)
02:17 <Cepheid> Hum. There's a bug in my text renderer.
02:19 <Cepheid> Oh, there's the problem.
02:21 * Cepheid really needs to investigate how to manage csproj files for certain scenarios.
02:53 *** Joins: Angeline (Scootaloo@I.Will.Fly.Higher)
03:04 <Cepheid> Ah, there we go.
03:07 *** Quits: Velveeta (Velveeta@Pony-k9vam2.res.rr.com) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
03:10 <Cepheid> Got automatic compilation of shader files implemented. o3o
03:10 <Cepheid> With incremental build support. So only compiles them if the shaders have changed.
03:11 * Ali understands nothing
03:11 <PinkieShy> I wish i could contact Nintendo game making department and suggest directly to them a Paper Luigi waffle kingdom game..
03:11 <Ali> Or just a paper mario game that doesn't suck
03:11 <PinkieShy> A game that would be play of what the super luigi books in paper mario thousand year door tells
03:11 <Ali> I mean its terrible that the first two were so great
03:11 <Ali> Then they start trashing it with Super Paper Mario
03:12 <Ali> And then Sticker Star and Color Splash just trounce all over the game's namesake
03:12 <Cepheid> Ali: Compilation is the act of taking a bunch of text in a certain format, and outputting new text, or data, based on the input. It's what results in the code that I write turning into programs, more or less.
03:12 <Ali> All greek to me
03:12 <Cepheid> Meanwhile, incremental building is just "Don't compile unless the source file was changed."
03:12 <Cepheid> Because otherwise it's just wasting time.
03:12 <Ali> All that I read so far just translates to
03:13 <Ali> Blah blah blah yakky smacky
03:13 <Cepheid> In laymans terms, "It saves time."
03:13 <Ali> Wish I could remember where that line came from
03:15 <Cepheid> Heh.
03:19 <PinkieShy> Seriously though Ali if Paper Luigi were to come out.. It would be selling like hot cakes
03:19 <PinkieShy> That game would easily be sold out everywhere in the first week probably lol
03:20 <Ali> So would a GOOD paper mario game
03:20 <PinkieShy> yee
03:35 *** Quits: Angeline (Scootaloo@I.Will.Fly.Higher) (Ping timeout: 121 seconds)
03:41 *** Quits: Heartbreak (Heartbreak@Pony-gja4ce.mn.comcast.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
03:46 *** Joins: Heartbreak (Heartbreak@Pony-gja4ce.mn.comcast.net)
03:47 <DerpyBot> New post on Equestria Daily by Sethisto: <unspecified> [ http://tinyurl.com/ybozha5b ]
03:50 <Cepheid> Gods dangit, my skeleton is on fire again.
03:58 <Cepheid> I'll eat some food, then take a cold shower.
04:18 * Cepheid goes through the news as he eats. "I legitimately have no idea what's going on South of the border. It looks like a mess down there."
04:27 <Ali> Don't ask
04:28 <Ali> And my god do I hate Stardew Valley's no defense buffs crap
04:28 <Ali> Like the best defense you can get is FOUR
04:28 <Ali> Its really lovely when I'm taking 30 damage a hit from a mob that won't get off of me
04:46 <Cepheid> I don't know why, but every now and then I get the strongest smell of burning toast or food
04:46 <Cepheid> Lasts for about 15-30 seconds, then passes.
04:46 <AppleDash> Congratulations you're having a stroke
04:47 * Ali boops AppleDash
04:47 <AppleDash> Eee
04:48 * Ali tries to nibble on an AppleDash ear
04:48 * AppleDash squeaks and falls over
04:50 * Ali crawls onto AppleDash and lays on for warms
04:50 <Cepheid> If I were having a stroke, there would be other symptoms. :P
04:50 <Cepheid> No, I'm more likely having a seizure, because burnt toast.
04:51 <Cepheid> !link https://www.youtube.com/watch?v=pUOG2g4hj8s
04:51 <DerpyBot> I need to ask Twilight about that one.
04:51 <DerpyBot> Twilight told me this video is about Heritage Minutes: Wilder Penfield
04:53 <Cepheid> For some reason, that seems to be the most well-known of the Heritage Minute clips among Canadians.
04:55 <Heartbreak> asdf
04:55 <Ali> jkl;
04:55 *** Quits: Heartbreak (Heartbreak@Pony-gja4ce.mn.comcast.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
04:55 * Ali boops the Heartbreak
04:55 * Ali pouts
05:01 *** Quits: DataByteBrony (DataByteBro@Pony-u3iqm5.il.comcast.net) (Connection closed)
05:01 *** Joins: Heartbreak (Heartbreak@Pony-gja4ce.mn.comcast.net)
05:02 <Cepheid> ... Wait, it's friday?
05:03 <Heartbreak> It is Now!
05:04 <Heartbreak> Ali I wasn't sure if I was here.
05:04 * Ali huggles on Heartbreak nows
05:04 <Heartbreak> Have some icecream wrapped in chocolate mochi as an apology.
05:04 <Heartbreak> Gaaaaaaaah.
05:04 <Heartbreak> Why you hug?
05:05 <Ali> Cause friendly thing?
05:08 *** Joins: Angeline (Scootaloo@I.Will.Fly.Higher)
05:19 <Finwe> Morning, my perissodactyls of minute stature.
05:20 <Finwe> Mlles Ali, Filly_Nightmares and PrincessRainbows; Messrs AppleDash, Cepheid, Heartbreak and Schism.
05:20 * Finwe doffs his hat.
05:20 * Ali curls up into Finwe
05:20 * Finwe hugs the Ali.
05:27 <Cepheid> Finwe.
05:27 * Cepheid works on getting text rendering working right. It's properly kerning and such now, but the baseline height stuff was broken.
05:27 <Cepheid> Turns out that FT_Face->height is the unscaled value. If I want the scaled value after setting the character size, I need FT_Face->size->metrics.height.
05:30 <Heartbreak> And then...
05:30 <Heartbreak> We drew Finwe as a filly...
05:30 <Heartbreak> A -little- filly.
05:30 <Heartbreak> In a school filly uniform, smiling and laughing with her school filly fffriends.
05:31 <Finwe> o3o
05:31 <Heartbreak> Be... Fore Being Attacked By Monsters and Transforming Into the Sailor Filly Scouts!!
05:32 <Heartbreak> Mwhahahahahaha!!!
05:32 <Heartbreak> These drawings mentally exist and there is Nothing You Can Do About It FInwe!!!!
05:33 * Cyan_Spark baps Heartbreak
05:34 <Heartbreak> GaaaaaaH! For that, you're Sailor ... Sailor Uranus Cyan_Spark
05:34 * Cyan_Spark pokes with horn
05:34 <Heartbreak> Staaaaaap!
05:35 * PrincessRainbows also boops Heartbreak with her fake horn
05:35 <Heartbreak> Is your horn made of candy?
05:36 <Finwe> Horns are made of ceratin.
05:36 <Finwe> Fake horns, on the other hoof, might be made of something else.
05:37 <Cepheid> Keratin.
05:37 <PrincessRainbows> Paper :(
05:37 <Finwe> Cepheid: Indeed, it's a Greek word.
05:38 <Finwe> Keros means horn.
05:38 * PrincessRainbows makes little birb horse noises
05:39 <Heartbreak> PrincessRainbows: What if I made you a horn out of agates and other rocks?
05:39 <PinkieShy> I became a furry 2 years ago, I became a brony in 2013.. Being part of both communities feel like a part of me is completed :)
05:40 <PinkieShy> Its just like everybody in both communities is so welcoming, so friendly and all awesome :)
05:40 <PinkieShy> You guys are awesome and will always and forever be.
05:41 * PrincessRainbows licks Heartbreak so much and trots off for sleepies
05:41 <Ali> Look just cause I like Sonic and Ponies doesn't make me a furry *puffycheeks*
05:42 * Ali flops off to a puzzle or something
05:43 <Finwe> How cute.
05:44 <Heartbreak> Gaaaaah, No Licking! Just go to sleeeeep.
05:45 * Finwe patpats a Heartbreak.
05:45 <Heartbreak> Gaaaaah! No patpats! Only Finwe in a dress!
05:48 * PrincessRainbows whimpers and hides beneath Ali
05:51 <PrincessRainbows> That HB pony is a meany!
05:51 <PrincessRainbows> Nini
05:51 <Finwe> I agree.
05:52 * Finwe consoles PrincessRainbows.
05:52 <Finwe> Good night!
05:57 *** Joins: jimm (horse@Pony-fr7.dqo.55.45.IP)
06:13 <PinkieShy> Ali I didn't call you guys a furry lol
06:39 *** Quits: cabbage (cabbage@Pony-u30cht.dynamic.sonic.net) (Connection closed)
06:40 *** Quits: Pony|27257 (Pony27257@Pony-i454b4.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
06:59 <Cepheid> Ye know..
07:00 <Cepheid> I was always under this impression that amphetamines of all types were like, highly addictive. Especially due to the "high" they induce.
07:00 <Cepheid> So why in the 8 heavens and 4 hells does my body act like it *DOESN'T* want any more of this stuff?
07:03 *** Quits: PinkieShy (coolm@Pony-ck81je.67-212-45-net.sccoast.net) (Connection closed)
07:06 <Cepheid> Hum.
07:07 <Cepheid> Quick research indicates that it might have to do with the way my brain works.
07:15 <Cepheid> https://pbs.twimg.com/media/DRWFWgEXkAEdT6k.jpg:large
07:17 *** Quits: Bigcheesegs (quassel@Pony-ca7imf.hd7n.ihu1.2e00.2606.IP) (Quit: No Ping reply in 180 seconds.)
07:17 *** Joins: Bigcheesegs (quassel@Pony-ca7imf.hd7n.ihu1.2e00.2606.IP)
07:18 <Cepheid> https://www.zdnet.com/article/for-8-years-a-hacker-operated-a-massive-iot-botnet-just-to-download-anime-videos/
07:21 <Cepheid> Basic gist for those who can't speak tech: Guy used a bug in software for a common router to install malware whose sole purpose was to download anime.
08:25 *** Quits: Angeline (Scootaloo@I.Will.Fly.Higher) (Ping timeout: 121 seconds)
09:34 *** Quits: Ali (Ali@Pony-cvibue.iplsin.sbcglobal.net) (Quit: Leaving)
09:46 <Cepheid> When you blare music into your ears so loudly with headphones that when sudden silence hits, your ears feel like they just cringed.
09:56 <Cepheid> !link https://youtu.be/cottwbDUYnA
09:56 <DerpyBot> I need to ask Twilight about that one.
09:56 <DerpyBot> Twilight told me this video is about ☢CAUTION!!☢ 東方 Touhou Metal\/Rock 169 ☢CAUTION!!☢
10:35 <Cepheid> My chest hurts. Feels like my heart is being crushed, or compressed.
11:07 <DerpyBot> New post on Equestria Daily by Calpain: Morning Discussion #1925 [ http://tinyurl.com/y9y8ytmq ]
11:26 *** Joins: RichardMist (User@tor.sasl.RichardMist)
11:28 <RichardMist> hoiii! *waves*
11:46 *** Quits: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net) (Ping timeout: 121 seconds)
11:48 *** Joins: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net)
11:50 <Cepheid> Hoi.
11:56 *** Joins: FruitNibbler (Eogan@Pony-b1c0og.dip0.t-ipconnect.de)
11:56 *** Joins: Stormspark (stormspark@Pony-25m.dcd.98.172.IP)
12:07 <DerpyBot> New post on Equestria Daily by Calpain: Tempest Day Discussion - Character Development, Episode Ideas, and More! [ http://tinyurl.com/ycfacvgw ]
13:06 *** Joins: Bubbles (EvaSh@Pony-1t0s0g.cable.virginm.net)
13:07 <DerpyBot> New post on Equestria Daily by Calpain: 'Gem of a Problem' Stop Motion Short Ep. 16 | My Little Pony [ http://tinyurl.com/ybuopopl ]
13:46 *** Joins: RazorSharpFang (RazorSharpF@Pony-eg1r65.tpgi.com.au)
13:47 *** Quits: RazorSharpFang (RazorSharpF@Pony-eg1r65.tpgi.com.au) (Connection closed)
14:07 <DerpyBot> New post on Equestria Daily by Sethisto: Tempest Day Comic - Unusual Source [ http://tinyurl.com/y8mf7mj3 ]
14:36 *** Quits: Heartbreak (Heartbreak@Pony-gja4ce.mn.comcast.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
15:22 *** Quits: ArchPegasusMichael (Poni@Keep.In.A.Friendly.And.Pony.Place) (Quit: Leaving)
15:22 *** Joins: ArchPegasusMichael (Poni@Keep.In.A.Friendly.And.Pony.Place)
15:28 *** Joins: RyuImperator (RyuImperato@Pony-o527to.dip0.t-ipconnect.de)
16:07 <DerpyBot> New post on Equestria Daily by Makenshi: Crystal Heart Music: Ampderg - Falling (Part 1: Broken) [Drum & Bass/Indie Pop] [ http://tinyurl.com/ycfvlc7u ]
17:07 <DerpyBot> New post on Equestria Daily by Sethisto: 26 Stories to Read for Tempest Shadow Day! [ http://tinyurl.com/y7zkbcyr ]
17:22 *** Quits: RichardMist (User@tor.sasl.RichardMist) (The TLS connection was non-properly terminated.)
17:22 *** Joins: RichardMist (User@tor.sasl.RichardMist)
17:36 <Finwe> o3o
17:36 <Finwe> Good evening, everypony!
17:56 *** Joins: Pony|61597 (Pony61597@Pony-i454b4.cable.virginm.net)
18:07 <DerpyBot> New post on Equestria Daily by Sethisto: Drawfriend - Equestria Girls / Anthro MLP Art Gallery #193 [ http://tinyurl.com/yama7ub6 ]
18:36 * PrincessRainbows licks Finwe and bounces around
18:37 <Finwe> Lt Pony|61597, Miss PrincessRainbows.
18:37 <Finwe> o7
18:37 * Pony|61597 wave.
18:51 * Finwe noms on Pony|61597's tail.
18:53 * Pony|61597 tail wiggle.
19:07 <DerpyBot> New post on Equestria Daily by Calpain: BABSConline 1.0 Virtual Pony Con STARTS TONIGHT! [ http://tinyurl.com/ydfzpgds ]
19:44 *** Joins: Ali (Ali@Pony-cvibue.iplsin.sbcglobal.net)
19:44 *** ChanServ sets mode: +qo Ali Ali
20:00 *** Quits: RichardMist (User@tor.sasl.RichardMist) (The TLS connection was non-properly terminated.)
20:02 *** Joins: RichardMist (User@tor.sasl.RichardMist)
20:07 <DerpyBot> New post on Equestria Daily by Sethisto: 20 Funny and Cute Comics for Tempest Shadow Day! [ http://tinyurl.com/ydx5a7dg ]
20:19 *** Quits: RyuImperator (RyuImperato@Pony-o527to.dip0.t-ipconnect.de) (Quit: Leaving.)
20:29 *** Quits: Crimson_Tail (zeta@batpones.are.for.snuggles) (Quit: Reboot)
20:35 *** Joins: Crimson_Tail (zeta@batpones.are.for.snuggles)
21:07 <DerpyBot> New post on Equestria Daily by Calpain: Comic: Apple-ocalypse Now / Awesome / Fluff / When Times Change / New Beginnings 24 [ http://tinyurl.com/yc7qm9jy ]
21:45 *** Joins: RyuImperator (RyuImperato@Pony-o527to.dip0.t-ipconnect.de)
22:07 <DerpyBot> New post on Equestria Daily by Sethisto: Drawfriend Stuff (Pony Art Gallery) #3336 [ http://tinyurl.com/ybo6efxq ]
22:07 <DerpyBot> New post on Equestria Daily by Sethisto: Drawfriend Stuff - BEST Art of Tempest Shadow Part 1 [ http://tinyurl.com/y7ysh5u8 ]
22:15 *** Joins: PinkieShy (coolm@Pony-ck81je.67-212-45-net.sccoast.net)
22:50 * Schism flops, and lets out a preternatural shriek of despair.
22:51 <Schism> Some... days.
22:51 <PinkieShy> .. What the heck..
22:51 <Schism> And I have one more day left before my weekend, too.
22:52 <PinkieShy> Governor of South carolina.. McMaster just announced that restaurants can start limited indoor dine-in services on Monday..
22:52 <Schism> Must've been in response to the McDonalds shooting.
22:52 <PinkieShy> I don't care if he does.. I will not order inside with people in a long line.. I'll just sit in Drive-thru.. I'm not going to take a risk
22:52 * Schism nodnods.
22:52 <Schism> Or put others at risk, no less. Takeout, delivery, or drive-through at worst.
22:53 <PinkieShy> As soon as a Vac for the Coronavirus is offered I'm gonig to get it..
22:53 <Schism> Sadly, the vaccine process is a lengthier one than non-epidemiologists would believe.
22:54 <Schism> I suggest that if you want to look at how the polio vaccine developed, that you read Splendid Solution by Jeffrey Kluger.
22:54 <Schism> While the process has been radically streamlined in the intervening decades, it's a good look at how it began in the context of modern medicine.
22:54 <PinkieShy> Schism 3 months ago I had a nightmare about the vaccine for the virus.. I dreamt we all had to go underground to protect ourselves and in the nightmare a later date came and the shot had to be given in the eye.. I always woke up at that part but this dream happened like 5 times
22:55 <Schism> Ugghggghh.
22:55 <PinkieShy> I think it was 3 months ago at least.. Maybe March? Either way.
22:55 <Schism> I'm going to try my best not to dwell on that.
22:55 <PinkieShy> Nightmares are no fun, But thankfully I've had sweet dreams lately.
22:56 <PinkieShy> The dreams I've been having is like the kind of dream you don't wanna wake up from.. It's so nice and peaceful I want it to last forever :)
22:57 <Schism> I've just had weird dreams that I can't remember, which are alright. Beat the crud out of nightmares, to be sure.
23:07 <DerpyBot> New post on Equestria Daily by Sethisto: Drawfriend Stuff - BEST Art of Tempest Shadow Part 2 [ http://tinyurl.com/y6wag3o5 ]
23:09 <Lumindia_> !link https://www.youtube.com/watch?v=BzkTHqXmhYQ
23:09 <DerpyBot> I need to ask Twilight about that one.
23:09 <DerpyBot> Twilight told me this video is about YouTube
23:09 <Lumindia_> ... oh okay then
23:09 <Lumindia_> Lionsgate is gonna be streamin' John Wick 1 in about two hours
23:15 <Schism> Ehh, rather watch Spaceballs again.
23:15 <Lumindia_> heck you john wich is a good movie
23:15 <Lumindia_> wick*
23:15 *** Quits: RyuImperator (RyuImperato@Pony-o527to.dip0.t-ipconnect.de) (Quit: Leaving.)
23:15 <Schism> I know, I know.
23:16 * Schism also peers at the requirements for the Pick of the Lumindia. "Nope."
23:16 <Lumindia_> what?
23:16 <Schism> Okay, okay, Pick of the Luminary.
23:16 <Lumindia_> heh
23:16 <Schism> Amongst other things? Mine 12,000 times at level 41-50 nodes.
23:17 <Schism> Not 12,000 items. 12,000 times.
23:18 *** Quits: ArchPegasusMichael (Poni@Keep.In.A.Friendly.And.Pony.Place) (The TLS connection was non-properly terminated.)
23:28 *** Joins: ArchPegasusMichael (Poni@Pony-6a7rca.dynamic.mm.pl)
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!