<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:02:48] <Fe​ris> what's going on? https://tinyurl.com/2bk6v2s4&lt;Fe​ris> what's going on? https://tinyurl.com/26kjgcuv
L2[00:03:36] <Fe​ris> error in line with component.proxy
L3[00:03:50] <Hawk777> Are you sure it’s that line and not the next one?
L4[00:03:56] <Fe​ris> yes
L5[00:04:31] <Fe​ris> but that's funny when typing my username it works normally, but when im typing my friend username it errors
L6[00:04:39] <Fe​ris> https://tinyurl.com/2yhv4zkb
L7[00:06:59] <Fe​ris> oh wait, now it show it's error with turret.addtrustedplayer https://tinyurl.com/29kx3r38
L8[00:07:12] <Fe​ris> https://tinyurl.com/24aw39mm
L9[00:08:29] <Hawk777> The documentation <https://github.com/OpenModularTurretsTeam/OpenModularTurrets/wiki/OC-CC-Functions&gt; says that the access level integer is optional. That could be wrong? Try passing it anyway?
L10[00:08:44] <Fe​ris> i don't know access levels
L11[00:09:22] <Fe​ris> but it added to turret
L12[00:09:25] <Fe​ris> https://tinyurl.com/2ajxgekn
L13[00:09:51] <Fe​ris> but not to every turret
L14[00:11:03] <Hawk777> The code <https://github.com/OpenModularTurretsTeam/OpenModularTurrets/blob/1.12/src/main/java/omtteam/openmodularturrets/compatibility/opencomputers/ManagedEnvironmentTurretBase.java#L134&gt; appears to make access level mandatory.
L15[00:11:43] <Fe​ris> oh
L16[00:12:24] <Hawk777> The access levels are between 0 and 3 inclusive and are defined here <https://github.com/OpenModularTurretsTeam/OMLib/blob/1.12/src/main/java/omtteam/omlib/api/permission/EnumAccessLevel.java&gt;.
L17[00:12:36] <Hawk777> (None, OpenGUI, ChangeSettings, and Admin)
L18[00:14:42] <Fe​ris> it worked now
L19[00:15:10] <Fe​ris> yeah it's working perfectly now
L20[00:15:11] <Fe​ris> thank you
L21[00:15:12] <Fe​ris> sm
L22[00:40:49] <asie> @Kosmos https://github.com/MightyPirates/OpenComputers/pull/3572
L23[00:40:56] <asie> I gave a response
L24[00:41:11] <asie> in short, I'm not sure if any of us have the capacity to review this properly ;;
L25[00:43:03] <Kos​mos> That's understandable, I just didn't think sitting around on it will do any good. And I do have a checklist to work on still.
L26[00:43:49] <asie> I'd say continue the work; even if we're not capable, I'm sure we can make arrangements to either have this released as an endorsed fork or to just hand over access to the OC build machine
L27[00:47:50] <Fe​ris> How i can check if in table is a player with exact nickname? (opensecurity entity detector) https://tinyurl.com/2bbkerzy
L28[00:58:40] <Kos​mos> Looks like that returns an array-like of entity data (table), so you have to iterate over all entries and check the "name" key in each. Or convert the result into a `name -> true` table first if you want to check multiple.
L29[00:58:58] <Fe​ris> how i can do it?
L30[00:59:22] <Fe​ris> https://tinyurl.com/2au799w5
L31[00:59:27] <Fe​ris> https://tinyurl.com/25pf2d55
L32[01:02:29] <Kos​mos> something like
L33[01:02:29] <Kos​mos> Code Block pastebined https://paste.pc-logix.com/fibidaxizo
L34[01:02:50] <Kos​mos> where `tbl` is the scan result
L35[01:17:51] <Fe​ris> >Kosmos: where `tbl` is the scan result
L36[01:17:51] <Fe​ris> what do you mean
L37[01:18:12] <Fe​ris> https://tinyurl.com/2angxl2u&lt;Fe​ris> https://tinyurl.com/2ccbrhnw
L38[01:19:18] <Kos​mos> `name` needs to be a string, and you can then use it as `if findPlayer(...) then`
L39[01:19:29] <Fe​ris> oh i forgot about ""
L40[01:19:31] <Ri​ley> Is there really not an operation to check if a table contains a key?
L41[01:19:47] <Fe​ris> >Kosmos: `name` needs to be a string, and you can then use it as `if findPlayer(.…
L42[01:19:47] <Fe​ris> yeah ik but i print for debug
L43[01:20:51] <Kos​mos> >Riley: Is there really not an operation to check if a table contains a key?
L44[01:20:51] <Kos​mos> I don't think so (normally you create a lookup table which maps to truth-y values), but even if there was the result table is number-indexed, so you have to iterate either way.
L45[01:21:52] <Ri​ley> Looks like you can use `table[key] ~= nil`.
L46[01:22:16] <Kos​mos> right, that works even better
L47[01:26:27] <Fe​ris> oh, one more i have screen with this dimensions, how i can change res to portrait? https://tinyurl.com/26m3w9bj&lt;Fe​ris> oh, one more i have screen with this dimensions, how i can change res to portrait? https://tinyurl.com/22ull8lv
L48[01:27:58] <Kos​mos> The GPU component has a `setResolution` function I believe.
L49[01:29:43] <Fe​ris> yeah but what arguments i have to give?
L50[01:29:50] <Fe​ris> 2, 1?
L51[01:33:45] <Kos​mos> It's `function(width:number, height:number):boolean` (in characters). Good news is, it looks like you can make `height` higher than what your GPU supports if you drop the `width` in exchange.
L52[01:33:45] <Kos​mos> For that, see `function maxResolution():number, number` (also in the GPU).
L53[01:34:08] <Kos​mos> I don't know how big the screen insets are, so I can't give you the ratios that make the best use of the space you have.
L54[01:35:48] <Fe​ris> >Kosmos: It's `function(width:number, height:number):boolean` (in characters). Go…
L55[01:35:48] <Fe​ris> it returns 160, 50
L56[01:35:51] <Fe​ris> >Kosmos: I don't know how big the screen insets are, so I can't give you the rati…
L57[01:35:51] <Fe​ris> me too
L58[01:36:19] <Kos​mos> How'd you make them reach to the edge of the block anyway?
L59[01:36:37] ⇨ Joins: Izaya (~izaya@210.1.218.92)
L60[01:36:45] <Fe​ris> >Kosmos: How'd you make them reach to the edge of the block anyway?
L61[01:36:45] <Fe​ris> openscreens mod
L62[01:45:47] <Kos​mos> Looks like the font is twice as high as it is wide, so for your screen it works if width and height are the same (in chars). Max should be 89x89 but that will make it harder to view in GUI.
L63[01:46:00] <S​ky> %tonk
L64[01:46:01] <MichiBot> Sard! S​ky! You beat deq​ubed's previous record of 9 hours, 2 minutes and 35 seconds (By 2 hours, 48 minutes and 44 seconds)! I hope you're happy!
L65[01:46:02] <MichiBot> Sky's new record is 11 hours, 51 minutes and 20 seconds! Sky also gained 0.0281 (0.00281 x 10) tonk points for stealing the tonk. Position #18. Need 0.04353 more points to pass n​il!
L66[01:46:11] <S​ky> Dam
L67[01:59:38] ⇦ Quits: Izaya (~izaya@210.1.218.92) (Quit: ZNC 1.8.2+deb2+b1 - https://znc.in)
L68[02:15:31] <Fe​ris> someone have interesting 3d models to print (in minecraft ofc)
L69[02:16:42] <Amanda> @Riley that only works if you're looking for a key, not a value in that table, it's a table(list) of table(map), aiui
L70[02:24:13] <Ri​ley> Yeah, I misread. I thought it was just a table mapping usernames to nicknames rather than a list of tables.
L71[02:26:28] ⇨ Joins: Izaya (~izaya@210.1.218.92)
L72[02:48:29] ⇦ Quits: ben_mkiv (~ben_mkiv@2001:16b8:1e23:bd00:fe34:97ff:fea9:75f2) (Quit: Leaving)
L73[02:48:42] <Z0id​berg> >Feris: someone have interesting 3d models to print (in minecraft ofc)
L74[02:48:42] <Z0id​berg> Print a dinosaur
L75[02:50:55] <Amanda> Print non-euclodian cat towers
L76[02:52:07] * Amanda curls up around elfi, "Nene, do you want to know how I got these cars?" t-shirts, revealing some fairy-sized toy cars-
L77[02:53:33] <Amanda> s/t-shirts/-shifts/
L78[02:56:35] * Amanda collapses into a pile of floof
L79[02:56:57] <Amanda> Night girls, I've got to see the vampires tomorrow meowning
L80[03:15:54] <Z0id​berg> Cat towers huh
L81[04:04:47] ⇦ Quits: MichiBot (~MichiBot@pc-logix.com) (*.net *.split)
L82[04:04:47] ⇦ Quits: tehbeard (~tehesper@66.228.139.228) (*.net *.split)
L83[04:04:47] ⇦ Quits: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1) (*.net *.split)
L84[04:04:47] ⇦ Quits: brandon3055 (~Brandon@81.25.68.254) (*.net *.split)
L85[04:04:47] ⇦ Quits: infina (~infina@144.217.238.84) (*.net *.split)
L86[04:04:47] ⇦ Quits: hnOsmium0001 (uid453710@id-453710.hampstead.irccloud.com) (*.net *.split)
L87[04:04:47] ⇦ Quits: Vaur (~vaur@56.ip-149-202-44.eu) (*.net *.split)
L88[04:04:47] ⇦ Quits: Fridtjof (~fridel@thonk.9net.org) (*.net *.split)
L89[04:04:47] ⇦ Quits: Chebuya (Chebuya@fomalhaut.me) (*.net *.split)
L90[04:04:47] ⇦ Quits: progwml6 (~progwml6@45.159.180.88) (*.net *.split)
L91[04:04:47] ⇦ Quits: fingercomp (fingercomp@fomalhaut.me) (*.net *.split)
L92[04:04:47] ⇦ Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (*.net *.split)
L93[04:04:47] ⇦ Quits: Vazde (vazde@dea.fi) (*.net *.split)
L94[04:04:47] ⇦ Quits: Forecaster (~Forecaste@2001:41d0:700:3949:2222::2) (*.net *.split)
L95[04:04:47] ⇦ Quits: Totoro (totoro@fomalhaut.me) (*.net *.split)
L96[04:04:47] ⇦ Quits: DBotThePony (~Thunderbi@31.220.170.28) (*.net *.split)
L97[04:04:47] ⇦ Quits: Victor_sueca (~Victor_su@190.pool90-165-120.dynamic.orange.es) (*.net *.split)
L98[04:04:47] ⇦ Quits: ping (~uwu@femboy.me) (*.net *.split)
L99[04:04:47] ⇦ Quits: cyn1c (~cynic@a.silly.computer) (*.net *.split)
L100[04:04:47] ⇦ Quits: Pokey (~pokey@vmi238643.contaboserver.net) (*.net *.split)
L101[04:04:47] ⇦ Quits: LeshaInc (LeshaInc@fomalhaut.me) (*.net *.split)
L102[04:04:47] ⇦ Quits: ashka (~postmaste@server4.shellgratuit.com) (*.net *.split)
L103[04:04:47] ⇦ Quits: gruetzkopf (~quassel@daemon.gruetzkopf.org) (*.net *.split)
L104[04:04:47] ⇦ Quits: Oddstr13 (Odd@satomi.openshell.no) (*.net *.split)
L105[04:04:47] ⇦ Quits: Izaya (~izaya@210.1.218.92) (*.net *.split)
L106[04:04:47] ⇦ Quits: Hawk777 (~Hawk777@2607:c000:828c:ba00:8a2d:d3d4:449a:151e) (*.net *.split)
L107[04:04:47] ⇦ Quits: pwootage (~pwootage@new.pwootage.com) (*.net *.split)
L108[04:04:47] ⇦ Quits: glasspelican (~quassel@2607:5300:201:3100::325) (*.net *.split)
L109[04:04:47] ⇦ Quits: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0) (*.net *.split)
L110[04:04:47] ⇦ Quits: Nia (~nia@ayame.servers.aura.moe) (*.net *.split)
L111[04:04:47] ⇦ Quits: immibis (~hexchat@i689751E6.versanet.de) (*.net *.split)
L112[04:04:47] ⇦ Quits: stephan48 (~stephanj@nemesis.stejau.de) (*.net *.split)
L113[04:04:47] ⇦ Quits: SquidDev (~SquidDev@autoclave.squiddev.cc) (*.net *.split)
L114[04:04:47] ⇦ Quits: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net) (*.net *.split)
L115[04:04:47] ⇦ Quits: Arcanox (~dragonox@45.159.182.212) (*.net *.split)
L116[04:04:47] ⇦ Quits: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de) (*.net *.split)
L117[04:04:47] ⇦ Quits: brayden (brayden@2a01:4ff:f0:1c59::1) (*.net *.split)
L118[04:04:47] ⇦ Quits: Guest32080 (znc@nightfall.moe) (*.net *.split)
L119[04:04:47] ⇦ Quits: A_D (A_D@doom-tower.awesome-dragon.science) (*.net *.split)
L120[04:04:47] ⇦ Quits: CompanionCube (~samis@thonk.9net.org) (*.net *.split)
L121[04:04:47] ⇦ Quits: daniel (~quassel@jupiter.danger-it.de) (*.net *.split)
L122[04:04:47] ⇦ Quits: Cruor (Cruor@satomi.openshell.no) (*.net *.split)
L123[04:04:47] ⇦ Quits: Away_21 (crystal@bronyville.me) (*.net *.split)
L124[04:04:47] ⇦ Quits: Teris (sid315557@helmsley.irccloud.com) (*.net *.split)
L125[04:04:47] ⇦ Quits: SinZ (thelounge@grimm.361zn.is) (*.net *.split)
L126[04:04:47] ⇦ Quits: superminor2 (~super@2604:a880:800:c1::373:b001) (*.net *.split)
L127[04:04:47] ⇦ Quits: reborn (reborn@234.network) (*.net *.split)
L128[04:04:47] ⇦ Quits: Lucifer (sid32492@id-32492.ilkley.irccloud.com) (*.net *.split)
L129[04:04:47] ⇦ Quits: zsh (zsh@services.esper.net) (*.net *.split)
L130[04:06:13] ⇨ Joins: Izaya (~izaya@210.1.218.92)
L131[04:06:13] ⇨ Joins: Hawk777 (~Hawk777@2607:c000:828c:ba00:8a2d:d3d4:449a:151e)
L132[04:06:13] ⇨ Joins: MichiBot (~MichiBot@pc-logix.com)
L133[04:06:13] ⇨ Joins: Oddstr13 (Odd@satomi.openshell.no)
L134[04:06:13] ⇨ Joins: gruetzkopf (~quassel@daemon.gruetzkopf.org)
L135[04:06:13] ⇨ Joins: ashka (~postmaste@server4.shellgratuit.com)
L136[04:06:13] ⇨ Joins: LeshaInc (LeshaInc@fomalhaut.me)
L137[04:06:13] ⇨ Joins: Pokey (~pokey@vmi238643.contaboserver.net)
L138[04:06:13] ⇨ Joins: cyn1c (~cynic@a.silly.computer)
L139[04:06:13] ⇨ Joins: ping (~uwu@femboy.me)
L140[04:06:13] ⇨ Joins: Victor_sueca (~Victor_su@190.pool90-165-120.dynamic.orange.es)
L141[04:06:13] ⇨ Joins: DBotThePony (~Thunderbi@31.220.170.28)
L142[04:06:13] ⇨ Joins: pwootage (~pwootage@new.pwootage.com)
L143[04:06:13] ⇨ Joins: glasspelican (~quassel@2607:5300:201:3100::325)
L144[04:06:13] ⇨ Joins: tehbeard (~tehesper@66.228.139.228)
L145[04:06:13] ⇨ Joins: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0)
L146[04:06:13] ⇨ Joins: Nia (~nia@ayame.servers.aura.moe)
L147[04:06:13] ⇨ Joins: immibis (~hexchat@i689751E6.versanet.de)
L148[04:06:13] ⇨ Joins: stephan48 (~stephanj@nemesis.stejau.de)
L149[04:06:13] ⇨ Joins: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1)
L150[04:06:13] ⇨ Joins: brandon3055 (~Brandon@81.25.68.254)
L151[04:06:13] ⇨ Joins: SquidDev (~SquidDev@autoclave.squiddev.cc)
L152[04:06:13] ⇨ Joins: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net)
L153[04:06:13] ⇨ Joins: infina (~infina@144.217.238.84)
L154[04:06:13] ⇨ Joins: Arcanox (~dragonox@45.159.182.212)
L155[04:06:13] ⇨ Joins: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de)
L156[04:06:13] ⇨ Joins: hnOsmium0001 (uid453710@id-453710.hampstead.irccloud.com)
L157[04:06:13] ⇨ Joins: Totoro (totoro@fomalhaut.me)
L158[04:06:13] ⇨ Joins: Forecaster (~Forecaste@2001:41d0:700:3949:2222::2)
L159[04:06:13] ⇨ Joins: Vazde (vazde@dea.fi)
L160[04:06:13] ⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L161[04:06:13] ⇨ Joins: fingercomp (fingercomp@fomalhaut.me)
L162[04:06:13] ⇨ Joins: progwml6 (~progwml6@45.159.180.88)
L163[04:06:13] ⇨ Joins: Chebuya (Chebuya@fomalhaut.me)
L164[04:06:13] ⇨ Joins: Fridtjof (~fridel@thonk.9net.org)
L165[04:06:13] ⇨ Joins: Vaur (~vaur@56.ip-149-202-44.eu)
L166[04:06:13] ⇨ Joins: brayden (brayden@2a01:4ff:f0:1c59::1)
L167[04:06:13] ⇨ Joins: Guest32080 (znc@nightfall.moe)
L168[04:06:13] ⇨ Joins: A_D (A_D@doom-tower.awesome-dragon.science)
L169[04:06:13] ⇨ Joins: CompanionCube (~samis@thonk.9net.org)
L170[04:06:13] ⇨ Joins: daniel (~quassel@jupiter.danger-it.de)
L171[04:06:13] ⇨ Joins: Lucifer (sid32492@id-32492.ilkley.irccloud.com)
L172[04:06:13] ⇨ Joins: reborn (reborn@234.network)
L173[04:06:13] ⇨ Joins: superminor2 (~super@2604:a880:800:c1::373:b001)
L174[04:06:13] ⇨ Joins: SinZ (thelounge@grimm.361zn.is)
L175[04:06:13] ⇨ Joins: Teris (sid315557@helmsley.irccloud.com)
L176[04:06:13] ⇨ Joins: Away_21 (crystal@bronyville.me)
L177[04:06:13] anarchy.esper.net sets mode: +v on superminor2
L178[04:06:13] ⇨ Joins: Cruor (Cruor@satomi.openshell.no)
L179[04:06:13] ⇨ Joins: zsh (zsh@services.esper.net)
L180[04:06:13] anarchy.esper.net sets mode: +o on zsh
L181[05:32:35] ⇦ Quits: Arcanox (~dragonox@45.159.182.212) (Ping timeout: 189 seconds)
L182[05:32:35] ⇦ Quits: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de) (Quit: Leaving)
L183[05:32:35] ⇨ Joins: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de)
L184[05:36:15] ⇨ Joins: Arcanox (~dragonox@45.159.182.212)
L185[06:16:00] <Forec​aster> %sip
L186[06:16:02] <MichiBot> You drink a seeping aluminium potion (New!). It tastes sweet.
L187[06:43:40] ⇦ Quits: Izaya (~izaya@210.1.218.92) (Ping timeout: 189 seconds)
L188[06:49:14] ⇦ Quits: MichiBot (~MichiBot@pc-logix.com) (*.net *.split)
L189[06:49:14] ⇦ Quits: tehbeard (~tehesper@66.228.139.228) (*.net *.split)
L190[06:49:14] ⇦ Quits: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1) (*.net *.split)
L191[06:49:14] ⇦ Quits: brandon3055 (~Brandon@81.25.68.254) (*.net *.split)
L192[06:49:14] ⇦ Quits: infina (~infina@144.217.238.84) (*.net *.split)
L193[06:49:14] ⇦ Quits: hnOsmium0001 (uid453710@id-453710.hampstead.irccloud.com) (*.net *.split)
L194[06:49:14] ⇦ Quits: Vaur (~vaur@56.ip-149-202-44.eu) (*.net *.split)
L195[06:49:14] ⇦ Quits: Fridtjof (~fridel@thonk.9net.org) (*.net *.split)
L196[06:49:14] ⇦ Quits: Chebuya (Chebuya@fomalhaut.me) (*.net *.split)
L197[06:49:14] ⇦ Quits: progwml6 (~progwml6@45.159.180.88) (*.net *.split)
L198[06:49:14] ⇦ Quits: fingercomp (fingercomp@fomalhaut.me) (*.net *.split)
L199[06:49:14] ⇦ Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (*.net *.split)
L200[06:49:14] ⇦ Quits: Vazde (vazde@dea.fi) (*.net *.split)
L201[06:49:14] ⇦ Quits: Forecaster (~Forecaste@2001:41d0:700:3949:2222::2) (*.net *.split)
L202[06:49:14] ⇦ Quits: Totoro (totoro@fomalhaut.me) (*.net *.split)
L203[06:49:14] ⇦ Quits: DBotThePony (~Thunderbi@31.220.170.28) (*.net *.split)
L204[06:49:14] ⇦ Quits: Victor_sueca (~Victor_su@190.pool90-165-120.dynamic.orange.es) (*.net *.split)
L205[06:49:14] ⇦ Quits: ping (~uwu@femboy.me) (*.net *.split)
L206[06:49:14] ⇦ Quits: cyn1c (~cynic@a.silly.computer) (*.net *.split)
L207[06:49:14] ⇦ Quits: Pokey (~pokey@vmi238643.contaboserver.net) (*.net *.split)
L208[06:49:14] ⇦ Quits: LeshaInc (LeshaInc@fomalhaut.me) (*.net *.split)
L209[06:49:14] ⇦ Quits: ashka (~postmaste@server4.shellgratuit.com) (*.net *.split)
L210[06:49:14] ⇦ Quits: gruetzkopf (~quassel@daemon.gruetzkopf.org) (*.net *.split)
L211[06:49:14] ⇦ Quits: Oddstr13 (Odd@satomi.openshell.no) (*.net *.split)
L212[06:49:14] ⇦ Quits: Arcanox (~dragonox@45.159.182.212) (*.net *.split)
L213[06:49:14] ⇦ Quits: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de) (*.net *.split)
L214[06:49:14] ⇦ Quits: Hawk777 (~Hawk777@2607:c000:828c:ba00:8a2d:d3d4:449a:151e) (*.net *.split)
L215[06:49:14] ⇦ Quits: pwootage (~pwootage@new.pwootage.com) (*.net *.split)
L216[06:49:14] ⇦ Quits: glasspelican (~quassel@2607:5300:201:3100::325) (*.net *.split)
L217[06:49:14] ⇦ Quits: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0) (*.net *.split)
L218[06:49:14] ⇦ Quits: Nia (~nia@ayame.servers.aura.moe) (*.net *.split)
L219[06:49:14] ⇦ Quits: immibis (~hexchat@i689751E6.versanet.de) (*.net *.split)
L220[06:49:14] ⇦ Quits: stephan48 (~stephanj@nemesis.stejau.de) (*.net *.split)
L221[06:49:14] ⇦ Quits: SquidDev (~SquidDev@autoclave.squiddev.cc) (*.net *.split)
L222[06:49:14] ⇦ Quits: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net) (*.net *.split)
L223[06:49:14] ⇦ Quits: brayden (brayden@2a01:4ff:f0:1c59::1) (*.net *.split)
L224[06:49:14] ⇦ Quits: Guest32080 (znc@nightfall.moe) (*.net *.split)
L225[06:49:14] ⇦ Quits: A_D (A_D@doom-tower.awesome-dragon.science) (*.net *.split)
L226[06:49:14] ⇦ Quits: CompanionCube (~samis@thonk.9net.org) (*.net *.split)
L227[06:49:14] ⇦ Quits: daniel (~quassel@jupiter.danger-it.de) (*.net *.split)
L228[06:49:14] ⇦ Quits: Cruor (Cruor@satomi.openshell.no) (*.net *.split)
L229[06:49:14] ⇦ Quits: Away_21 (crystal@bronyville.me) (*.net *.split)
L230[06:49:14] ⇦ Quits: Teris (sid315557@helmsley.irccloud.com) (*.net *.split)
L231[06:49:14] ⇦ Quits: SinZ (thelounge@grimm.361zn.is) (*.net *.split)
L232[06:49:14] ⇦ Quits: superminor2 (~super@2604:a880:800:c1::373:b001) (*.net *.split)
L233[06:49:14] ⇦ Quits: reborn (reborn@234.network) (*.net *.split)
L234[06:49:14] ⇦ Quits: Lucifer (sid32492@id-32492.ilkley.irccloud.com) (*.net *.split)
L235[06:49:14] ⇦ Quits: zsh (zsh@services.esper.net) (*.net *.split)
L236[06:50:42] ⇨ Joins: Izaya (~izaya@210.1.218.92)
L237[06:50:42] ⇨ Joins: Arcanox (~dragonox@45.159.182.212)
L238[06:50:42] ⇨ Joins: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de)
L239[06:50:42] ⇨ Joins: Hawk777 (~Hawk777@2607:c000:828c:ba00:8a2d:d3d4:449a:151e)
L240[06:50:42] ⇨ Joins: MichiBot (~MichiBot@pc-logix.com)
L241[06:50:42] ⇨ Joins: Oddstr13 (Odd@satomi.openshell.no)
L242[06:50:42] ⇨ Joins: gruetzkopf (~quassel@daemon.gruetzkopf.org)
L243[06:50:42] ⇨ Joins: ashka (~postmaste@server4.shellgratuit.com)
L244[06:50:42] ⇨ Joins: LeshaInc (LeshaInc@fomalhaut.me)
L245[06:50:42] ⇨ Joins: Pokey (~pokey@vmi238643.contaboserver.net)
L246[06:50:42] ⇨ Joins: cyn1c (~cynic@a.silly.computer)
L247[06:50:42] ⇨ Joins: ping (~uwu@femboy.me)
L248[06:50:42] ⇨ Joins: Victor_sueca (~Victor_su@190.pool90-165-120.dynamic.orange.es)
L249[06:50:42] ⇨ Joins: DBotThePony (~Thunderbi@31.220.170.28)
L250[06:50:42] ⇨ Joins: pwootage (~pwootage@new.pwootage.com)
L251[06:50:42] ⇨ Joins: glasspelican (~quassel@2607:5300:201:3100::325)
L252[06:50:42] ⇨ Joins: tehbeard (~tehesper@66.228.139.228)
L253[06:50:42] ⇨ Joins: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0)
L254[06:50:42] ⇨ Joins: Nia (~nia@ayame.servers.aura.moe)
L255[06:50:42] ⇨ Joins: immibis (~hexchat@i689751E6.versanet.de)
L256[06:50:42] ⇨ Joins: stephan48 (~stephanj@nemesis.stejau.de)
L257[06:50:42] ⇨ Joins: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1)
L258[06:50:42] ⇨ Joins: brandon3055 (~Brandon@81.25.68.254)
L259[06:50:42] ⇨ Joins: SquidDev (~SquidDev@autoclave.squiddev.cc)
L260[06:50:42] ⇨ Joins: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net)
L261[06:50:42] ⇨ Joins: infina (~infina@144.217.238.84)
L262[06:50:42] ⇨ Joins: hnOsmium0001 (uid453710@id-453710.hampstead.irccloud.com)
L263[06:50:42] ⇨ Joins: Totoro (totoro@fomalhaut.me)
L264[06:50:42] ⇨ Joins: Forecaster (~Forecaste@2001:41d0:700:3949:2222::2)
L265[06:50:42] ⇨ Joins: Vazde (vazde@dea.fi)
L266[06:50:42] ⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L267[06:50:42] ⇨ Joins: fingercomp (fingercomp@fomalhaut.me)
L268[06:50:42] ⇨ Joins: progwml6 (~progwml6@45.159.180.88)
L269[06:50:42] ⇨ Joins: Chebuya (Chebuya@fomalhaut.me)
L270[06:50:42] ⇨ Joins: Fridtjof (~fridel@thonk.9net.org)
L271[06:50:42] ⇨ Joins: Vaur (~vaur@56.ip-149-202-44.eu)
L272[06:50:42] ⇨ Joins: brayden (brayden@2a01:4ff:f0:1c59::1)
L273[06:50:42] ⇨ Joins: Guest32080 (znc@nightfall.moe)
L274[06:50:42] ⇨ Joins: A_D (A_D@doom-tower.awesome-dragon.science)
L275[06:50:42] ⇨ Joins: CompanionCube (~samis@thonk.9net.org)
L276[06:50:42] ⇨ Joins: daniel (~quassel@jupiter.danger-it.de)
L277[06:50:42] ⇨ Joins: Lucifer (sid32492@id-32492.ilkley.irccloud.com)
L278[06:50:43] ⇨ Joins: reborn (reborn@234.network)
L279[06:50:43] ⇨ Joins: superminor2 (~super@2604:a880:800:c1::373:b001)
L280[06:50:43] ⇨ Joins: SinZ (thelounge@grimm.361zn.is)
L281[06:50:43] ⇨ Joins: Teris (sid315557@helmsley.irccloud.com)
L282[06:50:43] ⇨ Joins: Away_21 (crystal@bronyville.me)
L283[06:50:43] anarchy.esper.net sets mode: +v on superminor2
L284[06:50:43] ⇨ Joins: Cruor (Cruor@satomi.openshell.no)
L285[06:50:43] ⇨ Joins: zsh (zsh@services.esper.net)
L286[06:50:43] anarchy.esper.net sets mode: +o on zsh
L287[07:12:06] ⇦ Quits: Hawk777 (~Hawk777@2607:c000:828c:ba00:8a2d:d3d4:449a:151e) (Quit: Leaving.)
L288[07:19:58] ⇨ Joins: Vexatos (~Vexatos@p200300eaef139f30a80e96f5765f5dc8.dip0.t-ipconnect.de)
L289[07:19:58] zsh sets mode: +v on Vexatos
L290[07:44:14] ⇦ Quits: MichiBot (~MichiBot@pc-logix.com) (*.net *.split)
L291[07:44:14] ⇦ Quits: tehbeard (~tehesper@66.228.139.228) (*.net *.split)
L292[07:44:14] ⇦ Quits: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1) (*.net *.split)
L293[07:44:14] ⇦ Quits: brandon3055 (~Brandon@81.25.68.254) (*.net *.split)
L294[07:44:14] ⇦ Quits: infina (~infina@144.217.238.84) (*.net *.split)
L295[07:44:14] ⇦ Quits: hnOsmium0001 (uid453710@id-453710.hampstead.irccloud.com) (*.net *.split)
L296[07:44:14] ⇦ Quits: Vaur (~vaur@56.ip-149-202-44.eu) (*.net *.split)
L297[07:44:14] ⇦ Quits: Fridtjof (~fridel@thonk.9net.org) (*.net *.split)
L298[07:44:14] ⇦ Quits: Chebuya (Chebuya@fomalhaut.me) (*.net *.split)
L299[07:44:14] ⇦ Quits: progwml6 (~progwml6@45.159.180.88) (*.net *.split)
L300[07:44:14] ⇦ Quits: fingercomp (fingercomp@fomalhaut.me) (*.net *.split)
L301[07:44:14] ⇦ Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (*.net *.split)
L302[07:44:14] ⇦ Quits: Vazde (vazde@dea.fi) (*.net *.split)
L303[07:44:14] ⇦ Quits: Forecaster (~Forecaste@2001:41d0:700:3949:2222::2) (*.net *.split)
L304[07:44:14] ⇦ Quits: Totoro (totoro@fomalhaut.me) (*.net *.split)
L305[07:44:14] ⇦ Quits: DBotThePony (~Thunderbi@31.220.170.28) (*.net *.split)
L306[07:44:14] ⇦ Quits: Victor_sueca (~Victor_su@190.pool90-165-120.dynamic.orange.es) (*.net *.split)
L307[07:44:14] ⇦ Quits: ping (~uwu@femboy.me) (*.net *.split)
L308[07:44:14] ⇦ Quits: cyn1c (~cynic@a.silly.computer) (*.net *.split)
L309[07:44:14] ⇦ Quits: Pokey (~pokey@vmi238643.contaboserver.net) (*.net *.split)
L310[07:44:14] ⇦ Quits: LeshaInc (LeshaInc@fomalhaut.me) (*.net *.split)
L311[07:44:14] ⇦ Quits: ashka (~postmaste@server4.shellgratuit.com) (*.net *.split)
L312[07:44:14] ⇦ Quits: gruetzkopf (~quassel@daemon.gruetzkopf.org) (*.net *.split)
L313[07:44:14] ⇦ Quits: Oddstr13 (Odd@satomi.openshell.no) (*.net *.split)
L314[07:44:14] ⇦ Quits: Izaya (~izaya@210.1.218.92) (*.net *.split)
L315[07:44:14] ⇦ Quits: Arcanox (~dragonox@45.159.182.212) (*.net *.split)
L316[07:44:14] ⇦ Quits: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de) (*.net *.split)
L317[07:44:14] ⇦ Quits: pwootage (~pwootage@new.pwootage.com) (*.net *.split)
L318[07:44:14] ⇦ Quits: glasspelican (~quassel@2607:5300:201:3100::325) (*.net *.split)
L319[07:44:14] ⇦ Quits: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0) (*.net *.split)
L320[07:44:14] ⇦ Quits: Nia (~nia@ayame.servers.aura.moe) (*.net *.split)
L321[07:44:14] ⇦ Quits: immibis (~hexchat@i689751E6.versanet.de) (*.net *.split)
L322[07:44:14] ⇦ Quits: stephan48 (~stephanj@nemesis.stejau.de) (*.net *.split)
L323[07:44:14] ⇦ Quits: SquidDev (~SquidDev@autoclave.squiddev.cc) (*.net *.split)
L324[07:44:14] ⇦ Quits: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net) (*.net *.split)
L325[07:44:14] ⇦ Quits: brayden (brayden@2a01:4ff:f0:1c59::1) (*.net *.split)
L326[07:44:14] ⇦ Quits: Guest32080 (znc@nightfall.moe) (*.net *.split)
L327[07:44:14] ⇦ Quits: A_D (A_D@doom-tower.awesome-dragon.science) (*.net *.split)
L328[07:44:14] ⇦ Quits: CompanionCube (~samis@thonk.9net.org) (*.net *.split)
L329[07:44:14] ⇦ Quits: daniel (~quassel@jupiter.danger-it.de) (*.net *.split)
L330[07:44:14] ⇦ Quits: Cruor (Cruor@satomi.openshell.no) (*.net *.split)
L331[07:44:14] ⇦ Quits: Away_21 (crystal@bronyville.me) (*.net *.split)
L332[07:44:14] ⇦ Quits: Teris (sid315557@helmsley.irccloud.com) (*.net *.split)
L333[07:44:14] ⇦ Quits: SinZ (thelounge@grimm.361zn.is) (*.net *.split)
L334[07:44:14] ⇦ Quits: superminor2 (~super@2604:a880:800:c1::373:b001) (*.net *.split)
L335[07:44:14] ⇦ Quits: reborn (reborn@234.network) (*.net *.split)
L336[07:44:14] ⇦ Quits: Lucifer (sid32492@id-32492.ilkley.irccloud.com) (*.net *.split)
L337[07:44:14] ⇦ Quits: zsh (zsh@services.esper.net) (*.net *.split)
L338[07:45:32] ⇨ Joins: Izaya (~izaya@210.1.218.92)
L339[07:45:32] ⇨ Joins: Arcanox (~dragonox@45.159.182.212)
L340[07:45:32] ⇨ Joins: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de)
L341[07:45:32] ⇨ Joins: MichiBot (~MichiBot@pc-logix.com)
L342[07:45:32] ⇨ Joins: Oddstr13 (Odd@satomi.openshell.no)
L343[07:45:32] ⇨ Joins: gruetzkopf (~quassel@daemon.gruetzkopf.org)
L344[07:45:32] ⇨ Joins: ashka (~postmaste@server4.shellgratuit.com)
L345[07:45:32] ⇨ Joins: LeshaInc (LeshaInc@fomalhaut.me)
L346[07:45:32] ⇨ Joins: Pokey (~pokey@vmi238643.contaboserver.net)
L347[07:45:32] ⇨ Joins: cyn1c (~cynic@a.silly.computer)
L348[07:45:32] ⇨ Joins: ping (~uwu@femboy.me)
L349[07:45:32] ⇨ Joins: Victor_sueca (~Victor_su@190.pool90-165-120.dynamic.orange.es)
L350[07:45:32] ⇨ Joins: DBotThePony (~Thunderbi@31.220.170.28)
L351[07:45:32] ⇨ Joins: pwootage (~pwootage@new.pwootage.com)
L352[07:45:32] ⇨ Joins: glasspelican (~quassel@2607:5300:201:3100::325)
L353[07:45:32] ⇨ Joins: tehbeard (~tehesper@66.228.139.228)
L354[07:45:32] ⇨ Joins: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0)
L355[07:45:32] ⇨ Joins: Nia (~nia@ayame.servers.aura.moe)
L356[07:45:32] ⇨ Joins: immibis (~hexchat@i689751E6.versanet.de)
L357[07:45:32] ⇨ Joins: stephan48 (~stephanj@nemesis.stejau.de)
L358[07:45:32] ⇨ Joins: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1)
L359[07:45:32] ⇨ Joins: brandon3055 (~Brandon@81.25.68.254)
L360[07:45:32] ⇨ Joins: SquidDev (~SquidDev@autoclave.squiddev.cc)
L361[07:45:32] ⇨ Joins: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net)
L362[07:45:32] ⇨ Joins: infina (~infina@144.217.238.84)
L363[07:45:32] ⇨ Joins: hnOsmium0001 (uid453710@id-453710.hampstead.irccloud.com)
L364[07:45:32] ⇨ Joins: Totoro (totoro@fomalhaut.me)
L365[07:45:32] ⇨ Joins: Forecaster (~Forecaste@2001:41d0:700:3949:2222::2)
L366[07:45:32] ⇨ Joins: Vazde (vazde@dea.fi)
L367[07:45:32] ⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L368[07:45:32] ⇨ Joins: fingercomp (fingercomp@fomalhaut.me)
L369[07:45:32] ⇨ Joins: progwml6 (~progwml6@45.159.180.88)
L370[07:45:32] ⇨ Joins: Chebuya (Chebuya@fomalhaut.me)
L371[07:45:32] ⇨ Joins: Fridtjof (~fridel@thonk.9net.org)
L372[07:45:32] ⇨ Joins: Vaur (~vaur@56.ip-149-202-44.eu)
L373[07:45:32] ⇨ Joins: brayden (brayden@2a01:4ff:f0:1c59::1)
L374[07:45:32] ⇨ Joins: Guest32080 (znc@nightfall.moe)
L375[07:45:32] ⇨ Joins: A_D (A_D@doom-tower.awesome-dragon.science)
L376[07:45:32] ⇨ Joins: CompanionCube (~samis@thonk.9net.org)
L377[07:45:32] ⇨ Joins: daniel (~quassel@jupiter.danger-it.de)
L378[07:45:32] ⇨ Joins: Lucifer (sid32492@id-32492.ilkley.irccloud.com)
L379[07:45:32] ⇨ Joins: reborn (reborn@234.network)
L380[07:45:32] ⇨ Joins: superminor2 (~super@2604:a880:800:c1::373:b001)
L381[07:45:32] ⇨ Joins: SinZ (thelounge@grimm.361zn.is)
L382[07:45:32] ⇨ Joins: Teris (sid315557@helmsley.irccloud.com)
L383[07:45:32] ⇨ Joins: Away_21 (crystal@bronyville.me)
L384[07:45:32] ⇨ Joins: Cruor (Cruor@satomi.openshell.no)
L385[07:45:32] anarchy.esper.net sets mode: +v on superminor2
L386[07:45:32] ⇨ Joins: zsh (zsh@services.esper.net)
L387[07:45:32] anarchy.esper.net sets mode: +o on zsh
L388[07:52:35] <Forec​aster> esper's having some issues lately
L389[07:54:08] ⇦ Quits: MichiBot (~MichiBot@pc-logix.com) (*.net *.split)
L390[07:54:08] ⇦ Quits: tehbeard (~tehesper@66.228.139.228) (*.net *.split)
L391[07:54:08] ⇦ Quits: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1) (*.net *.split)
L392[07:54:08] ⇦ Quits: brandon3055 (~Brandon@81.25.68.254) (*.net *.split)
L393[07:54:08] ⇦ Quits: infina (~infina@144.217.238.84) (*.net *.split)
L394[07:54:08] ⇦ Quits: hnOsmium0001 (uid453710@id-453710.hampstead.irccloud.com) (*.net *.split)
L395[07:54:08] ⇦ Quits: Vaur (~vaur@56.ip-149-202-44.eu) (*.net *.split)
L396[07:54:08] ⇦ Quits: Fridtjof (~fridel@thonk.9net.org) (*.net *.split)
L397[07:54:08] ⇦ Quits: Chebuya (Chebuya@fomalhaut.me) (*.net *.split)
L398[07:54:08] ⇦ Quits: progwml6 (~progwml6@45.159.180.88) (*.net *.split)
L399[07:54:08] ⇦ Quits: fingercomp (fingercomp@fomalhaut.me) (*.net *.split)
L400[07:54:08] ⇦ Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (*.net *.split)
L401[07:54:08] ⇦ Quits: Vazde (vazde@dea.fi) (*.net *.split)
L402[07:54:08] ⇦ Quits: Forecaster (~Forecaste@2001:41d0:700:3949:2222::2) (*.net *.split)
L403[07:54:08] ⇦ Quits: Totoro (totoro@fomalhaut.me) (*.net *.split)
L404[07:54:08] ⇦ Quits: DBotThePony (~Thunderbi@31.220.170.28) (*.net *.split)
L405[07:54:08] ⇦ Quits: Victor_sueca (~Victor_su@190.pool90-165-120.dynamic.orange.es) (*.net *.split)
L406[07:54:08] ⇦ Quits: ping (~uwu@femboy.me) (*.net *.split)
L407[07:54:08] ⇦ Quits: cyn1c (~cynic@a.silly.computer) (*.net *.split)
L408[07:54:08] ⇦ Quits: Pokey (~pokey@vmi238643.contaboserver.net) (*.net *.split)
L409[07:54:08] ⇦ Quits: LeshaInc (LeshaInc@fomalhaut.me) (*.net *.split)
L410[07:54:08] ⇦ Quits: ashka (~postmaste@server4.shellgratuit.com) (*.net *.split)
L411[07:54:08] ⇦ Quits: gruetzkopf (~quassel@daemon.gruetzkopf.org) (*.net *.split)
L412[07:54:08] ⇦ Quits: Oddstr13 (Odd@satomi.openshell.no) (*.net *.split)
L413[07:54:08] ⇦ Quits: Izaya (~izaya@210.1.218.92) (*.net *.split)
L414[07:54:08] ⇦ Quits: Arcanox (~dragonox@45.159.182.212) (*.net *.split)
L415[07:54:08] ⇦ Quits: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de) (*.net *.split)
L416[07:54:08] ⇦ Quits: pwootage (~pwootage@new.pwootage.com) (*.net *.split)
L417[07:54:08] ⇦ Quits: glasspelican (~quassel@2607:5300:201:3100::325) (*.net *.split)
L418[07:54:08] ⇦ Quits: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0) (*.net *.split)
L419[07:54:08] ⇦ Quits: Nia (~nia@ayame.servers.aura.moe) (*.net *.split)
L420[07:54:08] ⇦ Quits: immibis (~hexchat@i689751E6.versanet.de) (*.net *.split)
L421[07:54:08] ⇦ Quits: stephan48 (~stephanj@nemesis.stejau.de) (*.net *.split)
L422[07:54:08] ⇦ Quits: SquidDev (~SquidDev@autoclave.squiddev.cc) (*.net *.split)
L423[07:54:08] ⇦ Quits: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net) (*.net *.split)
L424[07:54:08] ⇦ Quits: brayden (brayden@2a01:4ff:f0:1c59::1) (*.net *.split)
L425[07:54:08] ⇦ Quits: Guest32080 (znc@nightfall.moe) (*.net *.split)
L426[07:54:08] ⇦ Quits: A_D (A_D@doom-tower.awesome-dragon.science) (*.net *.split)
L427[07:54:08] ⇦ Quits: CompanionCube (~samis@thonk.9net.org) (*.net *.split)
L428[07:54:08] ⇦ Quits: daniel (~quassel@jupiter.danger-it.de) (*.net *.split)
L429[07:54:08] ⇦ Quits: Cruor (Cruor@satomi.openshell.no) (*.net *.split)
L430[07:54:08] ⇦ Quits: Away_21 (crystal@bronyville.me) (*.net *.split)
L431[07:54:08] ⇦ Quits: Teris (sid315557@helmsley.irccloud.com) (*.net *.split)
L432[07:54:08] ⇦ Quits: SinZ (thelounge@grimm.361zn.is) (*.net *.split)
L433[07:54:08] ⇦ Quits: superminor2 (~super@2604:a880:800:c1::373:b001) (*.net *.split)
L434[07:54:08] ⇦ Quits: reborn (reborn@234.network) (*.net *.split)
L435[07:54:08] ⇦ Quits: Lucifer (sid32492@id-32492.ilkley.irccloud.com) (*.net *.split)
L436[07:54:08] ⇦ Quits: zsh (zsh@services.esper.net) (*.net *.split)
L437[07:54:56] ⇨ Joins: Izaya (~izaya@210.1.218.92)
L438[07:54:56] ⇨ Joins: Arcanox (~dragonox@45.159.182.212)
L439[07:54:56] ⇨ Joins: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de)
L440[07:54:56] ⇨ Joins: MichiBot (~MichiBot@pc-logix.com)
L441[07:54:56] ⇨ Joins: Oddstr13 (Odd@satomi.openshell.no)
L442[07:54:56] ⇨ Joins: gruetzkopf (~quassel@daemon.gruetzkopf.org)
L443[07:54:56] ⇨ Joins: ashka (~postmaste@server4.shellgratuit.com)
L444[07:54:56] ⇨ Joins: LeshaInc (LeshaInc@fomalhaut.me)
L445[07:54:56] ⇨ Joins: Pokey (~pokey@vmi238643.contaboserver.net)
L446[07:54:56] ⇨ Joins: cyn1c (~cynic@a.silly.computer)
L447[07:54:56] ⇨ Joins: ping (~uwu@femboy.me)
L448[07:54:56] ⇨ Joins: Victor_sueca (~Victor_su@190.pool90-165-120.dynamic.orange.es)
L449[07:54:56] ⇨ Joins: DBotThePony (~Thunderbi@31.220.170.28)
L450[07:54:56] ⇨ Joins: pwootage (~pwootage@new.pwootage.com)
L451[07:54:56] ⇨ Joins: glasspelican (~quassel@2607:5300:201:3100::325)
L452[07:54:56] ⇨ Joins: tehbeard (~tehesper@66.228.139.228)
L453[07:54:56] ⇨ Joins: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0)
L454[07:54:56] ⇨ Joins: Nia (~nia@ayame.servers.aura.moe)
L455[07:54:56] ⇨ Joins: immibis (~hexchat@i689751E6.versanet.de)
L456[07:54:56] ⇨ Joins: stephan48 (~stephanj@nemesis.stejau.de)
L457[07:54:56] ⇨ Joins: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1)
L458[07:54:56] ⇨ Joins: brandon3055 (~Brandon@81.25.68.254)
L459[07:54:56] ⇨ Joins: SquidDev (~SquidDev@autoclave.squiddev.cc)
L460[07:54:56] ⇨ Joins: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net)
L461[07:54:56] ⇨ Joins: infina (~infina@144.217.238.84)
L462[07:54:56] ⇨ Joins: hnOsmium0001 (uid453710@id-453710.hampstead.irccloud.com)
L463[07:54:56] ⇨ Joins: Totoro (totoro@fomalhaut.me)
L464[07:54:56] ⇨ Joins: Forecaster (~Forecaste@2001:41d0:700:3949:2222::2)
L465[07:54:56] ⇨ Joins: Vazde (vazde@dea.fi)
L466[07:54:56] ⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L467[07:54:56] ⇨ Joins: fingercomp (fingercomp@fomalhaut.me)
L468[07:54:56] ⇨ Joins: progwml6 (~progwml6@45.159.180.88)
L469[07:54:56] ⇨ Joins: Chebuya (Chebuya@fomalhaut.me)
L470[07:54:56] ⇨ Joins: Fridtjof (~fridel@thonk.9net.org)
L471[07:54:56] ⇨ Joins: Vaur (~vaur@56.ip-149-202-44.eu)
L472[07:54:56] ⇨ Joins: brayden (brayden@2a01:4ff:f0:1c59::1)
L473[07:54:56] ⇨ Joins: Guest32080 (znc@nightfall.moe)
L474[07:54:56] ⇨ Joins: A_D (A_D@doom-tower.awesome-dragon.science)
L475[07:54:56] ⇨ Joins: CompanionCube (~samis@thonk.9net.org)
L476[07:54:56] ⇨ Joins: daniel (~quassel@jupiter.danger-it.de)
L477[07:54:56] ⇨ Joins: Lucifer (sid32492@id-32492.ilkley.irccloud.com)
L478[07:54:56] ⇨ Joins: reborn (reborn@234.network)
L479[07:54:56] ⇨ Joins: superminor2 (~super@2604:a880:800:c1::373:b001)
L480[07:54:56] ⇨ Joins: SinZ (thelounge@grimm.361zn.is)
L481[07:54:56] ⇨ Joins: Teris (sid315557@helmsley.irccloud.com)
L482[07:54:56] ⇨ Joins: Away_21 (crystal@bronyville.me)
L483[07:54:56] ⇨ Joins: Cruor (Cruor@satomi.openshell.no)
L484[07:54:56] anarchy.esper.net sets mode: +v on superminor2
L485[07:54:56] ⇨ Joins: zsh (zsh@services.esper.net)
L486[07:54:56] anarchy.esper.net sets mode: +o on zsh
L487[08:24:23] <Va​ur> %sip
L488[08:24:25] <MichiBot> You drink a smooth pussplum potion (New!). Vaur suddenly forgets a random piece of trivia.
L489[08:57:09] ⇨ Joins: dustinm`_ (~dustinm@static.38.6.217.95.clients.your-server.de)
L490[08:57:56] ⇦ Quits: Izaya (~izaya@210.1.218.92) (*.net *.split)
L491[08:57:56] ⇦ Quits: Arcanox (~dragonox@45.159.182.212) (*.net *.split)
L492[08:57:56] ⇦ Quits: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de) (*.net *.split)
L493[08:57:56] ⇦ Quits: pwootage (~pwootage@new.pwootage.com) (*.net *.split)
L494[08:57:56] ⇦ Quits: glasspelican (~quassel@2607:5300:201:3100::325) (*.net *.split)
L495[08:57:56] ⇦ Quits: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0) (*.net *.split)
L496[08:57:56] ⇦ Quits: Nia (~nia@ayame.servers.aura.moe) (*.net *.split)
L497[08:57:56] ⇦ Quits: immibis (~hexchat@i689751E6.versanet.de) (*.net *.split)
L498[08:57:56] ⇦ Quits: stephan48 (~stephanj@nemesis.stejau.de) (*.net *.split)
L499[08:57:56] ⇦ Quits: SquidDev (~SquidDev@autoclave.squiddev.cc) (*.net *.split)
L500[08:57:56] ⇦ Quits: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net) (*.net *.split)
L501[08:57:56] ⇦ Quits: brayden (brayden@2a01:4ff:f0:1c59::1) (*.net *.split)
L502[08:57:56] ⇦ Quits: Guest32080 (znc@nightfall.moe) (*.net *.split)
L503[08:57:56] ⇦ Quits: A_D (A_D@doom-tower.awesome-dragon.science) (*.net *.split)
L504[08:57:56] ⇦ Quits: CompanionCube (~samis@thonk.9net.org) (*.net *.split)
L505[08:57:56] ⇦ Quits: daniel (~quassel@jupiter.danger-it.de) (*.net *.split)
L506[08:57:56] ⇦ Quits: Cruor (Cruor@satomi.openshell.no) (*.net *.split)
L507[08:57:56] ⇦ Quits: Away_21 (crystal@bronyville.me) (*.net *.split)
L508[08:57:56] ⇦ Quits: Teris (sid315557@helmsley.irccloud.com) (*.net *.split)
L509[08:57:56] ⇦ Quits: SinZ (thelounge@grimm.361zn.is) (*.net *.split)
L510[08:57:56] ⇦ Quits: superminor2 (~super@2604:a880:800:c1::373:b001) (*.net *.split)
L511[08:57:56] ⇦ Quits: reborn (reborn@234.network) (*.net *.split)
L512[08:57:56] ⇦ Quits: Lucifer (sid32492@id-32492.ilkley.irccloud.com) (*.net *.split)
L513[09:00:28] ⇨ Joins: Arcanox (~dragonox@45.159.182.212)
L514[09:00:28] ⇨ Joins: Izaya (~izaya@210.1.218.92)
L515[09:00:28] ⇨ Joins: pwootage (~pwootage@new.pwootage.com)
L516[09:00:28] ⇨ Joins: glasspelican (~quassel@2607:5300:201:3100::325)
L517[09:00:28] ⇨ Joins: Amanda (~m-yt727s@2601:46:c603:aba1:6bce:f9fb:1742:3f0)
L518[09:00:28] ⇨ Joins: Nia (~nia@ayame.servers.aura.moe)
L519[09:00:28] ⇨ Joins: immibis (~hexchat@i689751E6.versanet.de)
L520[09:00:28] ⇨ Joins: stephan48 (~stephanj@nemesis.stejau.de)
L521[09:00:28] ⇨ Joins: SquidDev (~SquidDev@autoclave.squiddev.cc)
L522[09:00:28] ⇨ Joins: kan18_ (~kan18@h234.89.28.71.dynamic.ip.windstream.net)
L523[09:00:28] ⇨ Joins: brayden (brayden@2a01:4ff:f0:1c59::1)
L524[09:00:28] ⇨ Joins: Guest32080 (znc@nightfall.moe)
L525[09:00:28] ⇨ Joins: A_D (A_D@doom-tower.awesome-dragon.science)
L526[09:00:28] ⇨ Joins: CompanionCube (~samis@thonk.9net.org)
L527[09:00:28] ⇨ Joins: daniel (~quassel@jupiter.danger-it.de)
L528[09:00:28] ⇨ Joins: Cruor (Cruor@satomi.openshell.no)
L529[09:00:28] ⇨ Joins: Away_21 (crystal@bronyville.me)
L530[09:00:28] ⇨ Joins: Teris (sid315557@helmsley.irccloud.com)
L531[09:00:28] ⇨ Joins: SinZ (thelounge@grimm.361zn.is)
L532[09:00:28] ⇨ Joins: superminor2 (~super@2604:a880:800:c1::373:b001)
L533[09:00:28] ⇨ Joins: reborn (reborn@234.network)
L534[09:00:28] ⇨ Joins: Lucifer (sid32492@id-32492.ilkley.irccloud.com)
L535[09:00:28] anarchy.esper.net sets mode: +v on superminor2
L536[09:14:17] <AR2​000> Can @Corded stop spamming ?
L537[09:21:54] <Izaya> if only
L538[09:29:51] <AR2​000> I'm still surprised by the number of ppl on IRC compared of the number really chatting
L539[09:31:06] <Izaya> oh, a netsplit
L540[09:31:09] <Izaya> lmao
L541[09:31:34] <Izaya> this is only a third of the peak or so
L542[09:32:59] <AR2​000> had to google to understand. New to irc
L543[09:34:50] <AR2​000> I know what it is, but not how it work
L544[09:41:04] <ThePi​Guy24> >AR2000: I'm still surprised by the number of ppl on IRC compared of the number really…
L545[09:41:04] <ThePi​Guy24> its an even worse ratio on discord ;p
L546[09:41:14] <AR2​000> >AR2000: Can <@173917481042182144> stop spamming ?
L547[09:41:14] <AR2​000> suddenly : no context
L548[09:42:23] <AR2​000> >ThePiGuy24: its an even worse ratio on discord ;p
L549[09:42:23] <AR2​000> but discord list everyone who joined the srv. Corded show everyone who chosed to join the channel (maybe, never used any other IRC client other than the web one on the forum or in game one)
L550[09:43:12] <Forec​aster> Lurking is an ancient pastime
L551[09:57:49] <Elfi> And an oft-overlooked one these days
L552[10:02:19] <Forec​aster> %sip
L553[10:02:20] <MichiBot> You drink a basic platinum potion (New!). Forecaster feels slightly faster.
L554[10:30:52] <Va​ur> %sip
L555[10:30:53] <MichiBot> You drink a porous toxictop potion (New!). Vaur's favourite hair suddenly disintegrates.
L556[10:54:44] * Amanda sleepily meows and looks around before going to the vampires
L557[11:10:48] <Amanda> It's always risky scanning Izayafedi feed in public
L558[11:11:12] <Izaya> ... I can see why you'd say that.
L559[11:52:32] <Amanda> %oclogs
L560[11:52:32] <MichiBot> https://irclogs.pc-logix.com/?dir=logs/%23oc
L561[12:23:39] <Na​dja> Izaya: At least it's not porn and just … whatever you call that specific variation of cuteposting. :P
L562[12:24:35] <Forec​aster> corn
L563[12:27:39] <S​ky> %sip
L564[12:27:40] <MichiBot> You drink a porous ocean potion (New!). Sky's skin turn the color of naqahdah for 3 hours.
L565[12:40:51] <Forec​aster> %sip
L566[12:40:53] <MichiBot> You drink a slimy amethyst potion (New!). A bard starts playing a lute behind Forecaster until they say the phrase "Supercalifragilisticexpialidocious Wenk".
L567[12:41:14] <S​ky> %sip porous amethyst
L568[12:41:14] <MichiBot> You drink a porous amethyst potion (New!). Sky gains some curse. Sky has 1 curse. (Rem. uses: 0)
L569[12:41:19] <S​ky> Oh
L570[12:52:12] <Forec​aster> Supercalifragilisticexpialidocious Wenk!
L571[13:01:27] <S​ky> %sip tonk
L572[13:01:27] <MichiBot> You drink a smelly cyan potion (New!). Sky gains the ability to talk to Swords until they see a unicorn.
L573[13:01:31] <S​ky> Oh
L574[13:01:52] <S​ky> Can I not just put tonk and have it give me tonk points? Smh /s
L575[13:01:56] <S​ky> %shell
L576[13:01:57] <MichiBot> Sky loads a Magic Quantum Potato! (25%) into a shell and fires it. It strikes inf​ina. They take 1d8 => 5 (Magic +2) => 7 damage. Lesh​aInc and Si​nZ stood too close and take 1d6 => 3 (Magic +2) => 5, and 1d6 => 5 (Magic +2) => 7 damage respectively.
L577[13:02:04] <S​ky> Holy damn
L578[13:27:26] ⇦ Quits: Vexatos (~Vexatos@p200300eaef139f30a80e96f5765f5dc8.dip0.t-ipconnect.de) (Ping timeout: 189 seconds)
L579[13:36:44] <Forec​aster> >Sky: Can I not just put tonk and have it give me tonk points? Smh /s
L580[13:36:44] <Forec​aster> I know right. The person who coded this is clearly incompetent
L581[13:41:12] ⇨ Joins: Vexatos (~Vexatos@p200300eaef139f398707e3682ca96761.dip0.t-ipconnect.de)
L582[13:41:12] zsh sets mode: +v on Vexatos
L583[13:44:27] <Fe​ris> how i can wake my computers with setWakeMessage?
L584[13:44:36] <Fe​ris> broadcast doesn't work
L585[13:45:04] <AR2​000> %tonk
L586[13:45:05] <MichiBot> Dogast! AR2​000! You beat S​ky's previous record of 11 hours, 51 minutes and 20 seconds (By 7 minutes and 44 seconds)! I hope you're happy!
L587[13:45:06] <MichiBot> AR2000's new record is 11 hours, 59 minutes and 4 seconds! AR2000 also gained 0.00156 (0.00013 x 12) tonk points for stealing the tonk. Position #13. Need 0.0051 more points to pass as​ie!
L588[13:45:52] <AR2​000> I am indeed happy, 56s of it being a 12h tonk
L589[13:47:12] <Fe​ris> >Feris: how i can wake my computers with setWakeMessage?
L590[13:47:12] <Fe​ris> ?
L591[13:50:48] <AR2​000> >Feris: broadcast doesn't work
L592[13:50:48] <AR2​000> It does, just tested it
L593[13:51:34] <AR2​000> PC 1 : `component.modem.setWakeMessage("bob")`
L594[13:51:34] <AR2​000> PC 2 : `component.modem.broadcast(anyport,"bob")`
L595[13:51:55] <Fe​ris> oh shit, i pasted wrong line xD https://tinyurl.com/236uedfl
L596[13:52:15] <Fe​ris> yeah it's working now
L597[13:52:22] <Fe​ris> thanks
L598[13:52:35] <AR2​000> you don't need to open a port for the wakeMessage
L599[13:53:08] <Fe​ris> yeah i know but this program is not only for waking up
L600[14:08:53] <AR2​000> I'm having a issue of screen freezing when reloading my world. All screens stop refreshing, but still work
L601[14:09:24] <AR2​000> No they are not turned off by redstone, they are still displaying the last image
L602[14:40:04] <Forec​aster> This is a long standing bug
L603[14:40:18] <Forec​aster> No one knows why it happens
L604[14:40:37] <AR2​000> it's annoying with public infra locked in bedrock
L605[15:23:09] <Inari 「オ​兄デレ」「狐っ娘」> what server is that on?
L606[15:38:59] <Amanda> Wheeee. Filed an issue for zig for where my ocwasm stuff crashes in 0.10+
L607[15:39:23] <Amanda> Wish my anxity let me do that earlier, considering it was such a simple thing to boil down to a small testcase
L608[15:39:45] <Amanda> s/crashes/crashes the compiler/
L609[15:39:45] <MichiBot> <Amanda> Wheeee. Filed an issue for zig for where my ocwasm stuff crashes the compiler in 0.10+
L610[15:40:12] <Ri​ley> inb4 fixed in stage2
L611[15:40:21] <Amanda> Stage2 doesn't have async, so in a way it is. :P
L612[15:40:27] <Amanda> It's caused by async in wasm somehow
L613[15:40:39] <Amanda> Issue: https://github.com/ziglang/zig/issues/13397
L614[15:40:42] <MichiBot> Title: -fstage1 crashes on wasm32-freestanding with async | Posted by: AmandaCameron | Posted: Tue Nov 01 15:33:16 UTC 2022 | Status: open
L615[15:42:54] <AR2​000> >Inari 「オ兄デレ」「狐っ娘」: what server is that on?
L616[15:42:54] <AR2​000> my screen issue ? Just a local world
L617[15:48:58] <Z0id​berg> WOOO! Dwarf Fortress Steam release date is December 6th 2022
L618[15:49:19] <Amanda> No longer "Time is subjective"
L619[15:56:50] <Ri​ley> Is there any reason why the oc2 file transfer card has a hardcoded limit of 512 kb? It's usually good enough™ for text files, but I found that I have to `split` and `cat` frames for the projector. Busybox's compression utilities also fail for some reason, though I was using the GNU utilities to compress so they may just be incompatible for some reason.
L620[16:12:49] <Na​dja> technical limits in Minecraft IIRC
L621[16:13:14] <asie> there's no reason AFAIK
L622[16:13:24] <asie> what I did was mount the hard drive image locally lol
L623[16:14:07] <Na​dja> @Sangar For some reason the OC2 config system just doesn't appear to work. Is that a ToDo or *should* that work and something is weird?
L624[16:26:02] <Ri​ley> >asie: what I did was mount the hard drive image locally lol
L625[16:26:02] <Ri​ley> Just got that to work. That's much easier.
L626[16:35:12] <Ri​ley> Is it safe to modify the image as long as it is not mounted in any computers or should the server be stopped? I imagine multiple writers could cause issues.
L627[16:36:28] <asie> I don't remember... it's been a while. Check the OC2 config file
L628[16:36:39] <asie> but I know I did it with only in-game computers shut down, not the MC server
L629[17:28:39] <Inari 「オ​兄デレ」「狐っ娘」> >AR2000: my screen issue ? Just a local world
L630[17:28:39] <Inari 「オ​兄デレ」「狐っ娘」> ah damn, public infrastructure made me think maybe a server to play on
L631[17:37:37] ⇨ Joins: ben_mkiv (~ben_mkiv@2001:16b8:1e23:bd00:fe34:97ff:fea9:75f2)
L632[17:42:19] <Forec​aster> %sip
L633[17:42:20] <MichiBot> You drink a simulated electrum potion (New!). As Forecaster drinks the potion they become the target of a wad of llama spit! They fail to evade it with a 7 vs DC 12 and takes 1d​4 => 1 damage.
L634[17:42:35] <Forec​aster> Ew
L635[17:56:31] <Ri​ley> %sip
L636[17:56:31] <MichiBot> You drink a warpy octiron potion (New!). Riley reboots for an update for 7 minutes.
L637[18:20:09] <Va​ur> %sip
L638[18:20:10] <MichiBot> You drink a concentrated red potion (New!). Vaur zones out for 4 minutes.
L639[18:20:27] ⇨ Joins: watameln (~watameln@cpc77022-warw18-2-0-cust239.3-2.cable.virginm.net)
L640[18:20:35] <watameln> hello!
L641[18:21:07] <watameln> anyone online today?
L642[18:23:17] <watameln> among us
L643[18:23:57] <S​ky> What
L644[18:24:23] <Amanda> Just a 8 year old's idea of funny, just saying the name of a game
L645[18:25:22] <watameln> you can't asume my age doe
L646[18:25:31] <watameln> well you can but don't please
L647[18:25:45] <S​ky> You can entirely assume someone's age.
L648[18:25:47] <Amanda> I'm a grown ass-woman, I can do what I want
L649[18:26:01] * Amanda curls up around Elfi, reads more stories to her
L650[18:26:12] <watameln> women arent real
L651[18:26:13] <S​ky> I'm a high school student I can mostly do what I want! :sunglasses_in_tears;
L652[18:26:17] <S​ky> What
L653[18:26:20] <watameln> joke nerd
L654[18:26:32] <watameln> how do i move to the russian irc
L655[18:26:42] <S​ky> There is no Russian irc?
L656[18:26:55] <watameln> what is #cc.ru then
L657[18:26:57] <Teris> I'd like to assist you watameIn and inform you that you potentially may have misidentified the joke
L658[18:27:04] <Teris> I recommend a further investigation
L659[18:27:13] <watameln> who are you teris
L660[18:27:24] <S​ky> #cc.ru is probably a computercraft channel.
L661[18:27:26] <watameln> Why do you speak like an AI?
L662[18:27:34] <Te​ris> I am who I am. No more and no less of course
L663[18:27:35] <watameln> Yes this is a computercraft channel??
L664[18:27:40] <S​ky> No
L665[18:27:44] <watameln> YES
L666[18:27:52] <watameln> im talking thru computercraft
L667[18:27:53] <S​ky> What
L668[18:27:56] <watameln> or open computers
L669[18:27:57] <S​ky> Ok
L670[18:28:00] <watameln> whatever
L671[18:28:01] <S​ky> And?
L672[18:28:07] <S​ky> Not special
L673[18:28:12] <watameln> okay?
L674[18:28:15] <S​ky> IRC is a simple protocol
L675[18:28:26] <S​ky> Not hard, and OC includes an irc program.
L676[18:28:30] <watameln> what is this then
L677[18:28:44] <Amanda> IRC
L678[18:28:58] <Te​ris> It's also linked to Discord
L679[18:29:12] <S​ky> This is IRC, which this particular channel has a discord bridge.
L680[18:29:20] <watameln> why is this linked to discord?
L681[18:29:28] <S​ky> Why not?
L682[18:29:30] <watameln> this is minecraft
L683[18:29:38] <S​ky> You are in minecraft.
L684[18:29:52] <Te​ris> Minecraft is not currently running on my computer
L685[18:29:53] <S​ky> Everyone else is on a normal computer
L686[18:29:57] <Te​ris> Your statement is not valid for all
L687[18:30:06] <watameln> No I'm talking from minecraft computer
L688[18:30:08] <Forec​aster> Maybe we're all in Minecraft and don't know it
L689[18:30:15] <Forec​aster> Minecraft all the way down
L690[18:30:18] <S​ky> Also mobile keyboards suck
L691[18:30:22] <watameln> what discord is this hooked up to?
L692[18:30:23] <Te​ris> I invite you to read my message more carefully watameIn
L693[18:30:27] <S​ky> Same here
L694[18:30:33] <S​ky> *you* are in minecraft
L695[18:30:43] <S​ky> Everyone *else* is not
L696[18:30:48] <Forec​aster> Who has time to read these days amirite
L697[18:30:52] <watameln> why
L698[18:30:53] <S​ky> I know
L699[18:31:01] <watameln> can i post links?
L700[18:31:10] <S​ky> Probably
L701[18:31:26] <watameln> so https://pornhub.com
L702[18:31:30] <watameln> that works?
L703[18:31:36] <S​ky> Jesus fucking christ
L704[18:31:43] <S​ky> 8 year old confirmed
L705[18:31:45] <watameln> Don't swear to jesus
L706[18:32:10] <Te​ris> I would like to advance the alternative age guess of 12 years
L707[18:32:12] <Forecaster> %tban watameln 1w
L708[18:32:13] *** zsh sets mode: +b *!*@cpc77022-warw18-2-0-cust239.3-2.cable.virginm.net
L709[18:32:14] *** watameln was kicked by zsh ((MichiBot) Reason: | For: 1w | Expires: 11/08/2022 06:32:12 PM))
L710[18:32:19] <S​ky> Pog
L711[18:32:24] <S​ky> Forecaster ftw
L712[18:35:42] <Na​dja> @Teris ohi teris, fancy seeing you talking here :P
L713[18:36:08] <Te​ris> I've never left
L714[18:36:24] <S​ky> Goodbye, Teris.
L715[18:36:24] <Na​dja> Yes, but you rarely *talk* these days ;)
L716[18:36:35] <Te​ris> Now that is true
L717[18:36:40] <S​ky> 12 year olds bring out the dead.
L718[18:36:46] <Ri​ley> RIP watameln (11/08/2022-11/08/2022)
L719[18:36:50] <Na​dja> And if you read carefully, that's what I wrote too ;P
L720[18:36:51] <Forec​aster> Who has time to talk these days amirite
L721[18:37:05] <S​ky> >Riley: RIP watameln (11/08/2022-11/08/2022)
L722[18:37:05] <S​ky> Not a rip imo
L723[18:37:07] <Na​dja> Forecaster I will smite you :P
L724[18:37:24] <S​ky> >Nadja: Forecaster I will smite you :P
L725[18:37:24] <S​ky> Sir I will have you know I am completely illiterate.
L726[18:37:34] <Te​ris> I've returned to one of my previous pastimes and so I check this server a little more often than in the past
L727[18:43:33] <Mich​iyo🎃> I look away to work, come back and see I missed all the fun
L728[18:44:23] <Na​dja> >Sky: Sir I will have you know I am completely illiterate.
L729[18:44:23] <Na​dja> Ma'am I will have you know that I am most certainly not a sir :P
L730[18:46:46] ⇦ Quits: ben_mkiv (~ben_mkiv@2001:16b8:1e23:bd00:fe34:97ff:fea9:75f2) (Killed (NickServ (GHOST command used by ben_mkiv|afk!~ben_mkiv@200116b81400e600fe3497fffea975f2.dip.versatel-1u1.de)))
L731[18:46:47] ⇨ Joins: ben_mkiv|afk (~ben_mkiv@200116b81400e600fe3497fffea975f2.dip.versatel-1u1.de)
L732[18:50:12] <Amanda> @Michiyo this seems to be your curse
L733[18:50:22] <Amanda> Did you anger a forest spirit recently?
L734[18:50:51] <Te​ris> The ping didn't work because you missed a pumpkin
L735[18:51:25] <Amanda> It should have worked, unless her account name isn't "Michiyo" -- let's test, does this ping work? @Inari
L736[18:51:49] <Amanda> If not, corded broke
L737[18:52:50] <Na​dja> It's @Michiyo🎃 now
L738[18:53:09] <Na​dja> Or wait, can you ping me with @Nadja?
L739[18:53:14] <Na​dja> … wait
L740[18:53:14] <Mich​iyo🎃> Corded still should have found me.
L741[18:53:21] <Amanda> @Nadja ?
L742[18:53:22] <Mich​iyo🎃> Oh, no I'm an idiot
L743[18:53:30] <nadja> fucking discord.
L744[18:53:31] <Mich​iyo🎃> I changed my actual name, not my nickname
L745[18:53:32] <nadja> @dequbed
L746[18:53:36] <Forec​aster> Corded is an enderman
L747[18:53:37] <Na​dja> welp
L748[18:53:39] <Na​dja> Nice
L749[18:53:42] <Na​dja> It works :D
L750[18:53:53] <Mich​iyo🎃> Corded can ping by account name, or nickname
L751[18:54:02] <Na​dja> cool ^^
L752[18:54:03] <Forec​aster> Can't see you if you're wearing a pumpkin
L753[19:12:46] ⇦ Quits: Lucifer (sid32492@id-32492.ilkley.irccloud.com) (Ping timeout: 189 seconds)
L754[19:13:10] ⇨ Joins: Lucifer (sid32492@id-32492.ilkley.irccloud.com)
L755[19:21:44] <Forec​aster> %sip
L756[19:21:44] <Amanda> Hi Lucy!
L757[19:21:44] <MichiBot> You drink a goopy cyan potion (New!). There's an acidic tinge to the potion... A label on the bottle reads "Who needs internal organs anyway?". Forecaster takes 3d​6 => [1,1,6] acid damage.
L758[19:21:57] <Forec​aster> ow dangit
L759[19:22:08] <Amanda> %splash @Inari with mutable potion
L760[19:22:09] <MichiBot> You fling a mutable stainless steel potion (New!) that splashes onto @Inari. @Inari turns into a pig girl until they stop thinking about it.
L761[19:22:12] <Forec​aster> I should mix some minecraft creatures into MichiBots tables
L762[19:25:31] <Va​ur> %sip
L763[19:25:32] <MichiBot> You drink a muddy oculemon potion (New!). Vaur comes face to face with a basilisk! Vaur is turned to stone until they eat a pie (3 vs DC 14)
L764[19:25:53] <Forec​aster> eating anything's gonna be difficult
L765[19:26:19] <Amanda> %fling Pie at Vaur's mouth
L766[19:26:19] <MichiBot> Ama​nda flings at Vau​r's mouth in a random direction. It hits the ground near Pie
L767[19:26:29] <Amanda> eh, close enough
L768[19:26:47] <Amanda> %choose pizza or chikken
L769[19:26:48] <MichiBot> Ama​nda: "chikken", now with 30% fewer deaths caused by negligence!
L770[19:33:16] <S​ky> %sip
L771[19:33:17] <MichiBot> You drink a wild coral potion (New!). An incredibly fake looking mustache is stuck to Sky's face until they see a bird.
L772[19:33:22] <S​ky> oh
L773[19:35:03] <lukas​z4444> anyone knows how to print file content like example.txt using loop that will print it until file ends
L774[19:35:52] <Forec​aster> in what?
L775[19:40:28] <lukas​z4444> I'm making a simple program that sends files through a stargate, and I don't know how to send a file as text.
L776[19:40:29] <lukas​z4444> I know that on the 1st computer the file is sent and on the second computer each line of code is added to the file until computer 1 does not send a command that tells computer 2 to stop saving all messeges to the file and that's it.
L777[19:43:54] <Forec​aster> you probably want to look at the filesystem library
L778[19:45:33] <lukas​z4444> i know it but i don't know ho do i print content of the file in a loop until file ends.
L779[19:51:45] ⇨ Joins: test12234 (webchat@d178-52.icpnet.pl)
L780[19:53:18] <Redston​eParkour> i believe there's an end-of-file character, just search for that
L781[19:53:33] <Redston​eParkour> in the received string
L782[19:56:47] <Ri​ley> The buffer API in ocdocs looks useful. Maybe you can use the whole file read option?
L783[20:12:05] <Forec​aster> %tonk
L784[20:12:05] <MichiBot> I'm sorry Forecaster, you were not able to beat AR2000's record of 11 hours, 59 minutes and 4 seconds this time. 6 hours and 27 minutes were wasted! Missed by 5 hours, 32 minutes and 4 seconds!
L785[20:23:38] <Ri​ley> >lukasz4444: i know it but i don't know how do i print content of the file in a loop …
L786[20:23:38] <Ri​ley> Can't really help you without more information. There's no good answer to this question because it depends on how you are reading the file, which likely depends on the format of the file. Assuming your file is a small text file, I would suggest just reading the entire file into a string, sending the string over the stargate, then writing that string out to a file on the recipient's filesystem.
L787[20:24:33] <Forec​aster> What do you mean? Just get the crystal ball out and summon the perfect answer from the ether
L788[20:48:57] <Amanda> But @Inari pushed it off the table
L789[20:51:58] <Inari 「オ​兄デレ」「狐っ娘」> slander
L790[20:53:26] <Forec​aster> You mean it's in for repairs again? Dang.
L791[21:04:05] <AR2​000> >Forecaster: %tonk
L792[21:04:05] <AR2​000> You can't beat me *evil laugh*
L793[21:04:05] <MichiBot> I'm sorry AR2000, you were not able to beat AR2000's record of 11 hours, 59 minutes and 4 seconds this time. 52 minutes were wasted! Missed by 11 hours, 7 minutes and 4 seconds!
L794[21:07:12] <AR2​000> @lukasz4444
L795[21:07:12] <AR2​000> Code Block pastebined https://paste.pc-logix.com/fedapubozi
L796[21:07:25] <AR2​000> is that what you need ?
L797[21:09:10] <AR2​000> Oh, so <@705480975668347003> doesn't know the diff between a msg, and a reply
L798[21:11:19] <Kos​mos> I heard corded just pastes the replied-to message to IRC ahead of yours, and MichiBot runs on the IRC side.
L799[21:15:34] <Amanda> Not the full message
L800[21:15:53] <Amanda> And she prefixes it with a carrot
L801[21:20:39] ⇨ Joins: ckstep (~ckstep@host-185-25-219-144.jmdi.pl)
L802[21:24:18] <Forec​aster> 🥕 prefix
L803[21:26:01] <AR2​000> Michibot should ignore carrots then
L804[21:26:49] <Amanda> This wasn't a problem before, then forecaster made her accept commands anywhere in the message
L805[21:27:16] <Amanda> So, as always %blame Forecaster
L806[21:27:17] * MichiBot blames Forecaster for certain comic book heroes dying and coming back, and dying again
L807[21:34:45] <Forec​aster> It's nice though, people use it all the time 😛
L808[21:35:47] <Forec​aster> When I resume working on MichiBot I'll add a ignore prefix setting
L809[21:36:00] <Forec​aster> There's already a suffix one
L810[21:36:18] <Forec​aster> Also it's "caret"
L811[21:52:14] <AR2​000> You're right. I should %blame Forecaster for making me waste a tonk
L812[21:52:14] * MichiBot blames Forecaster for making me waste a tonk for adding Magic Quantum Potato Chips to the inventory!
L813[21:57:42] <Amanda> No, it's left-facing alligator
L814[22:03:14] <Amanda> Because clearly the name on the left is more tasty
L815[22:04:46] <Amanda> ... The name's more tasty than what they have to say, which says a lot about the world
L816[22:08:46] ⇦ Quits: dustinm`_ (~dustinm@static.38.6.217.95.clients.your-server.de) (Quit: Leaving)
L817[22:16:51] ⇨ Joins: dustinm` (~dustinm@static.38.6.217.95.clients.your-server.de)
L818[23:20:23] <Forec​aster> What if it's a right facing bird? >
L819[23:41:45] <Amanda> %choose games or halucinate
L820[23:41:45] <MichiBot> Ama​nda: I have a pamphlet that says never to engage in "games", so you should definitely do it!
L821[23:42:11] <Amanda> MichiBot is a gigoloette
L822[23:53:59] ⇦ Quits: Vexatos (~Vexatos@p200300eaef139f398707e3682ca96761.dip0.t-ipconnect.de) (Quit: Insert quantum chemistry joke here)
<<Prev Next>> Scroll to Top