Log archive of EquestriaDaily for Tuesday, 2019-05-21

00:03 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

00:04 * Schism feeds the DashedRainbows some of the bacon, and nods to Cepheid.

00:04 <DerpyBot> New post on Equestria Daily by Sethisto: Vinyl and Octavia Day in One Week!  [ http://tinyurl.com/y4vquegg ]

00:06 * DashedRainbows noms and wags her tail

00:09 <Cepheid> Input's gonna be a pain, but I designed something to help make it sensible, so..

00:11 *** Joins: Princess-Luna_ (DJPon3IsHer@Pony-f1nu3n.as43234.net)

00:12 *** Quits: Princess-Luna (DJPon3IsHer@DJ.Wub.Wub) (Ping timeout: 121 seconds)

00:15 *** Princess-Luna_ is now known as Princess-Luna

00:15 <Cepheid> Though, it depends on how OpenTK reveals input to the code.

00:15 *** ChanServ sets mode: +o Princess-Luna

00:25 *** Quits: jimm (horse@Pony-fr7.dqo.55.45.IP) (Connection closed)

00:30 <Cepheid> Hmm.

00:31 <Cepheid> The window itself reports key input in terms of ASCII.

00:31 <Cepheid> Though the OpenTK document is making it hard to figure out more.

00:31 <Cepheid> It's documentation uses a system which doesn't play well with Firefox, looks like.

00:32 <Cepheid> Okay, so there's a special class dedicated to the keyboard under OpenTK.Input.

00:34 <Cepheid> And the documentation issue isn't exclusive to Firefox.  It's in general, apparently.

00:42 <Cepheid> Schism, what's that slow movement called in bullet hell games?

00:42 <Cepheid> As in, what's the official term in the bullet hell community?

00:42 <PinkieShy> Actually cooked these boneless breaded chicken in the oven instead of the deep fryer for once in about 2 months..

00:43 <PinkieShy> Actually has more of a crunch.

00:43 <Schism> Cepheid: Focus.

00:43 <DashedRainbows> And tastes meh

00:44 <Cepheid> Right, thanks.

00:45 <Cepheid> Basic controls:  Movement(Multi-key or analog stick.  Actually the trickiest to handle.), Fire(Button/Key), Bomb(Button/Key), Focus(Button/Key).

00:47 <Cepheid> Hum.

00:48 <Cepheid> Usability question, but I'm not sure how to express it.

00:48 <Schism> In Touhou, at least, those are generally mapped to ZXC if memory serves correctly.

00:48 <Cepheid> Oh, that's nothing.

00:49 <Cepheid> Button/key bindings are easy.

00:49 <Cepheid> It's in respect to movement.

00:49 <Cepheid> See, I want to reduce the complexity of handling input by translating input devices into a virtual gamepad device.

00:50 <Cepheid> The virtual gamepad device has an analog stick for movement, it will only ever report analog events, vectors indicating the direction and magnitude of the control stick's tilt.  Buttons are labeled "Fire", "Bomb", and "Focus" and are bi-state devices.  Either on, or off.

00:50 <Cepheid> For translating a gamepad input to it, this is easy.

00:51 <Cepheid> "Fire" = "Button1", Bomb" = "Button2", "Focus" = "Button3", "Movement" = "LeftStick"

00:51 <Cepheid> Or "Stick1"

00:52 <Cepheid> Same goes for using a joystick, if you're that crazy.

00:52 <Cepheid> It's when we get to keyboards, or assigning analog inputs to buttons.

00:53 <Cepheid> Analog inputs -> Buttons, you'd have to do something like, specify an axis of the analog input, and some threshhold to indicate on and off.

00:53 <Cepheid> Ideally, you'd normalize the input to ensure that it is always within a range of 0.0 to 1.0 on a given axis.

00:53 <PinkieShy> Still can't believe that i ate that much brownies Saturday..

00:53 <Cepheid> OR rather, -1.0 to 1.0

00:54 <PinkieShy> After Saturday, that told me i need more self control on the food i am eating like resist junk food.

00:54 <Cepheid> Meanwhile, for keyboards, it's just straight on-off buttons, that's all you got.

00:54 <PinkieShy> Which is why.. I made the statement yesterday that until July I am not making more brownies, or cake.. or even buying more little debbies or candy until July..

00:55 <PinkieShy> Force myself to do without the junk in my diet.

00:55 <Cepheid> The idea I have in mind is straightforward.  Instead of specifying an input name, you specify an array of key-value pairs.  The key being the keycode or scancode of a keyboard key, and the value being a vector indicating what it represents in terms of the analog input.

00:55 <Cepheid> PinkieShy:  You can eat junk once in a while, but in moderation.  That said, it is a good idea to try and cut back on sweets.

00:55 <Cepheid> After a while, your body will stop craving them.

00:56 <PinkieShy> Cepheid I remember in 2009 when i got addicted to club penguin.. (Yea that did happen) I didn't eat junk food or soda for like a year or two.

00:56 <Cepheid> I'd advise looking into foods that have complex carbs, and consuming those.  Protein-heavy foods are good, too.

00:56 <PinkieShy> Went back to say reece peanut butter cup and that was so sweet my body's response was to spit it out fast.

00:57 <PinkieShy> I know there is.. uhh fiber one cookies and brownies.. lol

00:57 <Cepheid> Yeah, not that.

00:57 <Cepheid> For cereals, stop eating the sugary ones.  There are cereals that still have sugar in them, but aren't sugary, like cheerios, or wheatabix and such.

00:57 <Cepheid> Try eating those instead.

00:57 <Cepheid> Or have a decent breakfast of bacon, eggs and a piece of fruit.

00:58 <PinkieShy> My favorite is honey nut cheerios :3

00:58 <Cepheid> Yeah, that's a sugary cereal.

00:58 <Cepheid> For the obvious reason.

00:58 <Cepheid> The reason I'm telling you to cut back on the sweets is that they are addictive.  Sugar is addictive.

00:59 <PinkieShy> Cepheid on saturday I probably had to have had about 8 small brownies with cake frosting on top..

00:59 <PinkieShy> That's how out of hand that was lol

01:00 <Cepheid> It happens.

01:00 <Cepheid> Don't dwell on it, just tell yourself in the future you'll do better.

01:00 <Cepheid> When you go to pick out food to eat, do your best to stop yourself and remind yourself that it shouldn't be something filled with sugar.

01:00 <Cepheid> Small amounts are okay.

01:05 *** Joins: jimm (horse@Pony-fr7.dqo.55.45.IP)

01:11 <Cepheid> Honestly, you want to lose weight?

01:11 <Cepheid> Do calorie counting.  It's simple enough and works.

01:11 *** Joins: Princess-Luna_ (DJPon3IsHer@Pony-f1nu3n.as43234.net)

01:11 *** Quits: Princess-Luna_ (DJPon3IsHer@Pony-f1nu3n.as43234.net) (Connection closed)

01:14 *** Quits: Princess-Luna (DJPon3IsHer@DJ.Wub.Wub) (Ping timeout: 121 seconds)

01:18 <Cepheid> Really, the biggest thing is exercise and eating habits.

01:18 <Cepheid> And, just so you know.

01:19 <Cepheid> There's a lot of scams out there that deal in weight loss supplements and other products.

01:19 <Cepheid> Don't trust them.

01:19 <Cepheid> About the only pill I know that'd help is Vyvanse, and that's only because it curbs binge eating.  If you don't binge eat, it'll do nothing for you.

01:23 <Cepheid> I'm all for standardized game input device interfaces, but they only work if the game input devices actually follow the standard.

01:23 <Cepheid> Hey, Schism!  Where's the A button on your controller?

01:23 <Cepheid> Same question to you, PinkieShy.  Whichever controller you use for gaming.

01:24 <PinkieShy> I use the xbox one controller :P

01:24 <DashedRainbows> mine is the bottom most

01:24 <Cepheid> Just answer the question. :P

01:24 <Cepheid> Where's the "A" button on the controller in the four-button scheme.

01:24 <Cepheid> Top, bottom, left, right?

01:25 <Schism> Oh, one sec...

01:25 <Cepheid> In any case..

01:25 <Schism> A is on the bottom.

01:25 <DashedRainbows> it's on the bottom on qbone

01:25 <DashedRainbows> xbox one*

01:25 <Cepheid> On the 360/XBox One, it's on the bottom.

01:25 <Cepheid> On the Switch, it's... *Checks*

01:25 <Schism> Which still annoys me, as muscle memory demands that I think the A button is on the /right/.  *glares at SNES controller*

01:26 <Cepheid> Left, right-hand joycon.

01:26 <PinkieShy> bottom

01:26 <Cepheid> If you're using joycons in their multiplayer mode, it's the bottom button then, and on one joycon, it's not even labeled.

01:26 <Cepheid> On the playstation controller... A?  What's the A button?

01:27 <Cepheid> My point is, the whole "IsAButtonDown" boolean variable in a "generic gamepad" class is stupid and pointless.

01:28 <Cepheid> I would prefer to deal with a gamepad using a completely generic interface.  That is, buttons are numbered rather than given distinct colorings or letterings.

01:28 <Cepheid> Same with analog inputs.  They aren't labeled LeftStick, RightStick, LEftTrigger, etc.

01:28 <Cepheid> Nope.  Analog[0], Analog[1], and so on.

01:29 <Cepheid> Unfortunately, this makes labeling the buttons ingame difficult.

01:29 <Cepheid> As ConfusionRift stated last night, when he got the Amulet in Rabi-Ribi for the first time, it told him to use the Amulet button.  That is, it identified the requisite button by indicating an image of what was assigned to it.

01:30 <Cepheid> Arguably, this works better.  When the user knows what buttons are assigned to these graphics.

01:30 <Cepheid> There's a solution that's better altogether, though.

01:32 <Cepheid> You first identify what type of devices the user has connected for input.  You then load a localization file for that device.  In said file, you reference buttons and inputs as Analog1, Button1, Analog2, Button2, and so on, and assign a string to the input.  So for example:  "Analog1" : "Left Stick", "Button1" : "A Button".  Or:  "Analog1" : "Right Stick", "Button1" : "B Button".  And so on, and so on.

01:33 <Cepheid> By using identifiers of the devices and loading an associated localization file, you can support all the various configurations.

01:33 <Cepheid> Don't got a button with a label, but it's coloured?  "Button1" : "Red Button"

01:33 <Cepheid> Controller doesn't have an associated file?  You can just make one.

01:34 <Cepheid> And for kicks, you can also assign an image to display when the user brings up the controller help.

01:35 <Cepheid> Anyone here use a wireless XBox 360 controller for Windows?

01:35 <Cepheid> I need to confirm something, but I can't check it on my end.

01:36 <Cepheid> ... Actually what am I talking about?  I can check it.

01:37 <Cepheid> If you want to help though, say somethin'

01:40 <Cepheid> Bah.  Device Manager doesn't show the GUID of the controller.

01:43 <Cepheid> Dang.

01:43 <Cepheid> GUID is different under Windows.

01:43 <Cepheid> Then again, not surprised.

01:44 <Cepheid> So I'll need to track different GUIDs on different platforms.  Very well then.

01:48 *** Quits: matttheshadowman (mattthesha@the.shadowy.corners) (Connection closed)

01:48 *** Joins: matttheshadowman (mattthesha@Pony-n3u.0ec.238.89.IP)

01:50 <Cepheid> For those following along and afraid to ask questions:  A GUID is a Globally Unique IDentifier.  It's an identifier that, indicative of it's name, is unique to whatever it is attached to.  In the case of a controller, for example, if I plug in the same controller, I'll always get the same GUID for it.

01:50 <Cepheid> However, I'm not sure if that GUID changes between identical controllers.

01:52 <Cepheid> Preliminary tests show that, as long as the devices are identical, the GUIDs stay the same.  Okay then, so it's some sort of class-device ID that's being reported in Linux and Windows.

01:53 *** Joins: Persondude (Tilde@Pony-3u0tdq.dgbc.9fgu.6000.2605.IP)

01:54 <Cepheid> Schism:  Have you tried Syaro SP yet?

02:07 <Schism> Nyope.

02:07 <Cepheid> You should.  It's got an interesting setup.

02:08 <Cepheid> If you make it far enough.

02:12 *** Joins: RazorSharpFang (RazorSharpF@Pony-9ms1k0.tpgi.com.au)

02:19 <RazorSharpFang> Cepheid, what's this about guns in your neighbourhood?

02:19 <Cepheid> What it sounds like.

02:20 <Cepheid> Last night and this morning, gunshots were heard.

02:20 <Cepheid> And bullets have been found on scene lodged in buildings.

02:20 <RazorSharpFang> I presume this is atypical for your neighbourhood.

02:20 *** Quits: Pony|9711 (Pony9711@Pony-i454b4.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)

02:21 <Cepheid> It is not normal, no.

02:24 <DerpyBot> New post on Equestria Daily by Calpain: Nightly Discussion #1806 [ http://tinyurl.com/y3sf8uky ]

02:27 *** Joins: Pony|9711 (Pony9711@Pony-i454b4.cable.virginm.net)

02:35 * Cepheid grabs Newtonsoft.JSON. Make ALL the configuration files JSON.

02:36 *** Joins: HyperDash (HyperDash@Pony-obvko9.wa.comcast.net)

02:45 <RazorSharpFang> I've found that Newtonsoft.JSON doesn't play nicely with certain kinds of abstractions, in that it can't encode or decode say, abstract references to concrete classes.

02:52 <Cepheid> I don't need that kind of serialization.

02:53 <Cepheid> I just need simple key-value pairs, where the key is a string, and the value is a primitive type.

02:53 <Cepheid> Anything further, and I can just use my own approach.

03:02 * DashedRainbows ponies around softly

03:04 <DerpyBot> New post on Equestria Daily by Sethisto: Background Music for Frenemies Extracted  [ http://tinyurl.com/y5qe2e93 ]

03:07 <Cepheid> Cross-platform framework developers are morons.

03:12 <RazorSharpFang> What happened this time?

03:15 <Cepheid> Developer's limited the number of buttons you can reference on a mouse.

03:21 <Cepheid> Ah, the source clarifies.

03:21 <Cepheid> Still, maximum of 16 buttons.  Not a good limit.

03:22 <RazorSharpFang> What sort of mice would have more than 16 buttons?

03:24 <Cepheid> I am going to ask you up front.  Are you absolutely sure you want an answer to that question?

03:26 <Cepheid> https://www.newegg.ca/logitech-910-002864-g600-usb-wired/p/N82E16826104674 20 buttons. https://www.newegg.ca/roccat-roc-11-900-am-nyth-usb-wired/p/N82E16826436041 18 buttons.

03:26 <Cepheid> Take a guess at what you think is the maximum number of X items on a object.  That value is guaranteed to be wrong.  Double it, or use the maximum possible value you can use for it.

03:27 <Cepheid> Hardware manufacturers have no concept of "limits"

03:27 <Schism> And then there's this mouse.  https://boingboing.net/2009/11/10/the-original-40-butt.html

03:28 <Schism> Oh, or this thing.  https://i.kinja-img.com/gawker-media/image/upload/s--GmT-9925--/c_scale,f_auto,fl_progressive,q_80,w_800/kjgkxjwmszm5yvzef0vi.jpg

03:29 <Cepheid> This is how I see it.

03:29 <Cepheid> I have, let's see..

03:30 <Cepheid> I have 15 USB ports on the motherboard alone.

03:31 <Cepheid> There are USB2.0 x10 hubs on newegg that I can find, surely this number is low.

03:32 <Cepheid> So using one of those hubs on every port, that's 150 ports.

03:32 <Cepheid> Now, a reasonable person would have one mouse.

03:32 <Cepheid> So is it safe to assume that a computer will only ever have one pointing device installed?  What about a maximum of 4?  16?  32?

03:32 <Cepheid> The answer is no.

03:32 <Cepheid> None of these limits are acceptable.

03:33 <Cepheid> Because there are people out there, who, for the sake of being absolutely, positively mad, will hook up 10-port hubs to all of their USB ports on a PC, and connect as many mice or other pointing devices as possible to them.

03:33 <Cepheid> Why?

03:34 <Cepheid> Because they're either testing for security issues involving using such setups to either overload the kernel, smash the stack, or damage dynamic memory because a developer made assumptions about the maximum number of X devices.

03:34 <Cepheid> Or they're insane.

03:34 <Cepheid> More probably insane.

03:34 <Cepheid> And when it comes time for them to hook that all up, and oh, hey, only 4 out of those 150 pointing devices works, they'll complain.

03:34 <Cepheid> They'll get ridiculed for it, probably, but that won't stop 'em.

03:36 <Cepheid> I may be a bit defensive in regards to this, but I've seen the problem occur before.

03:40 <Cepheid> The short version is "If you're dealing with a configurable aspect that can be added to, don't hardcode.  Someone will test the limits of your application and complain."

03:40 <Cepheid> Oh, hey.  First advertisement on TV that I've seen for Godzilla King of the Monsters.

03:44 <Cepheid> "Ah, mice will never have more than 16 buttons."  *40-button mouse exists.*  "Ah, keyboards will never have more than 104 keys."  *109-key keyboards exists.*  And so on.

03:44 <RazorSharpFang> 255 as the max number of keys on a keyboard I can see.

03:45 <RazorSharpFang> e.g.: Using an unsigned char as the internal representation of the key input.

03:46 <Cepheid> Technically, it could be as large as Unicode is.  One key for each codepoint.  But that's impractical, and while I never expect it to happen, I use a 32-bit integer anyways.

03:54 <RazorSharpFang> Why stop at 32-bit? Have it be an arbitrary-size integer.

03:56 <Cepheid> 64-bit integer would likely suffice for the next several millenia.  I'd love to see someone try to come up with a keyboard that has more keys than a 64-bit integer can hold.

03:59 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)

04:01 <Cepheid> https://twitter.com/playismJP/status/1130684179937615872 Schism.

04:02 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

04:05 <Schism> Oh, nice.

04:06 <Schism> Switch, PS4 and XBone, all three, eh?  And hm, $3980y physical, 2980y digital.

04:07 *** Joins: cabbage (cabbage@Pony-0gbng9.dynamic.sonic.net)

04:12 <Cepheid> I was referring more to the cutout thing.

04:12 <Cepheid> But yeah, it's coming to consoles.  Same with Rabi-Ribi.

04:13 <Cepheid> Well, Rabi-Ribi already exists on consoles.  It's coming to Switch, though.

04:13 <Cepheid> https://twitter.com/namakouri/status/1128300167390748674 How real scientists and programmers work every day.

04:17 *** Joins: rod_ (rod@Pony-do1tdj.tn.charter.com)

04:17 *** Quits: rod_ (rod@Pony-do1tdj.tn.charter.com) (Connection closed)

04:20 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)

