<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:12:24] ⇦ Quits: Vexaton (~Vexatos@port-92-192-13-96.dynamic.as20676.net) (Quit: Insert quantum chemistry joke here)
L2[00:26:37] ⇦ Quits: Herobrine (~1@47.199.247.86) (Remote host closed the connection)
L3[00:26:54] ⇨ Joins: Herobrine (~1@47.199.247.86)
L4[00:36:34] <Izaya> upside
L5[00:36:37] <Izaya> my wonky shuttle works
L6[00:36:53] <Izaya> downside, it only just has enough ion thrust to get out of the gravity well with zero cargo
L7[00:36:59] <Izaya> guess I'll slap more thrusters on it
L8[00:39:44] <Izaya> ah wonderful
L9[00:39:59] <Izaya> game froze on the descent and by the time it unfroze the only thing left of the shuttle was the cockpit
L10[00:42:30] <Izaya> time for a reboot I think
L11[00:46:56] <Adorabl​eCatgirl> i have a shack on triton
L12[00:47:05] <Adorabl​eCatgirl> my goal is to have a comsat network around triton
L13[00:49:29] <Izaya> AdorableCatgirl: https://gist.github.com/tluyben/16ee2645c4c8aed813005d51488d5c6a
L14[00:49:40] <Izaya> that + octal input + LCD output and I'd have a semi-workable interactive system
L15[00:50:38] <Adorabl​eCatgirl> how small of a lua implementation can we get
L16[00:51:00] <Izaya> is there any data storage block in spengies
L17[00:51:09] <Adorabl​eCatgirl> the block itself
L18[00:51:17] <Adorabl​eCatgirl> also think the enemy team is wallhacking lmao
L19[00:51:20] <Adorabl​eCatgirl> in cs
L20[00:51:27] <Izaya> you recompile and all your stuff is gone
L21[00:51:28] <Izaya> >.>
L22[00:51:35] <Izaya> I guess you can use the custom data but that's icky
L23[00:54:16] <Adorabl​eCatgirl> ah yes
L24[00:54:20] <Adorabl​eCatgirl> the running AK headshot
L25[00:54:25] <Adorabl​eCatgirl> a classic csgo move
L26[00:54:31] <Adorabl​eCatgirl> that and the running deagle headshot
L27[00:55:01] <Kristo​pher38> Izaya: the intended way to do it is custom data, really
L28[00:55:25] <Izaya> I hate that tbh
L29[00:55:29] <Izaya> it's just a string
L30[00:55:35] <Izaya> an arbitrary length string
L31[00:58:47] <Adorabl​eCatgirl> god i'm fuckin pissed
L32[00:58:52] <Adorabl​eCatgirl> bullets just phased out of reality
L33[00:59:27] <Adorabl​eCatgirl> alright i'm done with CS for today
L34[00:59:32] <Adorabl​eCatgirl> time to see how to make spengies plugins
L35[01:08:09] <Izaya> https://pool.jortage.com/vulpineclub/media_attachments/files/104/673/441/012/463/351/original/44f404a51e2e2cf7.mp4
L36[01:22:16] <ThePi​Guy24> no
L37[01:29:15] ⇦ Quits: Kostik (webchat@87.117.56.49) (Quit: webchat.esper.net)
L38[01:35:48] ⇦ Quits: flappy (~flappy@mobile-access-567376-214.dhcp.inet.fi) (Ping timeout: 189 seconds)
L39[01:44:40] <Bri​anH> Hm, is there an easy way to tell if a table has keys?
L40[01:44:51] <Ocawes​ome101> `if table[key] then ... end`
L41[01:44:55] <Bri​anH> No...
L42[01:45:08] <Ocawes​ome101> what are you trying to do then
L43[01:45:10] <Bri​anH> Not what I asked as much as it sounds like it 😄
L44[01:45:23] <Kristo​pher38> clarify your question then
L45[01:45:24] <Bri​anH> I'm trying to figure out a way to detect if a table is a keyed table or not
L46[01:45:46] <Izaya> purely numerical vs arbitrary keys?
L47[01:45:55] <Bri​anH> correct
L48[01:46:02] <Izaya> count pairs() vs ipairs()
L49[01:46:23] <Kristo​pher38> I was about to suggest just this but I was concerned about performance
L50[01:46:28] <Amanda> %choose waves or radiation
L51[01:46:28] <MichiBot> Ama​nda: I'm 40% "radiation"!
L52[01:46:35] <Ocawes​ome101> count pairs() vs #
L53[01:46:46] <Izaya> oh that's a good point
L54[01:48:20] <Bri​anH> Yeah # could work, It appears that if a table has any arbitrary keys, even if you give it numerical keys with arbitrary keys, the size of table t is always 0
L55[01:48:23] <Bri​anH> good
L56[01:48:38] <Izaya> I think ipairs and # are basically the same thing
L57[01:48:42] <Izaya> but I don't actually know
L58[01:48:58] <Ocawes​ome101> # is a lot faster since no function call
L59[01:48:58] <Bri​anH> ipairs returns an iterator though
L60[01:49:00] <Izaya> like, I think # returns a count using ipairs, but I'm not sure why I think that
L61[01:49:02] <Ocawes​ome101> and no iteration
L62[01:49:11] <Izaya> oh, there you go
L63[01:49:13] <Izaya> carry on them
L64[01:49:14] <Ocawes​ome101> i don't think it does - but ask kris, he'd know
L65[01:50:04] <Bri​anH> ]
L66[01:50:34] <Bri​anH> Now to determine if I should autotectect it or if I should store them as different datatypes...
L67[01:50:43] <Bri​anH> I think I should just store them as the same
L68[01:50:47] <Kristo​pher38> https://stackoverflow.com/a/23591039/5182790
L69[01:52:50] <Kristo​pher38> good explanation on what happens exactly behind the scenes
L70[01:53:22] <Kristo​pher38> so no, # does not return count by using ipairs() iteration
L71[01:54:07] <Kristo​pher38> (funfact - I know the guy that answered, the world really is small)
L72[01:55:14] <Kristo​pher38> also why am I assumed to know such things? D:
L73[01:55:46] <Bri​anH> I am goin to cheat
L74[01:56:03] <Bri​anH> so I will store the type of table as two separate types
L75[01:56:10] <Bri​anH> but I will handle them as the same
L76[01:56:38] <Bri​anH> That way I know what I want the end result to be by the type number with the table
L77[01:56:40] <Bri​anH> but that's it
L78[01:56:54] <Bri​anH> (reduces duplicate code)
L79[02:08:04] <Bra​mble> How do i power a computer?
L80[02:08:26] <Ocawes​ome101> With generators
L81[02:08:29] <Ocawes​ome101> Or maybe sheep
L82[02:08:50] <Bra​mble> Do i need a separate mod?
L83[02:08:59] <Ocawes​ome101> No
L84[02:09:09] <Ocawes​ome101> I’d recommend one for survival tho
L85[02:09:21] <Ocawes​ome101> Simple Generators is good
L86[02:09:22] <Bra​mble> what mod would you use
L87[02:09:24] <Bra​mble> ok
L88[02:10:05] <Bra​mble> How would you do it just with the base mod
L89[02:10:17] <Elfi> %choose Stay on Safina or go to SPAAAAAACE
L90[02:10:17] <MichiBot> El​fi: Wait, what was the question again? Uhh... "go to SPAAAAAACE"?
L91[02:11:03] <Ocawes​ome101> Sheep on top of carpeted capacitors
L92[02:11:30] <Ocawes​ome101> You’d need several for a T3 computer
L93[02:11:50] <Bra​mble> ok
L94[02:12:50] <Ocawes​ome101> With cables running from the capacitors to all components, obvs
L95[02:13:08] <Bra​mble> ok
L96[02:20:16] <ThePi​Guy24> or just disable the power requirement in the config
L97[02:20:45] <Bra​mble> ok
L98[02:23:36] ⇦ Quits: ben_mkiv|afk (~ben_mkiv@i59F67828.versanet.de) (Quit: Leaving)
L99[02:25:48] <Bra​mble> where would i find this setting
L100[02:39:49] <DaCompu​terNerd> oh lovely apparently downgrading the mod from 1.7.5.212 to 1.7.5.209 corrupted the world
L101[03:35:04] ⇨ Joins: Ocawesome101 (~ocawesome@38.65.248.143)
L102[03:58:13] <Amanda> %remindme 30m jump
L103[03:58:13] <MichiBot> I'll remind you about "jump" at 08/11/2020 08:28:13 PM
L104[04:27:26] ⇨ Joins: ocawesome (~ocawesome@38.65.249.225)
L105[04:28:13] <MichiBot> Amanda REMINDER: jump
L106[04:28:49] ⇦ Quits: Ocawesome101 (~ocawesome@38.65.248.143) (Killed (NickServ (GHOST command used by ocawesome!~ocawesome@38.65.249.225)))
L107[04:28:55] *** ocawesome is now known as ocawesome101
L108[04:28:59] *** ocawesome101 is now known as Ocawesome101
L109[04:35:22] ⇨ Joins: immibis_ (~immibis@x4e36b131.dyn.telefonica.de)
L110[04:36:17] ⇦ Quits: immibis (~immibis@x4e371af9.dyn.telefonica.de) (Ping timeout: 189 seconds)
L111[04:36:18] *** immibis_ is now known as immibis
L112[04:50:14] <Sagh​etti> me for the past 7 hours http://tinyurl.com/y352jsym
L113[04:51:24] <Ocawesome101> lmao
L114[04:51:28] <Ocawesome101> also hi saghetti
L115[05:05:04] ⇦ Quits: Ocawesome101 (~ocawesome@38.65.249.225) (Quit: I'm probably going to bed.)
L116[05:12:25] <Sagh​etti> i dont exist anymore
L117[05:12:26] <Sagh​etti> bye again
L118[05:35:12] ⇨ Joins: Backslash (~Backslash@d75-156-174-114.abhsia.telus.net)
L119[06:21:10] <Ar​iri> %tell Inari I didn’t even need the subs, I remember them from the original episode of the anime the voices came from :3 https://www.reddit.com/r/Animemes/comments/d3o7k5/your_daily_dose_of_mascot_yuri/iossmf
L120[06:21:10] <MichiBot> Ar​iri: Inari will be notified of this message when next seen.
L121[06:37:21] ⇦ Quits: Backslash (~Backslash@d75-156-174-114.abhsia.telus.net) (Read error: Connection reset by peer)
L122[07:30:22] ⇦ Quits: Thutmose (~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L123[08:00:49] ⇨ Joins: Inari (~Pinkishu@p4fe7ee02.dip0.t-ipconnect.de)
L124[08:32:19] <Inari> .
L125[08:33:35] <Inari> @Ariri haha, it was a nice movie
L126[08:56:18] ⇨ Joins: Vexatos (~Vexatos@port-92-192-13-96.dynamic.as20676.net)
L127[08:56:18] zsh sets mode: +v on Vexatos
L128[10:25:41] <Lizzy> %tonkout
L129[10:25:42] <MichiBot> Sard! Li​zzy! You beat simo​n816's previous record of 10 hours, 1 minute and 1 second (By 2 hours, 19 minutes and 11 seconds)! I hope you're happy!
L130[10:25:43] <MichiBot> Li​zzy has stolen the tonkout! Tonk has been reset! They gained 0.012 tonk points! plus 0.011 bonus points for consecutive hours! (Reduced to 50% because stealing) Current score: 1.02094. Position #3 Need 0.02672584 more points to pass Squi​dDev!
L131[11:52:41] <SquidDev> %tonk
L132[11:52:41] <MichiBot> Zounderkite! Squi​dDev! You beat Li​zzy's previous record of <0 (By 1 hour, 26 minutes and 59 seconds)! I hope you're happy!
L133[11:52:42] <MichiBot> SquidDev's new record is 1 hour, 26 minutes and 59 seconds! SquidDev also gained 0.00145 tonk points for stealing the tonk. Position #2. Need 0.04435 more points to pass Forec​aster!
L134[11:54:21] <Skye> ~markov Lizzy
L135[11:54:23] <Skye> wait
L136[11:54:26] <Skye> is that bot broken
L137[11:55:53] <Lizzy> ~oc test
L138[11:56:02] * Lizzy baps ocdoc
L139[11:56:57] ⇦ Quits: ocdoc (~ocdoc@ip160.ip-192-99-104.net) (Ping timeout: 204 seconds)
L140[11:59:54] <Lizzy> rip
L141[12:52:55] ⇨ Joins: ben_mkiv (~ben_mkiv@i59F67828.versanet.de)
L142[13:07:49] <Kristo​pher38> I can't seem to generate tablet_use events
L143[13:07:58] ⇨ Joins: Vexaton (~Vexatos@port-92-192-100-157.dynamic.as20676.net)
L144[13:07:58] zsh sets mode: +v on Vexaton
L145[13:07:58] <Kristo​pher38> I've got analyzer installed in a tablet
L146[13:08:46] <Kristo​pher38> Amanda: any idea what the issue might be since you're the one who contributed this?
L147[13:08:53] <fingercomp> probably this https://github.com/MightyPirates/OpenComputers/pull/3286
L148[13:10:01] <Kristo​pher38> I'm trying to scan an OC component though
L149[13:10:32] ⇦ Quits: Vexatos (~Vexatos@port-92-192-13-96.dynamic.as20676.net) (Ping timeout: 189 seconds)
L150[13:11:04] <Kristo​pher38> Isn't the commit message related to scanning things that won't return anything when analyzer is used on them?
L151[13:13:58] <Kristo​pher38> (also to be clear, I'm on the latest dev build, so that commit is in my mod version)
L152[13:15:12] <Kristo​pher38> neither right nor left click works
L153[13:20:58] <fingercomp> works for me https://i.imgur.com/42J803a.png
L154[13:21:39] <fingercomp> hold the RMB until your hear a beep
L155[13:21:46] <fingercomp> just clicking won't fire an event
L156[13:22:06] <Kristo​pher38> OOH
L157[13:22:13] ⇦ Quits: bauen1 (~bauen1@ipbcc03d1e.dynamic.kabel-deutschland.de) (Quit: Lost terminal)
L158[13:22:14] <Kristo​pher38> that wasn't clarified anywhere
L159[13:22:23] ⇨ Joins: bauen1 (~bauen1@ipbcc03d1e.dynamic.kabel-deutschland.de)
L160[13:22:49] <Kristo​pher38> lemme test that
L161[13:23:56] <fingercomp> I'm quite sure the manual includes this information
L162[13:24:15] <fingercomp> I remember translating it into Russian a couple of years ago
L163[13:26:23] <Kristo​pher38> it works, thanks a lot
L164[13:26:56] <Kristo​pher38> the changelog includes a note `When clicking on a block with a tablet containing this upgrade, the tablet_use event will contain information the Analyzer would normally reveal.`
L165[13:29:12] <Kristo​pher38> meanwhile the analyzer page doesn't have anything covering the functionality https://github.com/MightyPirates/OpenComputers/blob/cca7f202d5040156bf93a0ef687fd6447fbfd07d/src/main/resources/assets/opencomputers/doc/en_US/item/analyzer.md
L166[14:33:35] ⇨ Joins: t20kdc (~20kdc@cpc139340-aztw33-2-0-cust225.18-1.cable.virginm.net)
L167[15:06:20] ⇨ Joins: flappy (~flappy@88-113-149-197.elisa-laajakaista.fi)
L168[15:25:41] <Ar​iri> %tonk
L169[15:25:42] <MichiBot> Waesucks! Ar​iri! You beat Squi​dDev's previous record of 1 hour, 26 minutes and 59 seconds (By 2 hours and 6 minutes)! I hope you're happy!
L170[15:25:43] <MichiBot> Ariri's new record is 3 hours and 33 minutes! Ariri also gained 0.0042 (0.0021 x 2) tonk points for stealing the tonk. Position #11. Need 0.06548 more points to pass DaCompu​terNerd!
L171[15:51:56] <Izaya> it amuses me that the Defiant's bridge is in the middle under the circle part
L172[15:53:44] <Ar​iri> The uss defiant?
L173[15:54:49] <Izaya> yeah
L174[15:55:02] <Izaya> I mean it's pretty typical design and it makes a lot of sense, but it's still kinda funny
L175[15:56:02] <Izaya> It has the whole nose part at the front then the bridge isn't even there y'know?
L176[15:56:29] <M​GR> You would want the bridge in the most protected part of the ship
L177[15:56:34] <M​GR> And no windows
L178[15:56:36] <Izaya> exactly
L179[15:56:38] <Ar​iri> On schematics, it also looks silly that the warp core also runs from the top to bottom of the hull
L180[15:56:51] <Ar​iri> Because it’s a smol ship
L181[15:57:29] <Izaya> https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/cab80775-1033-47d7-8e73-568d98fdace0/d2ac7vf-dd59a457-8dd4-438e-b7c5-a794b5484cb3.jpg/v1/fill/w_1063,h_752,q_70,strp/u_s_s__defiant___cutaway_by_paul_muad_dib_d2ac7vf-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlY
L182[15:57:31] <Izaya> TBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9OTA1IiwicGF0aCI6IlwvZlwvY2FiODA3NzUtMTAzMy00N2Q3LThlNzMtNTY4ZDk4ZmRhY2UwXC9kMmFjN3ZmLWRkNTlhNDU3LThkZDQtNDM4ZS1iN2M1LWE3OTRiNTQ4NGNiMy5qcGciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.FXTRmxPJR0-4P3xruqTDwxZCcfka8HqMsf6Dmsgtv1k
L183[15:57:32] <Izaya> argh
L184[16:00:37] <Ar​iri> There’s also a shuttle bay that’s not connected to any side of the ship iirc
L185[16:05:41] <Izaya> they just replicate a shuttle each time they need one
L186[16:32:59] ⇨ Joins: Webchat499 (webchat@d118-75-251-141.try.wideopenwest.com)
L187[16:33:09] <Webchat499> Hello
L188[16:33:31] ⇦ Quits: Webchat499 (webchat@d118-75-251-141.try.wideopenwest.com) (Client Quit)
L189[16:42:13] ⇨ Joins: Test (webchat@d118-75-251-141.try.wideopenwest.com)
L190[16:43:36] ⇨ Joins: Tester (webchat@d118-75-251-141.try.wideopenwest.com)
L191[16:44:19] ⇦ Quits: Test (webchat@d118-75-251-141.try.wideopenwest.com) (Client Quit)
L192[16:44:24] ⇨ Joins: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca)
L193[16:44:32] <Azzy> test?
L194[16:44:44] <Izaya> test failed
L195[16:44:45] <Amanda> Sorry, you got an F.
L196[16:45:04] <Amanda> And a "See me after class" note from the teacher
L197[16:45:13] <Azzy> hello!
L198[16:45:28] <Amanda> I mean, what were you thinking, putting Jelly Beans as a nobel gas?
L199[16:46:57] ⇦ Quits: Tester (webchat@d118-75-251-141.try.wideopenwest.com) (Client Quit)
L200[16:50:56] ⇦ Quits: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca) (Remote host closed the connection)
L201[16:53:12] <Forec​aster> but jelly is the noblest of gases D:
L202[17:02:46] ⇨ Joins: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca)
L203[17:03:57] ⇦ Quits: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca) (Quit: Azzy)
L204[17:31:17] ⇨ Joins: Thutmose (~Patrick@host-69-59-79-181.nctv.com)
L205[17:59:48] <Ar​iri> jelly go wubbb
L206[18:04:59] <Ar​iri> Inari: You should use this to convince cats to conspire with you in the cat vs fox feud, it’s like brainwashing but i like it
L207[18:05:00] <Ar​iri> https://www.reddit.com/r/wholesomeanimemes/comments/i8fri1/wholesome_senko_amv_sound_on/
L208[18:32:28] <Amanda> %choose risk overshooting or play it safe and fly the difference
L209[18:32:28] <MichiBot> Ama​nda: A wizard is never late, and sometimes engages in some "risk overshooting".
L210[18:38:31] <Izaya> kinda contradictory but okay
L211[18:43:00] ⇦ Quits: t20kdc (~20kdc@cpc139340-aztw33-2-0-cust225.18-1.cable.virginm.net) (Ping timeout: 378 seconds)
L212[19:52:10] <Amanda> %choose do my crack-job idea?
L213[19:52:10] <MichiBot> Ama​nda: Are you sure? Well alright.
L214[19:52:19] <Amanda> Sounds like the correct response, MichiBot
L215[19:52:23] <Kristo​pher38> %discord
L216[19:52:24] <MichiBot> Kristo​pher38: https://discord.gg/0hVukoQ2KYm2aoXh
L217[19:55:03] <Hackuu​ermeun> Hey @Lizzy-chan !
L218[19:55:03] <Hackuu​ermeun> Do you know what could be the reason I'm not able to sign up to https://oc.cil.li/ ?
L219[19:55:04] <Hackuu​ermeun> I get **You did not pass the security check. Please try again.** error on submit
L220[19:59:32] <Ar​iri> Do you have any electronic components in your brain or body?
L221[19:59:58] <Izaya> hey hey
L222[20:00:03] <Izaya> are captchas meant to stop cyborgs?
L223[20:00:42] <Izaya> Also, I now cannot unsee the mental image of people in the Terminator future using captchas to control access to their settlements and weed out robots
L224[20:01:09] <Ar​iri> I was just going to say that if they aren’t, they should so we can prevent Judgement Dat
L225[20:01:12] <Ar​iri> Day*
L226[20:01:37] <Izaya> Nuclear weapons launch thingos with a captcha verification
L227[20:01:42] <Izaya> I love and also hate this whole concept
L228[20:01:57] <Ar​iri> That’s hilarious to imagine
L229[20:02:27] <Ar​iri> “Enter the code from the red handbook!
L230[20:02:27] <Ar​iri> Turn your key!
L231[20:02:27] <Ar​iri> Click on the bicycles!”
L232[20:04:42] <Ar​iri> http://tinyurl.com/y6t4t5u9&lt;Ar​iri> http://tinyurl.com/y5fdsene
L233[20:07:17] ⇦ Quits: ben_mkiv (~ben_mkiv@i59F67828.versanet.de) (Killed (NickServ (GHOST command used by ben_mkiv|afk!~ben_mkiv@i59F6783D.versanet.de)))
L234[20:07:22] ⇨ Joins: ben_mkiv|afk (~ben_mkiv@i59F6783D.versanet.de)
L235[20:26:32] <Lizzy​-chan> @Hackuuermeun if you're using stuff like noscript or have javascript disabled, try temp allowing everything / enabling JS and see if that does it. failing that, DM me your email & current public IP address (that error you have is known to be caused by some of our old ip blocks, why it doesn't say 'sign-up is blocked' idk)
L236[20:37:43] <Hackuu​ermeun> @Lizzy-chan it worked! The issue was that on chrome the security captcha wasn't appearing, so I tried it on mozilla and it worked! Thanks for advice anyways! ❤️
L237[20:52:56] ⇨ Joins: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca)
L238[20:53:06] <Forec​aster> %sip
L239[20:53:07] <MichiBot> You drink a stirring strawberry potion (New!). The potion bottle insults Forecaster's haircut.
L240[20:53:16] <Forec​aster> D:
L241[20:53:22] <Forec​aster> it's messy on purpose!
L242[20:53:25] <Azzy> hello all
L243[20:53:33] <Forec​aster> hi
L244[20:54:01] <Azzy> idk how i got this far, never used IRC before
L245[20:54:45] <Forec​aster> I'd guess by starting a client and connecting to the server
L246[20:54:52] <Forec​aster> probably something like that
L247[20:54:58] <Inari> Good theory
L248[20:55:23] <Azzy> lol, im running this in minecraft rn too soo
L249[20:55:54] <CompanionCube> %hello
L250[20:55:54] <MichiBot> Compan​ionCube: Hello! Welcome to #oc! The one and only opencomputers channel! Please ask your questions directly (dont ask to ask) and provide error/code examples! (Use pastebin.com if theyre more than one line!) Dont mind the random conversation you might have walked into.
L251[20:55:58] <Inari> Even easier then
L252[20:56:07] <Inari> You just insatlled wocchat (or whatever mineos uses) and ran it
L253[20:56:07] <Inari> :p
L254[20:56:42] <Azzy> ye pretty much, hows everyones day going?
L255[20:56:48] <Inari> Melting
L256[20:57:23] <Azzy> %sip
L257[20:57:23] <MichiBot> You drink a goopy pink potion (New!). For about a second Azzy knows the location of a great treasure.
L258[21:00:55] ⇦ Quits: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca) (Quit: Azzy)
L259[21:01:25] <Inari> rip
L260[21:04:20] zsh sets mode: +v on asie
L261[21:06:23] <Amanda> %choose temper my patience?
L262[21:06:23] <MichiBot> Ama​nda: Hm. I can't choose. Ask me again in a couple of minutes.
L263[21:06:29] <Amanda> That's a no then
L264[21:06:44] <Amanda> Time to preform what might be my stupidest idea ever
L265[21:07:06] <Forec​aster> stupid waits for nobody
L266[21:07:56] ⇨ Joins: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca)
L267[21:08:03] <Azzy> %sip
L268[21:08:04] <MichiBot> You drink a viscous silver potion (New!). Azzy spots a shiny thing!
L269[21:08:34] <Azzy> %help
L270[21:08:35] <MichiBot> Az​zy: Command list: http://michibot.pc-logix.com/help
L271[21:10:35] <Azzy> %choose
L272[21:10:35] <MichiBot> Az​zy: I'd advice against "" right now.
L273[21:10:51] <Forec​aster> oh
L274[21:10:56] <Forec​aster> I probably want to fix that
L275[21:11:10] <Azzy> fix what?
L276[21:11:17] <Azzy> im not sure what im doing
L277[21:11:29] <Azzy> %google 89+97
L278[21:11:58] <Azzy> %search google 89+97
L279[21:11:59] <MichiBot> Az​zy: https://www.govinfo.gov/content/pkg/STATUTE-79/pdf/STATUTE-79-Pg286.pdf - *Public Law 89-97 Be it enacted hy the Senate and House of ...*: "Public Law 89-97. |H/R°66?f]. ^. AN ACT . To provide a hospital insurance program for the aged under the Social Security. Act with a supplementary medical ..."
L280[21:12:13] <Azzy> huh
L281[21:12:16] <Forec​aster> that providing no argument outputs a string with nothing inserted
L282[21:13:57] <Azzy> ah, it seems a lot at least in the irc program for OC is geared twords knowing what to put where
L283[21:14:18] <Azzy> im not sure what paramaters to use for say /join
L284[21:17:09] <CompanionCube> well, if you don't know of other places there's no use for /join
L285[21:18:39] <Azzy> fair enough
L286[21:18:57] <Azzy> i know you guys have a minecraft channel but i cant type in it
L287[21:19:09] <Forec​aster> who's "you guys"
L288[21:19:46] <Azzy> you all on the irc chat
L289[21:19:53] <Forec​aster> there's hundres of thousands of irc channels
L290[21:19:57] <Forec​aster> we only run this one
L291[21:22:09] <Amanda> Behold! The fruits of my stupidity! https://nc.ddna.co/s/bzgXn8ADqxLEbnn
L292[21:22:21] <Azzy> oh =P i wasnt really aware, i figured ircs died off since my first interaction with one was though a minecraft mod and not wondering the internet
L293[21:22:23] <Amanda> That was my base on Titan. Now it's my station above titan
L294[21:23:50] <Ar​iri> Beautiful
L295[21:24:02] <Ar​iri> Also ffs my pc bsod’d while watching youtube
L296[21:24:08] <Ar​iri> Damn it chrome
L297[21:24:27] <Forec​aster> irc still has plenty of users for all kinds of things
L298[21:24:59] <Ar​iri> like manga downloads :3
L299[21:25:07] <Azzy> fair enough ig, learn something new every day
L300[21:25:07] <Forec​aster> for most minecraft communities it's been surpassed by discord for the most part though
L301[21:26:23] <Azzy> i wonder if i can direct connect to this through a text browser like lynx on my raspberry pi... something ill test later
L302[21:28:12] <Ar​iri> Or just install znc
L303[21:28:41] <Azzy> znc? is that a irc client?
L304[21:29:56] <Forec​aster> no, znc or a "bouncer" is like a proxy between you and irc that lets you disconnect, then reconnect later and get messages that were sent to certain channels while you were gone
L305[21:29:58] <Ar​iri> It’s a bouncer, you run it on a server and connect to it with your client
L306[21:30:50] <Forec​aster> you can download the software or use a service that provides it
L307[21:31:58] <Azzy> oh, sounds interesting, thanks for the info!
L308[21:32:37] <Ar​iri> My computer probably BSOD’d to make itself update lol
L309[21:33:05] <Azzy> welp, ill get off now, thanks for informing me, see ya'll around!
L310[21:33:25] ⇦ Quits: Azzy (~azzy@sn-phy1.bhs.ovh.shadownode.ca) (Quit: Azzy)
L311[22:37:22] <Amanda> %choose side or top
L312[22:37:23] <MichiBot> Ama​nda: Haven't you always gone with "side"? Hm, maybe not.
L313[22:45:05] <Ocawes​ome101> Ariri: ERRTOOLONGNOUPDATE :P
L314[22:51:28] <Forec​aster> %sip
L315[22:51:28] <MichiBot> You drink a porous gold potion (New!). A genie appears out of the empty bottle, turns it into a pie, then vanishes.
L316[22:51:43] <Corded> * <Forec​aster> has pie
L317[22:51:49] <Forec​aster> %tonk
L318[22:51:49] <MichiBot> Aw jeez! Forec​aster! You beat Ar​iri's previous record of 3 hours and 33 minutes (By 3 hours, 53 minutes and 7 seconds)! I hope you're happy!
L319[22:51:50] <MichiBot> Forecaster's new record is 7 hours, 26 minutes and 7 seconds! Forecaster also gained 0.01556 (0.00389 x 4) tonk points for stealing the tonk. Position #1.
L320[23:26:25] <Ar​iri> Ocawesome101: It might as well have been that honestly
L321[23:33:18] <Ocawes​ome101> lo
L322[23:33:20] <Ocawes​ome101> lol*
L323[23:34:38] ⇦ Quits: Inari (~Pinkishu@p4fe7ee02.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L324[23:38:38] <Izaya> Ariri: Petra is so cute
L325[23:42:16] <Amanda> %roll 1d2+3
L326[23:42:16] <MichiBot> 1+3 => 4
L327[23:42:51] <CompanionCube> Izaya: https://p.ahti.space/a506c6.html this is from an actual 'you need javascript' page
L328[23:44:38] <Ocawes​ome101> jesus
L329[23:45:18] <Michiyo> ....
L330[23:45:23] <Michiyo> the source of that page makes me fucking sad.
L331[23:48:15] <CompanionCube> (extra info: the original page had a copyright of 2010 on it.)
L332[23:51:00] <Ocawes​ome101> there we go, error reporting in the Monolith shell actually works now lol
L333[23:51:26] * CompanionCube wasn't sure which is weirder: that chrome is included or that 'enable style sheets' is in one of them
<<Prev Next>> Scroll to Top