<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:03:23] ⇨ Joins: lunar_sam (d83d0855c1@jabberfr.org)
L2[01:07:28] <Ko​dos> What's the functional opposite of string.byte?
L3[01:08:21] <Izaya> string.char
L4[01:08:27] <Ko​dos> Thanks
L5[01:51:46] <Mic​hiyo> Ok, so who wants to show me how dumb I am? :D
L6[01:52:36] <Mic​hiyo> Trying to do math across an integer overflow. My need here is to take a number EG: 90, and wrap that number BACK around to 10, ONLY with addition and intmax of 2147483647
L7[01:53:41] <luna​r_sam> what the fuck happened to CSGO
L8[01:53:59] <Mic​hiyo> they failed to do my above math issue and self destructed.
L9[01:54:11] <Mic​hiyo> Will you be the next victim?
L10[01:54:57] <luna​r_sam> i hope so
L11[01:55:03] <luna​r_sam> but what the fuck is this https://tinyurl.com/ygtk3xrj
L12[01:55:21] <Mic​hiyo> That's a screenshot
L13[01:55:26] <Mic​hiyo> of a game I'd assume.
L14[01:55:31] <Mic​hiyo> Possibly CS:GO from the context.
L15[01:55:45] <Mic​hiyo> And the logo in the top left
L16[02:07:37] <Ko​dos> I need better context, but I would imagine you just add maxint to x and compare to maxint, then add whatever's needed to wrap it around again to 10
L17[02:07:51] <Ko​dos> Or something like that
L18[02:07:53] <Ko​dos> ¯\(ツ)/¯
L19[02:07:58] <Ko​dos> Hopefully I can at least inspire you to think of a solution
L20[02:08:05] <Ko​dos> Even if I'm a moron too
L21[02:16:25] ⇨ Joins: Hawk777 (~chead@2607:c000:8272:e500:673:a003:e63e:dc2c)
L22[02:16:45] <Mic​hiyo> Yeah.. that's what I THOUGHT I was doing... but it seems I'm wrong.
L23[02:19:00] <Mic​hiyo> I need to emulate 32bit signed ints in a 64bit PHP lol
L24[02:30:22] <Mic​hiyo> So, I have to do 90 + 2147483647 which lands me at -2147483559, then abs that result, and then I need to add 2147483559 + 10
L25[02:30:25] <Mic​hiyo> Code Block pastebined https://paste.pc-logix.com/kibamaguhu
L26[02:30:29] <Mic​hiyo> Enjoy some horrible PHP :D
L27[03:09:36] <Amanda> %tell Inari stop siccing your foxes on people's brake lines
L28[03:09:36] <MichiBot> Ama​nda: Inari will be notified of this message when next seen.
L29[03:10:12] <Amanda> Someone tell this link to Inari please:
L30[03:10:19] <Amanda> https://matrix.camnet.site/_matrix/media/r0/download/camnet.site/hUDASjCKTFfAwXfjkEUtBZNH/Screenshot_20211014-230700.png
L31[03:10:59] <Amanda> Oh wait
L32[03:11:05] <Amanda> %oclogs
L33[03:11:07] <MichiBot> https://irclogs.pc-logix.com/?dir=logs/%23oc
L34[03:11:38] <Amanda> %tell Inari https://matrix.camnet.site/_matrix/media/r0/download/camnet.site/hUDASjCKTFfAwXfjkEUtBZNH/Screenshot_20211014-230700.png
L35[03:11:39] <MichiBot> Ama​nda: Inari will be notified of this message when next seen.
L36[03:12:08] <Amanda> Forgot this channel was in the matrix for a minute there
L37[03:13:05] <Amanda> %choose irradiate or be responsible, bury the uranium in a poor country
L38[03:13:05] <MichiBot> Ama​nda: I received a telegram from a long lost relative that only read "be responsible, bury the uranium in a poor country". Weird.
L39[03:14:41] * Amanda snuggles up around elfi, meows to her about the stories she's been reading
L40[03:14:46] <Amanda> Night nerds
L41[03:16:15] <Mic​hiyo> Night
L42[03:16:52] <Ko​dos> I put sriracha sauce on pulled pork. I immediately regret this decision
L43[03:17:02] <Mic​hiyo> I'll take it
L44[03:17:04] <Mic​hiyo> thanks
L45[03:17:05] <jamespla​yz101018> how do i make a drone work
L46[03:17:12] <jamespla​yz101018> how does the lua code work
L47[03:17:16] <Ko​dos> https://tenor.com/view/magical-magic-gif-13543499
L48[03:19:05] <jamespla​yz101018> nvm, https://www.youtube.com/watch?v=08KYMpvgLm4&t=0s
L49[03:19:05] <MichiBot> OpenComputers v1.3 Tutorial 3: Write and Execute Programs (English) | length: 17m 1s | Likes: 751 Dislikes: 19 Views: 90,674 | by Mighty Pirates | Published On 16/8/2014
L50[03:19:53] <Mic​hiyo> yeah.. that's not gonna work for Drones. Drones are basically flying EEPROMs
L51[03:20:16] <Mic​hiyo> So they don't get most of the libraries that get loaded by OpenOS
L52[03:20:21] <jamespla​yz101018> i'm watching thru the series to understand the computers then i'll learn the drones
L53[03:24:02] <jamespla​yz101018> i'm a bit stupid, is lua similar to c or javascript?
L54[03:26:18] <Izaya> yeah
L55[03:26:21] <Izaya> have a read through
L56[03:26:23] <Izaya> %pil
L57[03:26:24] <MichiBot> https://www.lua.org/pil/contents.html#P1
L58[03:36:14] <Ko​dos> Only example of drone code I can think of is Sangar's sorting video using them and waypoints
L59[03:39:42] ⇨ Joins: ben_mkiv (~ben_mkiv@200116b814d61700fe3497fffea975f2.dip.versatel-1u1.de)
L60[03:43:57] <Ocawes​ome101> @Michiyo add 21474835567?
L61[03:47:44] <Mic​hiyo> So, the issue is that PHP is running on a 64 bit system, so it's using 64bit ints. I had to fake 32bitness
L62[03:48:13] <Mic​hiyo> Since I'm working with a int32 on the other end of this
L63[03:49:05] <Mic​hiyo> Which is where my issue was, that's why I have that `$output-=0x100000000;` in there
L64[03:49:27] <Izaya> https://social.shadowkat.net/media/e13fd40e6f0263767a099ffa231d17bae2eb333751917fa74d0afa5247283a1a.jpg
L65[04:56:04] ⇨ Joins: sergey (~sergey@188.17.172.169)
L66[04:56:20] ⇦ Quits: sergey (~sergey@188.17.172.169) (Client Quit)
L67[05:45:37] ⇦ Quits: Renari (~Renari@64.67.31.239.res-cmts.bgr.ptd.net) (Ping timeout: 189 seconds)
L68[06:32:23] ⇦ Quits: Hawk777 (~chead@2607:c000:8272:e500:673:a003:e63e:dc2c) (Quit: Leaving.)
L69[06:47:02] ⇨ Joins: Renari (~Renari@64.67.31.239.res-cmts.bgr.ptd.net)
L70[06:52:01] ⇦ Quits: Renari (~Renari@64.67.31.239.res-cmts.bgr.ptd.net) (Read error: Connection reset by peer)
L71[06:54:05] ⇨ Joins: Renari (~Renari@64.67.31.239.res-cmts.bgr.ptd.net)
L72[07:12:31] ⇦ Quits: feldim2425 (~feldim242@dynamic-2jkyag5ytjsdku01xe-pd01.res.v6.highway.a1.net) (Ping timeout: 189 seconds)
L73[07:22:17] ⇦ Quits: ben_mkiv (~ben_mkiv@200116b814d61700fe3497fffea975f2.dip.versatel-1u1.de) (Ping timeout: 192 seconds)
L74[07:33:18] ⇦ Quits: Victor_sueca (~Victor_su@90.165.120.190) (Read error: Connection reset by peer)
L75[07:35:25] ⇨ Joins: Vexatos (~Vexatos@port-92-192-221-38.dynamic.as20676.net)
L76[07:35:26] zsh sets mode: +v on Vexatos
L77[07:38:48] <Va​ur> %tonkout
L78[07:38:49] <MichiBot> Holy tiny spoon Batman! Va​ur! You beat your own previous record of 16 hours, 20 minutes and 3 seconds (By 7 hours, 44 minutes and 57 seconds)! I hope you're happy!
L79[07:38:50] <MichiBot> Va​ur has tonked out! Tonk has been reset! They gained 0.024 tonk points! plus 0.046 bonus points for consecutive hours! Current score: 3.42388264, Position #2 Need 0.00459746 more points to pass Forec​aster!
L80[07:43:28] <Va​ur> %sip
L81[07:43:28] <MichiBot> You drink a sedimented lime potion (New!). Vaur's favourite cup is now upside down.
L82[08:18:35] ⇨ Joins: ben_mkiv (~ben_mkiv@200116b814d61700fe3497fffea975f2.dip.versatel-1u1.de)
L83[08:58:08] ⇨ Joins: feldim2425 (~feldim242@62-46-204-17.adsl.highway.telekom.at)
L84[09:03:33] ⇦ Quits: feldim2425 (~feldim242@62-46-204-17.adsl.highway.telekom.at) (Ping timeout: 198 seconds)
L85[09:09:10] ⇨ Joins: feldim2425 (~feldim242@62-46-204-17.adsl.highway.telekom.at)
L86[10:22:58] <Wat​tana> has opencomputers got its own bad apple demo yet?
L87[10:23:14] <Wat​tana> k i think i asked to soon
L88[10:23:48] <Wat​tana> and now I have discovered someone made a video codec for OC
L89[10:58:48] <Forec​aster> %tonk
L90[10:58:48] <MichiBot> Yay! Forec​aster! You beat Va​ur's previous record of <0 (By 3 hours, 19 minutes and 59 seconds)! I hope you're happy!
L91[10:58:49] <MichiBot> Forecaster's new record is 3 hours, 19 minutes and 59 seconds! Forecaster also gained 0.00333 tonk points for stealing the tonk. Position #1.
L92[11:01:55] <Forec​aster> @Wattana you can always make one of whatever that is, otherwise it's probably unlikely to happen
L93[13:49:19] <Ko​dos> Speaking of wanting things unlikely to happen, I’d still like to see rack mounted raids
L94[13:49:38] <Ko​dos> Or at least hdd arrays even if they were separate file systems
L95[14:24:10] <Ko​dos> There are 10 types of people in this world: those who were not expecting a number base joke, those who thought this joke would be in binary, those who expected ternary, those who have heard me tell this joke before and knew it would be in quaternary, and people who aren't off-put by base 5.
L96[15:23:52] <Va​ur> lol
L97[15:24:13] <Va​ur> ngl I was expecting a binary joke
L98[16:26:52] ⇨ Joins: Inari (~Pinkishu@p4fe7ee73.dip0.t-ipconnect.de)
L99[16:26:58] <Inari> nep
L100[16:28:22] <Inari> Amanda: that fox doesn't look very frenzied
L101[16:58:45] <ThePi​Guy24> >Kodos: There are 10 types of people in this world…
L102[16:58:46] <ThePi​Guy24> odd bases are just wrong ;p
L103[16:59:05] <ThePi​Guy24> and especially prime bases (with the exception of 2)
L104[17:02:01] <Va​ur> %tonk
L105[17:02:02] <MichiBot> Zoinks! Va​ur! You beat Forec​aster's previous record of 3 hours, 19 minutes and 59 seconds (By 2 hours, 43 minutes and 14 seconds)! I hope you're happy!
L106[17:02:03] <MichiBot> Vaur's new record is 6 hours, 3 minutes and 13 seconds! Vaur also gained 0.01088 (0.00272 x 4) tonk points for stealing the tonk. Position #2 => #1. (Overtook Forecaster)
L107[17:27:55] ⇨ Joins: ThePiGuy24 (~ThePiGuy2@host-92-17-120-53.as13285.net)
L108[17:28:27] ⇦ Quits: TPG24 (~ThePiGuy2@host-92-17-120-53.as13285.net) (Ping timeout: 198 seconds)
L109[17:29:17] <Amanda> Inari: then why did it rip out the break line?
L110[17:29:28] <Inari> Amanda: it looked tasty
L111[17:29:30] <Amanda> You know cars can't stop without those right!
L112[17:30:41] <Inari> but the point of cars is to go
L113[17:30:43] <Inari> why would they stop
L114[17:31:00] <Amanda> but the point of the foxes is to eat, why would they poop?
L115[17:32:03] <Inari> it's the circle of life
L116[17:36:33] ⇦ Quits: ben_mkiv (~ben_mkiv@200116b814d61700fe3497fffea975f2.dip.versatel-1u1.de) (Ping timeout: 192 seconds)
L117[18:24:47] <Brother ​Assassin> nice cock
L118[18:27:34] <Amanda> Chicken!? Where!?
L119[18:45:57] <Inari 「オ​兄デレ」「狐っ娘」> wow, norton sure goes with that retro 90s feeling in their mails https://tinyurl.com/yzpdyepz
L120[18:49:55] <Va​ur> or ... its a scam
L121[18:50:25] <Inari 「オ​兄デレ」「狐っ娘」> But it's Norton. A reputable company wouldn't scam people
L122[18:50:51] <Amanda> it says it's norton
L123[18:51:06] <Amanda> you can put a sticker on a fox saying "box" and that doesn't make it the most holy item in existence.
L124[18:51:35] <Inari 「オ​兄デレ」「狐っ娘」> True, foxes are that by default
L125[18:51:52] <Amanda> foxes are boxes?
L126[18:51:56] <Inari 「オ​兄デレ」「狐っ娘」> I'm actually kinda curious what this links to, but not curious enough to click it
L127[18:51:56] * Amanda jumps into Inari
L128[20:45:04] <Amanda> %lua "pong!
L129[20:45:04] <MichiBot> main:1: unfinished string near <eof>
L130[20:45:14] <Amanda> quiet day today
L131[21:14:51] <Ko​dos> I am busy dealing with RL today. Online Kodos will resume standard hours this evening.
L132[21:16:37] <Amanda> I see
L133[21:17:04] <Amanda> Inari's playing monster hunter rise, I guess, which is why she's not replied to my messages
L134[21:17:06] <Izaya> nodos
L135[21:18:06] * Amanda flops down around Elfi, wonders why her brain is feeling seasick even though she's not left dry ground in more than a year
L136[21:18:12] <Mic​hiyo> I ended up sick, so I'm doing good to sit up and work
L137[21:18:20] <Mic​hiyo> much less put effort into further interaction
L138[21:18:22] * Amanda looks at her meds, sees she's missed the last 2-3 days of allergy "Oh."
L139[21:19:28] <Amanda> It sucks being allergic to the lawn
L140[21:19:49] <Amanda> At least I hope it's just allegies, and I didn't pick up my dad's cold
L141[21:20:04] <Amanda> %remindme 11m check
L142[21:20:04] <MichiBot> I'll tell you "check" in 11m at 10/15/2021 09:31:04 PM
L143[21:31:04] <MichiBot> Amanda REMINDER: check
L144[21:31:28] <Amanda> I guess that story's just not updating this weel
L145[21:31:51] <Amanda> week*
L146[21:31:59] <Amanda> %choose irradiate or factory
L147[21:32:00] <MichiBot> Ama​nda: Once you get a taste of "irradiate" you can't stop.
L148[21:33:15] <Mic​hiyo> Ugh, I feel like someone has beaten me and then thrown me out a car
L149[21:33:18] <Mic​hiyo> >_>
L150[21:34:14] <Amanda> uhhhhhh
L151[21:34:20] * Amanda quietly checks the mind wipe
L152[21:37:58] <Mic​hiyo> lol
L153[22:11:30] <Forec​aster> MichiBot don't encourage exposure to radiation!
L154[22:11:55] <Amanda> but it's so tasty!
L155[22:12:44] <Forec​aster> huh, I unlocked the Community tab on youtube
L156[22:12:47] <Forec​aster> I don't know why...
L157[22:14:45] <Forec​aster> it's not something that suddenly got unlocked for everyone cause my other channels don't have it
L158[22:14:48] <Forec​aster> weird
L159[22:16:30] <Totoro> hello guys
L160[22:16:36] <Totoro> do you have some example of app
L161[22:16:43] <Totoro> that uses vram in OC?
L162[22:17:09] <Totoro> I was doing some ocelot upgrades recently, and I would really appreciate something I can test it on
L163[22:17:22] <Totoro> because I'm not sure it is working as it is supposed to :)
L164[22:18:59] <Forec​aster> I'm sure someone here has used it
L165[22:19:02] <Forec​aster> I forget who
L166[22:22:48] <Amanda> I think @ocawesome101 was
L167[22:23:57] <Totoro> oh, I know that name
L168[22:25:16] <Amanda> Actually I think they were the one helping payonel stress test it and give him data to decide on the call limits and such
L169[22:26:31] <Totoro> yep, I saw the digits go back and forth a lot
L170[22:26:40] <Totoro> when browsing the commit history
L171[22:27:08] <Totoro> some good work was done there
L172[22:45:02] <Ash​irg> %pil
L173[22:45:03] <MichiBot> https://www.lua.org/pil/contents.html#P1
L174[22:49:30] <Ash​irg> %sip
L175[22:49:30] <MichiBot> You drink a cloudy weather potion (New!). 3 nearby pebbles suddenly shift slightly in Ashirg's direction.
L176[22:50:09] <Ash​irg> I could swear those pebbles just moved
L177[22:50:33] ⇦ Quits: Vexatos (~Vexatos@port-92-192-221-38.dynamic.as20676.net) (Quit: Insert quantum chemistry joke here)
L178[22:50:50] <Forec​aster> probably just a trick of the light
L179[22:58:01] <Ocawes​ome101> Totoro: Amanda: It was kristopher38 who helped test the vram buffers mostly
L180[22:58:08] <Ocawes​ome101> i do have a project or two using them though
L181[22:58:32] <Amanda> ah
L182[22:59:54] <Ocawes​ome101> https://github.com/ocawesome101/oc-ulos has the ULOS Window Manager, `uwm` package, which requires buffers, and https://github.com/ocawesome101/opensystem has support for them but they aren't required (though they make it much faster)
L183[23:12:10] <Amanda> %choose factory or laptop nap time
L184[23:12:11] <MichiBot> Ama​nda: factory'os, for a complete breakfast!
L185[23:14:07] <Forec​aster> no thanks, too many bits of metal
L186[23:14:28] ⇦ Quits: Inari (~Pinkishu@p4fe7ee73.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L187[23:14:51] <Amanda> you're meant to pick them out and use them to begin another industrial revolution, not eat them
L188[23:14:59] <Forec​aster> ooh
L189[23:15:53] <Sagh​etti> factory'os
L190[23:15:57] <Sagh​etti> factorio
L191[23:16:03] <Sagh​etti> clever... very clever
L192[23:16:36] <Ocawes​ome101> pinephone pro announced today
L193[23:17:13] <Ocawes​ome101> a higher-spec version of the og pinephone, pogo-pin-compatible, with a custom variant of the rk3399
L194[23:17:59] <Sagh​etti> speaking of pine products
L195[23:18:05] <Sagh​etti> the pineseed
L196[23:18:36] <Sagh​etti> (bl602)
L197[23:18:44] <Sagh​etti> really want to use it in a project
L198[23:26:02] <Amanda> @Saghetti it would be clever, if it wasn't a simple sting subsitition that resulted in "factory'os"
L199[23:26:18] <Sagh​etti> still; it's funby
L200[23:26:22] <Sagh​etti> funny*
L201[23:30:46] <Izaya> Ocawesome101: hoping the board is compatible between pro and non-pro versions
L202[23:31:05] <Izaya> but it's nbd really, the camera is nice but it's not like the 3GB version was hurting for CPU power or RAM
L203[23:36:38] <Amanda> Izaya: the POGO is compataible, so I assume so, I think it's the same case with new guts
L204[23:36:57] <Izaya> apparently it's 2mm thicker but that's to account for the thermals of the new display
L205[23:37:34] <Amanda> ah
L206[23:43:45] <Ocawes​ome101> Izaya: not entirely sure what the status on board compatibility is
L207[23:43:54] <Ocawes​ome101> if it is compatible that'd be awesome
L208[23:51:17] <CompanionCube> Izaya: 'The Cabinet Office has begun work on a programme to develop a digital voter card for people without photo IDs.'
<<Prev Next>> Scroll to Top