04:21 <Cepheid> My cat is focused on watching this nature show on TV

04:24 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

04:28 * Ali bats at Cepheid tail

04:29 <Cepheid> Ow.

04:39 <Cepheid> ... That was clearly a wrong number.  Area code 615.

04:39 <Cepheid> And at 12:41 in the evening.

04:40 <Cepheid> Apparently, from Nashville, Tennessee?

04:42 * DashedRainbows sniffs Ali. Poni

04:42 <Ali> Have fun with those American robocalls Cepheid

04:42 * Ali boops the DashedRainbows

04:43 <Cepheid> Yep.

04:43 <Ali> I had one that tried to spoof my EXACT phone number

04:44 <DashedRainbows> Mah snoot!

04:48 *** Quits: Pony|9711 (Pony9711@Pony-i454b4.cable.virginm.net) (Ping timeout: 121 seconds)

04:56 *** Joins: Pony|9711 (Pony9711@Pony-i454b4.cable.virginm.net)

04:56 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)

04:58 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

05:00 * DashedRainbows licks Ali and wags her tail

05:00 * Ali noms DashedRainbows tail

05:00 <Cepheid> Input system's almost working.

05:01 *** Joins: luckyspirit (luckyspirit@pony.poni.pony)

05:01 <Cepheid> I think my reward for my hard work tonight will be to binge an anime series.

