<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:08:10] <Michiyo> Damn.. still 300 lines behind that V ex dude
L2[00:08:11] <Michiyo> :P
L3[00:11:16] <Vexaton> .-.
L4[00:14:57] <ThePi​Guy24> deus vex
L5[00:25:35] ⇨ Joins: prisma (~prismatic@2406:e006:4f66:e602:c597:13c0:d68e:a3e3)
L6[00:25:52] <prisma> are sockets acquired from `component.internet.request(ip, port)` delayed?
L7[00:26:12] <prisma> I write to it and it doesn't seem to actually write any data, even after closing it.
L8[00:26:53] <prisma> ...that is, aside from the null data that is sent on open.
L9[00:27:10] <prisma> but that, too, is delayed by ~1s
L10[00:27:28] <Vexaton> request doesn't produce sockets, it returns a request object
L11[00:27:40] <Vexaton> connect opens a TCP socket
L12[00:27:48] <prisma> oh, write, yeah
L13[00:27:51] <prisma> i meant connect :p
L14[00:27:53] <prisma> smoothbrain today
L15[00:28:05] <prisma> right*
L16[00:28:22] <prisma> i have writing on my mind, lmao
L17[00:28:41] <prisma> but yeah, it doesn't seem to actually write any data
L18[00:28:42] <Vexaton> well you can POST using request()
L19[00:28:53] <prisma> this is TCP though
L20[00:29:01] <Vexaton> you need to wait for finishConnect()
L21[00:29:09] <prisma> it returns `true`
L22[00:29:18] <prisma> i'm connecting to localhost, so it should be near-instant
L23[00:29:22] <Vexaton> then you should be able to write
L24[00:29:43] <prisma> the odd thing is... the server doesn't get the written data?
L25[00:29:59] <prisma> it *does* get what appears to be null on connect, though.
L26[00:30:22] <Vexaton> check out how the internet API does it https://git.io/JTQvQ
L27[00:35:03] <prisma> hmm
L28[00:35:07] <prisma> using the API doesn't work either
L29[00:35:21] <prisma> oh
L30[00:35:23] <prisma> it's buffered
L31[00:36:03] <prisma> is there a way to make it.. not buffered?
L32[00:36:28] <Vexaton> by not using the internet API?
L33[00:36:34] <Vexaton> and using the component directly?
L34[00:36:55] *** Vexaton is now known as Vexatos
L35[00:37:00] <prisma> that seems buffered too
L36[00:37:33] <prisma> or just extremely delayed
L37[00:38:03] <prisma> I'm connecting to localhost, so it *should* be much faster, right?
L38[00:38:38] *** Vexatos is now known as Vexaton
L39[00:38:49] *** Vexaton is now known as Vexatos
L40[00:38:57] <prisma> takes about 3 seconds (from the call to `connect`) to send what looks like just null data
L41[00:39:11] <Vexatos> no clue
L42[00:39:23] <Vexatos> I assume your firewall isn't being dumb
L43[00:39:29] <prisma> shouldn't be
L44[00:39:34] <prisma> considering it's localhost
L45[00:39:44] <prisma> and I've never had firewall problems
L46[00:39:49] <prisma> at least, on Linux anyway
L47[00:41:08] <Vexatos> Can't help you more without further information, and it's getting late for me
L48[00:41:12] <Vexatos> maybe someone else can help you
L49[00:42:07] <prisma> might just be my server impl
L50[00:47:04] ⇦ Quits: Inari (~Pinkishu@p4fe7e37a.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L51[00:47:55] <prisma> It does write, but only after I close the socket. Hmm.
L52[00:48:32] <prisma> but only sometimes?
L53[00:54:02] ⇦ Quits: hnOsmium0001 (uid453710@id-453710.stonehaven.irccloud.com) (Read error: Connection reset by peer)
L54[00:55:01] ⇨ Joins: hnOsmium0001 (~uid453710@id-453710.stonehaven.irccloud.com)
L55[01:12:47] ⇦ Quits: Vexatos (~Vexatos@port-92-192-41-66.dynamic.as20676.net) (Quit: Insert quantum chemistry joke here)
L56[01:28:06] <Ocawes​ome101> prisma: try socket.flush or similar
L57[01:29:34] ⇨ Joins: finch (~finch@cpe-104-33-154-8.socal.res.rr.com)
L58[01:29:46] *** finch is now known as Ariri
L59[01:38:07] ⇦ Quits: prisma (~prismatic@2406:e006:4f66:e602:c597:13c0:d68e:a3e3) (Quit: Konversation terminated!)
L60[01:38:16] ⇨ Joins: prisma (~prismatic@2406:e006:4f66:e602:c597:13c0:d68e:a3e3)
L61[01:41:53] <boba​srty> prisma, u on kde?
L62[01:51:23] <prisma> bobasrty: indeed
L63[01:51:37] <prisma> not sure why I joined twice tho
L64[01:52:15] <prisma> Ocawesome101: no such method
L65[01:52:27] <prisma> `flush` is for filesystem I/O iirc
L66[01:54:28] <prisma> i am currently experiencing pain trying to get a python server and an OC client to communicate .-.
L67[01:58:53] <CompanionCube> weird
L68[02:02:19] <prisma> the problem is, python can't send strings through TCP
L69[02:02:31] <prisma> and OC doesn't seem to understand what python sends
L70[02:37:06] <Amanda> Strings are just bytes with style
L71[02:37:47] <Amanda> Just .encode("utf-8") and be done with it if you're making a line-based protocol
L72[02:50:04] <Izaya> did some dubious tweaking last night
L73[02:50:21] <Izaya> https://social.shadowkat.net/media/592847c18b0f1bd9b1a2ade5dd7e7bfcd7240117edf2d603f548dee896918ae0.png
L74[02:50:41] <Amanda> Also did you remember to remove localhost from the blacklist for sockets in the config? SquidDev has a PR in that area I think
L75[02:51:33] <Amanda> Izaya: took me way too long to relaise that's not this oc in that image
L76[02:53:27] <Izaya> haha, different OC
L77[03:01:46] <ThePi​Guy24> it should be called uberclocking
L78[03:02:04] <prisma> Amanda: Tried.
L79[03:02:16] <prisma> `socket.read()` returns nothing.
L80[03:03:05] <Izaya> överclocking
L81[03:04:51] <Amanda> prisma: did you remove localhost from the blacklist though?
L82[03:05:39] <Amanda> Also you have to wait for finishConnect to return true
L83[03:06:36] <Amanda> If it returns false, it's not ready, otherwise it'll return nil, someError
L84[03:07:43] <Amanda> Anyways, it seems someone spilled some trieds all over Elfi's grove, so night nerds
L85[03:45:19] <bad at​ vijya> so
L86[03:45:26] <bad at​ vijya> transfering stuff off of my old SSD finally
L87[03:59:08] <bad at​ vijya> oh boy
L88[03:59:24] <bad at​ vijya> the good old `sudo find * -depth | sudo cpio -pamvd /mnt`
L89[04:17:58] <boba​srty> prisma: im on kubuntu 18.04, what about you?
L90[04:19:46] <bad at​ vijya> woohoo
L91[04:20:23] <CompanionCube> what, no xz or zstd?
L92[04:21:06] <bad at​ vijya> huh?
L93[04:21:27] <CompanionCube> piping find to cpio
L94[04:21:32] <bad at​ vijya> oh
L95[04:21:36] <bad at​ vijya> that's copy-pass mode
L96[04:21:52] <bad at​ vijya> it copies files from one place to another
L97[04:22:01] <bad at​ vijya> basically advanced cp -R
L98[04:22:26] * Izaya gives bad_at_vijya cp -P
L99[04:24:40] <bad at​ vijya> hm?
L100[04:30:48] <prisma> bobasrty: kubuntu 20.04
L101[04:31:03] <prisma> Amanda: using OCVM, so...
L102[04:31:05] <prisma> %actualshrug
L103[04:31:06] <MichiBot> pri​sma: ¯\_(ツ)_/¯
L104[04:31:24] <bad at​ vijya> anyways
L105[04:31:39] <bad at​ vijya> now i'm gonna pass out
L106[04:31:40] <bad at​ vijya> well
L107[04:31:47] <bad at​ vijya> more likely, i'm gonna work on my VELX stuff
L108[04:44:19] ⇦ Quits: Cervator (~Thunderbi@2600:1700:1a25:9160:6957:afc0:3cf2:1b60) (Quit: Cervator)
L109[04:45:39] ⇦ Quits: immibis (~immibis@62.156.144.218) (Ping timeout: 189 seconds)
L110[04:47:30] ⇦ Parts: Izaya (~izaya@210.1.218.92) (Disconnected: Received SIGTERM))
L111[04:47:41] ⇨ Joins: Izaya (~izaya@210.1.218.92)
L112[05:58:36] <Forec​aster> %tonk
L113[05:58:38] <MichiBot> Fudge! Forec​aster! You beat Ko​dos's previous record of 7 hours, 22 minutes and 37 seconds (By 7 hours, 43 minutes and 18 seconds)! I hope you're happy!
L114[05:58:38] <MichiBot> Forecaster's new record is 15 hours, 5 minutes and 56 seconds! Forecaster also gained 0.06176 (0.00772 x 8) tonk points for stealing the tonk. Position #2 => #1. (Overtook CompanionCube)
L115[06:21:04] *** Guest77596 is now known as SinZ
L116[06:34:34] <boba​srty> prisma: i never thought id ever see another kubuntu user without going into a chat about kubuntu
L117[06:39:58] <Michiyo> xubuntu here. :P
L118[06:41:00] <Izaya> i use haiku btw
L119[06:52:07] <bad at​ vijya> i use freebsd btw
L120[06:52:11] <bad at​ vijya> not really
L121[06:52:22] <bad at​ vijya> i just have it installed on the pentium 3 machine
L122[07:03:10] <Izaya> don't worry, even the freebsd developers don't use freebsd
L123[07:07:56] <CompanionCube> Izaya: who actually uses freebsd? netcraft investigates
L124[07:09:28] ⇦ Quits: Lymia (~lymia@magical.girl.lyrical.lymia.moe) (Quit: Hugs~ <3)
L125[07:23:55] ⇨ Joins: Lymia (~lymia@magical.girl.lyrical.lymia.moe)
L126[07:52:39] ⇨ Joins: xorgx (~slavasil@46.147.112.44)
L127[07:54:07] ⇨ Joins: ben_mkiv (~ben_mkiv@2001:16b8:1ebc:2300:b3fa:f232:2e92:52ac)
L128[07:55:05] <xorgx> hello world
L129[07:58:00] <Ariri> World: hello
L130[07:59:36] <xorgx> )
L131[08:00:11] ⇦ Parts: xorgx (~slavasil@46.147.112.44) (Konversation terminated!))
L132[08:02:38] ⇦ Quits: prisma (~prismatic@2406:e006:4f66:e602:c597:13c0:d68e:a3e3) (Ping timeout: 189 seconds)
L133[08:03:30] <Izaya> behold, the yuru camp game: https://social.shadowkat.net/media/9084e584b4af52cb6f366e3033fc9b431fae4e0225ae314cad663d1ef9faca16.jpg
L134[08:04:38] ⇨ Joins: xorgx (~slavasil@46.147.112.44)
L135[08:33:27] ⇨ Joins: Inari (~Pinkishu@p4fe7e4d1.dip0.t-ipconnect.de)
L136[08:48:18] <Ryonez C​oruscare> Is there any reason a wireless card would not get a wireless message, while still being able to send them?
L137[08:54:27] ⇦ Quits: Thutmose (~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L138[08:54:48] <Forec​aster> out of range/blocked by blocks/not enough strength set
L139[08:55:14] <Slav​asil> port is closed
L140[09:15:36] <CompanionCube> Izaya: https://samy.pl/slipstream/
L141[09:24:23] ⇦ Quits: hnOsmium0001 (~uid453710@id-453710.stonehaven.irccloud.com) (Quit: Connection closed for inactivity)
L142[09:42:29] <bre​ad™> casually downloading 3 videos on potato internet
L143[09:43:03] <Izaya> https://expired.mentality.rip/media/ad8f8e3fa47f5bf7c7c85812c5e99765219ff3c4dcb889da52e77b1dffd5b235.png
L144[09:44:28] <Ar​iri> well camouflaged
L145[09:45:05] <Izaya> watching gruen
L146[09:45:09] <Izaya> > $650 boots
L147[09:45:14] <Izaya> here I was thinking $120 was expensive
L148[09:45:37] <Izaya> and work covered that
L149[10:10:30] * Inari covers Izaya
L150[10:19:50] * Amanda yawns
L151[10:19:57] <Amanda> Well, I guess I'm awake now
L152[10:20:01] <Izaya> Inari: what with?
L153[10:20:40] <Inari> Amanda: a sheet composed of Amanda's shed fur
L154[10:21:14] <Izaya> I feel like that would probably be too short to meaningfully make fabric out of
L155[10:21:22] <Inari> nah
L156[10:21:24] <Izaya> but eh, I skipped my textiles class in school
L157[10:22:31] <Amanda> I'm a long haired breed, but I don't think it's possible even still
L158[10:23:27] <Amanda> But that explains where all my shed fur has been going
L159[10:23:35] <Inari> https://animals.mom.com/can-i-make-yarn-from-pet-hair-572.html
L160[10:24:31] <bre​ad™> https://tinyurl.com/yy7p9az2
L161[10:24:36] <bre​ad™> >:(
L162[10:24:52] <bre​ad™> user agent time
L163[10:25:18] <Amanda> Or.. you know... The device lacks the codec
L164[10:25:40] <bre​ad™> thats a different message?
L165[10:25:41] <Forec​aster> `This video is unavailable on this side of the moon at this galactic period.`
L166[10:26:02] <Izaya> given google I'd assume malice over actual issues
L167[10:26:34] <bre​ad™> `This video is unavailable on this CPU thread`
L168[10:33:49] ⇨ Joins: Vexatos (~Vexatos@port-92-192-41-66.dynamic.as20676.net)
L169[10:33:49] zsh sets mode: +v on Vexatos
L170[10:34:59] <Forec​aster> %sip
L171[10:35:01] <MichiBot> You drink a runny weather potion (New!). A trapdoor suddenly opens up under Forecaster! There are spikes at the bottom. They fail to evade it with a 5 vs DC 15 and takes 1d​6 => 5 damage.
L172[10:35:08] <Forec​aster> ow
L173[10:35:12] <Forec​aster> damn traps
L174[10:37:05] ⇨ Joins: immibis (~immibis@62.156.144.218)
L175[11:53:24] ⇨ Joins: Martin2882 (~Martin288@adsl-dyn41.78-99-213.t-com.sk)
L176[11:53:41] ⇦ Parts: Martin2882 (~Martin288@adsl-dyn41.78-99-213.t-com.sk) ())
L177[12:18:54] ⇦ Quits: xorgx (~slavasil@46.147.112.44) (Remote host closed the connection)
L178[12:19:29] ⇨ Joins: Vexaton (~Vexatos@port-92-192-54-115.dynamic.as20676.net)
L179[12:19:29] zsh sets mode: +v on Vexaton
L180[12:22:09] ⇦ Quits: Vexatos (~Vexatos@port-92-192-41-66.dynamic.as20676.net) (Ping timeout: 189 seconds)
L181[12:56:39] * Amanda walks over to the spike pit, looks at forecaster at the bottom, resets the tap
L182[12:57:00] <Forec​aster> hey D:<
L183[12:57:52] <Izaya> \:D/
L184[12:58:03] <Izaya> my memory tweaks didn't have any noticeable impact on performance
L185[12:58:19] <Izaya> ... except that I can turn the settings up all the way while maintaining the framerate I had now
L186[14:23:18] ⇦ Quits: stephan48 (~stephanj@nemesis.stejau.de) (Ping timeout: 198 seconds)
L187[14:33:37] ⇦ Quits: incon (~Thunderbi@173-25-127-155.client.mchsi.com) (Remote host closed the connection)
L188[14:33:48] ⇨ Joins: incon (~Thunderbi@173-25-127-155.client.mchsi.com)
L189[14:34:29] ⇨ Joins: Cervator (~Thunderbi@2600:1700:1a25:9160:15df:8c20:580:6da)
L190[14:50:52] ⇨ Joins: xorgx (~slavasil@46.147.112.44)
L191[14:56:37] ⇦ Quits: xorgx (~slavasil@46.147.112.44) (Remote host closed the connection)
L192[14:56:59] ⇨ Joins: xorgx (~slavasil@46.147.112.44)
L193[16:29:35] ⇦ Quits: Herobrine (~1@47.199.247.86) (Remote host closed the connection)
L194[16:30:56] ⇨ Joins: Herobrine (~1@47.199.247.86)
L195[16:38:47] ⇨ Joins: uuhhhhhhhh (~uuhhhhhhh@89.238.178.75)
L196[16:39:00] <uuhhhhhhhh> hi
L197[16:39:59] ⇦ Quits: uuhhhhhhhh (~uuhhhhhhh@89.238.178.75) (Client Quit)
L198[16:43:42] <Forec​aster> bye
L199[17:37:35] ⇦ Quits: Herobrine (~1@47.199.247.86) (Remote host closed the connection)
L200[17:40:02] ⇨ Joins: Herobrine (~1@47.199.247.86)
L201[18:03:55] ⇨ Joins: hnOsmium0001 (uid453710@id-453710.stonehaven.irccloud.com)
L202[18:16:15] <Amanda> %choose early rainbox?
L203[18:16:15] <MichiBot> Ama​nda: "early rainbox?" doesn't really seem like a good idea right now.
L204[18:20:56] ⇨ Joins: stephan48 (~stephanj@nemesis.stejau.de)
L205[18:22:30] <Michiyo> 312 behind still
L206[18:22:36] <Michiyo> this is going to take forever!
L207[18:36:52] *** Vexaton is now known as Vexatos
L208[19:03:30] <Forec​aster> Michiyo, nah, it'll probably just take about half of forever
L209[19:35:14] ⇦ Quits: incon (~Thunderbi@173-25-127-155.client.mchsi.com) (Remote host closed the connection)
L210[19:35:25] ⇨ Joins: incon (~Thunderbi@173-25-127-155.client.mchsi.com)
L211[19:36:02] <Inari> Amanda: make my story~~~~~~~~
L212[19:36:33] <Ariri> Once upon a time, the end.
L213[19:36:55] <Inari> rude
L214[19:37:07] <Forec​aster> %s/, /, there was a fox/
L215[19:37:08] <MichiBot> <Ariri> Once upon a time, there was a foxthe end.
L216[19:37:13] <Forec​aster> shoot
L217[19:37:32] <Forec​aster> %s/foxthe/fox, the/
L218[19:37:33] <MichiBot> <Ariri> Once upon a time, there was a fox, the end.
L219[19:37:35] <Ariri> What did the fox say?
L220[19:37:46] ⇨ Joins: flappy (~flappy@88-113-149-197.elisa-laajakaista.fi)
L221[19:38:06] <Inari> s/fox, /fox, who said 'Kon Kon~', /
L222[19:38:06] <MichiBot> <Ariri> Once upon a time, there was a fox, who said 'Kon Kon~', the end.
L223[19:38:45] * Ariri nods
L224[19:39:36] <Inari> Klee is such a force of destruction
L225[19:40:16] ⇨ Joins: Thutmose (~Patrick@host-69-59-79-181.nctv.com)
L226[19:40:19] <Ariri> Probably because she can bend the law of conservation to her will, an enviable attribute
L227[19:40:25] <Amanda> Inari: what story?
L228[19:40:41] <Inari> just listening to BNHA
L229[19:42:07] <ThePi​Guy24> Лада Нива
L230[19:58:29] <Inari> I don't read cyrillic
L231[19:58:34] <Inari> So that just reminds me of the turtle song
L232[20:07:43] ⇨ Joins: DogeGamer_912 (~DogeGamer@host-87-18-196-113.retail.telecomitalia.it)
L233[20:08:02] <DogeGamer_912> hi
L234[20:08:13] <Forec​aster> %hello
L235[20:08:13] <MichiBot> Forec​aster: 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.
L236[20:13:10] ⇦ Quits: DogeGamer_912 (~DogeGamer@host-87-18-196-113.retail.telecomitalia.it) (Ping timeout: 198 seconds)
L237[20:16:23] ⇨ Joins: DogeGamer_912 (~DogeGamer@host-87-18-196-113.retail.telecomitalia.it)
L238[20:17:07] ⇨ Joins: DJ08Official (~DJ08Offic@host-87-18-196-113.retail.telecomitalia.it)
L239[20:17:13] <DogeGamer_912> hi
L240[20:17:41] <DJ08Official> hi
L241[20:17:59] ⇦ Quits: DJ08Official (~DJ08Offic@host-87-18-196-113.retail.telecomitalia.it) (Client Quit)
L242[20:18:09] <DogeGamer_912> <DJ08Official> %hello
L243[20:18:09] ⇦ Quits: DogeGamer_912 (~DogeGamer@host-87-18-196-113.retail.telecomitalia.it) (Client Quit)
L244[20:18:11] <MichiBot> DogeGa​mer_912: 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.
L245[20:19:10] <ThePi​Guy24> mmm yes webhooks being slow again
L246[20:24:09] ⇨ Joins: rrajagopal (~rrajagopa@ip70-172-23-7.ph.ph.cox.net)
L247[20:24:18] *** rrajagopal is now known as swallow
L248[20:30:08] <Brisingr​Aerowing> https://www.reddit.com/r/talesfromtechsupport/comments/d9gxda/ticket_can_you_remove_these_ugly_box_things_from/
L249[20:30:16] <Brisingr​Aerowing> I... just...
L250[20:32:17] <Ocawes​ome101> o.o
L251[20:39:54] <Ariri> That really did hurt to read
L252[20:41:17] <Inari> I hate thinking about vectors
L253[20:42:13] <Amanda> smh use a std::lit
L254[20:42:17] <Amanda> s/lit/list/
L255[20:42:17] <MichiBot> <Amanda> smh use a std::list
L256[20:42:24] <Inari> :p
L257[20:42:28] <Inari> Not that kind of vector
L258[20:48:25] <Michiyo> What's our vector Victor?
L259[20:49:06] ⇦ Quits: ben_mkiv (~ben_mkiv@2001:16b8:1ebc:2300:b3fa:f232:2e92:52ac) (Killed (NickServ (GHOST command used by ben_mkiv|afk!~ben_mkiv@2001:16b8:1efc:d400:aa8e:8342:2d5b:8db1)))
L260[20:49:09] ⇨ Joins: ben_mkiv|afk (~ben_mkiv@2001:16b8:1efc:d400:aa8e:8342:2d5b:8db1)
L261[20:58:56] <Inari> I have two direction vectors (both from (0,0,0)). Should create a circle and tell me the angle I need to traverse it to get from one to the other vector ~(terrible explanation I know)
L262[21:08:21] <simon816> so the vectors represent points on the circle?
L263[21:09:47] <Ariri> vector von doom
L264[21:11:26] <Inari> simon816: yeah
L265[21:12:34] <Inari> probably gonna try and rotate them so they only occupy 2 axis an then I can just use trig
L266[21:15:09] ⇦ Quits: xorgx (~slavasil@46.147.112.44) (Quit: Konversation terminated!)
L267[21:59:22] ⇦ Quits: incon (~Thunderbi@173-25-127-155.client.mchsi.com) (Quit: incon)
L268[22:11:28] <Forec​aster> %tonkout
L269[22:11:28] <MichiBot> Jeepers! Forec​aster! You beat your own previous record of 15 hours, 5 minutes and 56 seconds (By 1 hour, 6 minutes and 55 seconds)! I hope you're happy!
L270[22:11:29] <MichiBot> Forec​aster has tonked out! Tonk has been reset! They gained 0.016 tonk points! plus 0.03 bonus points for consecutive hours! Current score: 1.56617372, Position #1
L271[22:20:50] * Amanda replaces Inari's keyboard keys with cheetos
L272[22:21:30] <Inari> rude
L273[22:21:41] <Amanda> ?
L274[22:21:52] <Amanda> You told me they're notfood, so I replace them with food, so I can nom them. :3
L275[22:33:41] <Brisingr​Aerowing> I’m not sure Cheetos are food...
L276[22:34:54] ⇦ Quits: ben_mkiv|afk (~ben_mkiv@2001:16b8:1efc:d400:aa8e:8342:2d5b:8db1) (Ping timeout: 194 seconds)
L277[22:37:03] <Ryonez C​oruscare> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/pudowuzalo
L278[22:37:56] <Ryonez C​oruscare> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/hozevuhuyu
L279[22:39:47] <Izaya> T2 wireless cards?
L280[22:40:12] <Ryonez C​oruscare> T2 in the server, T1 in the computuer
L281[22:40:28] <Kristo​pher38> @BrisingrAerowing I'm honestly inclined to say it's fake
L282[22:40:28] <CompanionCube> %tonk
L283[22:40:29] <MichiBot> Dagnammit! Compan​ionCube! You beat Forec​aster's previous record of <0 (By 29 minutes and 1 second)! I hope you're happy!
L284[22:40:30] <MichiBot> CompanionCube's new record is 29 minutes and 1 second! CompanionCube also gained 0.00048 tonk points for stealing the tonk. Position #2. Need 0.0715638 more points to pass Forec​aster!
L285[22:40:31] <Izaya> T1 had issues up until a recent dev build
L286[22:40:49] <Ryonez C​oruscare> Alright, I'll try swapping in a T2
L287[22:41:02] <Izaya> Also, servers have issues with networking when they don't have a component bus connection, so make sure it's routed to a side
L288[22:41:31] <Ryonez C​oruscare> It does currently, I just mine out the conduit when disconnecting them.
L289[22:42:14] <Izaya> Even if you route the component connection to an unused side it should work
L290[22:42:23] <Ryonez C​oruscare> Bloody hell, a T2 card worked.
L291[22:42:23] <Ryonez C​oruscare> Thank you Izaya!
L292[22:42:25] <bad at​ vijya> jeez
L293[22:42:31] <bad at​ vijya> why is steam crashing
L294[22:42:43] <Izaya> Yeah the T1 was bugged for a while
L295[22:43:07] <Izaya> A current dev build will fix it but Amanda found the server networking issue in the last few days
L296[22:43:38] ⇦ Quits: Inari (~Pinkishu@p4fe7e4d1.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L297[22:43:38] <Ryonez C​oruscare> Hopefully a microcontroller can use T2. If not, to bad, I can work with this for now.
L298[22:44:07] ⇦ Quits: swallow (~rrajagopa@ip70-172-23-7.ph.ph.cox.net) (Ping timeout: 204 seconds)
L299[22:58:03] <B​ob> @Ryonez Coruscare T1 cards are bugged, use dev builds
L300[22:58:28] <B​ob> and im unsure if microcontrollers can use stuff above T1
L301[23:03:20] <Ryonez C​oruscare> It's a server between friends, so I'm hesitant to slap in a dev build.
L302[23:03:20] <Ryonez C​oruscare> There's T2 microcontrollers, and they have a T2 slot I could use.
L303[23:08:06] <B​ob> I dont get why the dev build isnt a new release
L304[23:08:14] <B​ob> it has so much bugfixes its worth it
L305[23:08:21] <B​ob> and a new GPU ability : buffers
L306[23:29:22] ⇨ Joins: swallow (~rrajagopa@ip70-172-23-7.ph.ph.cox.net)
L307[23:31:28] <Ocawes​ome101> @Ryonez Coruscare the so-called "development" builds are actually pretty stable
L308[23:31:35] <Ocawes​ome101> i run the latest and have had no issues
L309[23:38:31] <Ryonez C​oruscare> Allright, I'll check it out later thanks.
L310[23:42:24] <B​ob> ^^
L311[23:58:53] ⇦ Quits: Vexatos (~Vexatos@port-92-192-54-115.dynamic.as20676.net) (Quit: Insert quantum chemistry joke here)
<<Prev Next>> Scroll to Top