00:00 <RichardMist> DataByte yep 100% right
00:00 <DataByte> There was that one research project that had a stats issue because of a shared library that was different in mac than windows
00:00 <ADragonDreaming> import universe
00:00 <RichardMist> ADragonDreaming swift is very simple with learning, recommend it if you have troubles with others
00:01 <RichardMist> Cepheid what do you think about VB?
00:02 <Cepheid> Haven't touched it in decades. I cannot comment on it's current state.
00:02 <Cepheid> It felt like a good starting language though, back when I played around with it those decades ago.
00:03 <RichardMist> people also says that it is easy to learn
00:03 <ADragonDreaming> Richard: was more a joke about employers and impossible demands
00:03 <RichardMist> ADragonDreaming yep, that's because It's not popular
00:04 <ADragonDreaming> no, it's because it was created i 14.
00:04 <ADragonDreaming> *in 2014
00:04 <ADragonDreaming> so it's impossible to have 8 years experience.
00:04 <RichardMist> ADragonDreaming most of users using C++ but most recomment C# for me
00:05 <RichardMist> I dpn't know why C# is that nice
00:05 <RichardMist> don't*
00:05 <ADragonDreaming> I only did some AP courses in programming back in ... uh... 2003-2005
00:05 <ADragonDreaming> so I used C++ but not much else
00:06 <RichardMist> yeah it's simplier that other C's but takes more memory with UI
00:06 <ADragonDreaming> learned enough html that I could slowly and tortuously do stuff in it now
00:06 <Cepheid> RichardMist: C# is a lot like Java, performs better. And as of late, is multiplatform like Java. Only thing missing at this point is the GUI stuff.
00:06 <ADragonDreaming> but nothing fancy and I'd need guides.
00:06 <RichardMist> yep
00:07 <DerpyBot> New post on Equestria Daily by Sethisto: IGN Gives Them's Fightin' Herds an 8/10 [ http://tinyurl.com/ybvgvpwe ]
00:08 <RichardMist> I think we should have started that discussion on #techponies channel
00:08 <Cepheid> You'd probably fare well with programming, ADragonDreaming. Given your history with Exapunks.
00:08 <Cepheid> Nah.
00:08 <Cepheid> It's fine, Richard.
00:08 <Cepheid> This channel is basically a catch-all.
00:08 <RichardMist> ok
00:10 <RichardMist> ADragonDreaming I learned most of SQL and some of MsSQL
00:11 <RichardMist> Python is very good with SQL
00:12 <ADragonDreaming> My facility with Exapunks is due mostly to my history of education in programming
00:12 * Cepheid is currently writing up his own wrapper for FreeType. Covering only the functions he needs, for the time being.
00:13 <Cepheid> ... Wait, yo- My memory is terrible, clearly. I know you mentioned it in the past, but for some reason I keep forgetting you have education in programming.
00:13 <ADragonDreaming> additionally, my interest in programming was, I discovered, primarily in approaching it as a puzzle to solve.
00:13 <Cepheid> So, much a similar reason as me.
00:14 <Cepheid> Though in my case it's also attractive 'cause of creativity in it, and computers.
00:15 <RichardMist> heh, remembering that times when I created a random generated labyrinth with AI
00:15 <RichardMist> but It was much better at Python with learning AI
00:16 <RichardMist> Still remember tic-tac toe with unbeatable bot
00:16 <Cepheid> I'm curious to see the output from that randomly-generated labyrinth too.
00:16 <Cepheid> Er, tool*
00:17 <RichardMist> yep, output was pretty interesting
00:18 <RichardMist> % of AI learning and thinking speed
00:19 <RichardMist> that was faster and faster until errors appeared
00:21 <RichardMist> hey Cepheid what do you think about AI learning, In which language it will learn faster?
00:22 * RichardMist *waiting for answer for about 2 hours?*
00:24 <ADragonDreaming> tic-tac toe is a solved game.
00:24 <ADragonDreaming> If each player plays perfectly it will draw every time.
00:24 <Cepheid> I haven't got a clue, to be honest.
00:24 <RichardMist> ADragonDreaming pretty easy to write impossible bot
00:25 <Cepheid> In terms of raw performance, using C and a C library for neural AI would, by definition, "be the fastest", but there are other attributes that contribute to the performance of stuff.
00:25 <Cepheid> The problem here is that C and C++ don't have support for what's called the 'half' type.
00:25 <Cepheid> At least, not yet.
00:25 <RichardMist> Cepheid meheh, Yes this is a difficult question
00:25 <Cepheid> So that would impact things.
00:25 <Cepheid> Since it'd have to be implemented in software.
00:26 <Cepheid> That said..
00:26 <Cepheid> There *IS* processor support for x86 and x64 for half-precision floating-point through the F16C extension.
00:27 <RichardMist> Cepheid to compare that you must write a "minimalist" code on various language
00:27 <Cepheid> Mmhmm.
00:27 <Cepheid> Now, that said.
00:28 <RichardMist> and whatever that will have mistakes
00:28 <Cepheid> GCC, clang, and MSVC all support inline assembler.
00:29 <RichardMist> to write the perfect algorithm of actions by the same type of each language, It will take a lot of time
00:29 <Cepheid> So, while the languages themselves may not support half-precision, you *CAN* still use it via inline assembler to access the instructions.
00:29 <Cepheid> The problem is, this is unwieldy as all hell, and limits accessibility of where the software can run.
00:30 <RichardMist> Cepheid you can use virtualization
00:30 <Cepheid> So, using a language that supports them internally is better.
00:30 <RichardMist> but that will slow down process
00:30 <Cepheid> You misunderstand.
00:30 <Cepheid> It's not about computer support.
00:30 <Cepheid> It's about support within the programming language itself.
00:31 <RichardMist> yep
00:31 <Cepheid> C and C++ only support 32-bit, 64-bit, and in some cases, 80-bit floating point types.
00:31 <RichardMist> some old ones have very bad support
00:31 <RichardMist> what about Assembler?
00:31 <Cepheid> As I understand it, many neural AI stuff uses 16-bit.
00:31 <Cepheid> Assembler would support it no problem.
00:32 <Cepheid> It can use any instruction that the target system can use.
00:32 <RichardMist> Assembler will do it faster
00:32 <Cepheid> The problem is that C and C++ compilers won't output 16-bit floating point instructions.
00:32 <RichardMist> but still algorithm problem
00:32 <Cepheid> And on top of that?
00:32 <Cepheid> Writing code in assembler is EXTREMELY error prone.
00:32 <Cepheid> And limits your target system.
00:32 <RichardMist> yep
00:33 <RichardMist> but that will be faster by using less memory and less cpu
00:33 <RichardMist> If you are interested IN C++, then I have a very good book about optimization on C++ Cepheid
00:34 <Cepheid> I likely have the books, or know where to obtain them.
00:34 <Cepheid> I have about 10-15 years of C++ experience. More in C>
00:34 <RichardMist> It's a brilliant bestseller
00:34 <Cepheid> > = .
00:34 <Cepheid> What's the book series?
00:34 <RichardMist> let me take a look
00:38 <RichardMist> Cepheid Guntheroth Kurt - Optimized C++ (Bestsellers O`Reilly) - 2016
00:38 <Cepheid> Hum, I don' have it. I'll have to check it out.
00:38 <RichardMist> that's real Bestseller
00:39 <RichardMist> And if you want I have it in electronic format Cepheid
00:40 <Cepheid> I'm good, for the time being. Thanks though.
00:41 <Cepheid> Meanwhile, you should check out Design Patterns: Elements of Reusable Object-Oriented Software by Gamma, Helm, Johnson and Vlissides.
00:41 <RichardMist> ok, contact if ya want
00:42 <Cepheid> It's a good book on various common design patterns for different applications. Generic enough that it can be used for any language. Expresses stuff in C++ and SmallTalk.
00:43 <RichardMist> oh, thanks buddy i really appreciate that
00:44 <RichardMist> Cepheid is that nook on advanced or basic level?
00:44 <RichardMist> book*
00:46 <Cepheid> Intermediate, I'd say.
00:47 <RichardMist> Cepheid cool but I like in advanced level
00:49 <RichardMist> anyways thanks for tha book
00:49 <RichardMist> the*
00:52 <RichardMist> Cepheid As I see that book is from 1994, is material still usable?
00:53 <Cepheid> Yes
00:54 <Cepheid> It teaches some abstract data structures and concepts that aren't part of languages by default, so it contains useful information.
00:56 <RichardMist> Cepheid wow, pretty interesting
00:58 * Schism offers Cepheid a bowl of food. However, the bowl has a gap in the middle in which there is no food.
01:00 <RichardMist> ok Cepheid recommend you to read Optimized C++, It's very useful so far
01:01 * Cepheid noms food.
01:02 * RichardMist *gives Schism chocolate muffin*
01:02 <RichardMist> Schism *psst* hide it from Derpy
01:04 <ADragonDreaming> !muffin
01:04 <DerpyBot> Muffins!! You have any? :3
01:04 <ADragonDreaming> yes
01:04 <DerpyBot> Thank you!!
01:04 * DerpyBot glomps ADragonDreaming
01:05 <RichardMist> ADragonDreaming did you take Schism's muffin?
01:06 <RichardMist> !hat
01:06 <DerpyBot> May I take your hat, sir?
01:06 <DerpyBot> May I take your hat?
01:06 <RichardMist> yes
01:06 <RichardMist> nope, idk how it works :/
01:08 <RichardMist> gotta sleep, bye bye! *waves*
01:09 *** Quits: RichardMist (User@tor.sasl.RichardMist) (Quit: Leaving.)
01:09 *** Quits: FruitNibbler (Eogan@Pony-b1c0og.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
01:21 *** Quits: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net) (Ping timeout: 121 seconds)
01:26 *** Joins: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net)
01:54 *** Joins: jimm (horse@Pony-fr7.dqo.55.45.IP)
02:05 * Ali grabbyhooves for HoneyDrops
02:07 <DerpyBot> New post on Equestria Daily by Calpain: Nightly Discussion #2153 [ http://tinyurl.com/yanjwspn ]
02:12 <Cepheid> Hmm. This is mildly complex.
02:19 <Ali> As complex as starting with cars with zero stats vs cars that are 200-400 in stats
02:25 *** Joins: Reia (Reia_Hope@TheCowPony)
02:25 <Cepheid> Okay, I'm going to change the difficulty to "absurd."
02:48 *** Quits: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net) (Ping timeout: 121 seconds)
02:52 *** Joins: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net)
03:01 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)
03:02 * HoneyDrops hugs Ali.
03:03 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)
03:05 * Ali nuzzles into HoneyDrops so much
03:07 <DerpyBot> New post on Equestria Daily by Makenshi: Tree Hugger Music: Pernegyre - Life Force [Hardcore] [ http://tinyurl.com/y8cy4vkk ]
03:47 * PrincessRainbows hugs Ali and tears up
03:49 <Cepheid> For the love of-
03:50 <Cepheid> Someone next door is stomping around loudly in their house.
03:54 * PrincessRainbows grabs her pacifier and clutches Ali like a plushie to sleep
03:56 <Ali> That must be pretty loud unless you live in an apartment
03:59 <Cepheid> Townhome. So attached units.
04:01 *** Quits: Stormspark (stormspark@Pony-25m.dcd.98.172.IP) (Quit: Leaving)
04:08 *** Joins: cabbage (cabbage@Pony-u30cht.dynamic.sonic.net)
04:15 *** Quits: Angeline (Scootaloo@I.Will.Fly.Higher) (Ping timeout: 121 seconds)
04:48 *** Quits: jimm (horse@Pony-fr7.dqo.55.45.IP) (Connection closed)
04:48 *** Joins: jimm (horse@Pony-fr7.dqo.55.45.IP)
05:00 *** Quits: Reia (Reia_Hope@TheCowPony) (Ping timeout: 121 seconds)
05:00 *** Joins: Reia (Reia_Hope@TheCowPony)
05:10 *** Quits: jimm (horse@Pony-fr7.dqo.55.45.IP) (Ping timeout: 121 seconds)
05:14 <Cepheid> https://i.imgur.com/rAvu5I3.jpg
05:16 <Ali> bad kitteh, no eats litter
05:30 *** Quits: DataByte (DataByteBro@Pony-f1fr9k.mf5i.q24m.0242.2601.IP) (Ping timeout: 121 seconds)
05:34 <Cepheid> Hum. That water was too hot. Burned the inside of my nose.
05:37 <Cepheid> https://twitter.com/TrapLarge/status/1258127870687240192?s=19 ... I... Why? Siren Head is supposed to be creepy.
05:38 *** Joins: ConfusionRift (ConfusionRi@Pony-4rs.irn.56.193.IP)
05:38 *** ChanServ sets mode: +o ConfusionRift
05:39 <ConfusionRift> Hello everypony.
05:40 * Ali flops over ConfusionRift
05:41 <ConfusionRift> Cepheid: What did you expect from someone describing themselves as a "Meme maker"? :P
05:41 * ConfusionRift patpats Ali.
05:41 <Cepheid> Heh.
05:47 <ConfusionRift> Also, idiots would just run towards it, because dumb, just to dance. And then, the mauling commences. And yes, canonically, Siren Head would at times play music or a sound to attract unsuspecting people, and then kills them.
05:50 <Cepheid> Yeah, but the dancing is weird. :P
05:53 <Cepheid> Hum. The DOOM Eternal OST fiasco continues. According to id, Mick was taking way too long and not keeping his end of the bargain.
05:53 *** Quits: Pony|53672 (Pony53672@Pony-i454b4.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
05:53 *** Joins: Pony|53672 (Pony53672@Pony-i454b4.cable.virginm.net)
05:53 *** Quits: Pony|53672 (Pony53672@Pony-i454b4.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
05:54 * PrincessRainbows makes grabby hooves at ConfusionRift and whimpers
05:54 * ConfusionRift grabbies and pets PrincessRainbows.
05:56 <Cepheid> I wonder if I can play Grim Dawn laying down as I am.
05:57 <ConfusionRift> Hmm... Grim Dawn... or Doom. Hmmmmmm.
05:58 * PrincessRainbows still cries a little and tries to forget about life by sleeping for now
06:06 *** Quits: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net) (Ping timeout: 121 seconds)
06:07 <Cepheid> I wonder if they'll ever fix the map view bug.
06:08 *** Joins: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net)
06:09 *** Joins: Golden (uid250033@Pony-sd90bk.tooting.irccloud.com)
06:10 <Cepheid> Hum. Secret area with secret blacksmith.
06:13 <Sunrise_Flare> they both sound rather dour to me
06:17 * ConfusionRift shrugs.
06:18 <ConfusionRift> Started Grim Dawn... and forgot what i was doing.
06:18 <Cepheid> Committing crimes against humanity.
06:20 * Ali licks Sunrise_Flare
06:20 <Sunrise_Flare> aaaaaa
06:20 <Sunrise_Flare> it's an ali
06:20 <Ali> It talks again
06:20 * Ali snugs into Sunrise_Flare
06:24 <Finwe> Morning, everypony!
06:24 * Cepheid stops for a moment and goes to clean up room a bit. Mostly just flip comforter. Make bed. etc.
06:25 <Sunrise_Flare> sometimes
06:25 <Sunrise_Flare> I am a stegosaurus
06:25 <Finwe> Mlles Ali, Surreal_Nightmares and PrincessRainbows; Messrs Cepheid, Schism and Sunrise_Flare.
06:25 * Finwe doffs his hat.
06:25 <Finwe> Lt Cdr ConfusionRift, Capt Koopz.
06:25 <Finwe> o7
06:27 <ConfusionRift> RAdm. Finwe. (salutes)
06:28 <Koopz> RAdm. Finwe o7
06:31 <Sunrise_Flare> caloo callay
06:33 <Finwe> O frabjous day!
06:34 * Finwe hats on Sunrise_Flare.
06:36 <Cepheid> Much better.
06:41 <Cepheid> So rifty, for kicks to see how bad my various procs are, I let a swarm of level 72 enemies just beat on me. They died within 30 seconds.
06:43 <ConfusionRift> Hehehe.
06:43 <ConfusionRift> I don't have any skills that rebound like that at the moment, so I would die for sure.
06:44 *** Quits: PinkieShy (coolm@Pony-ck81je.67-212-45-net.sccoast.net) (Connection closed)
06:45 <Cepheid> I am covered in so many on-hit, on-health-reached, on-attack, and on-crit procs that any fight I start turns into Christmas.
06:45 * Sunrise_Flare has a hat
06:57 * Cepheid applies some of ConfusionRift's TNT to a chest.
07:06 <ConfusionRift> well, that was an interesting fight.
07:06 <Cepheid> Oh?
07:07 <ConfusionRift> Karroz's boss fight.
07:08 <Cepheid> Ah, him. Yeah, it is an interesting fight.
07:09 *** Joins: matttheshadowman (matthewhowa@Pony-tjk.1af.238.89.IP)
07:21 * Cepheid pokes some binding conduits. Because unleashing bound monsters is always productive.
07:30 <Cepheid> Flaming mummies.
07:51 *** Joins: Changeling_Nightmares (Surreal@Cutest.Floofy.Changeling.Batpone)
07:51 *** Changeling_Nightmares is now known as Filly_Nightmares
07:59 * Cepheid stands among lava flows and pools of lava. "Glad I got 83% fire resist."
07:59 * Filly_Nightmares uses Cepheid as nest
08:03 *** Quits: cabbage (cabbage@Pony-u30cht.dynamic.sonic.net) (Connection closed)
08:12 *** Quits: Reia (Reia_Hope@TheCowPony) (Quit: Bye)
08:36 <Cepheid> Huh. These sausages my parents bought me, they scream when you microwave them too long.
08:37 <Finwe> The liquids inside vaporise and escape whistling through the ripped skin.
08:39 <Ali> nothing like waking up to screaming sausages
08:42 * Finwe ruffles the Ali.
08:42 * Ali squeaks at Finwe
08:43 * Finwe oils Ali, not expecting this to affect the squeakiness, but just because.
08:43 <Cepheid> I like my explanation better Finwe. Screaming.
08:44 <Cyan_Spark> Resell it during Halloween as a spooky treat
08:45 <Finwe> Mr Cyan_Spark .
08:45 * Finwe doffs his hat.
08:45 <Cyan_Spark> RAdm. Finwe
08:45 * Cyan_Spark salutes
08:52 <Cepheid> Right. Back to traveling across an active volcano and murdering eldritch horrors.
08:57 *** Quits: Ali (Ali@Pony-cvibue.iplsin.sbcglobal.net) (Quit: Leaving)
08:58 * ConfusionRift jumps to AC. "Hmm, wanna finish some walling and pathing."
08:59 <ConfusionRift> Besides, it's a long adventure in Grim Dawn. It can wait a bit. :P
08:59 <Cepheid> Heh.
08:59 <Cepheid> Hum. A legitimately threatening boss.
09:07 <ConfusionRift> They were right. There's a point when the game's music basically tells you to go to friggin' sleep.
09:07 <Cepheid> Heh.
09:14 <Cepheid> Oooh. Legendary one-handed sword.
09:15 <Cepheid> Not all that great.
09:30 <Cepheid> Hum. There is the third seal. Now then, where to use it?
09:32 <Cepheid> There it goes.
09:36 <Cepheid> Looks like I found the path to not-Sauron.
09:47 <Cepheid> Oi! Who said you monstas can heal?
10:09 *** Quits: Golden (uid250033@Pony-sd90bk.tooting.irccloud.com) (Quit: Connection closed for inactivity)
10:13 *** Quits: Filly_Nightmares (Surreal@Cutest.Floofy.Changeling.Batpone) (Connection closed)
10:13 <Cepheid> ... It's a roguelike dungeon. Great.
10:24 <Cepheid> Whelp that attempted failed. Ah well.
10:25 *** Joins: FruitNibbler (Eogan@Pony-b1c0og.dip0.t-ipconnect.de)
10:41 * PrincessRainbows hugs ConfusionRift so tight
10:41 * ConfusionRift huggles PrincessRainbows.
10:44 * PrincessRainbows flops and looks up at ConfusionRift. Uppy?
10:56 <Cepheid> Hum. Few more legendary weapons.
11:01 * ConfusionRift , a bit late, grabbies PrincessRainbows and pets.
11:05 * Cepheid appears out of a portal. He hands ConfusionRift an Ever-Screaming Head. "A gift."
11:08 *** Joins: DataByteBrony (DataByteBro@Pony-u3iqm5.il.comcast.net)
11:18 <Cepheid> And my reward for killing the final boss? Diddly squat.
11:27 <DerpyBot> New post on Equestria Daily by Cobalt Comet: Morning Discussion #1924 [ http://tinyurl.com/y9x5tmwv ]
11:36 <Cepheid> That is disturbing. On elite, you suffer a significant hit to your resistances. Despite this, all but piercing and aetherial resistances are still maxed out.
11:38 <Cepheid> Hilariously, the starting area maxes out at level 65. I am too strong.
11:39 <Cepheid> The earliest area at my level is...
11:41 <Cepheid> Barren highlands. Just before the aetherfire filled gulch/canyon. Act 3 or so.
11:48 <Cepheid> Lets see how longg it takes me to get to kreig.
11:48 <Cepheid> But first, chores.
11:57 <Cepheid> Hey, ConfusionRift, I forgot to mention. I have access to special items, though I'm not sure I can hand them off to you, but if I am... I can give you an item that unlocks a higher difficult up front. Only other thing it provides is access to all shrine points for difficulties prior to it.
12:02 <ConfusionRift> Niiice. But I'm not playing at the moment. I'm starting to feel that haziness. Also, I got a feeling that armor and item trades are gonna be an issue, as in the game not liking it. Happens a lot in these type of games. Then again, dunno.
12:04 <ConfusionRift> Having access to other shrine points I haven't found would be nice. As for higher difficulty, I feel that if it gets a bit harder, it starts to become a skirmish. Still, suppose unlocking it would be nice, just to rip my hairs out. :P
12:04 <Cepheid> You can trade armor and items no problem. Some soulbound items, but those are usually the result of applying certain effects to the item.
12:05 <Cepheid> Or, in certain cases, items meant to be traded only between characters on the same machine,
12:07 <DerpyBot> New post on Equestria Daily by Sethisto: Comics: The Smallest of Talk / AQM #34 / Origins of Hollowshades #138 / New Beginnings #23 [ http://tinyurl.com/yaqycsg3 ]
12:10 * Surreal_Nightmares yawnskrees and uses Finwe as a bed and ConfusionRift as a blankie and goes sleepies on
12:10 *** Surreal_Nightmares is now known as Sleeping_Nightmares
12:10 * Sleeping_Nightmares purrs and clutchies
12:12 <ConfusionRift> Hmmm.
12:16 <Cepheid> That all said, if you need guns, just hit me up. Keep finding the damn things. I don't use them. I also got pieces of various armor sets.
12:17 * ConfusionRift raises a brow.
12:18 <ConfusionRift> I have found several. It's just they outlive their usefulness, and I'm now using a rare blunderbuss and the dual pistols are about to lose their spark as well.
12:23 <Cepheid> Yeah, you need to start finding epics and legendaries.
12:24 <Cepheid> Right then. Let's see. 8:24 AM.
12:24 <Cepheid> Let's see how long it takes me to down Krieg in Elite difficulty. Mostly just gonna beeline 'cause nothing is a threat.
12:38 <Cepheid> Made it to Burrwitch Village in 14 minutes.
12:41 * PrincessRainbows makes scared horse noises but realizes that it's suddenly cold
12:41 <Schism> Hum. Couple muffins, cup of coffee, banana, and I'm ready to face the day.
12:45 * Finwe is a comfy bed.
12:50 <Cepheid> Dead.
12:50 <Cepheid> Took me... 26 minutes.
12:50 *** Joins: RichardMist (User@tor.sasl.RichardMist)
12:53 <Cepheid> Hum. Only missing the helmet for that set.
12:54 <RichardMist> Hoiii everypony! *waves*
12:55 <ConfusionRift> Hallo. (waves back)
12:56 <RichardMist> hello ConfusionRift nice to meet you!
12:56 <Finwe> Mr RichardMist.
12:56 * Finwe doffs his hat.
12:57 *** Quits: RichardMist (User@tor.sasl.RichardMist) (The TLS connection was non-properly terminated.)
12:57 *** Joins: RichardMist (User@tor.sasl.RichardMist)
12:58 <RichardMist> Finwe *bows*
12:59 * Cepheid gives ConfusionRift a plushie of Warden Kreig.
12:59 <Cepheid> Made from 100% Warden Kreig.
13:01 <ConfusionRift> Oh... thaaaaanks... (grabs it carefully) The blo- red paint is still warm. 0_0; Deserved it though.
13:02 <Cepheid> Hum. Need some pierce resistance, otherwise these bandits with guns are gonna fill me with holes.
13:03 <Finwe> Warden Krieg, I think.
13:03 <Finwe> Not knowing what that's all about.
13:04 *** Joins: Angeline (Scootaloo@I.Will.Fly.Higher)
13:04 <Finwe> Obviously the Grim Dawn monster Warden Krieg, which indeed is Warden Krieg and not Warden Kreig.
13:05 <Cepheid> Sorry, sorry.
13:05 <Cepheid> I mix up the e and i.
13:05 <Cepheid> Point is, man's dead. Like, really dead.
13:06 <ConfusionRift> Cepheid: Stand your ground and shoo- oh, right, no guns. Then you can SHOCK them, and throw a grena- or right, no explosives... hmm... block and stab-stab-stab?
13:06 <Cepheid> That's the plan. o3o
13:06 <Cepheid> I'm gonna buff up my resistances through augments
13:09 <Cepheid> And there we go, 80% resist.
13:09 <Finwe> Sounds robust.
13:09 <Finwe> Except against truly tremendous amounts of damage.
13:10 *** Quits: RichardMist (User@tor.sasl.RichardMist) (The TLS connection was non-properly terminated.)
13:10 <Finwe> 200 hitpoints and 80% fire resistance is worth nothing when you get hit by a fireball that does 1,000 fire damage.
13:11 <Cepheid> Yerp, much better.
13:11 <Cepheid> Fortunately I have more than 200 hit points. 6,600 or so.
13:11 *** Joins: RichardMist (User@tor.sasl.RichardMist)
13:20 <Cepheid> <Minion> "Sir, there's someone called The Taken wandering about and killing all our men." <Cronley> "I know." <Minion> "Oh? How? Our scouts just found out-" <Cronley> "He's right behind you."
13:23 *** Quits: RichardMist (User@tor.sasl.RichardMist) (Ping timeout: 121 seconds)
13:30 <Cepheid> 66 minutes to get Cronley.
13:35 <Cepheid> https://www.reddit.com/r/oddlysatisfying/comments/gf474z/the_way_this_polen_burns/
13:37 <ConfusionRift> Huh, interesting.
13:39 <Cepheid> Anyhoo, 'nough Dawn of the Grimness. Did lots. Murdered a bunch of people, gained some upgrades, killed a god, found some secrets, ended Krieg's reign faster than it started.
13:54 *** Joins: RichardMist (User@tor.sasl.RichardMist)
14:03 <Cepheid> https://www.grimtools.com/db/items/1975 "I'm gonna punch you with my mace!"
14:10 <ConfusionRift> Haaaah!
14:13 <Sunrise_Flare> so grim dawn is just a diablo type thing?
14:16 <Cepheid> Yep.
14:23 *** Joins: Stormspark (stormspark@Pony-25m.dcd.98.172.IP)
14:36 *** Quits: ConfusionRift (ConfusionRi@Pony-4rs.irn.56.193.IP) (Quit: Recharging the batteries. Laters! *shutdown*)
14:55 <Cepheid> I should get some sleep myself.
15:11 *** Quits: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net) (Ping timeout: 121 seconds)
15:12 *** Joins: ryaxnb21 (ryaxnb@Pony-hj0ath.ca.comcast.net)
15:38 *** Joins: RyuImperator (RyuImperato@Pony-g4jo9n.dip0.t-ipconnect.de)
15:44 *** Quits: RyuImperator (RyuImperato@Pony-g4jo9n.dip0.t-ipconnect.de) (Quit: Leaving.)
15:45 *** Quits: RichardMist (User@tor.sasl.RichardMist) (Quit: Leaving.)
15:47 *** Joins: RichardMist (User@tor.sasl.RichardMist)
15:49 *** Joins: RyuImperator (RyuImperato@Pony-o527to.dip0.t-ipconnect.de)
16:07 <DerpyBot> New post on Equestria Daily by Makenshi: Flim & Flam Music: RedSpark - Progress [Electro Swing] [ http://tinyurl.com/y6up5xyt ]
16:47 <Stormspark> since Diablo and Blizzard are dead we have to look to other companies for RTS and Diablo type games
17:07 <DerpyBot> New post on Equestria Daily by Sethisto: Open My Little Pony Art Compilation (All Skill Levels Welcome) #54 [ http://tinyurl.com/yd4phn77 ]
17:11 *** Joins: Ali (Ali@Pony-cvibue.iplsin.sbcglobal.net)
17:11 *** ChanServ sets mode: +qo Ali Ali
17:15 <RichardMist> hoii Ali! *waves*
17:16 * Ali wavies
18:07 <DerpyBot> New post on Equestria Daily by Sethisto: Midnight Mares Project Seeking Artists and Animators for Paid Positions [ http://tinyurl.com/y7np8ss9 ]
19:31 *** Joins: Pony|27257 (Pony27257@Pony-i454b4.cable.virginm.net)
19:52 * PrincessRainbows boops Ali with her plastic horn
20:08 <Finwe> Good evening, everypony!
20:09 <Finwe> Lt Pony|27257!
20:09 <Finwe> o7
20:09 * Pony|27257 wavewave.
20:09 <Finwe> Mlles Ali, Sleeping_Nightmares and PrincessRainbows; Messrs Schism and Cepheid.
20:09 * Finwe doffs his hat.
20:14 * Finwe also noms on Ali's tail, as is customary.
20:20 *** Joins: PinkieShy (coolm@Pony-ck81je.67-212-45-net.sccoast.net)
20:25 <PinkieShy> Hihi
20:29 <Finwe> Mr PinkieShy.
20:29 * Finwe doffs his hat.
20:37 *** Quits: RyuImperator (RyuImperato@Pony-o527to.dip0.t-ipconnect.de) (Quit: Leaving.)
20:38 *** Quits: Taoki (MirceaKitsu@Pony-7ul.gjo.113.93.IP) (Quit: http://www.furaffinity.net/user/mircea/)
20:41 *** Joins: Taoki (MirceaKitsu@Pony-7ul.gjo.113.93.IP)
20:47 * Finwe hears a jackal howling at the moon.
20:47 <Finwe> You're lucky! Full moon tonight!
20:50 <PinkieShy> 81F inside the house and i don't wanna turn the A/C on
20:50 <PinkieShy> Its suppose to get like 50F tonight
21:04 *** Quits: Angeline (Scootaloo@I.Will.Fly.Higher) (Ping timeout: 121 seconds)
21:07 <DerpyBot> New post on Equestria Daily by Sethisto: Fanfiction (Scouted): Kerfuffle's Lower Left Limb Kerfuffles [ http://tinyurl.com/yby8rp4k ]
21:16 <Schism> Finwe: Ashes of the Singularity is free, if you like RTS, on Humble.
21:29 <Finwe> o3o
21:29 * Finwe hats on Schism.
21:30 <Finwe> The epidemiologic measures seem to be too much to some people: https://abcnews.go.com/US/mcdonalds-employees-shot-angry-customer-told-dining-room/story?id=70553451
21:30 <Finwe> too much for*
21:32 * Sleeping_Nightmares meow
21:32 *** Sleeping_Nightmares is now known as Filly_Nightmares
21:33 * Finwe pets Filly_Nightmares.
21:35 <PinkieShy> Just found a Furry Streamer on Twitch ^_^
21:35 <PinkieShy> I knew something cool would happen today
21:52 * Ali flops over PinkieShy. "Least you don't have a freeze watch out."
22:07 <DerpyBot> New post on Equestria Daily by Sethisto: Drawfriend Stuff (Pony Art Gallery) #3335 [ http://tinyurl.com/ycp9nd68 ]
22:25 *** Quits: RichardMist (User@tor.sasl.RichardMist) (Ping timeout: 121 seconds)
22:25 *** Joins: RichardMist (User@tor.sasl.RichardMist)
22:50 * Schism flops. "Wednesday was nice. Only had a few chats near the end, only one at a time. Why couldn't today be another Wednesday?
23:03 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)
23:03 * Ali flops over Schism
23:05 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)
23:07 *** Joins: Angeline (Scootaloo@I.Will.Fly.Higher)
23:07 <Ali> God why is it every time I catch a chest, its always ONE piece of bait
23:08 * Schism fishes up 5 iridium ore. "Dunno."
23:22 * Ali cries on Schism
23:23 * Schism hugs the Ali, pats, and provides a cranberry lemon muffin with a cup of tea? Something warm.
23:27 <Ali> Max luck day on a thunderstorm and no rods
23:27 <Ali> RIP crops
23:27 <Ali> ALso can't catch an octapus for nothing cause it darts to the extreme
23:28 <Schism> Oh, I know. Octopi suuuuck like that.
23:30 <Ali> Like UP to the top, nah BOTTOM now, oh I"m gone
23:32 <Schism> And when it darts to the bottom, it's time to BOUNCE!
23:33 <Ali> Nah its when it HUGS the very bottom
23:36 <Ali> Bleh, lose a hops to the storm. Annoying
23:41 <Schism> At least it's just that one.
23:42 <Ali> Yeah but it seems to persist thru a reset, and I have no rods
23:47 <Ali> I just need farming level six so I can go sprinkler happy
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!