05:02 * DashedRainbows wags harder

05:02 * luckyspirit noses Ali

05:02 * Ali squeaks at luckyspirit

05:03 * luckyspirit touches Ali’s squeaker

05:03 * Ali shows latest poni episode to luckyspirit, US version of course

05:03 <Cepheid> As for series, I'm thinking Girls' Last Tour.

05:04 <Cepheid> I'd watch Made in Abyss, but every time I watch that, episodes 10 and 13 crush my soul.

05:04 * luckyspirit giggles and blushes, he’s been a bad poni, hasn’t seen

05:04 <DerpyBot> New post on Equestria Daily by Silver Quill: Comic: Fluttershy Says Goodnight – 4th Wall [ http://tinyurl.com/yyzdvgh9 ]

05:08 * Ali cries to luckyspirit as she can't babble about it.

05:09 * luckyspirit hugs Ali

05:09 <luckyspirit> I’m going to finish downloading and cataloging S8 and start on S9.

05:10 <luckyspirit> I’ve been running everywhere like a crazy poni

05:23 <Cepheid> !link https://www.youtube.com/watch?v=ppwKN3IoJsw *Plays creepy music for Schism*  This be another game you should stream yerself playing.

05:23 <DerpyBot> I need to ask Twilight about that one.

05:23 <DerpyBot> Twilight told me this video is about Axiom Verge Soundtrack - Amnesia

05:23 <Cepheid> Same with me.

05:26 *** Quits: luckyspirit (luckyspirit@pony.poni.pony) (The TLS connection was non-properly terminated.)

05:40 <Cepheid> Hum.  Is it still synesthesia if instead of colours, you see patterns or distortion in response to stimuli?

05:45 <Moongoodboy> episodes b'\n' and b'\r'

05:48 <Cepheid> :P

05:49 <Cepheid> So, 10 and 13.

05:54 <Moongoodboy> c:

06:03 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)

