00:00 <Cepheid> That's hexadecimal, yeah.
00:01 <Cepheid> Just represented in 2-byte word format.
00:02 *** Joins: Reia_Sleep (chatzilla@Pony-2826t2.ipv6.telus.net)
00:02 *** Reia_Sleep is now known as Reia_Hope
00:03 <ADragonDreaming> hexadecimal is a base 16 mathematical system.
00:04 <Jackie_> Cepheid: https://gist.github.com/Archangel45/95efaaece83ad1188209493dbe7e8ee0#file-colors-conf-L42
00:04 <ADragonDreaming> counting as follows: 0 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 etc.
00:04 <Cepheid> Yep.
00:04 <ADragonDreaming> to translate to base 10, 10 in hexadecimal is 16 in base 10.
00:05 <Cepheid> It's used for easy byte representation, a single byte, which is 8 bits and ranges from 0 to 255(Unsigned) or -128 to 127(Signed) can be represented by the hexadecimal values ranging from 0 to FF.
00:05 <Cepheid> It's done this way for a weird reason related to the size of a byte in bits.
00:06 <Jackie_> Pretty sure python can decode this?
00:06 <Cepheid> 0 through F is 0 through 15. 4 bits can represent 0 to 15.
00:06 <Cepheid> Therefore, "7F" can be split up into 2 4-bit values: 0111 and 1111
00:07 <Cepheid> Yeah, most programming languages in their spec understand hexadecimal due to it's widespread use.
00:07 <Cepheid> They can also output numbers in hexadecimal format when printing to a console, or doing text conversions, etc.
00:08 <Jackie_> also how can rgb reach up to 66k
00:08 <Jackie_> er 65
00:08 <Jackie_> iirc, each r g b is 255
00:09 <Cepheid> Each RGB component is 255, yes.
00:09 <Cepheid> ER, 0-255*
00:10 <Jackie_> r(d3d3) g(d7d7) b(cfcf)
00:10 <Cepheid> Ah, they're using 16-bit components.
00:11 <Cepheid> That's a recent thing, these days.
00:11 *** Joins: FreezeFrame (Darryl@Pony-ihjqun.fios.verizon.net)
00:11 <Jackie_> figuring out how to do that in python
00:12 <Jackie_> I'm thinking it's something to do with bit shifting
00:13 <Cepheid> Think of the R, G, B components indicating an intensity ranging from 0% to 100%. With 0 being 0%, and 255 being 100%. It's a simple translation. (R / 255) * 100. You can get the intensity of 16-bit components the same way: (R / 65535) * 100
00:13 <Cepheid> Alternatively, you could in fact reduce them to 8-bit components by just shifting to the right 8 bits.
00:15 <ADragonDreaming> Incidentally, I did finally resolve my Jade Empire issue.
00:16 <ADragonDreaming> Booted into command prompt in safe mode and use takeown and icacls to take command of and then remove the whole folder.
00:16 <ADragonDreaming> Then reinstalled.
00:16 <ADragonDreaming> speaking of Jade Empire.
00:16 <ADragonDreaming> Boss who cares has gone home.
00:16 <ADragonDreaming> I'm gonna open the game.
00:18 *** Joins: unicodingunicorn_ (unicodingun@Pony-06e.31f.100.14.IP)
00:19 *** unicodingunicorn_ is now known as uni
00:19 * Electron melodies
00:20 <Jackie_> https://wiki.python.org/moin/BitManipulation
00:20 <Jackie_> Something i need
00:20 <Jackie_> >>> print "0x%x" % int('0110110110', 2)
00:20 <Jackie_> sadly it's int to hex
00:21 *** Quits: unicodingunicorn (unicodingun@small.floofy.uni.pone) (Ping timeout: 121 seconds)
00:30 <DerpyBot> New post on Equestria Daily by Sethisto: Silly Filly Studios No Longer Animating Full Time Due to Youtube Issues [ http://tinyurl.com/glaybhr ]
00:30 <Jackie_> Ever tried abusing a programming language?
00:31 <hawthornbunny> You mean like swearing at it?
00:32 <Jackie_> hawthornbunny: like using it so much
00:34 <Cepheid> I do that every day.
00:37 <hawthornbunny> I suppose writing anything in Bash would count. Everything in Bash feels like a dirty ill-advised hack. It's like, standard operating procedure
00:38 <Cepheid> That's standard operating procedure in most programming, to be honest. There are paradigms and processes that major companies use, but a majority of the time, developers just hack a program together.
00:38 <Cepheid> You get used to it.
00:38 <hawthornbunny> No way, we have standards and design patterns and everything
00:38 <hawthornbunny> Which we totally use correctly and consistently honest
00:38 *** Joins: omo (alawu@Pony-4sc.fbg.74.194.IP)
00:39 *** Parts: omo (alawu@Pony-4sc.fbg.74.194.IP) ()
00:39 <Cepheid> A coding style and design patterns are different from what I am talking about.
00:40 <Cepheid> I'm talking about Agile Development, Extreme Programming and the like.
00:40 <hawthornbunny> I thought Agile was exactly the kind of mode in which you shouldn't be hacking a thing together
00:40 <Cepheid> Standard practice for people who write hobbyist code(Usually anything written outside of work) is usually hacked together, following a basic coding style that is specific to the developer, with minimal documentation.
00:40 <Cepheid> hawthornbunny: I'm talking standard practice that programmers use. Outside of work.
00:41 <hawthornbunny> Oh, right. Yeah, I agree. XD
00:41 <Cepheid> Code outside of work is usually just hacked together.
00:41 <hawthornbunny> Well, except the "minimal documentation" part for me. I comment EVERYTHING
00:41 <Cepheid> Heh.
00:41 <Cepheid> I document what needs documenting. There is such a thing as too much documentation.
00:42 <Divide|Tech> Something is wrong with the universe today.
00:42 <Cepheid> Ideally, it's a combination of "Make sure your code is readable, and document the complicated bits. If you want to document more, document a basic description of each method, function, procedure, etc that you write."
00:42 <hawthornbunny> I'm a firm believer in the power of good comments. They don't just help other people; they help you understand what it is you're trying to achieve, which makes it easier to do so
00:42 * Cepheid blares some Hedley music for Divide|Tech.
00:42 <Divide|Tech> Something is VERY wrong with the universe.
00:42 <Cepheid> hawthornbunny: Oh, I agree. But there's such a thing as too much documentation, still.
00:43 <Cepheid> Pre-conditions, post-conditions, parameters and their uses, maybe a quick step-by-step explanation of the algorithm, in a function header.
00:44 <Cepheid> But meh.
00:44 <Cepheid> Every developer has their style and preferences.
00:45 <Cepheid> Hum, guess I don't have this format figure out entirely.
00:45 <Cepheid> I thought the filename was stored in a 44-byte chunk. It's not. The length is smaller than 44 bytes.
00:47 *** Quits: WuBzY (wubzy@wubz.that.is.all) (Connection closed)
00:47 <Cepheid> Huh, there's a tool that does what I just made a tool to do. At least, for Disgaea PC's files. And I was off by 4 bytes, it's 40 bytes, not 44.
00:50 *** Quits: Filly_Nightmares (Surreal@Cutest.Floofy.Changeling.Batpone) (Quit: Restarting compuper!)
00:54 *** Joins: Changeling_Nightmares (Surreal@Cutest.Floofy.Changeling.Batpone)
00:56 *** Changeling_Nightmares is now known as Filly_Nightmares
00:57 * Cepheid dresses up as a God Eater hannibal. Puts on Ruthless King, and proceeds to recreate it's taunt by growling in a cute manner, and emitting a small spark of flame from it's right hoof. It looks silly when a pony does it, it appears.
00:58 *** Quits: CopperCrystal (tecuani@Pony-60rdm8.pools.vodafone-ip.de) (Quit: WeeChat 1.6)
00:58 *** Joins: TheDerpter (TheDerpter@Pony-fm43g8.ma.comcast.net)
01:02 <Sour_Sweet> Listening to music embracing friendship while horribly murdering noobs with a sniper rifle. I love it!
01:03 *** Quits: Arteshin (Arteshi@Pony-3hc5cr.il.comcast.net) (Quit: )
01:04 <Electron> http://tinyurl.com/jylj6bq
01:06 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
01:07 <Jackie_> I like cookies XD
01:09 *** Joins: BlackSentinel (BlackSentin@behind.you)
01:10 *** Quits: Heartbreak (Heartbreak@Pony-vo1600.mn.comcast.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
01:13 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
01:16 *** Joins: BlackSentinel (BlackSentin@behind.you)
01:18 *** Joins: Coco_Pommel (coco@Pony-n22tpd.ma.comcast.net)
01:20 *** Quits: Coco_Pommel (coco@Pony-n22tpd.ma.comcast.net) (Quit: Nettalk6 - www.ntalk.de)
01:32 <Cepheid> Hmm. How are these files laid out..?
01:34 *** Joins: patrick (patrick@Pony-aj2205.cg.shawcable.net)
01:34 *** patrick is now known as Starwatcher
01:34 <Cepheid> Looks like a header, followed by a 256-color palette.
01:35 <Cepheid> Then some extraneous bytes I can't identify, followed by bytes indicating which of the 256 colours to use for that pixel.
01:40 *** Jackie_ is now known as Ubuntu
01:41 *** Joins: Nedemai (Nedemai@fluttershy.is.best.pony)
01:41 *** ChanServ sets mode: +h Nedemai
01:42 *** Ubuntu is now known as Jackie_
01:42 <Cepheid> "IMY\0" magic number, followed by 4 unknown bytes. 2 bytes, width, 2 bytes, unknown, 2 bytes, height, 2 bytes unknown. 16 bytes, unknown, but all 0 among every IMY file I have access to. 400 bytes, palette. Rest appears to be image data.
01:43 *** Joins: Reia (Reia@TheCowPony)
01:44 <Cepheid> Hmm. The first 4 bytes could potentially be the size of the buffer required to store the expanded image.
01:45 *** FreezeFrame is now known as WorkFrame
01:45 <Cepheid> No..
01:46 <Jackie_> https://www.youtube.com/watch?v=PfYnvDL0Qcw&t=27s Cepheid
01:46 <Cepheid> O...kay.
01:46 <Jackie_> I like this song lol
01:47 <Jackie_> No seriously XD
01:52 *** Quits: uni (unicodingun@Pony-06e.31f.100.14.IP) (Connection closed)
01:54 <Cepheid> Those 4 bytes seem to be (Width * Height) + size of palette in bytes + 20. Why, I haven't the faintest clue. A CRC, perhaps?
01:55 <Cepheid> ER, +32, not +20, so the size of the header.
01:57 *** Joins: WuBzY (wubzy@wubz.that.is.all)
01:59 *** Joins: unicodingunicorn (unicodingun@small.floofy.uni.pone)
01:59 *** Joins: Pi (Mibbit@Pony-5lu.v02.53.122.IP)
02:01 *** unicodingunicorn is now known as uni
02:04 <Cepheid> Hmm.
02:08 *** Joins: The_Nostalgia_Mare (Nossy@Pony-c9jj2q.brpm.oqg9.0342.2601.IP)
02:09 <DerpyBot> New post on Equestria Daily by Calpain: Nightly Discussion #927 [ http://tinyurl.com/gmz8z9c ]
02:11 *** Quits: TheDerpter (TheDerpter@Pony-fm43g8.ma.comcast.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
02:11 *** Joins: TheDerpter (TheDerpter@Pony-fm43g8.ma.comcast.net)
02:12 <Jackie_> I actually rarely use Python's command switches
02:12 <Jackie_> except for pip and sys.argv
02:13 *** Joins: unicodingunicorn_ (unicodingun@Pony-5gqbeu.n4ri.ljqb.e800.2404.IP)
02:14 *** Quits: zz_CyberJacob (CyberJacob@Pony-8adl2m.bluesapphiremedia.co.uk) (Ping timeout: 121 seconds)
02:14 *** Quits: MisterRogers (MisterRoger@Pony-mtbb9h.static.versatel.nl) (Ping timeout: 121 seconds)
02:15 *** Joins: MisterRogers (MisterRoger@Pony-mtbb9h.static.versatel.nl)
02:16 *** Quits: uni (unicodingun@small.floofy.uni.pone) (Ping timeout: 121 seconds)
02:17 *** Quits: Cepheid (Cepheid@tick.tock.tick.tock.goes.the.clock) (Quit: Leaving)
02:17 *** unicodingunicorn_ is now known as uni
02:18 *** Joins: Cepheid (Cepheid@tick.tock.tick.tock.goes.the.clock)
02:18 <Cepheid> I need a break from the stuff I'm working on.
02:18 *** Quits: Nedemai (Nedemai@fluttershy.is.best.pony) (Ping timeout: 121 seconds)
02:20 *** Joins: zz_CyberJacob (CyberJacob@Pony-8adl2m.bluesapphiremedia.co.uk)
02:21 *** zz_CyberJacob is now known as CyberJacob
02:22 *** Quits: Reia (Reia@TheCowPony) (Quit: Bye)
02:23 *** Quits: Starwatcher (patrick@off) (Quit: leaving)
02:23 *** Joins: Sombra (Iceman@Pony-6eg.3uv.42.96.IP)
02:25 <Cepheid> ADragonDreaming: I don't know how that one woman figured out Kynesgrove was the next target using that map. That map is useless.
02:27 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
02:27 <ADragonDreaming> http://majamaki.com/wp-content/uploads/2011/12/skyrim-dragonstone-map-lg.jpg
02:27 <ADragonDreaming> Take this and layer it over the actual map.
02:27 <Cepheid> I know, it's just when I do try to layer it over the map, the locations don't match up.
02:28 <ADragonDreaming> Then, circle the dragon burial mounds that were already empty. Look for a pattern.
02:28 <ADragonDreaming> You'd need the map she was using.
02:28 <Cepheid> I have the map she was using. I took it from the table.
02:28 <ADragonDreaming> I don't have an image of that.
02:29 <Cepheid> It's just that the locations the map points to don't have a burial mound there.
02:29 <ADragonDreaming> You've checked?
02:30 <Cepheid> I'm looking for the one to the west and slightly to the south of the Kynesgrove one. I can't find it.
02:30 *** Joins: BlackSentinel (BlackSentin@behind.you)
02:30 <Cepheid> Oh, wait, I found it.
02:30 <Cepheid> Actually I found the one south-west of it.
02:31 <ADragonDreaming> Har.
02:34 <Cepheid> Okay, let's do this in a simpler manner. We know the location of the Kynesgrove mound. So according to the map, I should find one west-southwest.
02:36 <Cepheid> Right, the map clearly isn't proportionally correct or to scale. If it was, the nearest mound would be smack in the middle of kynesgrove.
02:38 <Cepheid> Hmm. Found that one, so the next should be around... there.
02:39 *** Joins: Nedemai (Nedemai@fluttershy.is.best.pony)
02:39 *** ChanServ sets mode: +h Nedemai
02:40 *** Joins: Nuclear (Nuclear@Pony-tomkks.pools.spcsdns.net)
02:41 <Cepheid> There we are. Next one... Got that one already? Unless the mound is a bit further behind that wall spot.
02:41 <ADragonDreaming> turn off clipping. Fly into the air.
02:42 *** Quits: LadyMelody (Ponies@Nopony.Important) (The TLS connection was non-properly terminated.)
02:42 <Cepheid> I'd prefer to see if I can find 'em without cheating.
02:42 *** Quits: Sketchy_Sounds (Sketchy@strings.and.ink) (Quit: Sleep!)
02:42 *** Joins: Gladiolus (Corey@hugbat.is.hugging.you)
02:42 *** Joins: LadyMelody (Ponies@Nopony.Important)
02:46 *** Quits: TheDerpter (TheDerpter@Pony-fm43g8.ma.comcast.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
02:48 <Divide|Tech> I just properly informed my coworkers that I am now going to *facepillow*
02:48 <Cepheid> Pillow-on! Apply directly to the forehead!
02:49 *** Joins: Thy (uid63062@Pony-4fi8tg.hathersage.irccloud.com)
02:49 <Schism> This is of course entirely correct and precisely what will now occur.
02:49 <Jackie_> Sorry, I don't have that module, Schism.
02:54 *** Timid|Work is now known as TimidTanuki
02:59 * ADragonDreaming is doing follow-up e-mails.
02:59 *** Quits: Nuclear (Nuclear@Pony-tomkks.pools.spcsdns.net) (Ping timeout: 121 seconds)
02:59 *** Quits: Gladiolus (Corey@hugbat.is.hugging.you) (Quit: Leaving)
03:00 <Gilda> Huh
03:01 *** Joins: cabbage (cabbage@Pony-mbeoo9.dynamic.fusionbroadband.com)
03:03 <Cepheid> Right, right. Flame Atronochs explode on death.
03:03 *** Joins: Nuclear (Nuclear@Pony-tomkks.pools.spcsdns.net)
03:04 <ADragonDreaming> Yes.
03:04 <DerpyBot> New post on Equestria Daily by Sethisto: WatchMojo's MsMojo did a Top 10 Pony Characters [ http://tinyurl.com/hr29uf3 ]
03:05 *** Quits: Diane_Ponk (Diane_Ponk@Pony-5fspki.versanet.de) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
03:06 *** Joins: Llybel (Llybel@Pony-o78vjm.cable.virginm.net)
03:06 *** Quits: Llybel (Llybel@Pony-o78vjm.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
03:07 *** Joins: Llybel (Llybel@Pony-o78vjm.cable.virginm.net)
03:08 *** Quits: Nedemai (Nedemai@fluttershy.is.best.pony) (Quit: Leaving)
03:19 <Cepheid> Hum, found the next mound in the path. Next one looks to be...
03:20 <Cepheid> Out in the lake near Riften.
03:23 *** Quits: DARK (DARK@Pony-0vjtbk.044o.qq38.0e35.2a01.IP) (Quit: You're so zetta slow!)
03:23 <Cepheid> And how convenient. Islands I can't get onto.
03:26 *** Quits: Scootaloo (wobniaR@Monoshy.Hydra.Fighter.64) (Quit: 🆒🆒🆒)
03:27 <Cepheid> And I found the first mound in the path.
03:27 <Cepheid> And nearby, some ruins, and a dragon wall.
03:30 *** Joins: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de)
03:32 <Moonlightning> Jackie_: argparse :P
03:32 <Moonlightning> interpreting argv yourself is...very bleh
03:33 *** Joins: MisterRogers_ (MisterRoger@Pony-mtbb9h.static.versatel.nl)
03:34 *** Quits: MisterRogers (MisterRoger@Pony-mtbb9h.static.versatel.nl) (Ping timeout: 121 seconds)
03:34 *** MisterRogers_ is now known as MisterRogers
03:34 *** Quits: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
03:35 <Sombra> Maybe i should play some, C&C 3
03:38 *** Quits: Gilda (FallSilent@silently) (Quit: )
03:38 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
03:38 *** Joins: MisterRogers_ (MisterRoger@Pony-mtbb9h.static.versatel.nl)
03:39 *** Quits: MisterRogers (MisterRoger@Pony-mtbb9h.static.versatel.nl) (Ping timeout: 121 seconds)
03:39 *** MisterRogers_ is now known as MisterRogers
03:40 * Cepheid giggles at all the ghosties in Forelhost STronghold. IT does nothing. NOTHING!
03:41 <ADragonDreaming> Giggle at them with fire.
03:41 * ADragonDreaming goes to giggle at ghosties in Jade Empire now that some work has been done.
03:41 *** Joins: BlackSentinel (BlackSentin@behind.you)
03:42 <Cepheid> I just shoot 'em full of arrows. WOrks just as well.
03:43 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
03:46 *** Quits: Saerydoth (akai@Pony-lhs471.res.rr.com) (Quit: Leaving)
03:47 *** Joins: BlackSentinel (BlackSentin@behind.you)
03:49 *** Joins: Saerydoth (akai@Pony-lhs471.res.rr.com)
03:50 *** Quits: ThatAnonPony (Pony66640@Pony-i454b4.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
03:53 *** Quits: Thy (uid63062@Pony-4fi8tg.hathersage.irccloud.com) (Quit: )
03:58 <Cepheid> Oh my gods Lydia, where did you get that staff from!? WHY ARE YOU RAISING THE DEAD!?
04:07 *** Quits: The_Nostalgia_Mare (Nossy@Pony-c9jj2q.brpm.oqg9.0342.2601.IP) (Quit: I do talk but I nom. o3o)
04:09 *** Joins: unicodingunicorn (unicodingun@small.floofy.uni.pone)
04:11 *** Quits: uni (unicodingun@Pony-5gqbeu.n4ri.ljqb.e800.2404.IP) (Ping timeout: 121 seconds)
04:21 *** Joins: Nicktendonick (Nicktendoni@Pony-77jca1.res.bhn.net)
04:21 <Cepheid> Hum, Thalmor impersonating an officer.
04:21 * Cepheid murders.
04:22 *** Quits: Sombra (Iceman@Darkhorse21) (Quit: quit)
04:23 <Cepheid> Dead before you even regenerated, dragon.
04:26 <Cepheid> I just learned a terrible lesson.
04:26 <Cepheid> Storm shouts will kill my followers.
04:27 <Cepheid> I did that lightning storm shout. First lightning bolt to strike hit and killed Lydia.
04:34 *** _____ is now known as SleepingBat
04:34 *** Joins: Thelema5 (Thelema5@is.a.curious.pone)
04:34 <Thelema5> Hello, everypony
04:38 <Cepheid> Hoi.
04:39 <Electron> Hey.
04:39 *** Joins: Starwatcher (patrick@off)
04:39 <Starwatcher> hia
04:41 * Electron watches Starwatcher
04:42 <Thelema5> Hello, Starwatcher
04:42 <Thelema5> What stars are you watching tonight?
04:43 <Jackie_> I'm remixing music from a midi
04:44 * Starwatcher watches Electron, careful not to collapse their wavefunction
04:44 <Starwatcher> alas, none
04:45 <Starwatcher> I'm in san francisco for a conference, cannot see the stars here.
04:45 <Electron> What music, Jackie_?
04:46 <Jackie_> Electron: OpenTTD's Chemical Lab
04:47 <Electron> Huh? What genre is that?
04:48 <Thelema5> Conference for work or pleasure?
04:51 <Electron> Pleasure conference.
04:51 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
04:51 <Electron> Sounds fishy.
04:53 <Thelema5> Nah, I work in the conference and convention industry- there are lots of conferences people attend for personal enjoyment
04:54 <Starwatcher> oh
04:54 <Starwatcher> work, Thelma5
04:54 <Starwatcher> american geophysical union fall meeting
04:54 <Starwatcher> presenting some work we did ^^
04:54 <Thelema5> My hotel hosted an HP Lovecraft conference a few years ago- most people attended for pleasure
04:54 <Thelema5> Sounds exciting, Starwatcher
04:55 <Electron> Cool.
04:56 <Starwatcher> awesome
04:56 <Jackie_> heh might be the nest musician brony
04:56 <Thelema5> Starwatcher, you'll be departing from the convention tomorrow? I hope you have a safe trip!
04:56 <Jackie_> *next
04:56 <Thelema5> Hello, Jackie_. Care to share an example of your work?
04:56 *** Joins: BlackSentinel (BlackSentin@behind.you)
04:57 *** Joins: MisterRogers_ (MisterRoger@Pony-mtbb9h.static.versatel.nl)
04:58 * Thelema5 waves at BlackSentinel and MisterRogers
04:58 <Jackie_> sure
04:59 <Starwatcher> thanksies Thelema5
04:59 *** Quits: MisterRogers (MisterRoger@Pony-mtbb9h.static.versatel.nl) (Ping timeout: 121 seconds)
04:59 * Starwatcher smiles
04:59 *** MisterRogers_ is now known as MisterRogers
05:00 <Electron> Have fun, Starwatcher
05:01 <Thelema5> !link hayburger
05:01 <DerpyBot> Twilight says she doesn't have anything in the library about that
05:01 <Thelema5> O.o
05:01 <Thelema5> !link Hay Burger
05:01 <DerpyBot> http://derpibooru.org/560144
05:02 <Thelema5> Can you tell that I'm hungry? :p
05:03 <Electron> !link http://sir-teutonic-knight.deviantart.com/art/Hayburger-443529323
05:03 <DerpyBot> Twilight says the library only has pictures from e621 and derpibooru, videos from youtube and books from google docs.
05:03 <Electron> Seems legit.
05:05 <Thelema5> Totes
05:07 <Electron> I want a pony themed T-shirt too.
05:08 <Snapai> blaaa, why do I never wanna stream T_T
05:08 *** Quits: ADragonDreaming (IceChat9@Pony-2ga.e7q.56.172.IP) (Ping timeout: 121 seconds)
05:09 <Electron> Huh? What stream?
05:10 *** Quits: Cepheid (Cepheid@tick.tock.tick.tock.goes.the.clock) (Quit: Leaving)
05:11 <Schism> There, it's 12:08, there are now meat pies in the oven and the thermo's turned on in the blasted locale and I think that I'm going to commit murder against anyone who enters this locale and attempts to coin a riddle.
05:12 <Thelema5> You lost me after met pies
05:12 <Thelema5> *meat
05:12 <Schism> First: thermostat is turned on.
05:13 <Schism> Second: anyone who wants to play sphinx had better make darned sure they can take off a head with a single swipe, because otherwise they will have some issues speaking.
05:13 <Thelema5> I would hope so. The outside temps are down to -7.8 here at the moment
05:14 <Thelema5> (celsius)
05:15 <Schism> It is -12 at the time.
05:15 <Snapai> Electron, sometimes I do art or animation and stream it
05:15 <Electron> Alright.
05:16 <Thelema5> Brrr
05:16 <Thelema5> I enjoy watching Snapai's streams... they're cathartic in a sense
05:17 <Thelema5> (coming from one who cannot draw even a stick figure)
05:17 <Schism> You have a fine sense of music, Jaye, you needn't concern yourself unduly.
05:18 <Thelema5> XD
05:18 <Thelema5> This is my best attempt yet at drawing a pony http://i.imgur.com/3QfF1J2.jpg
05:18 <Electron> It's smiling!
05:18 <Electron> Yay!
05:18 <Thelema5> Like a disabled 5 year old drew it ah ha ha
05:19 <Schism> Like Rembrandt, you are, compared to myself.
05:20 <Thelema5> XD
05:20 <Thelema5> Thanks, Yoda
05:21 <Schism> Hey, it only /sounds/ like I'm joking.
05:23 <Electron> Too subtle humor.
05:23 <Electron> Make it thicker, please.
05:23 * Electron peeks over Snapai's shoulder
05:26 *** Quits: Pi (Mibbit@Pony-5lu.v02.53.122.IP) (Quit: http://www.mibbit.com ajax IRC Client)
05:26 <Thelema5> This stuff is my only art
05:27 <Thelema5> !link https://youtu.be/Hce5_yRkvEE
05:27 <DerpyBot> Twilight told me this video is about Exploring the Abandonded Ruins of the Overlook Hotel | Catskills Hiking | Ulster County, NY
05:27 <Electron> I drew ConfusionRift once.
05:27 <Electron> No, twice.
05:27 <Thelema5> Please share?
05:27 <Electron> I can't. :I
05:27 <Thelema5> :(
05:27 <Thelema5> Such is life
05:28 <Electron> I don't have those links.
05:28 <Electron> I also made a lineart of Heartbreak.
05:28 *** Joins: MisterRogers_ (MisterRoger@Pony-mtbb9h.static.versatel.nl)
05:28 <Electron> This one I can link.
05:29 *** Quits: MisterRogers (MisterRoger@Pony-mtbb9h.static.versatel.nl) (Ping timeout: 121 seconds)
05:29 * Electron goes to HB's fimfiction page
05:29 *** MisterRogers_ is now known as MisterRogers
05:29 *** Joins: Pi (Mibbit@Pony-5lu.v02.53.122.IP)
05:30 <Electron> Here: http://www.fimfiction.net/blog/578440/its-that-time-again-lets-see-some-fan-art
05:31 <Electron> > "he hates nose boops"
05:31 <Electron> No, I do not!
05:31 * Electron :I
05:31 <Thelema5> HEH
05:32 <Electron> You can post all caps message?
05:32 <Electron> Ver OP.
05:32 <Thelema5> The limit is 5 characters, I think
05:32 <Electron> *very much
05:32 <Thelema5> LETS
05:32 <Thelema5> CHEC
05:33 <Thelema5> Ah, 5 characters
05:33 <Thelema5> Yes.
05:33 <Electron> Alrighty then.
05:34 *** Joins: Ali (Ali@Pony-cvibue.iplsin.sbcglobal.net)
05:34 *** ChanServ sets mode: +qo Ali Ali
05:34 <Thelema5> Hi there, Ali!!!
05:34 * Ali wavies tiredly.
05:35 <Thelema5> You work too hard, put your hooves up and relax
05:35 <Ali> More like hardly working but still getting paid...
05:36 * Electron hovers around
05:37 <Thelema5> That'sgood work if you find it
05:37 <Thelema5> *that's good
05:37 <Ali> Won't....have it much longer..
05:40 <Thelema5> Blech. Sorry to hear that
05:40 <Thelema5> Scam the bastards as long as you can!
05:42 <Jackie_> do you know a furry comic named zoophobia?
05:44 <Nicktendonick> http://www.youtube.com/channel/UCML0bHdDdeSHp7EUfGHmS-A/live Streaming some 3DS Smash with a friend.
05:46 *** Joins: ADragonDreaming (IceChat9@Pony-m8lg0k.mi.comcast.net)
05:46 *** ChanServ sets mode: +o ADragonDreaming
05:47 * Thelema5 is trying to remain neutral in future activities
05:50 *** Joins: Reia (Reia@TheCowPony)
05:54 *** Joins: MisterRogers_ (MisterRoger@Pony-mtbb9h.static.versatel.nl)
05:55 *** Quits: MisterRogers (MisterRoger@Pony-mtbb9h.static.versatel.nl) (Ping timeout: 121 seconds)
05:55 *** MisterRogers_ is now known as MisterRogers
05:55 <Starwatcher> mister rogers is a cool name
05:56 <Starwatcher> ....
05:57 <Starwatcher> sigh. I'm just not good enough.
06:00 *** Joins: KooK (KooK@Pony-t2bvrf.client.mchsi.com)
06:01 <KooK> Gotta love it when some jerk hits your car in a parking lot and doesn't leave a note. Doesn't look like much damage, my rear bumpers marker light was hanging down, can't tell if there's more, it's too dark right now
06:02 <KooK> At least it's just my winter beater, but still pisses you off...
06:03 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
06:04 *** coco` is now known as sleepyfillycoco
06:04 <KooK> The one time I don't circle my car before I leave the parking ramp though... Go figure...
06:06 *** Joins: unicodingunicorn_ (unicodingun@Pony-f1g2ch.n4ri.ljqb.e800.2404.IP)
06:06 *** Joins: BlackSentinel (BlackSentin@behind.you)
06:09 *** Quits: unicodingunicorn (unicodingun@small.floofy.uni.pone) (Ping timeout: 121 seconds)
06:10 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
06:11 *** Quits: Filly_Nightmares (Surreal@Cutest.Floofy.Changeling.Batpone) (Quit: Floof)
06:13 *** Joins: BlackSentinel (BlackSentin@behind.you)
06:14 *** Joins: Nicktendonick_ (Nicktendoni@Pony-77jca1.res.bhn.net)
06:15 <CleverDerpy> derp?
06:16 <Starwatcher> derp.
06:17 <Starwatcher> hello derpy
06:17 *** Quits: Nicktendonick (Nicktendoni@Pony-77jca1.res.bhn.net) (Ping timeout: 121 seconds)
06:18 *** Quits: KooK (KooK@Pony-t2bvrf.client.mchsi.com) (Quit: Mutter: www.mutterirc.com)
06:18 <CleverDerpy> hiya Starwatcher
06:23 *** Quits: MisterRogers (MisterRoger@Pony-mtbb9h.static.versatel.nl) (Connection closed)
06:23 *** Joins: KooK (KooK@Pony-t2bvrf.client.mchsi.com)
06:24 <Starwatcher> the time has come.
06:25 <CleverDerpy> is it muffin time?
06:25 <CleverDerpy> derpy loves muffin time
06:26 *** Quits: KooK (KooK@Pony-t2bvrf.client.mchsi.com) (Quit: Mutter: www.mutterirc.com)
06:31 *** Quits: Thelema5 (Thelema5@is.a.curious.pone) (Ping timeout: 121 seconds)
06:32 <Starwatcher> muffin time it is.
06:33 *** Joins: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de)
06:36 <CleverDerpy> yay~
06:37 * CleverDerpy gets a basket of muffins
06:37 * CleverDerpy dishes one out to both of them
06:39 *** Joins: iandalton (user@Pony-btdjef.dynamic.tds.net)
06:39 <iandalton> Hello everypony
06:39 <iandalton> !muffin
06:39 <DerpyBot> Muffins!! You have any? :3
06:39 <CleverDerpy> hiya
06:40 <iandalton> yes
06:40 <DerpyBot> Thank you!!
06:40 * DerpyBot glomps iandalton
06:40 <iandalton> DerpyBot should get one too
06:40 <CleverDerpy> can I has muffin too?
06:40 <iandalton> Yes
06:40 <Schism> "Surely... surely that's impossible. Nopony can possibly perform a 3-act play in under 10 minutes, it surely can't be done."
06:41 <iandalton> I have poppy seed and chocolate from Costco
06:41 <iandalton> (those are two separate kinds)
06:41 <Schism> "That's physically impossible, yes?"
06:51 *** Quits: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
06:52 <Divide|Tech> And sleep I get...
06:52 *** Divide|Tech is now known as Divide
07:04 *** Quits: HyperDash (HyperDash@Pony-pveddk.wa.comcast.net) (Connection closed)
07:06 *** Quits: Arkomeda (GreekOwl@Pony-aijakq.eis7.8aea.0587.2a02.IP) (Connection closed)
07:10 <Schism> Darnit.
07:10 <Schism> I was hoping to get some sleep tonight. And one of my favourite fics updated with no fewer than 12,000 words.
07:10 <iandalton> oh, what fic is it?
07:10 <iandalton> I've suddenly got a lot of free time on my hooves
07:11 <iandalton> classes are over
07:11 <Schism> Diaries of a Madman.
07:11 <Schism> If you intend to look it up, be advised, A. it's rated X, and B. it's well over a million words long.
07:13 <Schism> I understated the case. TWO million words.
07:22 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
07:25 *** Joins: BlackSentinel (BlackSentin@behind.you)
07:27 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
07:30 *** Joins: BlackSentinel (BlackSentin@behind.you)
07:34 *** Quits: Starwatcher (patrick@off) (Quit: Lost terminal)
07:38 <iandalton> Schism: I read the prologue. Interesting.
07:43 <Schism> It becomes rather more interesting as it carries on. Around chapter 50, it really starts to get going.
07:47 <iandalton> This is way too bucking long
07:48 *** Quits: Crimson_Tail (Zeta@batpones.are.for.snuggles) (Quit: Ping timeout: -1 second)
07:49 <iandalton> Hey, this was written pre-Twilicorn
07:49 <iandalton> at least, Twilight's a unicorn so I assume so
07:53 <Surreal_Nightmares> More floof
07:56 *** Joins: Sombra (Iceman@Pony-6eg.3uv.42.96.IP)
07:57 *** Quits: ADragonDreaming (IceChat9@Pony-m8lg0k.mi.comcast.net) (Ping timeout: 121 seconds)
07:58 <iandalton> Schism: am I to understand that Navarone is a teenager?
08:01 <Golden> Good night everyone
08:02 *** Quits: Nicktendonick_ (Nicktendoni@Pony-77jca1.res.bhn.net) (Ping timeout: 121 seconds)
08:02 *** Quits: Golden (Golden@Pony-0bbtn5.co.comcast.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
08:09 <CleverDerpy> derp~
08:10 <CleverDerpy> hey, you guys wanna see a funny documentary?
08:10 *** Joins: Solis (BookOfKenzi@Fire.Is.Love.Fire.Is.Life)
08:10 <CleverDerpy> you all heard of fantastic beasts and where to find them
08:10 <CleverDerpy> right?
08:10 <Surreal_Nightmares> Yis
08:10 <CleverDerpy> well, derpy found a sister series.
08:11 <Surreal_Nightmares> I was with my friends, but we decided to go for Doctor Strange instead
08:11 *** Joins: unicodingunicorn (unicodingun@small.floofy.uni.pone)
08:11 <iandalton> good choice
08:11 <CleverDerpy> it's called Ultra Beasts, and where to pinpoint them! http://www.serebii.net/sunmoon/ultrabeasts.shtml
08:12 <Surreal_Nightmares> That movie was trippy
08:12 <iandalton> ah, the good old days of web design
08:13 *** Quits: unicodingunicorn_ (unicodingun@Pony-f1g2ch.n4ri.ljqb.e800.2404.IP) (Ping timeout: 121 seconds)
08:14 <CleverDerpy> still the actual author of the site did make that joke on pokemon sun and moon's release date
08:14 <CleverDerpy> which was when the fantastic beasts movie first came out
08:15 <iandalton> wait, that's a modern website?
08:15 <iandalton> I assume it has been around for a long time without changing its appearance
08:15 *** Quits: cabbage (cabbage@Pony-mbeoo9.dynamic.fusionbroadband.com) (Connection closed)
08:16 <CleverDerpy> since the early 2000s
08:16 <CleverDerpy> I dunno, it's got an old time charm to it, imo
08:17 <CleverDerpy> although one guy has been writing it since then almost daily
08:17 <iandalton> Like I said, the good old days
08:17 <CleverDerpy> which is pretty on par, if not more, than seth\
08:17 <iandalton> when a page didn't take any more RAM than the HTML and PNGs it was made of
08:18 * iandalton glares at his 200MB tabs
08:18 <Surreal_Nightmares> .3.
08:24 *** Surreal_Nightmares is now known as Sleeping_Nightmares
08:24 *** Joins: SunsetShimmer (DJPon3IsHer@Pony-1jt.kgb.176.109.IP)
08:24 *** ChanServ sets mode: +o SunsetShimmer
08:25 *** Quits: Sombra (Iceman@Darkhorse21) (Ping timeout: 121 seconds)
08:30 *** Quits: Reia (Reia@TheCowPony) (Quit: Nini ponies. Love you all)
08:33 <Electron> ( `—`)
08:34 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
08:37 *** Joins: BlackSentinel (BlackSentin@behind.you)
08:39 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
08:42 *** Joins: BlackSentinel (BlackSentin@behind.you)
08:47 *** Quits: WuBzY (wubzy@wubz.that.is.all) (Connection closed)
08:48 *** Joins: WuBzY (wubzy@wubz.that.is.all)
08:48 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
08:52 *** Joins: BlackSentinel (BlackSentin@behind.you)
09:17 *** Quits: Pi (Mibbit@Pony-5lu.v02.53.122.IP) (Quit: http://www.mibbit.com ajax IRC Client)
09:23 *** Joins: Pi (Mibbit@Pony-5lu.v02.53.122.IP)
09:29 *** Quits: Llybel (Llybel@Pony-o78vjm.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
09:34 *** Joins: PostNinja (Mibbit@Pony-mat4vn.koas.jyu.fi)
09:38 *** Joins: chatted (chatted@Pony-cbo.nit.211.95.IP)
09:39 <chatted> hey guys
09:39 *** chatted is now known as chatter
09:41 *** Quits: chatter (chatted@Pony-cbo.nit.211.95.IP) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
09:41 *** Joins: Double (Double@Pony-7mn.rrd.70.92.IP)
09:42 *** Joins: Cepheid (Cepheid@tick.tock.tick.tock.goes.the.clock)
09:42 *** Joins: Cyan_Spark (Cyan_Spark@sparks.only.last.so.long)
09:43 *** Joins: Cepheid_ (Cepheid@Pony-h7h6jn.cable.rogers.com)
09:43 <Cepheid_> Thanks, Windows.
09:43 *** Quits: Cepheid (Cepheid@tick.tock.tick.tock.goes.the.clock) (Killed (NickServ (GHOST command used by Cepheid_!Cepheid@Pony-h7h6jn.cable.rogers.com)))
09:43 *** Cepheid_ is now known as Cepheid
09:57 * Cepheid listens as his stomach growls incoherently for a good five minutes straight.
09:59 <iandalton> Cepheid: nopony should ever thank Windows for anything
09:59 <Cepheid> It was sarcasm.
10:01 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
10:01 *** Joins: Banoffee (Banoffee@Pony-ddv.eu8.252.148.IP)
10:01 *** Quits: Banoffee (Banoffee@Pony-ddv.eu8.252.148.IP) (Connection closed)
10:01 *** Joins: Banoffee (Banoffee@Pony-ddv.eu8.252.148.IP)
10:01 * Ali gives Cepheid food.
10:01 * Electron offers Cepheid a sandwich
10:02 * Cepheid noms the sandwich from Electron. And part of his hoof.
10:02 <Electron> :O
10:04 *** Joins: BlackSentinel (BlackSentin@behind.you)
10:05 <Cepheid> I don't understand why I am so unbelievably hungry right now. I ate before bed ~5 hours ago.
10:06 <Electron> Pffft.
10:07 <Electron> Whole 5 hours.
10:11 * Cepheid unleashes an enraged, frenzied Zinogre upon Electron.
10:25 *** Joins: DoubleDouble (Double@Pony-7mn.rrd.70.92.IP)
10:27 *** Quits: DoubleDouble (Double@Pony-7mn.rrd.70.92.IP) (Quit: Bye)
10:28 *** Quits: Double (Double@Pony-7mn.rrd.70.92.IP) (Ping timeout: 121 seconds)
10:28 * Cepheid cracks knuckles. *CRICK* *CRACK* *POP* *SQEAL* ... Wait, squeal?
10:32 *** unicodingunicorn is now known as uni
10:43 <Cepheid> "Area of Effect Hiccups centered on target"
10:45 <Cepheid> "Cow falls from the sky on the target." "Target's gender is changed." "Target becomes itchy" - All effects of Wild Magic in Baldur's Gate, apparently.
10:49 *** Joins: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de)
10:53 *** Quits: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
10:54 *** Quits: Banoffee (Banoffee@Pony-ddv.eu8.252.148.IP) (Ping timeout: 121 seconds)
10:57 <Cepheid> Apparently, the second-highest HP monster in Monster Hunter Generations is now a hyper pickle.
10:59 *** Quits: Ali (Ali@Pony-cvibue.iplsin.sbcglobal.net) (Quit: Leaving)
11:00 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
11:04 *** Quits: Solis (BookOfKenzi@Fire.Is.Love.Fire.Is.Life) (Quit: Sayonara.)
11:04 *** Joins: BlackSentinel (BlackSentin@behind.you)
11:08 <DerpyBot> New post on Equestria Daily by Calpain: Morning Discussion #707 [ http://tinyurl.com/jxt9xqk ]
11:14 *** Quits: SunsetShimmer (DJPon3IsHer@DJ.Wub.Wub) (Ping timeout: 121 seconds)
11:15 *** Quits: Cepheid (Cepheid@tick.tock.tick.tock.goes.the.clock) (Quit: Leaving)
11:16 *** Quits: uni (unicodingun@small.floofy.uni.pone) (Ping timeout: 121 seconds)
11:18 *** Joins: SunsetShimmer (DJPon3IsHer@Pony-1jt.kgb.176.109.IP)
11:18 *** ChanServ sets mode: +o SunsetShimmer
11:21 *** Quits: Cyan_Spark (Cyan_Spark@sparks.only.last.so.long) (Quit: Sparks only last so long)
11:26 *** Joins: Scamer38 (Scamer38@Pony-2fh.4p4.250.212.IP)
11:28 *** Quits: Pi (Mibbit@Pony-5lu.v02.53.122.IP) (Quit: http://www.mibbit.com ajax IRC Client)
11:30 *** Quits: Scamer38 (Scamer38@Pony-2fh.4p4.250.212.IP) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
11:37 *** Joins: Cyan_Spark (Cyan_Spark@sparks.only.last.so.long)
11:46 *** Joins: Iks (Deggl@Pony-pm2.q4n.211.95.IP)
11:49 *** Quits: SunsetShimmer (DJPon3IsHer@DJ.Wub.Wub) (Ping timeout: 121 seconds)
11:51 *** Joins: Spikefan (Spikefan@Pony-lk3aln.optusnet.com.au)
11:51 <Spikefan> Hey
11:52 <Spikefan> Hey
11:52 *** Quits: Spikefan (Spikefan@Pony-lk3aln.optusnet.com.au) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
12:09 *** Joins: somepony (somepony@Pony-pagdfh.rev.stofanet.dk)
12:09 <DerpyBot> New post on Equestria Daily by Sethisto: 2017 Twisty Twirly Pony Brushables Appear on Entertainment Earth [ http://tinyurl.com/zchwnyx ]
12:10 <somepony> how do i see how may people are on this chat now?
12:11 <iandalton> type /names
12:12 <somepony> thanks :)
12:12 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
12:13 *** WorkFrame is now known as FreezeFrame
12:16 *** Joins: BlackSentinel (BlackSentin@behind.you)
12:18 *** Joins: KooK (KooK@Pony-t2bvrf.client.mchsi.com)
12:18 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
12:21 *** Joins: BlackSentinel (BlackSentin@behind.you)
12:21 *** Quits: KooK (KooK@Pony-t2bvrf.client.mchsi.com) (Quit: Mutter: www.mutterirc.com)
12:28 *** Joins: Pi (saxopi@Pony-6u2.rie.191.180.IP)
12:35 *** Joins: Double (Double@Pony-7mn.rrd.70.92.IP)
12:41 *** Joins: KooK (KooK@Pony-t2bvrf.client.mchsi.com)
12:44 *** Quits: KooK (KooK@Pony-t2bvrf.client.mchsi.com) (Quit: Mutter: www.mutterirc.com)
12:47 *** Joins: DARK (DARK@Pony-ovcl73.044o.qq38.0e35.2a01.IP)
12:47 <DARK> hello
12:49 *** Quits: iandalton (user@Pony-btdjef.dynamic.tds.net) (Quit: rcirc on GNU Emacs 24.5.1)
12:49 *** Quits: Pi (saxopi@Pony-6u2.rie.191.180.IP) (Quit: Bye)
12:52 <somepony> hi :)
13:14 *** Joins: Pi (saxopi@Pony-llr.4pn.146.49.IP)
13:16 <Schism> "I'll happily accept your assistance, but I can only pay you in unimaginable power."
13:22 *** Quits: Sleeping_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone) (Ping timeout: 121 seconds)
13:23 *** Quits: somepony (somepony@Pony-pagdfh.rev.stofanet.dk) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
13:25 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
13:27 *** Joins: WuBzY2 (wubzy@Pony-94slqi.dhcp.inet.fi)
13:28 *** Joins: BlackSentinel (BlackSentin@behind.you)
13:29 *** Quits: WuBzY (wubzy@wubz.that.is.all) (Ping timeout: 121 seconds)
13:30 *** Joins: Heartbreak (Heartbreak@Pony-vo1600.mn.comcast.net)
13:30 *** Joins: SunsetShimmer (DJPon3IsHer@Pony-j8af4e.as43234.net)
13:30 *** ChanServ sets mode: +o SunsetShimmer
13:32 * SunsetShimmer arrives back, freshly connected to working fully-functional interwebs
13:33 *** Quits: WuBzY2 (wubzy@Pony-94slqi.dhcp.inet.fi) (Quit: Fml)
13:35 *** Joins: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone)
13:38 *** Quits: Cyan_Spark (Cyan_Spark@sparks.only.last.so.long) (Quit: Sparks only last so long)
13:41 *** Joins: Diane_Ponk (Diane_Ponk@Pony-jjkdcu.versanet.de)
13:42 <Diane_Ponk> gooooooood ponk, everyponk
13:42 <Diane_Ponk> Something feels different, today. o. o
13:43 <Diane_Ponk> Lemme just go through my morning: wake up, get dressed and now I got my cup of coffee and I'm smoking my stick of dynamite.
13:43 *** Surreal_Nightmares is now known as Sleeping_Nightmares
13:43 <Diane_Ponk> Also: what is this hizzing sound?
13:44 * Diane_Ponk hugs SunsetShimmer
13:45 *** TimidTanuki is now known as TimidTanuki|Work
13:46 *** Joins: WuBzY (wubzy@wubz.that.is.all)
13:49 *** Quits: Sleeping_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone) (Ping timeout: 121 seconds)
13:49 <Diane_Ponk> Now what would be a good reaction to the phrase "Actors are people"? hm
13:49 <Diane_Ponk> When in doubt, quote Shakespear "All the world’s a stage,
13:49 <Diane_Ponk> And all the men and women merely players..."
13:51 * SunsetShimmer boops!
13:51 * Diane_Ponk giggles
13:52 <Diane_Ponk> "we are like you", but we are like you, too. o. o
13:53 *** Quits: Mike_Coltfield (Larscis@colt.in.the.rain) (Quit: Well, that was unexpected...)
13:54 *** Joins: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone)
13:55 *** FreezeFrame is now known as SleepFrame
13:58 *** Joins: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64)
13:58 <wobniaR> I'm da bes player then
14:00 *** Quits: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone) (Ping timeout: 121 seconds)
14:00 *** Joins: Bastion_2100 (Bastion_210@Pony-rnko0o.dynamic.surfer.at)
14:02 *** Quits: Bastion_2100 (Bastion_210@Pony-rnko0o.dynamic.surfer.at) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
14:05 <SunsetShimmer> Connection holding steady, woo~
14:06 *** Joins: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone)
14:11 *** sleepyfillycoco is now known as fillycoco
14:11 *** fillycoco is now known as snugs
14:12 *** snugs is now known as fillycoco
14:12 *** Quits: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone) (Ping timeout: 121 seconds)
14:16 *** Quits: Nuclear (Nuclear@Pony-tomkks.pools.spcsdns.net) (Ping timeout: 121 seconds)
14:18 *** Joins: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone)
14:25 *** Quits: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone) (Ping timeout: 121 seconds)
14:31 <wobniaR> For now!
14:31 * wobniaR disrupts SunsetShimmer's interwebs
14:32 <SunsetShimmer> Sombniar
14:34 *** Joins: Nuclear (Nuclear@Pony-qsgqh8.pools.spcsdns.net)
14:34 *** Joins: Mike_Coltfield (Larscis@colt.in.the.rain)
14:34 *** ChanServ sets mode: +o Mike_Coltfield
14:35 <Schism> "You are the LEAST empathic person I have ever met in my life. You are the very epitome of an asocial nutjob." "Yeah, and every aspect of your life just had to be orderly. So I'm a changeling, and you're a draconequus. Whoever brought us here sure had a sense of humor."
14:35 *** Quits: Double (Double@Pony-7mn.rrd.70.92.IP) (Connection closed)
14:36 *** Joins: Double (Double@Pony-7mn.rrd.70.92.IP)
14:36 <DataByte> what's that from, Schism?
14:37 <Schism> Personal fic I've had bouncing around my head for ages.
14:37 <DataByte> 4th wall break, or actual foreshadowing?
14:38 <Schism> I'm writing it scattershot as it comes. And neither, just the protagonists discussing the situation and assuming that when a multiversal shift is evident, then there's gotta be someone to blame.
14:39 * wobniaR leaves a backdoor in SunsetShimmer's interwebs, just in case
14:40 *** Joins: ADragonDreaming (IceChat9@Pony-m8lg0k.mi.comcast.net)
14:40 *** ChanServ sets mode: +o ADragonDreaming
14:40 <wobniaR> Now i just need a machine pistol with unlimited ammo and some fancy clothing and hair style
14:41 *** Quits: DARK (DARK@Pony-ovcl73.044o.qq38.0e35.2a01.IP) (Quit: You're so zetta slow!)
14:42 *** Quits: Apple_Bloom (uid52418@the.canon.pony) (Quit: Connection closed for inactivity)
14:42 *** Quits: Double (Double@Pony-7mn.rrd.70.92.IP) (Quit: Bye)
14:45 * SunsetShimmer snerks
14:46 <wobniaR> Symmetra is the new meta anyway
14:46 <SunsetShimmer> https://pbs.twimg.com/media/CzzizYdVEAAXwKu.jpg - So true! xD
14:47 <wobniaR> Free +75 regenerating health, 6 turrets right from the start, beam attack when fully charged destroys people in seconds
14:48 <wobniaR> Also auto-locks from a further distance than Winston's tesla gun
14:48 *** Joins: Bastion_2100 (Bastion_210@Pony-rnko0o.dynamic.surfer.at)
14:50 <wobniaR> Like imagine fighting a team with Symmetra+ Torb, you have people normally at 200 hp now at 350
14:54 *** Quits: ADragonDreaming (IceChat9@Pony-m8lg0k.mi.comcast.net) (Ping timeout: 121 seconds)
14:54 *** Quits: Bastion_2100 (Bastion_210@Pony-rnko0o.dynamic.surfer.at) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
14:56 <wobniaR> Either way i won't be home for the next 8 hours so no Overwatch for me
14:58 *** Joins: The_Nostalgia_Mare (Nossy@Pony-urlm8o.4pas.08cm.1006.2600.IP)
14:58 * SunsetShimmer patpats
14:58 *** The_Nostalgia_Mare is now known as Nossy|School
14:58 * wobniaR melts & turns into a puddle of sadness
14:59 <SunsetShimmer> Mei's event is easier to get gift boxes from thanks to the fact you can play with a good team, not do a thing, win and still get a notch up for a box.
14:59 <SunsetShimmer> thats kinda hilarious
14:59 *** Joins: Thelema5 (Thelema5@is.a.curious.pone)
14:59 <wobniaR> Yeah but if everyone does nothing then you'll never win
15:00 <Thelema5> Hello, everypony
15:00 <SunsetShimmer> I know, just saying that if everyone murders the other meis first.
15:00 <SunsetShimmer> Yo, Thelema5
15:00 <wobniaR> Pls it's not murder, just a friendly snowball fight
15:01 <wobniaR> With instakill snowballs
15:07 <wobniaR> I have like 10 emails i haven't responded to yet all week and a bunch of other documentation to complete
15:07 <wobniaR> I want to go home and sleep for 2 weeks straight
15:09 *** Quits: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64) (Connection closed)
15:09 *** Joins: CopperCrystal (tecuani@Pony-jm80sh.pools.vodafone-ip.de)
15:09 *** Joins: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64)
15:11 *** Joins: eXAKR (eXAKR@Pony-pmr.gqv.75.138.IP)
15:15 *** Quits: SunsetShimmer (DJPon3IsHer@DJ.Wub.Wub) (Ping timeout: 121 seconds)
15:15 *** Joins: SunsetShimmer (DJPon3IsHer@Pony-d7q85v.as43234.net)
15:15 *** ChanServ sets mode: +o SunsetShimmer
15:16 <Sour_Sweet> wobniaR: You'd wakeup decorated with permanent marker and all your plush gone.
15:16 <wobniaR> Pff you'll never find me or my plushes in time
15:17 <wobniaR> Luna will be the first one evacuated to the emergency bunker
15:17 <Thelema5> You mean the moon
15:18 <Thelema5> Evacuated for a thousand years
15:18 <Asoka> nope her on the moon is my secret base
15:18 <Sour_Sweet> 2 weeks is lots of time. Would still need a new passport and visa though
15:18 <wobniaR> No moon!
15:20 *** Quits: SunsetShimmer (DJPon3IsHer@DJ.Wub.Wub) (Connection closed)
15:20 *** Quits: Mike_Coltfield (Larscis@colt.in.the.rain) (Ping timeout: 121 seconds)
15:21 * wobniaR banishes Sour_Sweet to the sun for 2 weeks
15:22 <wobniaR> That's a vacation you need
15:22 <Asoka> the sun? to hot for my gusto
15:22 <Sour_Sweet> Please. Moon horse would save me
15:22 <wobniaR> Or so you think
15:22 *** Joins: Mike_Coltfield (Larscis@colt.in.the.rain)
15:22 *** ChanServ sets mode: +o Mike_Coltfield
15:23 <Mike_Coltfield> "Bug." -- My goldfish on the sun
15:23 <wobniaR> See the goldfish likes the sun
15:23 <wobniaR> Therefore sun is good
15:24 * Asoka banishes wobniaR for 2 weeks to eris
15:24 <wobniaR> Is it warm there? I like warm
15:25 <Asoka> nope
15:25 <wobniaR> Sadface
15:26 <Asoka> it is a dwarf planet in our solar system
15:27 *** Joins: SunsetShimmer (DJPon3IsHer@Pony-2ikrq5.as43234.net)
15:27 *** ChanServ sets mode: +o SunsetShimmer
15:27 <Asoka> and a aphelion from 97.651 AU
15:28 <wobniaR> Save me SunsetShimmer i don't like the cold i like warm
15:28 <wobniaR> Use your sun powers or something
15:28 <SunsetShimmer> !link sunny
15:28 <DerpyBot> https://derpibooru.org/5947
15:28 <SunsetShimmer> Oh god.
15:28 <wobniaR> What
15:28 <wobniaR> That's not helping
15:28 <SunsetShimmer> I don't even.
15:29 <wobniaR> !link sun
15:29 <DerpyBot> https://derpibooru.org/613135
15:29 <wobniaR> That is what too
15:29 <Asoka> hey the temperature is between 30 and 55° Kelvin...
15:29 <wobniaR> Who links these things
15:29 <Sour_Sweet> See there is a good candidate: We send SunsetShimmer and her fav pony to the sun. Makes for some good grilled bacon and marshmallow
15:31 <DataByte> Asoka: Earth is a moon of Sol
15:31 <Asoka> DataByte: nope a planet
15:34 <Sour_Sweet> The definitions are quite arbitrary
15:36 * wobniaR arbitrarily denies Sour_Sweet access to the moon
15:38 <wobniaR> That means no big winghugs for you
15:42 <Finwe> o3o
15:42 <Finwe> Good afternoon, my small perissodactyls.
15:42 *** Quits: Nossy|School (Nossy@Pony-urlm8o.4pas.08cm.1006.2600.IP) (Quit: I do talk but I nom. o3o)
15:44 * Finwe snuggles a wobniaR.
15:45 <wobniaR> What is this trend, i am not suited for snuggling
15:45 * Finwe snuggles nevertheless.
15:45 <wobniaR> Pls this isn't snuggleparth
15:45 <wobniaR> Y
15:46 <Sour_Sweet> You know what's really sad? The lack of Big Pony art from NCMares :P
15:46 <wobniaR> Didn't he just do a big Applejack piece?
15:46 <Sour_Sweet> Big AJ doesn't count
15:46 <Sour_Sweet> I want a big princess
15:46 <wobniaR> So picky
15:47 <wobniaR> Well go look at his big Luna piece a few more times
15:47 <Sour_Sweet> It's AJ c'mon. Almost as bad as Rarity 6_9
15:47 <wobniaR> It has striped socks like the ones you love
15:47 <Finwe> ...think about the socks you love...
15:48 <Finwe> So happy together...
15:48 <wobniaR> Anyone who doesn't like Applejack and Rarity is a heretic
15:49 <Sour_Sweet> Oh I like them. Just not nearly as much as the rest :P
15:49 * Finwe hugs a Sour_Sweet instead.
15:49 <Sour_Sweet> Despite Rarity being a unicorn. Have to give her credit for her lovely sister though
15:50 <wobniaR> Good good
15:50 *** Joins: Gilda (FallSilent@silently)
15:50 *** ChanServ sets mode: +ao Gilda Gilda
15:50 <Sour_Sweet> One good one "bad" sister seems to be a reoccurring theme in MLP
15:50 <wobniaR> Oh there's another huggable one go hug Gilda
15:50 <wobniaR> Excuse u they are a great sister pair
15:51 <wobniaR> Did you even sisterhooves social
15:51 <Sour_Sweet> Like that tiny apple horse. I love that one too
15:53 <wobniaR> Well yeah all the CMC are great
15:53 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
15:53 <wobniaR> Including honorary members
15:53 <Electron> :З
15:54 * Electron chuckles at "appul hoers"
15:54 <wobniaR> Apples
15:55 *** Joins: Crimson_Tail (Zeta@batpones.are.for.snuggles)
15:56 *** Joins: BlackSentinel (BlackSentin@Pony-e3k3om.cable.teksavvy.com)
15:59 <Sour_Sweet> I like the pear joke the fandom does.
15:59 <Sour_Sweet> Even though it makes little sense
16:00 <wobniaR> !link pear
16:00 <DerpyBot> https://derpibooru.org/741213
16:01 <wobniaR> That has no pears in it
16:03 <Sour_Sweet> "spear" huh
16:03 <wobniaR> Oh right
16:03 <wobniaR> Darn you Derpy!
16:03 *** Quits: SleepingBat (Nightshine@Squeaky.Cuddly.Batpony) (Ping timeout: 121 seconds)
16:04 <Sour_Sweet> !link https://derpibooru.org/862406
16:04 <DerpyBot> Twilight told me this picture is about rainbow dash paint applejack pinkie pie april fools (and 15 more)
16:08 <DataByte> Asoka: Ganymede is a planet of Jupiter
16:08 <DataByte> ;P
16:08 <Asoka> no a moon
16:08 <DataByte> :P
16:08 *** Joins: Lumindia_ (IceChat9@Pony-svre43.dhcp.embarqhsd.net)
16:09 <DataByte> Ganymede is 1.5*10^23 kg, and Mercury is 3.3#10^23 kg ;)
16:09 <wobniaR> Oh so that's what that birb is named aftwr
16:09 <DataByte> Pluto is 0.15
16:10 *** Joins: ADragonDreaming (IceChat9@Pony-m8lg0k.mi.comcast.net)
16:10 *** ChanServ sets mode: +o ADragonDreaming
16:16 *** Quits: Pi (saxopi@Pony-llr.4pn.146.49.IP) (Quit: rip)
16:19 * Electron dorks
16:20 <SunsetShimmer> <Sour_Sweet> I like the pear joke the fandom does.<Sour_Sweet> Even though it makes little sense - Oh, really? :P How does it not?
16:20 <Electron> Something like jokes about wheels.
16:20 <Electron> Don't trust them though.
16:20 <Sour_Sweet> Well as a farmer you'd expect her to like all kinds of fruits
16:21 <Sour_Sweet> Might even have pear family members
16:21 <SunsetShimmer> As a pony farmer, that doesn't strictly apply. :P
16:21 <Electron> All kinds of fruit? Like tomato?
16:21 *** Joins: Librarian (Librarian@Pony-s57.5r6.207.187.IP)
16:22 <Librarian> morning
16:22 *** Joins: Pi (saxopi@Pony-llr.4pn.146.49.IP)
16:22 <Electron> Hey.
16:24 *** Joins: WuBzY2 (wubzy@Pony-vntb8k.dhcp.inet.fi)
16:26 *** Quits: WuBzY (wubzy@wubz.that.is.all) (Ping timeout: 121 seconds)
16:26 *** Quits: WuBzY2 (wubzy@Pony-vntb8k.dhcp.inet.fi) (Quit: WeeChat 1.6)
16:26 *** Quits: Pi (saxopi@Pony-llr.4pn.146.49.IP) (Quit: Bye)
16:26 *** Joins: WuBzY (wubzy@wubz.that.is.all)
16:30 *** Quits: LadyMelody (Ponies@Nopony.Important) (Connection closed)
16:30 *** Joins: LadyMelody (Ponies@Nopony.Important)
16:31 * Electron gives a tomato to Sour_Sweet
16:33 *** Joins: Scootaloo (wobniaR@Pony-5tk0dq.sub-70-214-113.myvzw.com)
16:33 <Librarian> boss lady hasnt arrived yet
16:33 <Librarian> im worried she is always here
16:35 <Thelema5> Maybe she's holiday shopping
16:35 *** Joins: Lumin (IceChat9@Pony-svre43.dhcp.embarqhsd.net)
16:36 *** Quits: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64) (Ping timeout: 121 seconds)
16:36 <Thelema5> My boss isn't coming in at all today- I'm rather pleased about that
16:36 <Librarian> i like my boss
16:36 <Librarian> she is very nice
16:36 <Thelema5> Ah. Well I hope she's okay. I'm sure she's fine.
16:38 *** Quits: Lumindia_ (IceChat9@Pony-svre43.dhcp.embarqhsd.net) (Ping timeout: 121 seconds)
16:38 <Thelema5> My boss, on the other hand, is an angy old man with dementia
16:38 <Thelema5> *angry
16:39 <Thelema5> He gets confused very easily and then yells and curses at people out of frustration, calling them names and demeaning them.
16:39 <Thelema5> It's not a pleasant situation.
16:41 *** Quits: Lumin (IceChat9@Pony-svre43.dhcp.embarqhsd.net) (Ping timeout: 121 seconds)
16:42 *** Joins: Lumindia_ (IceChat9@Pony-svre43.dhcp.embarqhsd.net)
16:43 <Thelema5> Many people have suggested to him that he should retire (being 74 years old and all), but that just gets him more angry, causing him to accuse the person suggesting it of trying to steal his job and subvert the company
16:43 <Thelema5> Good times, good times.
16:44 <Scootaloo> Ugh
16:44 <Scootaloo> Dealing with people like that is awful
16:45 <Electron> Not good. :|
16:45 <Scootaloo> Even if he retires he's not in a good position either
16:45 <Thelema5> Yes. That's why I'm glad he's not coming in today XD
16:45 <Scootaloo> The job is probably what's keeping him somewhat lucid despite the onset of dementia
16:46 <Thelema5> That's probably true, but the stress will kill him one day. I have expected him to have a heart attack on the job for some time
16:47 <Thelema5> Someone turn up the heat, please!
16:47 * Thelema5 shivers
16:47 <Scootaloo> He really should look into getting something to manage the stress
16:48 <Scootaloo> It would improve his condition overall
16:48 <Scootaloo> Like set aside a half hour or something for himself during the workday to not do meetings or get mad
16:49 <Scootaloo> Having some downtime makes it easier to manage said stress
16:49 <Thelema5> Maybe I'll put some ponies in his office
16:49 <Thelema5> :p
16:50 <Scootaloo> You'll either make him explode or next day he'll come in with 20 brushables
16:50 <Scootaloo> And that'll be his stress relief
16:52 *** Joins: Coco_Nut (Coco_Nut@Pony-eca.tk3.255.85.IP)
16:54 <Librarian> my boss had a festival with her kids today
16:54 * Lumindia_ boops Scoootaboop
16:54 <Librarian> everything is peachy
16:56 <Scootaloo> Ew peaches
16:56 * Librarian apliies peaches
16:59 *** Joins: Nicktendonick_ (Nicktendoni@Pony-77jca1.res.bhn.net)
17:01 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
17:03 *** Joins: Bastion_2100 (Bastion_210@Pony-rnko0o.dynamic.surfer.at)
17:04 <Thelema5> Festivals are fun
17:04 *** Joins: BlackSentinel (BlackSentin@Pony-e3k3om.cable.teksavvy.com)
17:05 * Electron gives chocolate bar to Scootaloo. Peach flavoured
17:05 <Thelema5> Millions of peaches, peaches for me. Millions of peaches, peaches for free
17:06 * Thelema5 goes in search of a fork
17:06 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
17:06 * Scootaloo mails said bar back to Electron stomped into a million piecss
17:06 * Schism watches Twilight Sparkle eat a peach.
17:07 * Electron is fine about that
17:07 <Schism> Actually, peach-flavoured chocolate sounds delectable. Perhaps made into /hot/ chocolate, even.
17:07 * Schism mixes all the pieces into some cream with a bit of sugar added.
17:09 <DerpyBot> New post on Equestria Daily by Sethisto: Japan Running Another Big Pony Event - Cutie Mark Christmas [ http://tinyurl.com/hpatdub ]
17:10 *** Joins: BlackSentinel (BlackSentin@behind.you)
17:11 *** Quits: Heartbreak (Heartbreak@Pony-vo1600.mn.comcast.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
17:11 <Scootaloo> Peaches are one of the worst fruits
17:11 <Scootaloo> Next to plums
17:11 <SunsetShimmer> Never
17:11 <SunsetShimmer> both of those are great
17:11 <Scootaloo> Lies
17:11 <SunsetShimmer> juicy and lucious~
17:11 <Scootaloo> They're nasty and disgusting
17:11 <Scootaloo> Absolutely disgusting
17:13 <Schism> No, no. Kiwis are the worst fruit.
17:13 *** Joins: Nightshine (Nightshine@Squeaky.Cuddly.Batpony)
17:14 <Schism> Peaches are wonderful. Nine out of ten good bats agree.
17:14 <Bastion_2100> joi
17:14 <Bastion_2100> hoi
17:14 <Scootaloo> Kiwis are up there
17:14 <Nicktendonick_> http://www.youtube.com/channel/UCML0bHdDdeSHp7EUfGHmS-A/live Streaming some Super Smash Bros for 3DS. In the mood to play a few rounds.
17:14 *** Nightshine is now known as WorkingShybat
17:15 <Sour_Sweet> !mail Electron https://derpibooru.org/1318790
17:15 <DerpyBot> Mail delivered! Thank you for using the Derpy Mail Service 6_9
17:15 <Electron> Wrong pony got your mail.
17:15 * Electron derps
17:17 <Scootaloo> Those are some good smol horses 11/10
17:17 <Sour_Sweet> That's O.K. Derpy spreads the love
17:18 <Lumindia_> o 3o
17:18 * Lumindia_ is full of love!
17:18 * Lumindia_ hugs everypony
17:19 * Bastion_2100 hugs Lumindia
17:20 <Scootaloo> No love for me thanks i got some bbq
17:20 <Scootaloo> Mmm macaroni and cheese too
17:24 * Lumindia_ steals some
17:24 <Lumindia_> payment for me not loving you
17:27 *** Joins: Coco_Pommel (coco@Pony-n22tpd.ma.comcast.net)
17:27 *** Quits: Coco_Pommel (coco@Pony-n22tpd.ma.comcast.net) (Connection closed)
17:27 <Divide> Mmm. Greek salad with feta cheese dressing.
17:28 <Electron> Geek Salad?
17:30 *** Divide is now known as Divide|Tech
17:30 <Divide|Tech> Somewhat, yes.
17:38 *** Joins: Reia (Reia@TheCowPony)
17:45 *** Joins: Pony|95124 (Pony95124@Pony-i454b4.cable.virginm.net)
17:46 *** Pony|95124 is now known as ThatAnonPony
17:46 <Scootaloo> Ew salad
17:46 <Divide|Tech> Hey, a good hearty salad is awesome.
17:46 <Librarian> owo
17:47 <Librarian> my package is in customs
17:47 <Librarian> should arrive soon
17:47 <Scootaloo> I'd rather have extra salty ramen noodles
17:48 <Divide|Tech> Eldoon's noodles?
17:49 <Librarian> i hatesss waiting
17:50 <SunsetShimmer> x3
17:50 *** Quits: Gilda (FallSilent@silently) (Quit: )
17:50 * SunsetShimmer serves the hottest and saltiest noodles!
17:50 <Librarian> nuuu
17:50 <Librarian> i wants my noodles crunchy
17:51 <Librarian> (╯°□°)╯︵ ┻━┻
17:52 * Lumindia_ nomfs Sunset's snout
17:52 <Lumindia_> nomf
17:58 * Electron flips the table back ┬━┬ ノ(º_ºノ)
17:59 <Electron> You don't like peaches and salads, Scootaloo? What food do you like then?
18:00 *** Quits: LadyMelody (Ponies@Nopony.Important) (cadance.canternet.org cloudchaser.canternet.org)
18:00 *** Quits: Reia (Reia@TheCowPony) (Quit: Bye)
18:01 *** Joins: LadyMelody (Ponies@Nopony.Important)
18:01 *** Quits: SunsetShimmer (DJPon3IsHer@DJ.Wub.Wub) (Quit: Staaaaaaaaaaaaaaaay freeeeeeeesh!~)
18:02 *** Quits: eXAKR (eXAKR@Pony-pmr.gqv.75.138.IP) (Quit: Don't kill, and don't be killed, alright?)
18:02 *** Quits: Mike_Coltfield (Larscis@colt.in.the.rain) (Ping timeout: 121 seconds)
18:03 *** Joins: Starwatcher (patrick@off)
18:03 <Starwatcher> fools! all they have found is their own destruction.
18:03 <Electron> Was it a quote?
18:03 *** Joins: Mike_Coltfield (Larscis@colt.in.the.rain)
18:03 *** ChanServ sets mode: +o Mike_Coltfield
18:04 * Librarian finds a peso
18:04 <Librarian> pesoooo
18:07 *** Joins: SunsetShimmer (DJPon3IsHer@Pony-2ikrq5.as43234.net)
18:07 *** ChanServ sets mode: +o SunsetShimmer
18:09 <DerpyBot> New post on Equestria Daily by Sethisto: Integrity Toys Releases Fluttershy and Pinkie Pie Dolls [ http://tinyurl.com/z9jwglk ]
18:17 <Divide|Tech> wobniaR obviously likes chicken burgers. o3o
18:17 <Scootaloo> Many foods and no
18:18 <Scootaloo> I would bap you for that but I'm too full
18:18 * Scootaloo struggles to weakly boop SunsetShimmer
18:18 * Thelema5 offers scootaloo a mint.
18:19 <Divide|Tech> Ah, is merely a wafer-thin mint...
18:19 <Thelema5> XD
18:20 <Starwatcher> yes, the time has come.
18:21 * Librarian checks times
18:21 <Librarian> its still half an hour off
18:22 <Thelema5> Starwatcher, the time has come for what?
18:22 <CleverDerpy> it's muffin time~
18:22 <SunsetShimmer> For vague ponderings!
18:22 <CleverDerpy> aw, derpy wanted muffin time...
18:23 <Starwatcher> muffin tiiiiiiiiiime!
18:23 * Starwatcher brings more muffins
18:23 <CleverDerpy> yay~
18:23 <Starwatcher> I'm bored.
18:23 <Starwatcher> sitting in sanfrancisco airport waitingfor a flight
18:23 <Thelema5> Aaah.
18:24 <Electron> Throw a party.
18:24 <Thelema5> If you want some excitement, start acting suspicious and looking nervously back and forth at your luggage
18:24 <Starwatcher> hahaha
18:24 <Starwatcher> I think I'd have a bad time.
18:24 <Thelema5> You wouldn't be bored, though
18:24 <Starwatcher> "yes, yes soon they will all pay."
18:24 <Starwatcher> etc etc.
18:25 <Thelema5> Water-boarded, maybe
18:25 <Starwatcher> sent to gitmo?
18:25 <Electron> Or just put a sock on your head, throw your bag on the floor loudly and run away.
18:25 <Thelema5> To the moooon
18:25 <Starwatcher> I'd be dissapeared
18:25 <Starwatcher> the funny thing is I think that something like that could actually happen
18:25 <Starwatcher> it's not impossible.
18:25 <Thelema5> Of course. We live in bad times
18:25 <Starwatcher> but me, little old me
18:26 <Starwatcher> I just sit here with my poster tube all innocent
18:26 * Lumindia_ smooches Derpy
18:26 <Lumindia_> Hiya!
18:26 <Lumindia_> <3
18:26 * Lumindia_ had a chocolate chip muffin this morning
18:26 <Lumindia_> 'w'
18:27 <Thelema5> That poster-tube could be a very small missle launcher
18:27 <Thelema5> Lumindia gets all the nice things
18:28 *** Quits: SunsetShimmer (DJPon3IsHer@DJ.Wub.Wub) (Ping timeout: 121 seconds)
18:28 <Electron> Grenade launcher.
18:29 <Asoka> nope i use better the Puma
18:29 <Scootaloo> Or a totally sweet cupcake launcher
18:29 <Asoka> with the 30mm cannon and 5.56mm mg on board
18:29 <Asoka> and not to forget the big plus the modular armor
18:30 <Librarian> my vita arrived
18:30 <Librarian> im so happy
18:30 *** Joins: SunsetShimmer (DJPon3IsHer@Pony-2ikrq5.as43234.net)
18:30 *** ChanServ sets mode: +o SunsetShimmer
18:31 *** Joins: Apple_Bloom (uid52418@the.canon.pony)
18:31 <SunsetShimmer> I swear, this had better just be a one day adjustment period for the connection
18:31 * Electron whispers with SunsetShimmer's internet connection
18:31 <Scootaloo> Or else you'll get really mad?
18:31 <SunsetShimmer> I'll make a strongly worded call!
18:31 <Scootaloo> Cause your ISP sucksss
18:32 <Scootaloo> Making you wait like 2 weeks for new interwebs
18:32 <Electron> Don't mad SunsetShimmеr or else she can mind control again everypony around.
18:32 <SunsetShimmer> it's been hacked a few times, and has the worst record with blizzard games SPECIFICALLY, lol
18:32 <SunsetShimmer> it's prob's the worst of the UK, tbh
18:32 <Scootaloo> Mind control? Pff
18:32 <Scootaloo> Lies obv
18:32 <Scootaloo> More like nerd control
18:32 <Electron> Suuuure.
18:33 <Scootaloo> So only the biggest nerds would get mesmerized
18:33 <SunsetShimmer> David Tennant now plays scrooge mcduck
18:33 <SunsetShimmer> this is a glorious time to be alive
18:33 <Thelema5> O.o
18:33 <Electron> Whew, I dodge a bullet here.
18:33 <SunsetShimmer> new series of duck tales
18:33 <Thelema5> With David Tennant for real?
18:33 <SunsetShimmer> Yes
18:34 <Thelema5> That's amazing
18:34 <SunsetShimmer> IKR?
18:34 <Thelema5> XD
18:35 <Asoka> my ISP is to 50% communal and lies in the hands of the region hannover
18:36 <Starwatcher> hack the isp and take all the bandwidth for yourself.
18:36 <Asoka> Starwatcher: not possible
18:36 <Asoka> but o know the location from there server center
18:37 <Asoka> i use in the moment the physical maximal possible limit of the bandwith
18:39 <Thelema5> ... Bobby Moynaham is going to voice Louie in the duckTales reboot. Double awesome
18:40 <Asoka> nice
18:42 <Scootaloo> I only know David Tennant out of the list of actors announced
18:43 <Scootaloo> And i don't even watch Doctor Who
18:43 <Asoka> http://www.thedrive.com/news/6198/germanys-new-ford-mustang-gt-police-car-looks-rad <--- nice police car
18:46 <Electron> It sure is.
18:47 * Lumindia_ is a tiny potato
18:48 *** Quits: Lumindia_ (IceChat9@Pony-svre43.dhcp.embarqhsd.net) (Quit: Say What?)
18:48 *** Joins: Lumindia_ (IceChat9@Pony-svre43.dhcp.embarqhsd.net)
18:49 <Thelema5> Bobby Moynaham voices Panda on We Bare Bears
18:49 *** Joins: somepony (somepony@Pony-pagdfh.rev.stofanet.dk)
18:51 <somepony> hello ( ͡ᵔ ͜ʖ ͡ᵔ )
18:51 <Thelema5> That police car looks mecha
18:51 <Thelema5> Hello, somepony
18:51 <Thelema5> Welcome back!
18:51 <somepony> thanks :D
18:52 <Thelema5> !log
18:52 <Unixkitty> https://unixkitty.com/logs/EquestriaDaily/latest.log.html
18:55 <Thelema5> Somepony, have you watched any more episodes of the show?
18:55 *** Quits: Starwatcher (patrick@off) (Quit: Lost terminal)
18:55 <Scootaloo> Lenny face you say
18:59 <somepony> thelema5 yes, i have almost watched season 1
19:01 <Thelema5> Nice! I can't wait for you to get to season 4- it was my favorite
19:01 <somepony> sounds awsome :D
19:02 <Scootaloo> Wow I'm surprised, season 4 also had your most hated episode Thelema5
19:02 <Scootaloo> And most people were still getting over the Twilicorn drama
19:02 <Lumindia_> ( ͡° ͜ʖ ͡°)
19:03 <Thelema5> It had some of my least favorite episodes, but also some of my most loved
19:04 <Thelema5> I never cared for twilicorn drama, so I went in to the season with high hopes
19:05 <somepony> Lumindia_ go here: https://textfac.es/
19:06 * Lumindia_ boops somepny
19:06 <Thelema5> !link boop
19:06 <DerpyBot> https://derpibooru.org/69667
19:07 *** Joins: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de)
19:07 *** Thelema5 is now known as thelema5|away
19:12 <somepony> what does boop even mean?
19:13 <Scootaloo> A light touch on your nose
19:14 <Scootaloo> If you want it to be more like a punch in the nose it's bap
19:14 <somepony> oh ok, thank you :)
19:15 *** Joins: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone)
19:17 <Librarian> ma vita is so pretty
19:17 <Librarian> owo
19:17 * Librarian is happy
19:17 <Bastion_2100> a nose hit
19:18 <Librarian> coooombo breaker
19:21 *** thelema5|away is now known as Thelema5
19:21 <Thelema5> I'm glad you finally received it, Librarian
19:22 *** Quits: Mike_Coltfield (Larscis@colt.in.the.rain) (Ping timeout: 121 seconds)
19:24 *** Joins: Mike_Coltfield (Larscis@colt.in.the.rain)
19:24 *** ChanServ sets mode: +o Mike_Coltfield
19:24 <somepony> Librarian oh yeah i remember your ps vita
19:29 *** Quits: Coco_Nut (Coco_Nut@Pony-eca.tk3.255.85.IP) (Quit: Leaving)
19:33 <Thelema5> :p
19:33 <Thelema5> Libbrarian is a good pone
19:33 <Thelema5> *librarian
19:33 <Librarian> im a book owo
19:33 <Thelema5> !muffinkiss
19:33 * DerpyBot regurgitates a whole, fresh looking muffin and approaches Thelema5, showing her most adorable kissing face
19:34 * Scootaloo boops SunsetShimmer to stay up late for Overwatch
19:34 <Thelema5> !seen gladiolus
19:34 <DerpyBot> Thelema5: The last time I saw gladiolus was 2016-12-16 02:59:56 UTC
19:36 <Thelema5> How far in advance of a movie release are trailers usually put out?
19:36 <Bastion_2100> !link stug
19:36 <DerpyBot> Twilight says she doesn't have anything in the library about that
19:36 <Thelema5> A coule of months?
19:36 <Thelema5> *couple
19:37 <Koopz> depends on the moview
19:37 <Thelema5> Well I'm thinking specifically about the 2017 MLP feature
19:37 <Koopz> some like to show trailers over a year before the release
19:38 <Koopz> eh... could mistake those for teasers
19:38 <Koopz> teasers just make you mad...
19:38 <Koopz> "2019!"
19:38 <Koopz> o_o
19:38 <Koopz> !flip
19:38 * DerpyBot flies up in the air and does a backflip
19:38 * DerpyBot lands on her back. Ouch!
19:38 <DerpyBot> ¡ƃuoɹʍ ʇuǝʍ ʇɐɥʍ ʍouʞ ʇ,uop ʇsnɾ ı
19:39 <somepony> haha xD
19:39 <Koopz> !seen NoPonySpecial
19:39 <DerpyBot> Koopz: The last time I saw NoPonySpecial was 2016-03-08 23:22:42 UTC
19:39 <Koopz> !seen Faraday
19:39 <DerpyBot> Koopz: The last time I saw Faraday was 2014-12-30 19:58:51 UTC
19:39 <Scootaloo> We're not getting a trailer until later this year
19:40 <Scootaloo> Season 7 will be going by then
19:40 <Scootaloo> Maybe even done
19:40 <Scootaloo> Also not sure if this'll even be a full feature film
19:40 <Scootaloo> Or if they'll do limited theater release like with Equestria giels
19:40 <Scootaloo> Either way I'm going
19:41 <Surreal_Nightmares> !link skree
19:41 <DerpyBot> Twilight says she doesn't have anything in the library about that
19:41 <Thelema5> They said it was going to major distribution
19:41 <Surreal_Nightmares> !link floof
19:41 <DerpyBot> Twilight says she doesn't have anything in the library about that
19:41 <Surreal_Nightmares> !link bat
19:41 <Thelema5> It sounds to like they are planning to have it in theaters everywhere
19:41 <DerpyBot> https://derpibooru.org/759890
19:41 <Scootaloo> Good
19:41 <Thelema5> *to me
19:42 *** Scootaloo is now known as wobniaR
19:42 <Koopz> ...suggestive?
19:42 * Surreal_Nightmares hats on wobniaR
19:42 <Surreal_Nightmares> It has moonbutt flank
19:42 <wobniaR> They're going with an art style a lot closer to what we saw from uh
19:42 <wobniaR> Duocartoonist's newest one
19:42 <Koopz> let's flag everything suggestive where you can see cutie marks then
19:43 <wobniaR> It's still very show style but the ears are more defined and stuff
19:43 <Thelema5> Yeah, I saw some samples- I like the artstyle
19:43 <wobniaR> I do as well, it's a welcome improvement with what we got right now
19:43 <Koopz> i wonder if they'll use ToonBoom in S7
19:44 <wobniaR> Probably not
19:44 <Thelema5> I never got a chance to see any of the EqG films in a theater, so I'm pretty excited for the movie
19:44 <wobniaR> They'd have to either bring in people trained with toon boom or train internal staff to use that
19:44 <wobniaR> Which would take time when they're used to flash
19:44 <wobniaR> Yes get hypeee
19:45 <Koopz> eh... are they comissioning another studio for the movie?
19:45 <wobniaR> A full fledged MLP movie
19:45 <wobniaR> Yeah they got a whole other studio on it
19:45 <Koopz> bought them or just comissioned?
19:45 <Koopz> :D
19:45 * Surreal_Nightmares skreeee
19:45 <wobniaR> Neither, contracted
19:45 *** Quits: somepony (somepony@Pony-pagdfh.rev.stofanet.dk) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
19:46 <Koopz> !link moonbutt
19:46 <DerpyBot> https://derpibooru.org/696443
19:46 *** Quits: ADragonDreaming (IceChat9@Pony-m8lg0k.mi.comcast.net) (Ping timeout: 121 seconds)
19:46 <Koopz> wat do
19:46 <Surreal_Nightmares> !link russia
19:47 <DerpyBot> https://derpibooru.org/643766
19:47 <wobniaR> If you ask for butt you're gonna get suggestive results
19:47 <Surreal_Nightmares> !muffin
19:47 <DerpyBot> Muffins!! You have any? :3
19:47 <Surreal_Nightmares> Yus
19:47 <Surreal_Nightmares> Yes
19:47 <DerpyBot> Thank you!!
19:47 * DerpyBot glomps Surreal_Nightmares
19:47 * Surreal_Nightmares squish
19:47 <Surreal_Nightmares> !link squish
19:47 <DerpyBot> https://derpibooru.org/1118543?scope=scpef1769d6afa94a452c85332d83e7578d8e5517989
19:48 <Surreal_Nightmares> Squishy cheeks
19:48 <Thelema5> I just looked it up- yes, they are animating the movie with Toon Boom Harmony
19:48 <wobniaR> And that one nets you creepy onea
19:48 <wobniaR> Geez Lyra chillax
19:48 <wobniaR> Yeah that's why i said it's similar to Duocartoonist's style
19:50 <Librarian> the guy who walks one of my akita found a live bullet on the park
19:50 <Librarian> wonder if i should be worried
19:52 <Thelema5> Probably not
19:53 <Thelema5> I'd be more concerned about finding a spent bullet casing in the park. That would suggest that someone had been shooting there. A live round just means that someone dropped it.
19:53 <DerpyBot> New post on Equestria Daily by ExplodingPonyToast: Music: Ponytronic - Resumption (Protocat Remix) [Drum & Bass] [ http://tinyurl.com/jx6x833 ]
19:54 <Librarian> probably a cop
19:55 <Librarian> albeit some crazy teens did started shooting once there
19:55 <Librarian> its a reallly strange ouccrence
20:05 * CleverDerpy lays down and curls up\
20:05 <CleverDerpy> I am a cozy derp~
20:06 <Thelema5> being cozy is the best
20:07 <Thelema5> Maybe I'll go shooting this weekend
20:07 *** Joins: somepony (somepony@Pony-pagdfh.rev.stofanet.dk)
20:07 <Thelema5> It'll probably be to cold and miserable to go outside, though
20:10 <CleverDerpy> derp...?
20:10 <CleverDerpy> why will Thelema5 shoot stuff?
20:10 <CleverDerpy> isn't shooting bad?
20:10 <Surreal_Nightmares> Nah
20:10 <wobniaR> It's going to 60 on Sunday
20:11 <wobniaR> So relief is in sight
20:11 * Surreal_Nightmares chews on Thelema5
20:11 <CleverDerpy> surry, no... we don't chew on ponies
20:12 * Surreal_Nightmares eees at CleverDerpy and resumes her chewing.
20:12 * CleverDerpy gives her a mango "chew this instead~"
20:12 * Surreal_Nightmares hugs it instead.
20:12 <CleverDerpy> well, isn't that adorable~
20:14 *** Joins: Reia (Reia@TheCowPony)
20:15 *** Quits: Lumindia_ (IceChat9@Pony-svre43.dhcp.embarqhsd.net) (Ping timeout: 121 seconds)
20:17 <somepony> how did you guys discover this website?
20:18 <wobniaR> YouTube comment sections
20:18 * wobniaR baps SunsetShimmer before the snerk
20:19 <somepony> alright! i discoveret it by a youtube video.
20:21 <CleverDerpy> I was a member of the fandom and needed to find like minded people for the sake of further discoveries
20:21 * Diane_Ponk snuggles a CleverDerpy
20:21 <CleverDerpy> it grew into a long and wonderful friendship
20:21 * CleverDerpy purrs
20:21 *** Quits: ThatAnonPony (Pony95124@Pony-i454b4.cable.virginm.net) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
20:21 <CleverDerpy> hiya ponk
20:22 <Diane_Ponk> something funny happened in ponk land
20:23 <DataByte> you didn't put fireworks in a blender, did you?
20:23 <Diane_Ponk> despite the warnings of everyone my mother's gf got herself Final Fantasy XV, and to the surprise of noone I'm the one playing it. Addendum: No, I did that one last year.
20:25 <Diane_Ponk> When they said "Don't do this at home, kids." I didn't feel adressed enough, because I ain't no kid. And so I did the thing they said not to do.
20:26 <DataByte> I usually see those as an invite - within reason, of course xD
20:27 <Diane_Ponk> And the colors red, blue, grey and black do go well together.
20:27 <Diane_Ponk> In my face, not so much.
20:28 <DataByte> I sent this mini-conversation to the Pirate Dash mod - his response is bewilderment, and not appropriate for this room xD
20:28 <Diane_Ponk> One time I actually made my own fireworks, mixing blackpowder with mariuana.
20:28 <DataByte> hahahaha
20:28 <Diane_Ponk> It was a high explosive.
20:28 <Diane_Ponk> There is a Pirate Dash mod?
20:29 <Diane_Ponk> That causes bewilderment in me. o. o
20:29 <Diane_Ponk> Does Pirate Dash even know what "moderation" means?
20:30 <DataByte> that is a VERY good question
20:30 *** Quits: Reia (Reia@TheCowPony) (Quit: Bye)
20:30 <Thelema5> Heh
20:30 <Diane_Ponk> They told me to drink in moderation, so I became mod for a day so I can drink.
20:30 *** Quits: somepony (somepony@Pony-pagdfh.rev.stofanet.dk) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
20:31 <Diane_Ponk> I was kicked out for drunk modding.
20:32 <Diane_Ponk> Come to think of it, I actually WAS once a mod and drunk at the same time, so this doubles as pun and hilerious in hindsight.
20:32 <DataByte> This is the most merriment I have had all day, thankyou :)
20:34 *** Joins: Changeling_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone)
20:37 *** Quits: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone) (Ping timeout: 121 seconds)
20:37 *** Quits: CleverDerpy (CleverDerpy@Clever.Girl.Silly.Filly) (Connection closed)
20:37 *** Quits: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
20:38 <Sour_Sweet> Apparently there are horse masks now in GTA:O. Listening to friendship embracing music while wearing a horse mask and killing noobs with a sniper rifle. It's gonna be good! :D
20:43 <wobniaR> Boooring
20:43 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
20:43 *** Joins: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de)
20:43 * wobniaR 360noscopes Sour_Sweet
20:46 *** Changeling_Nightmares is now known as Filly_Nightmares
20:46 *** Joins: BlackSentinel (BlackSentin@behind.you)
20:48 * SunsetShimmer hacks wobniaR in revenge
20:48 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
20:49 <wobniaR> Come at me bro I'm behind 15 firewalls and 29 VPN's
20:49 * SunsetShimmer just unplugs wobniaR from the mains!
20:50 <wobniaR> Unpossible!
20:50 <SunsetShimmer> I was behind you the whole time~
20:50 <wobniaR> Luckily i still have 4g, you can't unplug that
20:50 * SunsetShimmer sliiides into Xmas kings row
20:50 <wobniaR> That's my new favorite themed map
20:51 <SunsetShimmer> It's great
20:51 *** Joins: BlackSentinel (BlackSentin@behind.you)
20:53 *** Quits: Nicktendonick_ (Nicktendoni@Pony-77jca1.res.bhn.net) (Ping timeout: 121 seconds)
20:59 <wobniaR> I want to swooce home right now
20:59 <wobniaR> Just one more hour
21:01 <SunsetShimmer> You know what feels better than one triple kill High Noon? 2.
21:01 <SunsetShimmer> POTG was mine~
21:02 <wobniaR> Whar
21:02 *** Joins: Pi (saxopi@Pony-llr.4pn.146.49.IP)
21:02 *** Joins: Cepheid (Cepheid@tick.tock.tick.tock.goes.the.clock)
21:02 <wobniaR> What feels better is killing a McCree high noon
21:02 <SunsetShimmer> >:
21:02 <SunsetShimmer> But true
21:02 <SunsetShimmer> I've done that too
21:03 <wobniaR> Where he goes "it's high nooo-blargh"
21:03 <SunsetShimmer> xD
21:03 <SunsetShimmer> ALL of those mid-kill BLARGHS are great
21:03 <SunsetShimmer> Pharah.
21:03 <SunsetShimmer> Death from abAARGH!
21:03 <SunsetShimmer> Well, Justice rains from...same thing
21:03 * Cepheid flails about.
21:03 <wobniaR> Justice is defined by the hand that deals it
21:04 <wobniaR> That's one thing i learned from 38 hours with Zenyatta
21:05 <Cepheid> http://imgur.com/gallery/Z7uAq
21:05 <wobniaR> I'd play him more but it's hard to get a team that'll synergize with him
21:05 <Cepheid> The shape of cats is defined by the bowl that they sleep within.
21:06 *** Joins: The_Nostalgia_Mare (Nossy@Pony-c9jj2q.brpm.oqg9.0342.2601.IP)
21:06 <wobniaR> He doesn't have enough healing to keep up tanks and can only heal one person at a time
21:06 <SunsetShimmer> I just come into the last 2 minutes of a game as mei...and steal POTG.
21:06 <SunsetShimmer> 5 player kill, LMAO
21:06 <wobniaR> What a bunch of skrubs
21:07 <SunsetShimmer> IKR?
21:07 * SunsetShimmer clicks lootbox...
21:08 *** Quits: Pi (saxopi@Pony-llr.4pn.146.49.IP) (Quit: Bye)
21:09 * Divide|Tech offers SunsetShimmer some Kraft Dinner with ketchup.
21:09 * Filly_Nightmares skree and chews on SunsetShimmer
21:11 * The_Nostalgia_Mare patpats SunsetShimmer. "Gud Sunset..."
21:11 <Cepheid> >.>
21:11 <SunsetShimmer> I've been upping mei game! ;3
21:11 * SunsetShimmer totally puns badly
21:11 <Cepheid> I destroyed one of Spitfire's mouse toys. I feel bad.
21:12 *** Joins: Pi (saxopi@Pony-llr.4pn.146.49.IP)
21:12 *** Quits: Pi (saxopi@Pony-llr.4pn.146.49.IP) (Quit: Bye)
21:13 * Divide|Tech also offers Cepheid some salty caramel ice cream, with caramelized bananas in a brown sugar sauce.
21:13 <Cepheid> No thanks.
21:14 * Divide|Tech gives them to Filly_Nightmares then.
21:14 <The_Nostalgia_Mare> SunsetShimmer, release the frozen waifu upon them...
21:14 <SunsetShimmer> Attack Mei, RAWR!~
21:14 *** Joins: Pony|87936 (Pony87936@Pony-i454b4.cable.virginm.net)
21:14 <SunsetShimmer> xD
21:15 *** Pony|87936 is now known as ThatAnonPony
21:15 *** Quits: The_Nostalgia_Mare (Nossy@Pony-c9jj2q.brpm.oqg9.0342.2601.IP) (Quit: Mei is bae....)
21:16 <wobniaR> Yes Attack Mei, getting ice walled off from the rest of your team by your Mei
21:16 <wobniaR> Your Mei blocking a final shot on someone kn the other team by ice walling in front of you to save themselves from dying
21:17 <wobniaR> I love Attack Mei
21:18 <Cepheid> They deserved it.
21:19 <Cepheid> If they were better at their job, the ice wall blocking off their shots wouldn't be a problem, because everyone on the opposing team would be DEAD.
21:20 * Filly_Nightmares eats it and hats on Divide|Tech
21:23 <DerpyBot> New post on Equestria Daily by Sethisto: Are Official PONY ROBOTS on the Way? New Trademark Filing from Hasbro - EQUESTRON [ http://tinyurl.com/j989jrc ]
21:24 <Sour_Sweet> Sweetie Bot is getting real :P
21:30 <Cepheid> !link https://www.youtube.com/watch?v=92fBUfV8Pb4
21:30 <DerpyBot> I need to ask Twilight about that one.
21:30 <DerpyBot> Twilight told me this video is about Anakin Two Legged Cat Boxes & Plastic are the Best!
21:32 <SunsetShimmer> wobniaR: I try and save as many as I can. :P
21:33 <SunsetShimmer> I also got mccrees mystery man skin recently, is gud
21:36 *** Quits: Nuclear (Nuclear@Pony-qsgqh8.pools.spcsdns.net) (Ping timeout: 121 seconds)
21:40 <Filly_Nightmares> I got Zenyatta's Christmas skin
21:40 <SunsetShimmer> Thats a fun skin
21:41 <SunsetShimmer> but I have 0 hours playing zen - I've decided from the 1v1 mode that he's just not my thing
21:42 *** Quits: Bastion_2100 (Bastion_210@Pony-rnko0o.dynamic.surfer.at) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
21:42 <SunsetShimmer> and neither is bastion. :p
21:43 *** Quits: WuBzY (wubzy@wubz.that.is.all) (Connection closed)
21:43 *** Joins: WuBzY (wubzy@wubz.that.is.all)
21:44 <Filly_Nightmares> Throwing nuts at people
21:44 <Filly_Nightmares> Yis
21:44 *** Quits: WorkingData (DataByteBro@Pony-n3en0j.hfc.comcastbusiness.net) (Ping timeout: 121 seconds)
21:45 * Filly_Nightmares hats on SunsetShimmer
21:45 *** Joins: WorkingData (DataByteBro@Pony-n3en0j.hfc.comcastbusiness.net)
21:46 <Filly_Nightmares> The Discord orb helps a lot in fights though, especially when the enemy gets dinked on the head
21:49 <Librarian> experience derpility
21:52 <Filly_Nightmares> Floofily
21:52 *** Quits: WorkingData (DataByteBro@Pony-n3en0j.hfc.comcastbusiness.net) (Ping timeout: 121 seconds)
21:52 *** Joins: WorkingData (DataByteBro@Pony-n3en0j.hfc.comcastbusiness.net)
21:54 <Asoka> holy shit...
21:54 <Asoka> https://www.washingtonpost.com/world/boy-12-tried-to-detonate-nail-bomb-at-german-christmas-market-authorities-allege/2016/12/16/a6fa3bb6-c398-11e6-92e8-c07f4f671da4_story.html?utm_term=.118c7d2ca881
21:55 <Cepheid> I need me some booooooze.
21:56 <Cepheid> The only reason that doesn't surprise me at this point anymore is because it seems to be the usual behaviour of that group now, Asoka.
21:56 <Asoka> yeah and i live in germany but good
21:56 <Asoka> work from the police
21:59 <Asoka> but 12 year old children holy shit this little bit to young...
21:59 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
22:00 <Asoka> ok this kid land for shure not in prison like in the usa more in special houses to help him maybe in the pschychatric or so...
22:03 *** Joins: BlackSentinel (BlackSentin@behind.you)
22:05 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
22:05 <Thelema5> The US conducts psychiatric evaluations of violent crime offenders to determine if treatment is warrented, or if the accused is even fit to stand trial.
22:08 <Asoka> and the US prison is from german sight a violation of human rights
22:08 *** Joins: BlackSentinel (BlackSentin@behind.you)
22:08 <Thelema5> It's very unlikely that kid would to prison in the US- he would likely be remanded to a secure juvenile facility where he would receive treatment and medication
22:08 <Sour_Sweet> Winter ponies are too cute: https://derpibooru.org/1319025 I still don't know how to mares ... Never mind.
22:09 <Asoka> *g*
22:09 <Thelema5> Asoka, the only thing wrong with our prisons is that we keep filling them up with minor non-violent offenders because many of the prisons are for-profit and employ millions of workers
22:09 <SunsetShimmer> asoka, you may not be aware but the language of this room sticks to the more family friendly.
22:09 <SunsetShimmer> just bear that in mind, mkay? :3
22:09 <Asoka> okay
22:11 <Thelema5> Just 20 more minutes and I can go home! w00t
22:11 <Asoka> uhm ok
22:12 <Cepheid> Myself, I should get to cleaning up my bedroom a bit.
22:14 *** Joins: desert (desert@Pony-01s5vn.freevpn.me)
22:15 <Sour_Sweet> !mail Electron https://derpibooru.org/1318893
22:15 <DerpyBot> Mail delivered! Thank you for using the Derpy Mail Service 6_9
22:15 <Sour_Sweet> I'm so glad his proxy works again 6_9
22:17 <DerpyBot> New post on Equestria Daily by ExplodingPonyToast: Music: Ponytronic - Resumption (Protocat Remix) [Drum & Bass] [ http://tinyurl.com/jx6x833 ]
22:17 <DerpyBot> New post on Equestria Daily by Sethisto: Drawfriend Stuff #2110 (Art Compilation) [ http://tinyurl.com/hr5gtfq ]
22:17 <DerpyBot> New post on Equestria Daily by Sethisto: (Updated) Are Official PONY ROBOTS on the Way? New Trademark Filing from Hasbro - EQUESTRON [ http://tinyurl.com/j2akznb ]
22:17 <Thelema5> derpybomb
22:17 <Thelema5> Pony robots, I see. She was excited about the news.
22:21 <Thelema5> !link derpybot
22:21 <DerpyBot> http://derpibooru.org/467344
22:22 *** Joins: Double (double@Pony-40o5q9.adsl-surfen.hetnet.nl)
22:28 *** YandereOnIce is now known as BrigadeLeaderHaruhi
22:29 *** Quits: Mike_Coltfield (Larscis@colt.in.the.rain) (Quit: Well, that was unexpected...)
22:30 *** Quits: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64) (The TLS connection was non-properly terminated.)
22:30 *** Joins: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64)
22:30 <wobniaR> It's just a trademark
22:30 <wobniaR> But hey if you wanna get hype
22:30 <Sour_Sweet> People overestimate them quite a lot
22:31 * Cepheid flails.
22:31 * Cepheid strikes wobniaR with a rubber flail.
22:32 <Cepheid> https://twitter.com/honey_burst/status/809792357952405504 Heh.
22:32 * wobniaR is unaffected
22:33 <Sour_Sweet> Cuddles are his weakness :P
22:33 <wobniaR> I've been bapped, booped, snuggled, defenestrated etc a rubber flail is nothing
22:34 *** Joins: somepony (somepony@Pony-pagdfh.rev.stofanet.dk)
22:35 *** Joins: Pi (saxopi@Pony-llr.4pn.146.49.IP)
22:35 <somepony> who is pi?
22:36 <Sour_Sweet> 3.14159265359 ... ?
22:37 <Sour_Sweet> :D
22:37 <Thelema5> I'm going home... bye, everypony!
22:37 *** Quits: Thelema5 (Thelema5@is.a.curious.pone) (Quit: HydraIRC -> http://www.hydrairc.com <- \o/)
22:38 *** Pi is now known as Pi_Rip
22:40 <Cepheid> Pi is Pi. There is no other answer to that question.
22:40 <Cepheid> He is not, in fact, a pie, however.
22:40 *** Quits: somepony (somepony@Pony-pagdfh.rev.stofanet.dk) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
22:41 *** Joins: somepony (somepony@Pony-pagdfh.rev.stofanet.dk)
22:42 <somepony> omg... i tried to pate 100,000 digits of pi into here, but it crashed ಠ_ಠ
22:43 <Sour_Sweet> That a silly idea
22:44 <Sour_Sweet> If it succeeded you'd have been kicked anyway.
22:44 <somepony> yeah. i thougt so.
22:44 *** Joins: Coco_Nut (Coco_Nut@Pony-eca.tk3.255.85.IP)
22:46 <Cepheid> Assuming the client they are using splits long lines up.
22:47 <Cepheid> More likely scenario is that it shows the first 500 digits then stops.
22:49 <somepony> youre propably right.
22:51 *** Quits: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64) (Ping timeout: 121 seconds)
22:51 *** Joins: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64)
22:51 * Librarian builds a city around cepheid
22:51 <Librarian> owo
22:52 <Cepheid> What are you doing?
22:53 *** Joins: Scootaloo (wobniaR@Monoshy.Hydra.Fighter.64)
22:53 *** Joins: Golden (Golden@Pony-0bbtn5.co.comcast.net)
22:56 *** Quits: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64) (Ping timeout: 121 seconds)
22:57 *** Quits: Scootaloo (wobniaR@Monoshy.Hydra.Fighter.64) (Ping timeout: 121 seconds)
23:02 *** Quits: DataByte (DataByte@databyte.fimfetch.net) (Connection closed)
23:03 *** Joins: Scootaloo (wobniaR@Pony-smu6dg.sub-70-214-72.myvzw.com)
23:06 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
23:06 *** Quits: Librarian (Librarian@Pony-s57.5r6.207.187.IP) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
23:06 *** Joins: Librarian (Librarian@Pony-s57.5r6.207.187.IP)
23:07 <Librarian> im testing my building powes
23:07 <Librarian> i got a new vita
23:07 <Cepheid> What game are ye playing?
23:07 <Librarian> dragon quest builders
23:08 <Librarian> its kinda lik minecraft , but with a story
23:08 <Librarian> and slimes
23:08 *** Joins: Reia (Reia@TheCowPony)
23:09 *** Joins: Mike_Coltfield (Larscis@colt.in.the.rain)
23:09 *** ChanServ sets mode: +o Mike_Coltfield
23:09 * Librarian gives a slime to mike
23:10 *** Joins: BlackSentinel (BlackSentin@behind.you)
23:12 *** Quits: BlackSentinel (BlackSentin@behind.you) (Connection closed)
23:14 *** Quits: Rainb (Rainb@Pony-2a4lno.dip0.t-ipconnect.de) (Connection closed)
23:15 *** Joins: BlackSentinel (BlackSentin@behind.you)
23:20 *** Joins: Gilda (FallSilent@silently)
23:20 *** ChanServ sets mode: +ao Gilda Gilda
23:21 <somepony> im gonna watch an episode and then go to sleep, bye.
23:21 <desert> later somepony
23:21 * Librarian gives a silver slime to gilda
23:22 *** Quits: somepony (somepony@Pony-pagdfh.rev.stofanet.dk) (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
23:24 *** Joins: unicodingunicorn (unicodingun@small.floofy.uni.pone)
23:27 *** Joins: Surreal_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone)
23:28 *** Joins: Changeling_Nightmares (Surreal@Cutest.Floofy.Changeling.Batpone)
23:29 *** unicodingunicorn is now known as uni
23:30 *** Quits: Filly_Nightmares (Surreal_Nig@Cutest.Floofy.Changeling.Batpone) (Ping timeout: 121 seconds)
23:31 *** Joins: iandroid (ian@Pony-btdjef.dynamic.tds.net)
23:31 *** Changeling_Nightmares is now known as Filly_Nightmares
23:34 *** TimidTanuki|Work is now known as Timid|AFK
23:36 <Cepheid> I need to move this PC elsewhere. Videocard just shut down on me.
23:46 *** Joins: Sombra (Iceman@Pony-6eg.3uv.42.96.IP)
23:49 <Cepheid> And now it is time for skyrimming! And drinking! And wenching!
23:49 <Cepheid> And more drinking! Then ponies.
23:50 *** Joins: somepony (somepony@Pony-pagdfh.rev.stofanet.dk)
23:52 *** Quits: Iks (Deggl@Pony-pm2.q4n.211.95.IP) (Connection closed)
23:52 *** Joins: wobniaR (wobniaR@Monoshy.Hydra.Fighter.64)
23:52 *** Quits: Scootaloo (wobniaR@Monoshy.Hydra.Fighter.64) (Connection closed)
23:52 <wobniaR> Electron http://agatrix.deviantart.com/art/Life-size-laying-down-Octavia-plush-651526672
23:53 * Cepheid shoots down a giant. Discovers 2 Elven Armour on it. "Uh..."
23:58 <Sombra> Do you think maybe we could genetically engineer horses to not smell?
23:58 <Cepheid> Possibly.
23:59 * somepony thinks the same
23:59 <Sombra> I'd like to do that.
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!