💾 Archived View for gemini.ctrl-c.club › ~phoebos › logs › kisslinux-2022-10-11.txt captured on 2024-05-26 at 16:05:11.
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
[2022-10-11T00:28:07Z] <phoebos> https://codeberg.org/kiss-community/kiss/issues/98 [2022-10-11T00:31:12Z] <midfavila> got xv6 running [2022-10-11T00:31:15Z] <midfavila> took a little while [2022-10-11T00:31:30Z] <midfavila> unsurprisingly it's pretty uh... unusable [2022-10-11T00:31:44Z] <midfavila> but it's a full(?) OS for RISC-V in like 8k lines of ANSI C [2022-10-11T00:31:55Z] <midfavila> so not bad I think [2022-10-11T00:56:01Z] <illiliti> phoebos: simple fix: make kiss pass date/log_dir to privileged kiss [2022-10-11T00:56:43Z] <illiliti> or wait [2022-10-11T00:57:00Z] <illiliti> could we reuse _KISS_LVL somehow [2022-10-11T00:57:07Z] <illiliti> to fix this bug [2022-10-11T01:09:06Z] <illiliti> no i think just passing date is a simplest fix [2022-10-11T01:39:06Z] <midfavila> https://archive.org/details/LawEnforcementGuideToSatanicCults1994VHSOccultHilarity [2022-10-11T01:39:09Z] <midfavila> this fucking tape i swear [2022-10-11T01:40:40Z] <midfavila> did you know that if you play bibeo bames or you've written that funky S symbol onto anything ever, you're literally a satanist and the police will prosecute you accordingly? [2022-10-11T01:40:44Z] <midfavila> truly an educational experience [2022-10-11T01:45:47Z] <illiliti> lmao [2022-10-11T01:45:56Z] <illiliti> satanic cults [2022-10-11T01:46:55Z] <midfavila> apparently satanic cults communicate with each other by spraypainting magic mushrooms onto dumpsters too [2022-10-11T01:47:31Z] <midfavila> i've also learned that there's frequent overlap between pagans and those gosh darned homos [2022-10-11T01:47:34Z] <midfavila> what with their rituals in parks [2022-10-11T01:49:20Z] <illiliti> men [2022-10-11T01:49:24Z] <illiliti> i can't stop laughing [2022-10-11T01:49:31Z] <illiliti> it's so cursed shit [2022-10-11T01:49:50Z] <illiliti> the whole hour of nonsense [2022-10-11T01:50:02Z] <midfavila> enjoy [2022-10-11T01:50:03Z] <midfavila> :v [2022-10-11T01:50:16Z] <midfavila> the internet archive has so much quality stuff [2022-10-11T01:50:40Z] <illiliti> yeah [2022-10-11T01:50:57Z] <illiliti> i'd like to unsee this now [2022-10-11T01:51:07Z] <midfavila> >Ah, yes. You can see this graffiti here - this graffiti here is in the color red. A classic Satanic color. [2022-10-11T01:51:38Z] <midfavila> at least he namedrops lavey and gets some of his stuff right [2022-10-11T01:56:09Z] <midfavila> really dig the funky MIDI that they play while talking about this stuff lmao [2022-10-11T02:14:58Z] <midfavila> egads [2022-10-11T02:15:06Z] <midfavila> apparently hitler himself led a satanic cult [2022-10-11T02:49:14Z] <wael_> Hi [2022-10-11T02:49:19Z] <wael_> illiliti: yay [2022-10-11T04:18:28Z] <testuser[m]> Hi [2022-10-11T05:01:50Z] <rohan> hi [2022-10-11T05:02:12Z] <rohan> someone know a doas config to poweroff without password? [2022-10-11T05:03:24Z] <wael_> rohan: permit nopass rohan cmd poweroff [2022-10-11T05:03:26Z] <wael_> or just use ssu [2022-10-11T09:39:40Z] <phoebos> illiliti: just passing date means the log will be in the wrong dir, but that does solve everything else [2022-10-11T10:26:59Z] <testuser[m]> https://termbin.com/dvnw [2022-10-11T10:27:11Z] <testuser[m]> wael: firefox "log" lol [2022-10-11T11:09:29Z] <wael_> firefox -MOZ_LOG=all:5 -MOZ_LOG_FILE=all.log [2022-10-11T11:29:00Z] <testuser[m]> that doesnt log anything extra [2022-10-11T11:29:42Z] <testuser[m]> it just created a bunch of empty files [2022-10-11T17:32:16Z] <wael_> how can you make something fail only when 2 statements are false but runs if both are true, 1 false 1 true both sides in shell? [2022-10-11T17:33:24Z] <wael_> true + true = run [2022-10-11T17:33:24Z] <wael_> false + true = run [2022-10-11T17:33:24Z] <wael_> true + false = run [2022-10-11T17:33:24Z] <wael_> false + false = fail [2022-10-11T17:35:00Z] <testuser[m]> { cond1 || cond2 } && ... [2022-10-11T17:36:00Z] <wael_> thanks!!