06:05 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

06:07 <Cepheid> Just need to make the JSON parser for input configuration.  Otherwise, my convoluted input system works as expected.

06:11 *** Quits: HyperDash (HyperDash@Pony-obvko9.wa.comcast.net) (Ping timeout: 121 seconds)

06:12 * Ali ASON's Cepheid's JSON and does things she doesn't understand.

06:15 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)

06:17 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

06:55 *** Quits: Ali (Ali@Pony-lv9bfo.4nua.5fca.1702.2600.IP) (Quit: Leaving)

07:15 *** Quits: PinkieShy (coolm@Pony-ck81je.67-212-45-net.sccoast.net) (Quit: Leaving)

07:16 *** Quits: Mpon (Mpon@Pony-ukh.gld.8.79.IP) (Ping timeout: 121 seconds)

07:17 *** Joins: Fablecrack_ (lierdakil@Pony-fpf.cnp.158.94.IP)

07:19 *** Quits: Bubs (crap@Pony-uh4.o2r.127.80.IP) (Ping timeout: 121 seconds)

07:19 *** Quits: JonTheVGNerd (VGNerd@Pony-ifa.2r2.42.24.IP) (Quit: Leaving)

07:20 *** Quits: Fablecrack (lierdakil@Pony-fpf.cnp.158.94.IP) (Ping timeout: 121 seconds)

