[2026-05-27T00:07:20Z] midfavila: yeah my void installer uses dialog for everything [2026-05-27T00:07:32Z] it's pretty ok for what it is [2026-05-27T04:24:22Z] dery: i've used xfs for years instead of extfs which i've basically never used [2026-05-27T04:24:31Z] xfs is great for plug and play and performs well in most scenarios [2026-05-27T04:24:40Z] it's also the default FS for a few different distros iirc [2026-05-27T04:25:27Z] that said, i prefer JFS because it's stupid simple, and NILFS2, because it's also simple and still has something analogous to snapshotting on account of all previous states of the filesystem being kept around until manually trimmed (or trimmed by the daemon) [2026-05-27T04:26:06Z] kris_: aside from looking at your scripts do you have any good resources for learning the basics of working with dialog or is it sort of a 'figure it the fuck out' thing [2026-05-27T04:26:30Z] i've poked at dialog without really putting effort into it before and it seemed like a bit of a pain to actually get data *out* of dialog [2026-05-27T04:41:01Z] oh damn modos' new monitor comes with a colour variant [2026-05-27T04:41:07Z] i mean it's expensive as hell but still [2026-05-27T04:41:10Z] 720usd... [2026-05-27T04:41:19Z] but i could have a colour e-ink display in my reform... [2026-05-27T04:41:35Z] it can go on the list for a far off future project [2026-05-27T04:49:06Z] https://github.com/RileyMeta/Bash-Dialog [2026-05-27T04:49:07Z] midfavila: [2026-05-27T04:49:11Z] this might be useful idk [2026-05-27T04:49:24Z] for me it was a figure it out type thing [2026-05-27T04:49:36Z] also if by get data out of it you mean just input boxes, you can just uh [2026-05-27T04:49:51Z] variable=$(dialog command and shit inputbox) [2026-05-27T04:49:59Z] wha [2026-05-27T04:50:01Z] input boxes and stuff* [2026-05-27T04:50:03Z] i swear to god i remember trying that [2026-05-27T04:50:10Z] am i the stupid?????? [2026-05-27T04:50:12Z] bwuh???? [2026-05-27T04:50:26Z] rare moment of mid self awareness [2026-05-27T04:52:21Z] no see i was right that doesn't work [2026-05-27T04:52:46Z] because dialog sets up its environment by spitting a bunch of shit out onto stdout and then waits for input [2026-05-27T04:52:59Z] well, i'll look at that link you sent, it seems good [2026-05-27T04:53:01Z] tysm [2026-05-27T04:53:13Z] midfavila: dialog --stdout [2026-05-27T04:53:23Z] append --stdout and then try it [2026-05-27T04:53:34Z] fuq [2026-05-27T04:53:42Z] i forgot about that flag my bad its been forever since ive looked at my helper function for dialog [2026-05-27T04:54:19Z] https://i.kym-cdn.com/entries/icons/facebook/000/009/471/Screen_Shot_2021-04-29_at_11.20.47_AM.jpg [2026-05-27T04:54:23Z] realtime mid reaction [2026-05-27T04:56:53Z] oh yeah i've got a pretty decent setup with tofu going btw [2026-05-27T04:57:06Z] still need to set up a bar and find a way to manage boundaries [2026-05-27T04:57:13Z] but it's surprisingly comfy [2026-05-27T04:57:56Z] also thinking about stealing z3bra's ewmh programme from glazier and writing an extension for tofu based on it [2026-05-27T04:58:22Z] i'm /probably/ going to polish up the base distribution and host it on SDF for ease of access as well [2026-05-27T04:58:29Z] needs to have documentation and some polish [2026-05-27T04:59:14Z] what tofu [2026-05-27T04:59:18Z] is that a wm [2026-05-27T04:59:24Z] yes [2026-05-27T04:59:27Z] written in posix shell [2026-05-27T04:59:29Z] :D [2026-05-27T04:59:30Z] oh THAT [2026-05-27T04:59:37Z] yeah i remember you mentioning that lmfaoo [2026-05-27T05:00:02Z] for some reason tofu spawns like a bajillion instances of itself by default so that has to be fixed [2026-05-27T05:00:23Z] i just added a check to ensure that it doesn't shit out a whole pile of itself if there's already an instance running and that seems to be good enough [2026-05-27T05:00:28Z] that has to be slow as hell [2026-05-27T05:00:31Z] the bigger issue is that sometimes x11fs just fucking dies [2026-05-27T05:00:35Z] actually not really [2026-05-27T05:00:53Z] i mean it's not /amazing/ if you're stress testing it [2026-05-27T05:01:06Z] but if you're using a reasonably fast shell it's perfectly usable [2026-05-27T05:01:24Z] and honestly there could be some optimisations made [2026-05-27T05:01:53Z] like right now the only thing i can think of that causes issues is if you open a shitload of windows and then jiggle your cursor between all of them insanely fast [2026-05-27T05:01:59Z] then the tracking can be a smidge slow [2026-05-27T05:02:17Z] i would love a wayland wm written in shell [2026-05-27T05:02:36Z] but you could probably add in some kind of mechanism to stop tracking if there's X number of events per second and then resume once the flow is manageable [2026-05-27T05:02:39Z] also [2026-05-27T05:02:51Z] you could probably just use tofu if you reimplemented x11fs as a wayland compositor [2026-05-27T05:02:54Z] or something [2026-05-27T05:02:56Z] waylandfs [2026-05-27T05:02:58Z] wayfs [2026-05-27T05:03:19Z] that would be an interesting project actually [2026-05-27T05:03:50Z] if you could maintain the same user-facing API as x11fs or a similar-enough one then you could use tofu with no or few changes [2026-05-27T05:03:58Z] tofu itself is pretty simple [2026-05-27T05:04:05Z] x11fs is what does all the actual work [2026-05-27T05:04:30Z] tofu just applies hooks based on an event stream, really [2026-05-27T05:04:55Z] and said hooks usually interface with x11fs either directly or via tofu'c control programme tofc [2026-05-27T05:05:36Z] hmm [2026-05-27T05:06:38Z] https://github.com/chenzhch/shellc [2026-05-27T05:06:40Z] this gives me ideas [2026-05-27T05:06:43Z] dangerous ones [2026-05-27T05:08:29Z] https://github.com/chenzhch/xbash [2026-05-27T05:08:34Z] seems like a successor [2026-05-27T05:11:56Z] gtx 1650 laptop isnt as low performance as i was expecting [2026-05-27T05:12:08Z] its useless as a laptop but it does run game [2026-05-27T05:12:20Z] many such cases with gaming laptops [2026-05-27T05:12:48Z] midfavila: re XFS that's great to know. I'll switch to it asap then :D [2026-05-27T05:13:23Z] i use xfs on everything its great\ [2026-05-27T05:13:31Z] yeah no complaints [2026-05-27T05:13:33Z] have been for a few years [2026-05-27T05:13:33Z] xfs just werks [2026-05-27T05:13:33Z] lately I've been benchmarking some builds inside a container and god is that doing a crapton of I/O on my ssd just by ccache [2026-05-27T05:13:47Z] dery no ramdisk? [2026-05-27T05:14:16Z] been considering that but it feels safer to not rely on ram [2026-05-27T05:14:29Z] yes I also have 32GB of ram [2026-05-27T05:14:37Z] tbh I'm not even sure how to configure that from podman lol [2026-05-27T05:14:39Z] >doesn't even have 64 [2026-05-27T05:14:42Z] ngmi [2026-05-27T05:14:46Z] fr [2026-05-27T05:14:50Z] it's all over [2026-05-27T05:14:59Z] honestly ecc ram is so cheap compared to non-ecc [2026-05-27T05:15:07Z] the funny thing is that my desktop has 16 [2026-05-27T05:15:12Z] yeah because fucking nothing supports ecc [2026-05-27T05:15:24Z] my laptop is like, officially faster than my desktop in everything except muh gaming [2026-05-27T05:15:26Z] ryzen supports unbuffered ecc but thats the most expensive of the 3 [2026-05-27T05:15:27Z] i've never had an issue finding workstation and server hardware [2026-05-27T05:15:30Z] lol [2026-05-27T05:15:45Z] most expensive part on such builds tends to be the mobo [2026-05-27T05:15:55Z] depends [2026-05-27T05:15:56Z] makes sense [2026-05-27T05:16:00Z] you can get slop boards on aliexpress [2026-05-27T05:16:10Z] i just buy stuff from a few gens back on ebay [2026-05-27T05:16:11Z] it's fine [2026-05-27T05:16:14Z] never had any issues [2026-05-27T05:16:18Z] are they worth it kris_? genuine question [2026-05-27T05:16:21Z] they take working parts from normal like gigabyte/asus/etc boards that are broken and make new mobos out of them in china to resell working parts [2026-05-27T05:16:33Z] super fucking cheap [2026-05-27T05:16:34Z] I've seen modest server cpus for nothing online [2026-05-27T05:16:43Z] dery: the motherboards im describing? [2026-05-27T05:16:45Z] yea [2026-05-27T05:16:49Z] yeah you can get xeons for nothing [2026-05-27T05:17:00Z] i mean i would say no but my friend michael who owns one would say yes [2026-05-27T05:17:04Z] cause cheap mobo + cheap cpu = almost a working cheap system :D [2026-05-27T05:17:13Z] bulldozers are even cheaper although at that point you're using bulldozers [2026-05-27T05:17:15Z] so ymmv [2026-05-27T05:17:21Z] i've been happy with my piledriver machine [2026-05-27T05:17:22Z] ram is gonna go back down in price soon anyway some new company out of china is making memory chips for specifically normoids like us to buy [2026-05-27T05:17:25Z] theyre already in corsair kits [2026-05-27T05:17:30Z] yeah i saw that [2026-05-27T05:17:32Z] wut fr [2026-05-27T05:17:35Z] yeah fr [2026-05-27T05:17:36Z] less goooo [2026-05-27T05:17:39Z] we're so back [2026-05-27T05:17:40Z] china also just made its own 100% domestic gpu [2026-05-27T05:17:47Z] the morethreads gpu? lmao [2026-05-27T05:17:50Z] ok I'll stop talking like I never go outside lmfao [2026-05-27T05:17:57Z] a china company also has an x86 license [2026-05-27T05:18:02Z] they have 100% domestic x86 cpus too [2026-05-27T05:18:06Z] kris_: idk man apparently it's like comparable to 3060s [2026-05-27T05:18:18Z] we're living in the chinese century [2026-05-27T05:18:24Z] anglo millenium of humiliation [2026-05-27T05:18:37Z] fr [2026-05-27T05:18:51Z] * midfavila inhales [2026-05-27T05:18:53Z] * midfavila SREAMS [2026-05-27T05:18:56Z] screams even fuck [2026-05-27T05:19:21Z] don't you love competition [2026-05-27T05:19:30Z] no lol [2026-05-27T05:19:33Z] the most capitalistic thing ever that america despises the most [2026-05-27T05:19:42Z] the "west" deserves everything it gets for trying to "compete" [2026-05-27T05:19:58Z] yea fair I wasn't super serious [2026-05-27T05:20:16Z] tried to remark how america is "capitalist" and it's being rolled over by a "socialist" country with competition [2026-05-27T05:20:26Z] yeye [2026-05-27T05:22:19Z] Ignoring compatibility, would you prefer risc over cisc? [2026-05-27T05:22:22Z] the mysterious guest returns [2026-05-27T05:22:23Z] also yes [2026-05-27T05:22:52Z] yea [2026-05-27T05:22:59Z] the second i can get a risc-v cpu in my reform i'm dumping ARM, and the second i can get pioneer boards i'm dumping x86 [2026-05-27T05:23:06Z] based [2026-05-27T05:23:08Z] my handheld is already risc [2026-05-27T05:23:38Z] how is it compatibility wise? in terms of what you can run [2026-05-27T05:24:00Z] everything i need runs fine [2026-05-27T05:24:13Z] including reasonably complex software like gcc, emacs, firefox, etc [2026-05-27T05:24:17Z] i can get X to run too [2026-05-27T05:24:22Z] i know you don't need much but still it's cool [2026-05-27T05:24:26Z] oh all that? nice [2026-05-27T05:24:33Z] also [2026-05-27T05:24:39Z] box86 has been making crazy progress [2026-05-27T05:24:46Z] gimme two seconds i'm gonna knock your socks off [2026-05-27T05:25:13Z] fuuuuuuuuuuuuuuuck i hate youtube so much [2026-05-27T05:26:02Z] https://inv.nadeko.net/watch?v=gD5gFffEt9I [2026-05-27T05:26:04Z] sorry box64 [2026-05-27T05:26:20Z] same guy has gotten hades and the witcher 3 to run too [2026-05-27T05:26:28Z] of course, the latter, uh, *only* ran [2026-05-27T05:26:31Z] it wasn't playable [2026-05-27T05:26:39Z] unless you can cope with like 20fps [2026-05-27T05:26:46Z] but hades was totally playable [2026-05-27T05:27:01Z] oh I thought you were gonna link the phone thing [2026-05-27T05:27:03Z] this is even cooler [2026-05-27T05:27:08Z] yeah man [2026-05-27T05:27:13Z] but also still think that the phone thing is huge IMO [2026-05-27T05:27:33Z] it probably uses box64 behind the scenes [2026-05-27T05:27:37Z] it was originally developed for arm [2026-05-27T05:27:40Z] yea [2026-05-27T05:27:47Z] 20 fps is ok [2026-05-27T05:27:52Z] just look down all the time [2026-05-27T05:27:53Z] ig it's like, a jit transpiler [2026-05-27T05:27:57Z] from x86 to other arches [2026-05-27T05:28:03Z] I *think* it also did like, library redirection or smth? [2026-05-27T05:28:08Z] was it box? [2026-05-27T05:28:08Z] yeah i think so [2026-05-27T05:28:37Z] these are the things that kindle that joy about CS in me [2026-05-27T05:28:58Z] (not Counter Strike) [2026-05-27T05:29:03Z] yeah [2026-05-27T05:29:04Z] me too [2026-05-27T05:29:07Z] :c [2026-05-27T05:29:09Z] this is the sort of stuff i'd like to do [2026-05-27T05:29:14Z] kris_: that's why I specified xD [2026-05-27T05:29:31Z] but then you go to uni and it's all llm slop and gamedev and webshit [2026-05-27T05:29:43Z] not been my experience [2026-05-27T05:29:51Z] bruh the video says "using Wine" [2026-05-27T05:29:58Z] dery yeah [2026-05-27T05:30:04Z] uses wine or proton and dxvk [2026-05-27T05:30:08Z] the amount of layers is getting extremely funny [2026-05-27T05:30:09Z] on box64 [2026-05-27T05:30:10Z] lmao [2026-05-27T05:30:51Z] kris_: well i'm glad it's worked well for you. i'm hoping that won't be the case when i attend, but most of my irlfrens have complained about it. [2026-05-27T05:30:57Z] literally https://images-cdn.9gag.com/photo/an4mmLz_700b.jpg [2026-05-27T05:31:03Z] >9gag [2026-05-27T05:31:07Z] (yes it was my first hit) [2026-05-27T05:31:07Z] eternity gulag [2026-05-27T05:31:19Z] i lied, i dont have netflix [2026-05-27T05:31:25Z] that's pretty good though [2026-05-27T05:31:25Z] take off your shoes we're upgrading openbsd and eating pizza [2026-05-27T05:31:38Z] shit that reminds me i need to heat up some of mypizza [2026-05-27T05:31:39Z] dream evening [2026-05-27T05:32:05Z] oh shit he got crysis to run [2026-05-27T05:32:07Z] and like [2026-05-27T05:32:11Z] it's playable [2026-05-27T05:32:12Z] that's wild [2026-05-27T05:32:14Z] blessed timeline [2026-05-27T05:32:27Z] i mean a big part of crysis was its gpu load for the time but still [2026-05-27T05:33:17Z] this trascended "can it run doom" a thousand fold [2026-05-27T05:33:30Z] man we should have a kiss doom server [2026-05-27T05:33:33Z] that would be comfy asf [2026-05-27T05:33:51Z] i would be up for setting up some community stuff as a hobby at some point [2026-05-27T05:34:07Z] personally that would be fine [2026-05-27T05:34:16Z] doom server? [2026-05-27T05:34:20Z] youc an host games for doom? [2026-05-27T05:34:26Z] yeah? [2026-05-27T05:34:26Z] I wouldn't expect lots of people tho :P [2026-05-27T05:34:30Z] yea kris_ [2026-05-27T05:34:35Z] there are a ton of modpacks too [2026-05-27T05:34:44Z] i used to play this like, rpg variant of doom with buddy of mine [2026-05-27T05:34:46Z] crazy fun [2026-05-27T05:36:08Z] oh man... [2026-05-27T05:36:10Z] wonder how emulators would run on box64, just for curiosity [2026-05-27T05:36:17Z] if i could get mezzano to run on a risc machine... [2026-05-27T05:36:20Z] * midfavila drools... [2026-05-27T05:36:24Z] I get that you can build them natively as 99% of them are FOSS but still [2026-05-27T05:36:50Z] mid what's mezzano? [2026-05-27T05:36:52Z] dolphin via dxvk and proton via box64 [2026-05-27T05:36:58Z] dery it's a baremetal common lisp operating system [2026-05-27T05:37:02Z] 100% common lisp [2026-05-27T05:37:35Z] has all the standard features you'd expect, too. compositing windowing system, tcp/ip stack, usb support, extfs and fat iirc [2026-05-27T05:37:39Z] couple of other things [2026-05-27T05:37:58Z] also has a custom C-CL transpiler using LLVM that can get for example quake to run really well [2026-05-27T05:38:13Z] nice [2026-05-27T05:38:19Z] can't see why it can't run tbh [2026-05-27T05:38:40Z] https://github.com/froggey/mezzano [2026-05-27T05:39:16Z] oh shit it has mcclim and quicklisp now too [2026-05-27T05:39:18Z] that's so cool [2026-05-27T05:39:46Z] what's the entry point? [2026-05-27T05:39:56Z] like, there's gotta be a native component somewhere [2026-05-27T05:40:10Z] afaik the kernel is a uefi executable [2026-05-27T05:40:26Z] I am blind [2026-05-27T05:40:27Z] https://github.com/froggey/Mezzano/blob/master/runtime/runtime-x86-64.lisp [2026-05-27T05:40:29Z] compiled to machine code and then it bootstraps itself [2026-05-27T05:40:32Z] there's literally a runtime dir lol [2026-05-27T05:40:38Z] first boot takes forever tho [2026-05-27T05:40:41Z] lmfao even the assembly is inside a lisp file? [2026-05-27T05:40:55Z] i put it on real hardware and it took like 5 minutes to boot the first time [2026-05-27T05:40:59Z] oh [2026-05-27T05:40:59Z] afterward it was only a couple seconds tho [2026-05-27T05:41:08Z] wonder were it caches that [2026-05-27T05:41:12Z] but still, cool af [2026-05-27T05:41:12Z] well, it bootstraps the entire environment from just a few primitives [2026-05-27T05:41:19Z] then it dumps the state of the memory to a core file [2026-05-27T05:41:23Z] and then it just [2026-05-27T05:41:27Z] >loads the entire core file on boot [2026-05-27T05:41:36Z] the same thing happens with a lot of lisp systems [2026-05-27T05:41:40Z] s9fes does it, sbcl does it [2026-05-27T05:41:59Z] a lot of "compiled" lisp is really just dumping the entire environment including a self-contained interpreter into a single portable file [2026-05-27T05:42:05Z] not always of course [2026-05-27T05:42:14Z] I mean if we assume that *everything* is there. Then perhaps it wouldn't be so bad to port? [2026-05-27T05:42:44Z] still no idea if there's other platform-specific stuff (there must be) but like, hopefully it's not so bad [2026-05-27T05:43:01Z] well, i definitely want to tinker with it [2026-05-27T05:43:17Z] of course, i would prefer if it was written in scheme, but beggars and choosers and all that [2026-05-27T05:43:39Z] >Hardware accelerated 3D support via qemu's Virgl device [2026-05-27T05:44:00Z] mfw this thing runs accelerated 3d under an emulator [2026-05-27T05:44:32Z] let's hope for some nice docs once this thing goes out of the "demo" phase [2026-05-27T05:44:45Z] wait last release was 6 years ago [2026-05-27T05:44:51Z] but it's still active??? [2026-05-27T05:44:52Z] wtf [2026-05-27T05:44:53Z] last commit two weeks [2026-05-27T05:44:56Z] it died for a while [2026-05-27T05:45:21Z] oh [2026-05-27T05:45:23Z] then the creator dumped a huge pile of patches [2026-05-27T05:45:26Z] then disappeared again [2026-05-27T05:45:29Z] and now they're back [2026-05-27T05:45:33Z] sounds familiar xD [2026-05-27T05:45:48Z] hmmmmm [2026-05-27T05:45:53Z] well that's great to know actually [2026-05-27T05:46:01Z] it's a side project after all [2026-05-27T05:53:14Z] yeye [2026-05-27T05:53:27Z] okay back with pizza also [2026-05-27T05:53:28Z] meatza [2026-05-27T05:58:15Z] yayyyy [2026-05-27T06:06:36Z] yippee [2026-05-27T06:07:38Z] piza [2026-05-27T06:07:54Z] dery whats ur fave pizza [2026-05-27T06:09:22Z] midfavila: I'd say capricciosa [2026-05-27T06:10:50Z] I've seen it with some omissions but the version I like is: tomato, mozzarella, salami, ham, artichokes, mushrooms, olives [2026-05-27T06:11:10Z] sometimes I've seen it without salami or without ham, for some reason [2026-05-27T06:11:52Z] great and works all year round IMO [2026-05-27T06:12:25Z] close are sausage and friarielli, very neapolitan, but good friariellis are a thing only in the colder times of the year [2026-05-27T06:12:58Z] and also a nice one is one which I've seen many names of: "primavera", "italiana" etc. Means different things in various restaurants but the ingredients are like [2026-05-27T06:14:04Z] no sauce, mozzarella and, after baking: prosciutto, arugula, (cherry) tomatoes, parmesan (but like shreds). [2026-05-27T06:14:07Z] hella yummy [2026-05-27T06:15:03Z] mhhhh now I'm hungry xD [2026-05-27T06:16:29Z] i'm really basic [2026-05-27T06:16:35Z] i just like bog standard pepperoni pizza [2026-05-27T06:16:39Z] dery consoom pizza [2026-05-27T06:16:44Z] it's 8 am mid [2026-05-27T06:16:48Z] but most of the time i make asmongold pizzas [2026-05-27T06:16:49Z] PIZZA [2026-05-27T06:16:54Z] dery: pizza is breakfast food [2026-05-27T06:16:58Z] pizzerias are closed rn [2026-05-27T06:17:05Z] michael wave: [2026-05-27T06:17:16Z] I am NOT gonna eat microwave pizza [2026-05-27T06:17:27Z] the only kind of breakfast pizza i'll find is more the more bakery kind [2026-05-27T06:17:29Z] >the humble toaster oven [2026-05-27T06:17:30Z] You appear to think this is a democracy. [2026-05-27T06:17:36Z] actually there's a place that sells a banger focaccia [2026-05-27T06:17:38Z] https://inv.nadeko.net/watch?v=czTksCF6X8Y dery [2026-05-27T06:17:41Z] pizza [2026-05-27T06:17:42Z] time [2026-05-27T06:17:56Z] lmfao [2026-05-27T06:18:00Z] midfavila: god dammit fuck you [2026-05-27T06:18:01Z] I actually put that song on while eating pizza [2026-05-27T06:18:03Z] multiple times [2026-05-27T06:18:11Z] i can never get this song out of my head once im reminded of it [2026-05-27T06:18:12Z] for days [2026-05-27T06:18:13Z] while I was in a call with various people [2026-05-27T06:18:25Z] kris_: fun fact, it's actually an actual song remixed [2026-05-27T06:18:34Z] funiculì funiculà iirc [2026-05-27T06:18:36Z] about like a lift [2026-05-27T06:18:38Z] or something [2026-05-27T06:18:38Z] lmao [2026-05-27T06:18:40Z] yea [2026-05-27T06:18:43Z] the funicolare [2026-05-27T06:18:47Z] i could go for an asmongold pizza right now [2026-05-27T06:18:52Z] STOP [2026-05-27T06:18:53Z] it's a weird kind of transport [2026-05-27T06:19:05Z] you get one of the like $3 totinos pizzas and put oregano and extra cheese and pepperoni on it [2026-05-27T06:19:12Z] and slightly burn it [2026-05-27T06:19:14Z] when cooking it in oven [2026-05-27T06:19:17Z] ngopp jamm ja funiculì funiculà [2026-05-27T06:19:21Z] i legitimately love it [2026-05-27T06:19:28Z] ur lucky i'm not registered as an op rn otherwise i would make mentioning asmongold a bannable offence [2026-05-27T06:19:35Z] i don't need to hear about his cockroach pizza [2026-05-27T06:19:36Z] >:C [2026-05-27T06:19:50Z] "oh this one is still alive" *CRUNCH* [2026-05-27T06:20:09Z] yeah yeah asmon has cockroaches and stallman eats stuff off of his foot at an event [2026-05-27T06:20:12Z] "you know what they say chat, hakuna matata" [2026-05-27T06:20:26Z] yeah but stallman has like [2026-05-27T06:20:31Z] minor redeeming characteristics [2026-05-27T06:20:45Z] he wrote the modernish version of emacs way back in prehistory [2026-05-27T06:20:52Z] wtf did asmongold ever do beyond incite race riots [2026-05-27T06:20:54Z] i miss asmon from a few years ago i used to watch him a lot [2026-05-27T06:20:59Z] didn't he also kickstart like, the libre software movement [2026-05-27T06:20:59Z] and then he started just talking about politics [2026-05-27T06:21:01Z] asmonmold [2026-05-27T06:21:03Z] dery yes [2026-05-27T06:21:18Z] libre software is basically just an extended nerd tantrum over a printer [2026-05-27T06:21:30Z] yes [2026-05-27T06:21:33Z] as it should be [2026-05-27T06:21:41Z] indubitably [2026-05-27T06:21:47Z] printers are still the bane of my existence, our job is still not done [2026-05-27T06:21:59Z] cups is like the best thing on earth [2026-05-27T06:22:02Z] we might as well have failed as far as i am concerned [2026-05-27T06:22:12Z] dery: have you seen the openprinter [2026-05-27T06:22:13Z] i actually love printing from linux [2026-05-27T06:22:14Z] yes but my printer sucks ass and doesn't work with IPP [2026-05-27T06:22:16Z] its such a nightmare on winblows [2026-05-27T06:22:17Z] someone finally did it and made an open source 2d printer [2026-05-27T06:22:20Z] midfavila: yea [2026-05-27T06:22:25Z] we have open source plotters [2026-05-27T06:22:29Z] open source 3d printers [2026-05-27T06:22:33Z] open source entire fucking computers [2026-05-27T06:22:44Z] and yet no 2d printer until some guys from france come along [2026-05-27T06:22:49Z] my parents barely agreed to buy me a cheapass 3d printer in middle school [2026-05-27T06:22:54Z] they are not gonna change this thing [2026-05-27T06:22:57Z] it works with the "app" [2026-05-27T06:23:05Z] doesn't even work with android's standard printing subsystem ffs [2026-05-27T06:23:14Z] is it like a networked thing [2026-05-27T06:23:18Z] yes [2026-05-27T06:23:20Z] you could snoop on the traffic with wireshark probably [2026-05-27T06:23:24Z] the issue is [2026-05-27T06:23:25Z] it only [2026-05-27T06:23:25Z] unless they have their own bullshit encryption [2026-05-27T06:23:26Z] and ONLY [2026-05-27T06:23:31Z] ingests its own crap binary format [2026-05-27T06:23:37Z] I tried using netcat and all the fancy tricks [2026-05-27T06:23:42Z] damn [2026-05-27T06:23:46Z] there are a lot of ports open, and all of them turn into blank hot pages [2026-05-27T06:23:56Z] I tried pretty much every combination there is [2026-05-27T06:24:14Z] actually I vividly remember once managing to print plain text (A CRAPTON I MIGHT ADD), only for it to never work again [2026-05-27T06:24:29Z] see this sort of stuff is also why i want to go to school [2026-05-27T06:24:30Z] I like, accidentally output PS when trying to print stuff and was printing like 100 pages of PS [2026-05-27T06:24:35Z] so many people i know are like [2026-05-27T06:24:46Z] "well we just have to cope with everything being corporate slop mid" [2026-05-27T06:24:48Z] midfavila: https://www.youtube.com/watch?v=MX0D4oZwCsA [2026-05-27T06:24:51Z] "just have to use it and be grateful" [2026-05-27T06:24:53Z] and it's like [2026-05-27T06:24:54Z] no [2026-05-27T06:24:54Z] you've got me started on nostalgic videos now [2026-05-27T06:24:57Z] fucking make an alternative [2026-05-27T06:24:58Z] because of the pizza time [2026-05-27T06:25:02Z] oh god kris is being a boomboom again [2026-05-27T06:25:14Z] ngl slop is making me think that uni might be even clumsier now [2026-05-27T06:25:32Z] that's a big reason i'm hesitant [2026-05-27T06:25:43Z] heard multiple complaints that students abuse the crap out of it, can't wait for teachers to start working around/with that [2026-05-27T06:25:50Z] they already are here [2026-05-27T06:25:55Z] I am not gonna go against a slop obstacle course because of fucking chatgpt [2026-05-27T06:25:57Z] profs have started just using LLMs to make assignments [2026-05-27T06:26:03Z] that's just dumb [2026-05-27T06:26:03Z] and then students use LLMs to solve them [2026-05-27T06:26:11Z] my english prof last semester literally told me she uses claude to grade stuff [2026-05-27T06:26:14Z] and then profs use LLMs to check the LLM solution to the LLM assignment [2026-05-27T06:26:21Z] and it's like [2026-05-27T06:26:26Z] what the fuck am i paying you for [2026-05-27T06:26:34Z] i understand you have tenure and don't give a shit any more [2026-05-27T06:26:36Z] but like fuck off [2026-05-27T06:27:00Z] maybe i could run for president of the student union and then try to get LLMs banned [2026-05-27T06:27:03Z] that would be coool [2026-05-27T06:27:18Z] as if students would agree on banning them [2026-05-27T06:27:22Z] it's like their dream [2026-05-27T06:27:26Z] at my uni llms are technically not allowed for students but it seems like professors don't really care [2026-05-27T06:27:30Z] for the most part [2026-05-27T06:27:33Z] ughhhhhhhhhhhh this is why i hate commercialisation [2026-05-27T06:27:38Z] there are lots of cool nerds in unis, met some awesome ones, but they are NOT the majority [2026-05-27T06:27:38Z] if you don't want to learn don't fucking go to school [2026-05-27T06:27:49Z] but ofc you need a uni degree to get a job flipping fucking burgers now [2026-05-27T06:28:00Z] so everyone goes to uni even people who couldn't give less of a shit [2026-05-27T06:28:19Z] "oh but mid how can you be mad at people having motivation to improve themselves" because they doooooooooooooooon't [2026-05-27T06:28:25Z] extrinsic motivation is a fucking lie [2026-05-27T06:28:32Z] idk uni is kind of fake anyway [2026-05-27T06:28:35Z] if it's not intrinsic then it's just cope [2026-05-27T06:28:37Z] i dont actually wanna uni i just do [2026-05-27T06:28:51Z] the only thing that's actually come from this is making a handful of friends [2026-05-27T06:29:00Z] that's what college was for me [2026-05-27T06:29:14Z] it was just two years of sitting in discord listening to the instructor talk about his crypto portfolio [2026-05-27T06:29:31Z] and correcting him on his fucking INCORRECT quizzes about loonix [2026-05-27T06:29:38Z] yea socializing was great in my brief experience [2026-05-27T06:29:41Z] also the professors were fire [2026-05-27T06:29:56Z] it was just me not having the will to drag myself through the annoying subjects [2026-05-27T06:30:13Z] https://inv.nadeko.net/watch?v=z54MpfR3XE4&listen=true [2026-05-27T06:30:15Z] midfavila: you're expecting a professor to know how to use linux [2026-05-27T06:30:17Z] #1 mistake [2026-05-27T06:30:19Z] pepsi maaaaaaaaaaaaaaaaaaaaaaaaan [2026-05-27T06:30:22Z] professors are never well versed in their field [2026-05-27T06:30:23Z] ime [2026-05-27T06:30:25Z] literally never [2026-05-27T06:30:37Z] kris_: i'm expecting the professor to shut the fuck up and fix my grades when i can quote the literal fucking source code to prove them wrong [2026-05-27T06:30:38Z] oh crap mid why did you summon Him [2026-05-27T06:30:45Z] yknow what i want [2026-05-27T06:30:47Z] a cat [2026-05-27T06:30:48Z] dery: PEPSI *MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN* [2026-05-27T06:30:54Z] it doesn't load :sob: [2026-05-27T06:30:57Z] * midfavila puts cat ears on kris_ [2026-05-27T06:30:58Z] He's too powerful [2026-05-27T06:31:03Z] kat kris [2026-05-27T06:31:23Z] all nadeko's instances aren't powerful enough to load Him [2026-05-27T06:31:31Z] werks 4 me [2026-05-27T06:31:37Z] which backend [2026-05-27T06:31:45Z] B3 [2026-05-27T06:31:55Z] midfavila: nope [2026-05-27T06:32:00Z] > The media could not be loaded, either because the server or network failed or because the format is not supported. [2026-05-27T06:32:06Z] mid you got blessed [2026-05-27T06:32:10Z] damn [2026-05-27T06:32:12Z] by the pepsi maaaaaaaaaaaaaaaaaaaaa [2026-05-27T06:32:14Z] different instance then idk [2026-05-27T06:32:16Z] i need a cat they're such friends [2026-05-27T06:32:22Z] i can feel the pepsi flowing through my veins [2026-05-27T06:32:24Z] aaaaaaaaaaaaaaaaaaaaaaaaaaaa [2026-05-27T06:32:31Z] i would kill for a diet pepsi right about now [2026-05-27T06:32:35Z] best tasting soda ever [2026-05-27T06:32:37Z] yes I'll try one of the other... two instances that work sometimes [2026-05-27T06:32:44Z] idk i like uhhhh [2026-05-27T06:32:51Z] what's that one that old people and diabetics drink [2026-05-27T06:32:54Z] grapefruit soda [2026-05-27T06:33:10Z] fuck i can't remember it [2026-05-27T06:33:27Z] fresca [2026-05-27T06:33:33Z] fresca smacks [2026-05-27T06:33:46Z] yay nerdvpn instance 9 works [2026-05-27T06:34:02Z] pepsi maaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaan [2026-05-27T06:34:04Z] pepsi maaaaaaaaaaaaaaaaaaaan [2026-05-27T06:36:06Z] i'm thinking of taking a semester or two of general studies and then transferring tbh [2026-05-27T06:36:16Z] probably back to the east coast [2026-05-27T06:36:19Z] the prairies suck [2026-05-27T06:36:31Z] oh fuck I messed up my benchmarks [2026-05-27T06:36:38Z] I am NOT gonna run them again before switching to XFS [2026-05-27T06:36:49Z] is there some in-place thing or do I need to copy-paste everything? [2026-05-27T06:37:08Z] i would just back stuff up and then mkfs [2026-05-27T06:37:16Z] idk about anything else [2026-05-27T06:37:45Z] uhhhhhhhhh [2026-05-27T06:38:04Z] unless you're talking about your benchmarks specifically in which case i definitely don't know [2026-05-27T06:38:11Z] it's like 1am here i need to go to bed [2026-05-27T06:38:12Z] I think I can't do the tmpfs thing as I need FS cache [2026-05-27T06:38:28Z] nono don't worry it's about migrating to XFS [2026-05-27T06:38:47Z] i just saw someone say that now that coke is using genAI for their commercials pepsi should bring back pepsiman [2026-05-27T06:38:50Z] that would be genius [2026-05-27T06:38:56Z] yes [2026-05-27T06:39:01Z] it would [2026-05-27T06:39:05Z] mhhh root and home are different partitions [2026-05-27T06:39:11Z] >made with 100% humans and practical effects [2026-05-27T06:39:12Z] I think this might be less painful than I thought [2026-05-27T06:40:19Z] okay one more loop of pepsi man and then it's bedtime [2026-05-27T06:44:11Z] okay nini [2026-05-27T06:46:39Z] gn [2026-05-27T06:55:32Z] bbaovanc: sup fucker [2026-05-27T06:55:58Z] minecraft [2026-05-27T06:56:10Z] Am I doxing my IP [2026-05-27T06:56:31Z] if you don't have the cloak enabled and arent running your bouncer through a proxy then yeah [2026-05-27T06:56:37Z] proxy/vpn/whatever [2026-05-27T06:56:51Z] I searched soju cloak but it's giving me alcohol [2026-05-27T06:57:02Z] its a libera feature [2026-05-27T06:57:41Z] although it does not necessarily provide anonymity or prevent the discovery of your IP address, see below. [2026-05-27T06:57:48Z] yeh [2026-05-27T06:57:58Z] this is why i have a vpn gateway to route random things through [2026-05-27T06:58:12Z] Oh it says if you aren't using sasl but I already am [2026-05-27T06:58:25Z] oh right i think they enabled cloaking by default [2026-05-27T06:58:41Z] Can you check for me [2026-05-27T06:58:49Z] senpai doesnt show me that stuff [2026-05-27T06:58:59Z] midfavila: are you in bedge or can you see bbaovancs IP [2026-05-27T06:59:48Z] How am I able to see you typing [2026-05-27T06:59:54Z] bbaovanc has username ~bbaovanc and host user/bbaovanc (mask bbaovanc!~bbaovanc@user/bbaovanc) [2026-05-27T07:00:03Z] i can see this from your /whois so im assuming that means you have masking enabled [2026-05-27T07:00:14Z] ircv3 feature, some clients like senpai support it [2026-05-27T07:00:22Z] you can turn it off if you dont want people to see when you're typing [2026-05-27T07:00:33Z] assuming mask == cloak [2026-05-27T07:00:55Z] dery: do you know how to view that on senpai or if that's a thing [2026-05-27T07:01:18Z] wtf detour is in here [2026-05-27T07:01:26Z] ya [2026-05-27T07:03:06Z] putting this soju on a kubernetes cluster with an ingress server and egress gateway both running on my VPS would go so hard [2026-05-27T07:03:15Z] you don't even understand it [2026-05-27T07:05:29Z] no not really [2026-05-27T07:05:41Z] i just have a void vm on my server that hosts soju and it goes through a vpn [2026-05-27T07:05:45Z] for egress [2026-05-27T07:05:55Z] and i access my bouncer remotely via the vpn on my router [2026-05-27T07:05:57Z] ezpz [2026-05-27T07:07:07Z] but imagine this: vpn with a couple layers of junk daemons called kube-proxy added on to make it fun [2026-05-27T07:23:26Z] kris_: yes you can [2026-05-27T07:23:33Z] just do /whois bbaovanc [2026-05-27T07:23:43Z] you're cloaked [2026-05-27T07:23:48Z] i dont know if whois' usually show IPs [2026-05-27T07:23:55Z] it's not a whois query [2026-05-27T07:23:58Z] it's a server command [2026-05-27T07:24:07Z] oh [2026-05-27T07:24:10Z] also /whowas is useful [2026-05-27T07:24:40Z] good ol' /help is your friend [2026-05-27T18:08:24Z] lesssss goooooooooo [2026-05-27T18:08:27Z] I'm runnin on XFS now [2026-05-27T18:08:59Z] I've been pretty reckless: huge ass restic backup on my NAS, restore [2026-05-27T18:09:04Z] worked and I feel lucky [2026-05-27T18:09:12Z] now let's try ccache with reflink [2026-05-27T18:15:45Z] also wowzies is restic nice [2026-05-27T18:16:21Z] it's like zpaq but for more complex backups and nicer for remote backends [2026-05-27T18:50:51Z] aaand the electrical grid is acting funky once again