12 Jan 2024 |
infinisil | @room The next Nix hour is in 1h30! The topic this time is python.withPackages. If you have questions about this topic, you either can comment them in this issue, or ask them live via voice/chat in the meeting. There's also the livestream for just listening in š | 12:31:17 |
infinisil | Starting in a couple minutes! | 13:57:44 |
| Pico joined the room. | 14:12:38 |
Pico | The YT description says the meeting is at https://meet.zrh.init7.net/nix-hour Is that correct?
Takes me to an empty room | 14:15:24 |
kadokusei10 | In reply to @picog:matrix.org The YT description says the meeting is at https://meet.zrh.init7.net/nix-hour Is that correct? Takes me to an empty room How about https://meet.jit.si/the-nix-hour? | 14:19:43 |
kadokusei10 | But the video stream is over on YouTube due to some technical difficulties. Questions are on Jitsi chat. | 14:20:33 |
Pico | In reply to @kadokusei10:matrix.org How about https://meet.jit.si/the-nix-hour? Yeah, works. So I assume a mistake or a redirect is not working? | 14:21:23 |
kadokusei10 | Video on: https://www.youtube.com/live/WVTPjuQk3vo | 14:21:50 |
kadokusei10 | Redacted or Malformed Event | 15:03:53 |
kadokusei10 | I just used the links from this message and they worked:
https://matrix.to/#/!hArdrCQjixoTCqafnk:matrix.org/$kTpzoPouZz0EWQoVRlvNyAcFZfKeVX05oVOWGuUEZv8?via=nixos.org&via=matrix.org&via=one.ems.host | 15:04:41 |
infinisil | Ah yeah sorry, it's a bit messy with jitsi right now :/ | 16:01:01 |
infinisil | Pico: Yeah sorry it was a bit messed up. We switched over to this new URL last minute last week, but haven't updated all the mentions of the old URL | 16:02:07 |
infinisil | I'll have to figure out something better for the video streaming. It's currently impractical to ask questions in the jitsi, since you can't actually see the up-to-date video stream there.. (I had to turn it off because my computer freezes if I do) | 16:14:04 |
18 Jan 2024 |
| NixOS Moderation Bot banned bzm3r (<no reason supplied>). | 12:08:21 |
Feeds | New post in Nix Hour Playlist: The Nix Hour #59 [programming puzzle] | 16:49:27 |
19 Jan 2024 |
infinisil | @room The next Nix hour is in 1 hour! We're having some fun today with a programming puzzle (don't know which one yet). Unfortunately I'm having Jitsi problems recently, so we're just gonna use YouTube today. Feel free to watch the stream and ask any question you have in the live chat! | 12:56:49 |
kadokusei10 | Iām terribly sorry but I will not be able to watch live today as I have to wake up extra early tomorrow m(_ _)m | 13:23:10 |
infinisil | No problem! | 13:55:08 |
Sofie | infinisil: No sound on stream FYI | 14:04:36 |
infinisil | Oh man | 14:05:02 |
Sofie | I heard my message tho xD | 14:05:11 |
| confus joined the room. | 14:06:11 |
nasser |  Download image.png | 15:01:46 |
Sofie | Had some fun simplifying the code.
rec {
lib = import <nixpkgs/lib>;
interweave = item: elems: [item] ++ (lib.intersperse item elems) ++ [item];
digits = ["0" "1" "2" "3" "4" "5" "6" "7" "8" "9"];
tracingPipe = value: funcs:
lib.pipe value (interweave lib.traceValSeq funcs);
result = tracingPipe "123a45" [
lib.stringToCharacters
(lib.filter (char: lib.elem char digits))
(map (char: lib.toInt char))
];
}
| 15:34:04 |
Sofie | * Had some fun simplifying the code from today's hour.
rec {
lib = import <nixpkgs/lib>;
interweave = item: elems: [item] ++ (lib.intersperse item elems) ++ [item];
digits = ["0" "1" "2" "3" "4" "5" "6" "7" "8" "9"];
tracingPipe = value: funcs:
lib.pipe value (interweave lib.traceValSeq funcs);
result = tracingPipe "123a45" [
lib.stringToCharacters
(lib.filter (char: lib.elem char digits))
(map (char: lib.toInt char))
];
}
| 15:34:19 |
Sofie | * Had some fun simplifying the tracing pipe from today's hour.
rec {
lib = import <nixpkgs/lib>;
interweave = item: elems: [item] ++ (lib.intersperse item elems) ++ [item];
digits = ["0" "1" "2" "3" "4" "5" "6" "7" "8" "9"];
tracingPipe = value: funcs:
lib.pipe value (interweave lib.traceValSeq funcs);
result = tracingPipe "123a45" [
lib.stringToCharacters
(lib.filter (char: lib.elem char digits))
(map (char: lib.toInt char))
];
}
| 15:36:23 |
infinisil | Nice! | 15:39:11 |
Sofie | Not no clue about if traceValSeq is what i should use here. But it seems to work so lol. | 15:40:42 |
Sofie | * Not sure about if traceValSeq is what i should use here. But it seems to work so lol. | 15:40:50 |
| AkechiShiro joined the room. | 22:42:36 |