07:20 *** Fablecrack_ is now known as Fablecrack

07:20 <Finwe> Good morning, my perissodactyls of minute stature.

07:21 * Finwe noms on his breakfast.

07:21 *** Joins: Mpon (Mpon@Pony-s3c3bt.business.telecomitalia.it)

07:23 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)

07:26 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

07:28 *** Quits: Pony|9711 (Pony9711@Pony-i454b4.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)

07:38 *** Quits: Persondude (Tilde@Pony-3u0tdq.dgbc.9fgu.6000.2605.IP) (Ping timeout: 121 seconds)

07:43 <Cepheid> Morning Finwe.

07:44 <Finwe> Morning, Mr Cepheid.

07:48 *** Joins: rod_ (rod@Pony-do1tdj.tn.charter.com)

07:49 <Cepheid> How goes it?

07:50 <Cepheid> https://www.twitch.tv/cepheidvar/ Doing me a Rabi-Ribi 0% run on normal.  This'll be different from the standard run.

07:50 *** Quits: SilentVigil (rod@Pony-do1tdj.tn.charter.com) (Ping timeout: 121 seconds)

08:13 *** Joins: ADragonDreaming_ (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

08:14 *** Quits: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)

08:29 *** Joins: ConfusionRift (ConfusionRi@Pony-nf551c.res.spectrum.com)

08:29 *** ChanServ sets mode: +o ConfusionRift

08:29 <ConfusionRift> Hello everypony.

08:32 <Finwe> Lt Cdr ConfzzlementRift.

08:32 <Finwe> o7

08:32 <Finwe> *Confuzzlement

08:33 <ConfusionRift> RAdm. Finwe. (salutes)

08:33 <Finwe> I got a bit, *cough* confuzzled there.

08:33 <Cepheid> Hey Rifty.

08:34 *** Quits: cabbage (cabbage@Pony-0gbng9.dynamic.sonic.net) (Connection closed)

08:36 * ConfusionRift wavies as Cepheid.

08:36 <Cepheid> Streamin' me a Rabi-Ribi 0% run on normal. https://www.twitch.tv/cepheidvar/ Wanna watch? :P

08:36 <ConfusionRift> *at

08:36 <ConfusionRift> Sure. :P

08:37 <Cepheid> CAT!  I cannot see what I am doing!

08:38 <ConfusionRift> Ah, no item run.

08:39 * Finwe attaches CAT to Cepheid.

08:39 <ConfusionRift> Aaaah, no?!

08:39 <Cepheid> Yeah, 0%.

08:39 <ConfusionRift> That was close.

08:41 <Cepheid> ...

08:42 <Cepheid> Geezus, those cats hurt more than she does.

08:42 <ConfusionRift> Yeah, that's... yeah.

08:44 <ConfusionRift> Nice.

08:45 <Cepheid> I am allowed to use the buffs in a 0% run.

08:46 <Cepheid> Shoes?  What're those?  Never heard of 'em.

08:50 <ConfusionRift> What? The weakling slippers? Don't need them! :P

08:50 <ConfusionRift> Ouch...

08:52 <ConfusionRift> I forgot she did that.

08:53 <Cepheid> Lack of mobility hurts things a lot. o3o

08:53 <ConfusionRift> Yep, and she latches on to you something fierce.

08:54 <ConfusionRift> Yeah... MOLLIGAN!

08:54 <ConfusionRift> ...mulligan?

08:55 <ConfusionRift> Yeah, that was not nice.

08:57 <ConfusionRift> Bad kitty, not nice!

08:59 <ConfusionRift> Ooouuuh.

08:59 <Cepheid> No comment on the end there.

08:59 <ConfusionRift> That was way too close.

08:59 <Cepheid> I'm like "Wait, she h- Shoot her!  SHOOT HER!"

09:00 <ConfusionRift> "Ribbon, the AK!!! Shoot her already!"

09:01 <ConfusionRift> Wait, the heck is that? Low Item % +2?

09:01 <Cepheid> Appeared after I finished the first Stele event.

09:01 <ConfusionRift> Huh, I guess it's a buff?

09:01 <Cepheid> Doesn't appear to be.

09:03 <ConfusionRift> And here be the next wall.

09:06 <ConfusionRift> Excuse me?!

09:10 <ConfusionRift> It seems that Low Item % is a marker for low/no item run, and the +N being difficulty.

09:17 <Cepheid> ...

09:17 <Cepheid> The heck was that?

09:17 <ConfusionRift> I saw that, and... she got clever. :P

09:20 <Cepheid> I was waiting for that sequence.  Bah.

09:20 <Cepheid> I know there's a way to dodge it, I can't recall.

