<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:24:18] ⇨ Joins: Github-Kiritow (Github-Kiritow!webchat@123.235.2.195)
L2[00:32:33] ⇦ Quits: Izaya (Izaya!~izaya@210.1.213.55) (Ping timeout: 194 seconds)
L3[00:35:40] <payonel> @player_athena are you building with idea? that takes a lot of setup
L4[00:35:52] <payonel> you might have an easier time using ./gradlew runClient
L5[00:36:30] <Player_Athena> using eclipse to look through the code easier, | as a work around i just build it with gradlew build and put the built mod into my mods folder
L6[00:37:21] <Player_Athena> ?? I'm about to try gradlew runClient, i just have to have shaders mod to test if the fixes work
L7[00:38:09] ⇨ Joins: Izaya (Izaya!~izaya@210-1-213-55-cpe.spintel.net.au)
L8[00:38:11] <payonel> we have some unfortunately setup nuances
L9[00:40:46] <Player_Athena> I've been able to get custom built version running without issue, I'm just still messing around with rendering with shaders, commenting out the modlighting line kinda helps a little, but backgrounds still don't render with shaders for the most part, and commententing that line makes text unbarably dark
L10[00:45:19] <Player_Athena> I'm trying to think of a way to modify background+text render in such a way that the block itself doesn't have to emit light for those 2 things to show up nice | also a way for the background to be rendered the same way text is, as text render doesn't seem to get screwed by shaders
L11[01:03:29] <Player_Athena> how are you doing the rendering for text and backgrounds on the screen? like where would i found the major parts of the code in the source?
L12[01:07:50] <payonel> i'm the openos dev and i poke at the scala. but, this appears to be where the text renders: src/main/scala/li/cil/oc/client/gui/Screen.scala
L13[01:09:35] <Player_Athena> thankyou, i'll read through that and some of it's linked stuff
L14[01:38:51] <Groot> looks like ill continue to be part of the #NoSleepSquad
L15[01:50:24] *** Guest37172 is now known as Skye
L16[02:09:40] <Player_Athena> me to @Groot
L17[02:09:59] <Player_Athena> i did find a workaround for the background not rendering properly with shaders.....
L18[02:10:46] <Player_Athena> I'll use ? to fill the screen to create the background out of text characters instead. the only problem is that any buttons or labels i create will have to be black
L19[02:11:48] <Groot> Damn
L20[02:12:54] <Player_Athena> if i knew a way to test for shaders with OC lua programming, i would make 2 different functions with an if statement to switch to normal background mode for peopl that don't use shaders
L21[02:13:26] <payonel> heh, we definitely don't expose what mods are available in the machine api, sorry
L22[02:14:25] <Player_Athena> thats okay, for the most part the program will be the same as it would otherwise
L23[02:14:54] <Player_Athena> just instead of using a space to fill the screen i use the solid box (alt+219) ?
L24[02:15:14] <Player_Athena> and just implent some clever foreground colour changing
L25[02:15:17] <Skye> you do know that ' ' is a characer tehcnicaly
L26[02:15:24] <Skye> you can do background colours and ' '. :P
L27[02:15:57] <Player_Athena> skye: background colors are broken by shaders mod
L28[02:16:12] <Player_Athena> so i can't do anything that involves changing the background color
L29[02:16:16] <Skye> that's a bug then
L30[02:16:37] <Player_Athena> at least not without making it look either garbage or not showing up at all on the screen
L31[02:16:43] <Skye> so basically
L32[02:16:59] <Player_Athena> bug between shaders and OC, i don't expect it to get fixed as the solution is to remove shaders
L33[02:17:19] <Player_Athena> and mod authors are typically against compatability with shaders
L34[02:17:23] <Skye> setting the background colour on an OC screen breaks when you have shaders installed
L35[02:17:33] <Skye> ...so you're not even trying to submit a bug report?
L36[02:18:13] <Player_Athena> yeah, shaders breaks things. i can submit a bug, but it's gonna wait till tomorrow
L37[02:19:25] <Skye> look no one will be angry at worst it can't be fixed
L38[02:19:42] <payonel> it's unlikely to be fixed without outside contribution
L39[02:20:00] <payonel> and by unlikely i mean ... very
L40[02:20:32] <Skye> payonel, but would having a bug report at least noting the problem okay? :P
L41[02:20:39] <payonel> i guess maybe someone could check for shader mods explicitly, and change the client render behavior
L42[02:20:59] <payonel> haha of course
L43[02:21:22] <Skye> my completely uneducated guess is that either the shader mod is leaving state behind
L44[02:21:33] <Skye> or OC is expecting something to be done when it shoulnd't be?
L45[02:21:53] <Skye> I dunno about graphics, only that it's a pain and I leave it to insane princesses such as Vi.
L46[02:21:59] <Player_Athena> i gave it a look through but unfortunetely, programming that amount and difficulty of java/scala, is not in my resime
L47[02:22:22] <Player_Athena> maybe after my next 2 semesters i'll have a better chance
L48[02:23:33] <Skye> well screenshots and what shaders you use woulod be good to know. :P
L49[02:23:54] <payonel> and screenshots of what it looks like when you disabled the light levels
L50[02:24:18] <payonel> and screenshot what it looks like with the SAME screen state without shaders
L51[02:24:35] <payonel> anyways, i personally won't be fixing it. but of course i won't close it without a fix
L52[02:25:32] ⇦ Quits: xarses_ (xarses_!~xarses@67.218.117.86) (Read error: Connection reset by peer)
L53[02:25:58] <Player_Athena> i'll put together a bug report for it tomorrow, rn I'm messing with learning some of the differences between CC and OC
L54[02:27:27] <Player_Athena> not used to having to require default libraries in my programs
L55[02:28:08] <Skye> there's not default that's why you require them ;)
L56[02:29:06] <payonel> @player_athena it's much closer to real life lua in that sense
L57[02:29:37] <Player_Athena> guess I'm just used to easy mode lua ??
L58[02:39:29] ⇦ Quits: Github-Kiritow (Github-Kiritow!webchat@123.235.2.195) (Ping timeout: 180 seconds)
L59[02:40:29] ⇦ Quits: Toxic_goblin (Toxic_goblin!webchat@ip70-180-229-151.lv.lv.cox.net) (Ping timeout: 180 seconds)
L60[02:45:12] ⇨ Joins: Toxic_goblin (Toxic_goblin!webchat@ip70-180-229-151.lv.lv.cox.net)
L61[02:47:28] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-123.nctv.com)
L62[02:48:29] ⇦ Quits: Toxic_goblin (Toxic_goblin!webchat@ip70-180-229-151.lv.lv.cox.net) (Ping timeout: 180 seconds)
L63[02:58:13] ⇨ Joins: Toxic_goblin (Toxic_goblin!webchat@ip70-180-229-151.lv.lv.cox.net)
L64[02:58:33] <Toxic_goblin> maune wont carsh thid time
L65[02:58:45] <Toxic_goblin> HOLY CRAP THAT WAS BAD
L66[02:59:44] *** AshIndigo_ is now known as AshIndigo
L67[03:12:09] <Forecaster> https://imgur.com/gallery/S9q2F
L68[03:16:39] <AshIndigo> %give MichiBot an owl
L69[03:16:39] * MichiBot accepts the owl and adds it to her inventory
L70[03:22:24] <Player_Athena> HOLY SHIT.................. what happened to time? it was 1:30am like 5 minutes ago, now it's 4:30
L71[03:24:21] <Forecaster> time is an illusion
L72[03:24:42] <Player_Athena> so is my social life...... thanks to coding
L73[03:25:26] <AshIndigo> \o/
L74[03:51:04] ⇨ Joins: Github-Kiritow (Github-Kiritow!webchat@123.235.2.195)
L75[03:51:17] <Github-Kiritow> Hi there
L76[03:51:29] <Github-Kiritow> I am using commands on robots
L77[03:51:46] <Github-Kiritow> I typed 'components | less'
L78[03:52:06] <Github-Kiritow> and get the 'too long without yielding' error.
L79[04:06:33] <Groot> sameee @Player_Athena
L80[04:10:30] ⇦ Quits: minecreatr (minecreatr!~minecreat@tterrag.com) (Quit: I left for some reason)
L81[04:12:44] <Skye> payonel, people are saying something is borken
L82[04:20:36] <Forecaster> %ohno
L83[04:20:36] <MichiBot> Forecaster: ohno
L84[04:25:30] <Forecaster> payonel: time to get fixi'n https://i.imgur.com/q5L5Tm2.mp4
L85[04:32:29] *** Guest69021 is now known as Thog
L86[04:38:08] <Github-Kiritow> Or I think I should create a new issue?
L87[04:38:50] <Github-Kiritow> Maybe a issue is easier for developers to notice...?
L88[04:50:25] <Groot> “ I consistently don’t know what I’m doing, I’m just really good at winging it till it works “
L89[04:51:07] <Groot> Gotta fake it till ya make it rite
L90[04:55:29] ⇨ Joins: Vexatos (Vexatos!~Vexatos@p200300556E187E2498D5286B1C80C5A2.dip0.t-ipconnect.de)
L91[04:55:30] zsh sets mode: +v on Vexatos
L92[04:58:11] <Forecaster> @Groot "Winging it until it works" is 75% of programming, the other is reading documentation
L93[04:58:20] <Forecaster> the rest*
L94[05:00:01] <Groot> XD TRUE
L95[05:35:36] <Forecaster> https://i.imgur.com/T71luD8.png
L96[05:48:20] ⇨ Joins: kalgon (kalgon!webchat@94-229-223-162.static.espol.com.pl)
L97[05:53:43] <kalgon> hi, can someone help with oc api? i'm struggling with some issue
L98[05:56:06] <kalgon> i'm trying to make a computer screen with inventory, and i don't know where to start. i have tile entity with inventory, items, my own peripheral card - works fine.
L99[05:56:28] <kalgon> but, how i can embed oc "terminal" screen in my guI?
L100[05:56:32] <kalgon> it is possible?
L101[05:56:37] ⇨ Joins: Inari (Inari!~Pinkishu@p4FC1EEB0.dip0.t-ipconnect.de)
L102[05:57:49] <Inari> bop
L103[05:58:16] <Inari> AmandaC: Your anime consumption is so high Öp
L104[05:58:19] <Inari> * :P
L105[06:10:11] <Forecaster> I probably haven't even watched half of my show library :P
L106[06:21:59] ⇦ Quits: Github-Kiritow (Github-Kiritow!webchat@123.235.2.195) (Ping timeout: 180 seconds)
L107[06:52:53] <Skye> %p
L108[06:52:54] <MichiBot> Ping reply from Skye 0.57s
L109[07:17:20] <kalgon> can anyone help, please? :/
L110[07:28:03] <payonel> kalgon: yes?
L111[07:30:29] * Skye pokes kalgon
L112[07:33:17] ⇨ Joins: Thutmose1 (Thutmose1!~Patrick@host-69-59-79-123.nctv.com)
L113[07:33:31] <kalgon> payonel: sorry, i fell asleep
L114[07:33:40] <kalgon> payonel: i'm trying to make a computer screen with inventory, and i don't know where to start. i have tile entity with inventory, items, my own peripheral card - works fine.
L115[07:33:47] <kalgon> payonel: but, how i can embed oc "terminal" screen in my gui?
L116[07:33:54] <kalgon> payonel: it is possible?
L117[07:34:24] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-123.nctv.com) (Ping timeout: 186 seconds)
L118[07:35:11] <kalgon> payonel: a dig into open security addon, and there is a reference to oc.client.gui, but they using -dev version of oc
L119[07:35:18] <payonel> you're making an addon? and you're trying to subclass the screen?
L120[07:35:52] <kalgon> payonel: im trying to make an addon, lets say, the atm. block needs a terminal screen, and inventory to put or get money
L121[07:36:22] <kalgon> payonel: the only thing is the terminal screen, i need to write own?
L122[07:36:38] <Skye> hmmm
L123[07:36:50] <Skye> I dunno how re-usable OC's code is
L124[07:36:57] <Skye> worst case you literally copy and paste code
L125[07:36:59] <Skye> :P
L126[07:37:35] <kalgon> but the screen code is in scala
L127[07:37:44] <payonel> in terms of the code, we use the screen to render, the textbuffer to store the chars, and the gpu component writes to the textbuffer
L128[07:39:07] <payonel> screens are textbuffers, fwiw
L129[07:39:07] <kalgon> hm.. ok, so i need to write own "screen"?
L130[07:39:12] <payonel> but the screen has the actual render code
L131[07:39:38] <payonel> well it sounds like your creating a new screen type, sure
L132[07:39:40] <payonel> one that has inventory
L133[07:39:50] <payonel> " i'm trying to make a computer screen with inventory"
L134[07:39:53] <Mimiru> Open security never touches oc’s screen stuff
L135[07:40:52] <kalgon> Corded, not screen stuff, but raid stuff
L136[07:41:13] <kalgon> payonel: thank you :)
L137[07:41:25] <Mimiru> Corded is an not I’m Mimiru
L138[07:41:33] <Skye> corded = bot
L139[07:41:39] <Skye> relays to and from discord
L140[07:41:49] <Mimiru> And it never worked cause trying to subclass a scala class from java sucks hard
L141[07:41:52] <Skye> Corded has the name of the acutal person in <this>
L142[07:42:02] <kalgon> Oh
L143[07:42:08] <kalgon> im stupid
L144[07:42:23] <Skye> nah
L145[07:42:31] <Mimiru> Nah it’s just different lol
L146[07:43:10] <Skye> You can inherit from Scala in Java
L147[07:43:12] <Skye> it's a pin
L148[07:43:15] <Skye> but it's possible
L149[07:44:10] <Mimiru> Which is why I said it sucks hard.
L150[07:44:13] <Mimiru> not it's not possible.
L151[07:45:32] ⇦ Quits: lp (lp!~lordpipe@66.109.211.167) (Ping timeout: 207 seconds)
L152[07:46:18] <Mimiru> MC 1.13.. Changed translation files from .lang (key=value) to .json ("key": "value")
L153[07:46:44] <Forecaster> json all the things
L154[07:46:49] <payonel> nah
L155[07:46:50] <payonel> LUA
L156[07:46:51] <MichiBot> It's Lua, not LUA. Name not an acronym.
L157[07:47:04] <payonel> lua table all the things :)
L158[07:47:49] ⇦ Quits: kalgon (kalgon!webchat@94-229-223-162.static.espol.com.pl) (Quit: Web client closed)
L159[07:48:02] ⇦ Quits: glasspelican (glasspelican!~quassel@ktnron060ww-lp140-02-70-27-168-98.dsl.bell.ca) (Read error: -0x1: UNKNOWN ERROR CODE (0001))
L160[07:49:35] ⇨ Joins: glasspelican (glasspelican!~quassel@ktnron060ww-lp140-02-70-27-168-98.dsl.bell.ca)
L161[07:59:38] ⇦ Quits: brayden (brayden!~brayden@2400:9c00:184:1:216:3cff:febe:e861) (Ping timeout: 383 seconds)
L162[08:00:22] ⇨ Joins: lp (lp!~lordpipe@66.109.211.167)
L163[08:00:48] ⇨ Joins: brayden (brayden!~brayden@163.47.16.134)
L164[08:03:00] ⇦ Quits: Icedream (Icedream!~icedream@has.streaminginter.net) (Remote host closed the connection)
L165[08:17:42] ⇨ Joins: Turtle (Turtle!~SentientT@ip5657cbb2.direct-adsl.nl)
L166[08:21:34] ⇦ Quits: Izaya (Izaya!~izaya@210-1-213-55-cpe.spintel.net.au) (Quit: ZNC 1.6.5 - http://znc.in)
L167[08:25:59] ⇨ Joins: Izaya (Izaya!~izaya@210-1-213-55-cpe.spintel.net.au)
L168[08:30:33] ⇨ Joins: Icedream (Icedream!~icedream@has.streaminginter.net)
L169[08:39:50] ⇦ Quits: Backslash (Backslash!~Backslash@ip-94-114-160-58.unity-media.net) (Quit: Leaving)
L170[08:42:11] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED582A.dip0.t-ipconnect.de)
L171[09:02:52] ⇦ Quits: Michiyo (Michiyo!~Michiyo@mail.pc-logix.com) (Read error: Connection reset by peer)
L172[09:04:15] ⇨ Joins: Backslash (Backslash!~Backslash@ip-94-114-160-58.unity-media.net)
L173[09:08:39] <Forecaster> https://imgur.com/gallery/q1meFTV
L174[09:10:42] <Inari> Haha :D
L175[09:12:12] ⇨ Joins: Michiyo (Michiyo!~Michiyo@mail.pc-logix.com)
L176[09:12:12] zsh sets mode: +o on Michiyo
L177[09:12:17] <Inari> https://imgur.com/gallery/d5VFpQn
L178[09:13:15] <Forecaster> It's gonna assemble the house with paws
L179[09:14:08] <Michiyo> Test
L180[09:14:30] <Michiyo> yay... after fixing so. much. crap. auto refresh works again.
L181[09:15:11] <AmandaC> Inari: n-no it's not! ~hides the three other anime she binged before going to bed last night~
L182[09:15:51] <Inari> Haha wow
L183[09:15:59] <AmandaC> ( That's a joke. :P )
L184[09:17:02] <Inari> Ah :P
L185[09:17:16] <Inari> I wondered how thats possible, or how long you stayed up for it, or if you fixed the time machine
L186[09:20:22] * AmandaC curls up in Inari's lap, yawns a big ol' yawn
L187[09:20:34] <Inari> %pet AmandaC
L188[09:20:34] * MichiBot brushes AmandaC with Inari's house keys. AmandaC recovers 9 health!
L189[09:20:40] <Inari> Oh there they are
L190[09:20:41] <AmandaC> ...
L191[09:21:02] * AmandaC nips them from MichiBot, runs off and hides them better
L192[09:21:15] <Inari> %give MichiBot some clay earth shampoo
L193[09:21:15] * MichiBot accepts some clay earth shampoo and adds it to her inventory
L194[09:21:20] <AmandaC> %give AmandaC Inari's house keys
L195[09:21:20] * MichiBot gives AmandaC Inari's house keys from her inventory
L196[09:21:24] <Inari> D:
L197[09:21:38] <Inari> Fiiine, I was going to get a wifi lock anyway
L198[09:21:40] <AmandaC> %give MichiBot Inari's house keys hidden in a box
L199[09:21:40] * MichiBot accepts Inari's house keys hidden in a box and adds it to her inventory
L200[09:21:49] <Inari> Haha
L201[09:25:59] <Arcanitor> %give MichiBot AmandaC's wifi password
L202[09:25:59] * MichiBot accepts AmandaC's wifi password and adds it to her inventory
L203[09:31:35] <payonel> Inari: !
L204[09:32:15] <payonel> A group of feral cats is called a destruction
L205[09:32:32] <payonel> https://en.wikipedia.org/wiki/List_of_English_terms_of_venery,_by_animal
L206[09:34:12] <Michiyo> Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA.
L207[09:34:19] <Michiyo> wtf does that even MEAN LE?!
L208[09:34:41] <Inari> payonel: Haha :D
L209[09:35:19] <Michiyo> https://community.letsencrypt.org/t/solution-client-with-the-currently-selected-authenticator-does-not-support-any-combination-of-challenges-that-will-satisfy-the-ca/49983
L210[09:35:20] <Michiyo> oh
L211[09:35:55] <Michiyo> >It is because Let’s Encrypt has currently disabled the TLS-SNI-01 challenge while we investigate a security report.
L212[09:37:24] <Michiyo> And on that note... sharex works again \o/
L213[09:37:24] <Michiyo> https://michi.pc-logix.com/2018-01-10_09-32-50.png
L214[09:43:45] <Michiyo> https://community.letsencrypt.org/t/2018-01-09-issue-with-tls-sni-01-and-shared-hosting-infrastructure/49996
L215[09:43:47] <Michiyo> good times.
L216[09:50:52] <AmandaC> Arcanitor: h-hey! D:
L217[10:03:09] <Arcanitor> :3
L218[10:03:15] <Inari> https://www.reddit.com/r/EliteDangerous/comments/7paoew/cat_tried_to_help_out/ basically AmandaC
L219[10:03:19] <Inari> Also I like that type of cat
L220[10:03:28] <Arcanitor> %give AmandaC AmandaC's wifi password
L221[10:03:28] * MichiBot gives AmandaC AmandaC's wifi password from her inventory
L222[10:03:57] <Inari> %whatislove
L223[10:03:57] <MichiBot> Inari: Love is... a cute girl engine!
L224[10:04:01] <Inari> True,true
L225[10:05:32] ⇨ Joins: Neo (Neo!~Neo@hekate.pc-logix.com)
L226[10:05:34] <Michiyo> seems restarting the mysql server makes the logger mad.
L227[10:05:46] <Michiyo> or, maybe I've broken mysql
L228[10:05:47] <Michiyo> and I should just go home.
L229[10:05:47] <Arcanitor> sql sounds hard, but useful
L230[10:05:49] <payonel> oh baby don't hurt me, don't hurt me, no more
L231[10:06:06] <payonel> https://www.youtube.com/watch?v=To2-xGxTiuU
L232[10:06:06] <MichiBot> Diablo - Gharbad the Weak (Diablo 1) | length: 1m 36s | Likes: 300 Dislikes: 3 Views: 72,931 | by Kebooooo | Published On 1/7/2008
L233[10:06:27] <Inari> Ah Gharbad at the Roxbury
L234[10:06:32] <Inari> https://www.youtube.com/watch?v=QOq103AEB10
L235[10:06:32] <MichiBot> Gharbad at the Roxbury | length: 5m | Likes: 84 Dislikes: 0 Views: 7,178 | by DiabloChronicle | Published On 11/3/2010
L236[10:06:54] <payonel> haha! Inari you know of it?!
L237[10:06:58] <Inari> Yeah
L238[10:07:02] <payonel> =D
L239[10:07:13] <Michiyo> Oh hey, there it goes \o/
L240[10:07:25] <Inari> payonel: https://i.imgur.com/tTc9cKQ.gif
L241[10:07:39] <payonel> hahaha
L242[10:07:47] <payonel> no no
L243[10:09:05] <Inari> But why not
L244[10:10:25] <Inari> %give MichiBot the cow king's hide
L245[10:10:25] * MichiBot accepts the cow king's hide and adds it to her inventory
L246[10:10:32] <Inari> Oh right
L247[10:10:35] * Inari hides from Temia
L248[10:11:23] <Temia> D:
L249[10:11:38] <Temia> My liege! Noooooooooo!
L250[10:11:46] <Inari> Temia: Do you even know the cow level?
L251[10:11:53] <Temia> Yes
L252[10:11:55] <Inari> :D
L253[10:12:04] <Temia> But you shouldn't
L254[10:12:10] <Inari> Yeah
L255[10:12:11] * Temia draws axe
L256[10:12:24] <Inari> Killing hte king is bad, can't go in and kill more co-----errr I mean, of course you just should'nt kill
L257[10:17:14] <Michiyo> hmm... seems quits aren't getting logged properly
L258[10:18:18] ⇨ Joins: Michi_ (Michi_!webchat@mail.pc-logix.com)
L259[10:18:29] <Michi_> bleh.
L260[10:18:34] ⇦ Quits: Michi_ (Michi_!webchat@mail.pc-logix.com) (Client Quit)
L261[10:18:43] <Michiyo> well.. that worked..
L262[10:18:54] <Michiyo> wonder why Kodos quitting didn't log..
L263[10:21:45] <vifino> silly bots.
L264[10:22:05] * Michiyo sighs
L265[10:22:31] <Michiyo> I need to re setup my dns panel... which I had highly modified and not backed up anywhere
L266[10:25:47] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED582A.dip0.t-ipconnect.de) (Ping timeout: 194 seconds)
L267[10:54:26] <Inari> https://twitter.com/DasSurma/status/951065760343961600
L268[10:54:26] <MichiBot> Wed Jan 10 06:18:41 CST 2018 @DasSurma: My password generator just spat out a password that starts with <H1> and ends with </H1> and now I’m seriously ques… https://t.co/us03lsQqHG
L269[10:57:38] ⇨ Joins: Kodos (Kodos!~Kodos@63.142.73.55)
L270[10:57:38] zsh sets mode: +v on Kodos
L271[11:04:56] ⇦ Quits: Icedream (Icedream!~icedream@has.streaminginter.net) (Quit: A lol made me boom.)
L272[11:09:08] ⇨ Joins: Icedream (Icedream!~icedream@has.streaminginter.net)
L273[11:09:10] ⇦ Quits: Icedream (Icedream!~icedream@has.streaminginter.net) (Remote host closed the connection)
L274[11:12:38] ⇦ Quits: Vic (Vic!znc@nightfall.moe) (Quit: Nyuu~)
L275[11:12:38] ⇦ Quits: Skye (Skye!znc@nightfall.moe) (Quit: ZNC - http://znc.in)
L276[11:15:04] ⇨ Joins: Icedream (Icedream!~icedream@has.streaminginter.net)
L277[11:26:57] ⇦ Quits: Icedream (Icedream!~icedream@has.streaminginter.net) (Remote host closed the connection)
L278[11:29:38] ⇨ Joins: Icedream (Icedream!~icedream@has.streaminginter.net)
L279[11:33:54] ⇨ Joins: Skye (Skye!znc@nightfall.moe)
L280[11:34:15] ⇨ Joins: Vic (Vic!znc@nightfall.moe)
L281[11:34:19] *** Skye is now known as Guest73188
L282[11:35:45] *** Guest73188 is now known as Skye
L283[11:45:23] ⇦ Quits: Turtle (Turtle!~SentientT@ip5657cbb2.direct-adsl.nl) (Ping timeout: 207 seconds)
L284[12:07:17] ⇨ Joins: BearishMushroom (BearishMushroom!~BearishMu@82-209-154-59.cust.bredband2.com)
L285[12:24:49] <Mimiru> https://imgur.com/gallery/GgFM6
L286[12:29:39] ⇨ Joins: Turtle (Turtle!~SentientT@ip5657cbb2.direct-adsl.nl)
L287[13:08:08] ⇨ Joins: smoke_fumus (smoke_fumus!~smoke_fum@188.35.176.90)
L288[14:20:46] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED582A.dip0.t-ipconnect.de)
L289[14:56:21] <Izaya> so I had a fun idea
L290[14:56:37] <Izaya> a minifier that outputs a symbol alias table
L291[14:56:46] <Izaya> so you can run code against minified libraries and stuff
L292[15:06:58] <Arcanitor> nothing keeping you from minifying a library, as long as you don't minify the actual function names
L293[15:07:18] <Izaya> Ah, but I want to minify the function names and be able to use those
L294[15:08:05] <Izaya> Say you're running a minified kernel, you get a program, you run it through the minifier with the kernel's symbol table, and you get a smaller library that runs on your system
L295[15:10:35] <Arcanitor> i feel like it would be easier to make a minifier that can generate and accept lists of minified library function names
L296[15:10:55] <Izaya> That's what I'm saying.
L297[15:11:02] <Arcanitor> oh
L298[15:11:12] <Arcanitor> excuse my not having a clue
L299[15:11:45] <Izaya> You minify a file and it gives you a table of symbol names, then you can run another program through it with the same symbol table and it changes the function names and minfies the files
L300[15:12:29] <Arcanitor> i assume by symbol you mean the function names
L301[15:12:50] <Izaya> function name, variable name in general
L302[15:25:57] <AshIndigo> %slap AshIndigo
L303[15:25:58] * MichiBot slaps AshIndigo with earscritches doing [10] damage
L304[15:51:20] <Michiyo> %shell @Forecaster
L305[15:51:26] <Michiyo> nope... still broken yay
L306[16:01:52] <AmandaC> %blame @Forecaster
L307[16:01:53] * MichiBot blames @Forecaster for adding the linux gerbil to the inventory!
L308[16:03:46] * Michiyo sighs
L309[16:03:48] <Michiyo> and it's fixed...
L310[16:03:56] * Michiyo pokes @Forecaster
L311[16:04:14] <Michiyo> You can't add the command to the ArrayList before you actually give the command... commandy stuff :P
L312[16:06:20] <Michiyo> %restart
L313[16:06:21] ⇦ Quits: MichiBot (MichiBot!~MichiBot@hekate.pc-logix.com) (Remote host closed the connection)
L314[16:06:48] ⇨ Joins: MichiBot (MichiBot!~MichiBot@hekate.pc-logix.com)
L315[16:06:48] zsh sets mode: +v on MichiBot
L316[16:07:01] <Michiyo> %shell @Forecaster
L317[16:07:04] * Michiyo waits
L318[16:07:28] * MichiBot loads a rubber ducky into a shell and fires it. It strikes @Forecaster. They take 16 damage. MajGenRelativity and Cazzar stood too close and take 6 and 1 splash damage respectively.
L319[16:07:29] * MichiBot The rubber ducky received a call it had won a million money, it wasn't seen again..
L320[16:07:44] <Michiyo> yay.
L321[16:14:43] <AmandaC> %give MichiBot a million money
L322[16:14:43] * MichiBot accepts the million money and adds it to her inventory
L323[16:57:19] ⇦ Quits: Turtle (Turtle!~SentientT@ip5657cbb2.direct-adsl.nl) (Read error: Connection reset by peer)
L324[17:06:54] ⇨ Joins: unholylegion (unholylegion!webchat@46.72.249.157)
L325[17:38:34] ⇦ Quits: unholylegion (unholylegion!webchat@46.72.249.157) (Quit: Web client closed)
L326[17:41:16] ⇦ Quits: BearishMushroom (BearishMushroom!~BearishMu@82-209-154-59.cust.bredband2.com) (Read error: Connection reset by peer)
L327[17:44:08] <Mimiru> %translate english german hello
L328[17:44:09] <MichiBot> Hallo
L329[17:44:15] <Mimiru> well, it seems to work still.
L330[17:44:32] <Mimiru> wonder if it doesn't expire til midnight
L331[17:44:35] <Inari> Tehehe
L332[17:44:51] <Inari> %t translate english english ~markov lewd
L333[17:44:52] <MichiBot> english english ~markov lewd
L334[17:44:54] <Inari> :<
L335[17:45:00] <Inari> %t english english ~markov lewd
L336[17:45:00] <MichiBot> ~markov lewd
L337[17:45:01] <ocdoc> In fact, Tits and that was my experimental anti-lewd pheromone formula! Give you sex, ed when someone PM'd them a lewdness cannon*
L338[17:45:31] <Inari> https://www.youtube.com/watch?v=SNwbpFygcB0 ~
L339[17:45:32] <MichiBot> Ookami shoujo to kuro ouji - OP full | length: 2m 38s | Likes: 31,288 Dislikes: 438 Views: 4,399,901 | by soul xd | Published On 3/12/2014
L340[17:53:00] ⇦ Quits: Cruor (Cruor!Cruor@satomi.openshell.no) (Ping timeout: 207 seconds)
L341[17:53:39] ⇦ Quits: flappy (flappy!~flappy@a88-113-154-4.elisa-laajakaista.fi) (Ping timeout: 207 seconds)
L342[17:53:54] ⇨ Joins: Cruor (Cruor!Cruor@satomi.openshell.no)
L343[18:14:46] <Inari> %translate english latin Hello Cruor, you cuddly muffin
L344[18:14:46] <MichiBot> latin Hello Cruor, you cuddly muffin
L345[18:14:51] <Inari> pls
L346[18:16:56] <AmandaC> Bing doesn't support latin, does it?
L347[18:17:47] <Inari> No clue
L348[18:18:31] <Inari> %translate german english AmandaC ist eine schmusig verschmuste Schmusekatze
L349[18:18:32] <MichiBot> AmandaC is a schmusig cuddly Pussycat
L350[18:18:35] <Inari> xD
L351[18:18:57] <AmandaC> How'd you find out! D:
L352[18:21:45] <Inari> %give MichiBot a copy of the Lusty Argonian Maid
L353[18:21:45] * MichiBot accepts the copy of the Lusty Argonian Maid and adds it to her inventory
L354[18:22:03] <AmandaC> Inari: Zero?
L355[18:22:16] <Inari> Zero?
L356[18:22:20] <AmandaC> guess not
L357[18:22:23] <Inari> ?.?
L358[18:22:51] <AmandaC> There's a book in a similar vein in one of the later seasons of The Familiar of Zero
L359[18:23:01] <Inari> Ah
L360[18:23:04] <Inari> It's a Skyrim reference :p
L361[18:29:16] <AmandaC> ah
L362[18:30:43] <AmandaC> Hrm, I can't find the scene with a simple search
L363[18:30:49] <AmandaC> It's very funny though
L364[18:31:47] <AmandaC> The maid pretends to drop a vase and expects the protag to "punish" her, but the protag is too dense to pick up on it, and the maid is just reinactng "somethign she read in a romance novel"
L365[18:32:34] <Inari> %give MichiBot a magic mirror
L366[18:32:34] * MichiBot accepts the magic mirror and adds it to her inventory
L367[18:32:50] <Inari> AmandaC: Haha :D
L368[18:33:07] * AmandaC wishes for scritches on the magic mirror, falls over after getting them, dead
L369[18:33:47] <Inari> Magic mirror https://www.youtube.com/watch?v=0YFG6BCQZFU still one of my favourite songs :P
L370[18:33:48] <MichiBot> ?????????????MusicClip | length: 6m 28s | Likes: 5,451 Dislikes: 159 Views: 1,121,843 | by ???? Youtube Channel | Published On 8/6/2015
L371[18:40:07] <Inari> http://www.lyrical-nonsense.com/lyrics/seiko-oomori/magic-mirror/ ~
L372[18:42:24] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED582A.dip0.t-ipconnect.de) (Ping timeout: 207 seconds)
L373[18:45:01] ⇦ Quits: Vexatos (Vexatos!~Vexatos@p200300556E187E2498D5286B1C80C5A2.dip0.t-ipconnect.de) (Quit: I guess I have to go now. Bye ?)
L374[19:29:04] <Inari> Today in how to get your software uninstalled, aside it being a piece of crap anyway http://tinyurl.com/yc8cuf9h
L375[19:40:29] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED582A.dip0.t-ipconnect.de)
L376[19:57:26] ⇨ Joins: ben_mkiv|afk (ben_mkiv|afk!~ben_mkiv@p4FED52AA.dip0.t-ipconnect.de)
L377[19:57:32] <AmandaC> Inari: to read this take, you must order interdimensional cat goddess pro, scritch under the chin to order now.
L378[20:03:11] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@p4FED582A.dip0.t-ipconnect.de) (Ping timeout: 383 seconds)
L379[20:04:06] <Inari> :p
L380[20:04:18] <AmandaC> Pls no test on me: https://i.imgur.com/IOP9xi2.jpg
L381[20:05:22] ⇦ Quits: Inari (Inari!~Pinkishu@p4FC1EEB0.dip0.t-ipconnect.de) (Quit: 'A little body, to satisfy your all hand addictions.')
L382[20:08:22] ⇨ Joins: xarses_ (xarses_!~xarses@67.218.117.86)
L383[20:25:39] * Arcanitor tests cuddles on AmandaC
L384[20:26:56] ⇦ Quits: glasspelican (glasspelican!~quassel@ktnron060ww-lp140-02-70-27-168-98.dsl.bell.ca) (Read error: Connection reset by peer)
L385[20:27:42] ⇨ Joins: glasspelican (glasspelican!~quassel@ktnron060ww-lp140-02-70-27-168-98.dsl.bell.ca)
L386[20:28:51] * AmandaC claws at Arcanitor for unauthorized cuddles
L387[20:29:01] <Arcanitor> aaa
L388[20:29:04] * Arcanitor runs
L389[20:29:33] <Arcanitor> AmandaC: sorry
L390[20:30:09] * AmandaC cuddles back up against the sleeping Inari, contemplates what to do
L391[20:30:25] <AmandaC> %choose anime or podcast
L392[20:30:25] <MichiBot> AmandaC: podcast
L393[20:30:39] <AmandaC> Kk.
L394[20:34:39] ⇨ Joins: Github-Kiritow (Github-Kiritow!webchat@112.6.127.18)
L395[20:44:05] ⇨ Joins: Github-Kiritow_ (Github-Kiritow_!webchat@45.56.159.93)
L396[20:44:37] ⇦ Quits: Github-Kiritow_ (Github-Kiritow_!webchat@45.56.159.93) (Client Quit)
L397[20:45:59] ⇦ Quits: Github-Kiritow (Github-Kiritow!webchat@112.6.127.18) (Ping timeout: 180 seconds)
L398[20:54:42] ⇨ Joins: Johannes13_ (Johannes13_!~Johannes1@dslb-188-105-009-251.188.105.pools.vodafone-ip.de)
L399[21:00:13] ⇦ Quits: Johannes13__ (Johannes13__!~Johannes1@dslb-188-099-202-165.188.099.pools.vodafone-ip.de) (Ping timeout: 383 seconds)
L400[21:01:51] <Izaya> I love the Anaconda because it's such a beasty ship but... it's just more fun to fly the Dolphin
L401[21:09:11] ⇦ Quits: lp (lp!~lordpipe@66.109.211.167) (Quit: WeeChat 2.0.1)
L402[21:09:41] ⇨ Joins: lp (lp!~lordpipe@66.109.211.167)
L403[21:12:13] <Mimiru> %translate english japanese test
L404[21:12:13] <MichiBot> [microsoft-translator-api] Error retrieving translation : Server returned HTTP response code: 401 for URL: https://api.cognitive.microsoft.com/sts/v1.0/issueToken
L405[21:12:18] <Mimiru> well. shit
L406[21:14:32] <Izaya> rip your access I guess
L407[21:17:28] <Mimiru> %translate chinese english ???
L408[21:17:28] <MichiBot> [microsoft-translator-api] Error retrieving translation : Server returned HTTP response code: 401 for URL: https://api.cognitive.microsoft.com/sts/v1.0/issueToken
L409[21:17:54] <Mimiru> %translate chinese english ???
L410[21:17:55] <MichiBot> ??? Beta
L411[21:18:37] <Mimiru> welp.. let's hope I don't hit 2,000,000 characters a month.
L412[21:59:38] ⇦ Quits: ben_mkiv|afk (ben_mkiv|afk!~ben_mkiv@p4FED52AA.dip0.t-ipconnect.de) (Ping timeout: 207 seconds)
L413[22:04:11] ⇦ Quits: xarses_ (xarses_!~xarses@67.218.117.86) (Ping timeout: 207 seconds)
L414[22:13:18] ⇨ Joins: xarses_ (xarses_!~xarses@c-67-180-86-164.hsd1.ca.comcast.net)
L415[22:14:18] ⇨ Joins: andreww (andreww!~xarses@67.218.117.86)
L416[22:17:25] ⇦ Quits: smoke_fumus (smoke_fumus!~smoke_fum@188.35.176.90) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
L417[22:19:58] ⇦ Quits: xarses_ (xarses_!~xarses@c-67-180-86-164.hsd1.ca.comcast.net) (Ping timeout: 383 seconds)
L418[22:36:41] ⇦ Quits: andreww (andreww!~xarses@67.218.117.86) (Ping timeout: 207 seconds)
L419[23:27:42] ⇦ Quits: Cazzar (Cazzar!~CazzarZNC@vocaloid.lovers.at.cazzar.net) (Quit: ZNC - http://znc.in)
L420[23:27:42] ⇦ Quits: Reika (Reika!~Reika@reika.kalseki.mods.abrarsyed.com) (Quit: ZNC - http://znc.in)
L421[23:28:51] <Player_Athena> anyone one right now? | i could use someone elses eyes to look a s code snippet i'm trying to get weorking
L422[23:29:48] ⇨ Joins: Cazzar (Cazzar!~CazzarZNC@vocaloid.lovers.at.cazzar.net)
L423[23:29:48] zsh sets mode: +v on Cazzar
L424[23:30:10] ⇨ Joins: Reika (Reika!~Reika@reika.kalseki.mods.abrarsyed.com)
L425[23:41:24] ⇦ Quits: Izaya (Izaya!~izaya@210-1-213-55-cpe.spintel.net.au) (Ping timeout: 207 seconds)
L426[23:45:39] ⇨ Joins: Izaya (Izaya!~izaya@210-1-213-55-cpe.spintel.net.au)
L427[23:49:18] <Player_Athena> could i barrow someones eyes for a moment?
L428[23:49:32] <Player_Athena> it's just lua code that i need a quick help with
L429[23:53:21] ⇦ Quits: Izaya (Izaya!~izaya@210-1-213-55-cpe.spintel.net.au) (Ping timeout: 198 seconds)
L430[23:55:51] <Forecaster> @Player_Athena don't ask to ask
L431[23:56:27] <Player_Athena> ?
L432[23:56:28] <Player_Athena> a simple yes or no will work
L433[23:56:44] <Mimiru> Poste the code, if someone has time/want they'll help.
L434[23:57:15] <Mimiru> s/e//
L435[23:57:20] <Mimiru> ok, bite me MichiBot
L436[23:57:54] ⇨ Joins: Izaya (Izaya!~izaya@210-1-213-55-cpe.spintel.net.au)
L437[23:58:04] <Player_Athena> https://pastebin.com/tbVp6kDQ | i can't seem to get these to insert into the table
L438[23:58:26] <Player_Athena> follow some table instructions on lua wiki
<<Prev Next>> Scroll to Top