09:21 <ConfusionRift> It seems the attacks concentrate on one area, so there is a dodge point. Thing is, your mobility is still pretty bad, despite the boost.

09:23 <ConfusionRift> Pinch mode, ready!

09:24 <Cepheid> Dangit, I walked into that one.

09:24 <ConfusionRift> I barely saw it. It hid behind Ribbon. :P

09:27 <ConfusionRift> "DON'T NEED HELP!"

09:27 <Cepheid> Exactly my thought.

09:27 <Cepheid> Stop asking, game.

09:30 <ConfusionRift> Urgh.

09:31 *** Joins: danwellby (danwellby@The.lone.griffon)

09:34 <Cepheid> Note to self:  She moves forward with the stars after landing, so use the amulet there.

09:35 <ConfusionRift> Hello what?!

09:35 <Cepheid> I don't think her AI likes a low-percentage run.

09:35 <ConfusionRift> She didn't just go underground, she also avoided you.

09:37 <ConfusionRift> Oh. Huh, I think I know what happened, but still an odd thing.

09:38 <Cepheid> Reeeaaally hate that she randomly jumps.

09:42 <ConfusionRift> Hmmmmm! That was hmmmmm!!!

09:44 <ConfusionRift> Ouch!!!

09:44 <Cepheid> Yeah, that's kinda a tricky jump.

09:44 <ConfusionRift> Those are basically instant death.

09:44 <Cepheid> And what's behind it isn't any easier.

09:44 * ConfusionRift nods.

09:45 <ConfusionRift> Wait, doesn't store items count to %?

09:45 <Cepheid> Those aren't from the store.

09:45 <Cepheid> Rumi gives you then after you return to town.

09:45 <ConfusionRift> Ah, right.

09:45 <Cepheid> They're the only restoratives you're allowed to have.

09:46 <ConfusionRift> I think this is their full hurrah.

09:47 <Cepheid> Now that, that battle is yeah.

09:47 <ConfusionRift> Oh goodness. It's kinda tricky, even with items.

09:50 <ConfusionRift> Ah, that was not fair.

09:50 <ConfusionRift> "You cannot escape!"

09:58 <Cepheid> What am I doing..?

09:58 <Cepheid> I got a warp point here.

09:58 <ConfusionRift> I do not knoooow~.

09:59 <ConfusionRift> "Erina, Ribbon want those earrings!" | "Don't need 'em." | "But-" | "No butts!!!"

10:01 <ConfusionRift> Hah! Just noticed. They forgot to sprite the boots when she spins after losing. She appears with her one leg stocking.

10:04 <ConfusionRift> How?!

10:05 * Finwe returns.

10:05 <ConfusionRift> That is a very precise jump.

10:06 <ConfusionRift> Welcome back.

10:06 <Finwe> I tried a bit longer run today, around the lake by which I live and another, a bit smaller one.

10:07 <Finwe> The next step would be to run around the larger ones, I guess.

10:07 <Finwe> Might require some further training, though.

10:08 <Cepheid> Actually, I think I'm done for the time being.

10:08 <ConfusionRift> Yeah, this one is... bleeeh.

10:11 <ConfusionRift> Was rewatching that madness with Ashuri. I completely missed that she did the jump off attack under the stage, and then popped on stage and did it again.

10:14 <Finwe> Never rewatch the madness.

10:14 <Finwe> Or was it, "Never stop the madness"?

10:14 * Finwe is puzzled.

10:15 <ConfusionRift> Chaos?!

10:15 <ConfusionRift> Chaos!!!

10:17 <ConfusionRift> Aaah, come on. It looks like they copied the normal dress and just changed over it for the death animation. But it looks like there are frames they didn't fully change. So as she spins, you can still see her armbands and one legging, while sorta wearing the selected dress.

10:20 <Cepheid> Heh.

10:20 * DashedRainbows sniffs ConfusionRift and wags her tail

10:21 * ConfusionRift pets DashedRainbows. :P

10:21 <Cepheid> But yeah, I don't think Ashuri's AI likes 0% runs.

10:22 <Cepheid> Seems like she was in a twitchy mood the entire battle.  Could see her raise her wand, then drop it, then raise it again, etc.

10:23 * DashedRainbows paws at ConfusionRift with her hooves

10:25 * ConfusionRift plays around DashedRainbows.

10:26 <ConfusionRift> Did always thought that some aspects of the game were not made with a 0% run in mind, despite there being moves and paths they added specifically for that.

10:27 * DashedRainbows ponies around

10:29 <Cepheid> A 0% run is generally not thought of ahead of time, because it's considered to be INSANE.

10:55 * Cepheid yawns, stretches.

10:55 <Cepheid> I feel like *YAY* now.

11:01 * DashedRainbows offers her toy to ConfusionRift and curls up to sleep

11:02 * ConfusionRift huggles DashedRainbows. "Have a good one."

11:03 <ConfusionRift> Also feel like pffft.

11:07 * Finwe patpats ConfusionRift.

11:24 <DerpyBot> New post on Equestria Daily by Calpain: Morning Discussion #1577 [ http://tinyurl.com/y3w9g5zm ]

11:28 <Cepheid> I'm gonna have to make some art later, after I sleep and wake up.

11:36 <Cepheid> It is owrth notice that my vision of warping

11:38 <Cepheid> So I hade a terrible, terrible mistake.

11:38 <ConfusionRift> o_0

11:38 <Cepheid> I took my usual sedative, and combined it with another setditive I have.  Three of them,

11:38 <Cepheid> And the best eway to descrie the result is that the world is melting,

11:39 <Cepheid> Or warning.

11:39 <ConfusionRift> Goodness, man!

11:42 <Cepheid> I have  problem.  I combine known mediations as a wa y if escaoe,]

11:42 <Cepheid> The question is the wy I do il

11:43 <ConfusionRift> 0_0

11:44 <ConfusionRift> This is not good, man. You're derailing, and that's probably all those sedatives kicking in at the same time.

11:46 <Cepheid> All I know I have a problems, and that problem is that I mix two or more medication for a certain situation

11:46 <ConfusionRift> I know. But sedatives? That's a danger zone.

11:49 <Cepheid> I feel in,  In motion,I'm a little slggish,  But it is annplouing matek.  Coordinateionn is imjopaired.

11:54 <Cepheid> I am mixed about thisl.

11:55 <Cepheid> On one handm my mood, my balance, visual acuitiy are healily impacted.  SMucles not working well.

11:55 <Cepheid> But the world is just... warming.  Flowing.

11:59 <Cepheid> Tomorrow'sart will have to be a character sptrite, and i am not looking forward for it.

12:03 <Cepheid> I think I underatand the appeal of usingdrivesl

12:04 <DerpyBot> New post on Equestria Daily by Sethisto: Italian My Little Pony Season 9 Episode 12 - The Last Crusade - Stream / Discuss [ http://tinyurl.com/y4d8o4pr ]

12:07 <ConfusionRift> Okay, have to crash for work. An depending on how things go, I might just... jump back in. Dunno. Laters!

12:07 *** Quits: ConfusionRift (ConfusionRi@Pony-nf551c.res.spectrum.com) (Quit: Recharging the batteries. Laters! *shutdown*)

12:26 *** Quits: ADragonDreaming_ (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net) (Ping timeout: 121 seconds)

12:55 <RazorSharpFang> I'm training neural networks today and it's so flipping slow.

13:09 *** Joins: mattshadowman (mattthesha@Pony-n3u.0ec.238.89.IP)

13:09 *** Quits: matttheshadowman (mattthesha@the.shadowy.corners) (Connection closed)

13:38 * Schism arise, arise... and blinks. "ohd ear."

13:39 <Schism> "Oh dear."*

13:57 <RazorSharpFang> My computer's been on 100% CPU usage for hours now.

13:57 <Schism> Whyfor the training?

13:58 <RazorSharpFang> Yeah, training a multilayer perceptron for identifying based on palm prints.

14:14 <Finwe> Messrs RazorSharpFang and Schism.

14:14 * Finwe doffs his hat.

14:25 <Schism> rAdm. Finwe.

14:25 * Schism doffs his vegetable and egg fried rice.

14:40 * DashedRainbows chews on Finwe's hooves

14:40 <Schism> Rice fried in bacon grease, of course.

14:47 <Finwe> Miss DashedRainbows.

14:47 * Finwe doffs his hat and hoof-wiggles.

14:47 <Finwe> !plot

14:47 <DerpyBot> *wigglewiggle*

14:48 <Finwe> *wigglewiggle*

14:59 <Schism> *wigglewiggle*

15:32 <RazorSharpFang> My computer is spitting out warnings about running low on memory. I'm sure it'll be fine though.

15:33 *** Quits: mattshadowman (mattthesha@Pony-n3u.0ec.238.89.IP) (Quit: I will return to the shadows)

15:33 *** Joins: matttheshadowman (mattthesha@Pony-n3u.0ec.238.89.IP)

15:36 *** Joins: LibrarianofHope (Librarianof@Pony-0eg.r35.207.187.IP)

15:36 <LibrarianofHope> bleh

15:36 * Finwe noms on RazorSharpFang's memory modules.

15:36 <LibrarianofHope> im sleepin at the hospital today

15:38 <Finwe> Are you waiting for an operation, or recovering from one?

15:40 <LibrarianofHope> waiting

15:40 <LibrarianofHope> i leave for the hospital in like 3 hours

15:41 * Finwe hugs a LibrarianofHope.

15:42 <LibrarianofHope> my dad is the one getting surgery

15:42 <Finwe> Ah, I see.

15:42 <Finwe> So you're just accompanying him.

15:44 <LibrarianofHope> yeah, as family member

15:44 <LibrarianofHope> imma work as a communication hub for whaetever is needed

15:52 *** Quits: matttheshadowman (mattthesha@the.shadowy.corners) (Quit: I will return to the shadows)

15:55 *** Joins: matttheshadowman (mattthesha@Pony-p7k.0ec.238.89.IP)

16:14 * DashedRainbows licks LibrarianofHope

16:20 *** Joins: RyuImperator (RyuImperato@Pony-s9tcma.dip0.t-ipconnect.de)

16:44 *** Joins: Ali (Ali@Pony-u3nda4.4nua.5fca.1702.2600.IP)

16:44 *** ChanServ sets mode: +qo Ali Ali

16:44 * Schism rolls over and boops the Ali with a peeled clementine orange or six.

16:45 <Ali> /me boops Schism and yawns at

16:51 *** Joins: Renard (Renard@Pony-n3uia0.abo.bbox.fr)

16:54 <LibrarianofHope> found my favorite shirt

16:54 <LibrarianofHope> it was inside out so i did not saw it

17:02 *** Joins: ADragonDreaming (IceChat9@Pony-3s8.e7q.56.172.IP)

17:04 <DerpyBot> New post on Equestria Daily by Sethisto: Official "How To Draw Fluttershy!" Released [ http://tinyurl.com/yyknr8qw ]

17:05 * Schism draws a tree and calls it Fluttershy.

17:17 <Starlight_Glimmer> You monster

17:19 <Starlight_Glimmer> That being said: Shouldn't her name be Flutter Shy?

17:22 <Ali> And now we'll draw a Glim Glam

17:22 * Ali draws an equal sign

17:25 <LibrarianofHope> imma go to the hospital now, might log in from my cellphone

17:25 <LibrarianofHope> wish me luck

17:25 <Ali> ??

17:25 <LibrarianofHope> my dad gets surgery tommorow

17:26 <LibrarianofHope> we are doing entrance procees today

17:28 <Starlight_Glimmer> Ali: You're a cruel heartless monster

17:28 <Ali> :3

17:28 <Starlight_Glimmer> Glim Glam should have been everyone's favorite pony by now - besides Luna

17:28 <LibrarianofHope> i demand the aplication of wub to my person  before i leave owo

17:29 <LibrarianofHope> or banana

17:29 <Ali> Sorry but that's not how you spell Twilight Starlight_Glimmer

17:30 <Starlight_Glimmer> Please. Everyone hates purple smart since she got her wings.

17:31 * LibrarianofHope defenstrates glim glam

17:31 <ADragonDreaming> I do not hate Purple Smart.

17:31 <Ali> No, she got more adorkable with those flippy flaps

17:31 <ADragonDreaming> Ergo, your statement is false.

17:31 <Starlight_Glimmer> ADragonDreaming: Dragons don't count

17:31 <LibrarianofHope> twilight is a always an axiety attack away from apcalypse

17:31 <LibrarianofHope> and they want her as queen

17:31 <LibrarianofHope> makes sense

17:32 <ADragonDreaming> Are you saying dragons are not people?

17:32 <ADragonDreaming> You speciesist.

17:32 <LibrarianofHope> nope

17:32 <Starlight_Glimmer> :3

17:32 <LibrarianofHope> neither are ponies

17:32 * ADragonDreaming immolates Starlight_Glimmer.

17:32 * LibrarianofHope roasts smores on the dragin fire

17:32 <LibrarianofHope> tastes like rage

17:35 * LibrarianofHope squeaks ali for as a stress toy

17:35 * Ali is too busy hugging her Twilight plushie

17:36 <LibrarianofHope> you are a unicorn, huggin a unicorn plishie

17:36 <LibrarianofHope> instructions unclear, will explode.

17:36 * LibrarianofHope goes boom

17:39 *** Joins: JonTheVGNerd (VGNerd@Pony-ifa.2r2.42.24.IP)

17:44 *** Quits: LibrarianofHope (Librarianof@Pony-0eg.r35.207.187.IP) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)

17:46 *** Quits: ADragonDreaming (IceChat9@Pony-3s8.e7q.56.172.IP) (Ping timeout: 121 seconds)

18:04 <DerpyBot> New post on Equestria Daily by Sethisto: Poll Results: Are You Watching Early Season 9 Italian Releases?  [ http://tinyurl.com/y4u249f9 ]

18:06 *** Quits: Taoki (MirceaKitsu@Pony-7ul.gjo.113.93.IP) (Quit: http://www.furaffinity.net/user/mircea/)

18:14 *** Joins: Taoki (MirceaKitsu@Pony-7ul.gjo.113.93.IP)

18:36 *** Joins: SilverLining (Fall@Pony-sfg.9lm.228.37.IP)

18:48 *** Joins: HyperDash (HyperDash@Pony-obvko9.wa.comcast.net)

19:04 <DerpyBot> New post on Equestria Daily by Makenshi: "Better Way to Be Bad" Remix: NYMUND9's Remix [Electro] [ http://tinyurl.com/y3yuwcrx ]

19:16 *** Quits: PurePurple (Bat@Squeaky.Cuddly.Batpony) (Connection closed)

19:18 *** Joins: [AFK] (Bat@Squeaky.Cuddly.Batpony)

19:18 *** [AFK] is now known as PurePurple

20:04 <DerpyBot> New post on Equestria Daily by Sethisto: Everfree Northwest PMV Contest Winners  [ http://tinyurl.com/y6jjrztj ]

20:20 *** Quits: RyuImperator (RyuImperato@Pony-s9tcma.dip0.t-ipconnect.de) (Connection closed)

20:39 * DashedRainbows makes random small horse noises

20:41 *** Ali is now known as Ali|BGN

21:04 <DerpyBot> New post on Equestria Daily by Sethisto: Pony Community Soapbox #140 - Don't Like Horses, Equine Hybrids, and Forgotten Pies [ http://tinyurl.com/y6kfp83s ]

21:48 *** Quits: danwellby (danwellby@The.lone.griffon) (Connection closed)

22:00 * DashedRainbows now makes bored horse noises

22:01 *** Quits: Renard (Renard@Pony-n3uia0.abo.bbox.fr) (Connection closed)

22:04 <DerpyBot> New post on Equestria Daily by Sethisto: Drawfriend Stuff (Pony Art Gallery) #2985 [ http://tinyurl.com/y64y783c ]

22:33 *** Joins: PinkieShy (coolm@Pony-ck81je.67-212-45-net.sccoast.net)

22:47 *** Joins: Quill_Swirl (IceChat9@Pony-jaks4r.res.rr.com)

23:14 *** Joins: ADragonDreaming (IceChat9@Pony-tpdjag.livnmi.sbcglobal.net)

23:23 *** Joins: Fn (Eogan@Pony-0g7l92.dip0.t-ipconnect.de)

23:26 *** Quits: FruitNibbler (Eogan@Pony-hr8ft2.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)

23:40 *** Joins: LibrarianofHope_ (uid273841@Pony-u8rgp9.charlton.irccloud.com)

23:40 <LibrarianofHope_> Sup

23:42 *** Parts: LibrarianofHope_ (uid273841@Pony-u8rgp9.charlton.irccloud.com) ("")

23:56 *** Quits: HyperDash (HyperDash@Pony-obvko9.wa.comcast.net) (Ping timeout: 121 seconds)

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!