Logs on 2023-06-23 (liberachat/#haskell)
| 00:16:19 | → | jargon joins (~jargon@32.sub-174-205-224.myvzw.com) |
| 00:20:26 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 00:21:59 | × | Tuplanolla quits (~Tuplanoll@91-159-68-236.elisa-laajakaista.fi) (Quit: Leaving.) |
| 00:29:37 | <probie> | Not that anyone uses backpack, but can a sig expose a typeclass? |
| 00:29:47 | × | bontaq quits (~user@ool-45779b84.dyn.optonline.net) (Ping timeout: 245 seconds) |
| 00:32:18 | → | Nokurn joins (~jeremiah@cpe-76-86-186-227.socal.res.rr.com) |
| 00:34:09 | <probie> | like, let's say I want to write a library which uses comonads, but didn't want to depend on the comonad package. Is there a way I can (ab)use backpack to allow my library to optionally use the typeclass from the comonad package |
| 00:35:02 | × | machinedgod quits (~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 250 seconds) |
| 00:36:56 | × | Unicorn_Princess quits (~Unicorn_P@user/Unicorn-Princess/x-3540542) (Quit: Leaving) |
| 00:42:05 | → | machinedgod joins (~machinedg@node-1w7jr9yirp0ap2d6xfacos1ph.ipv6.telus.net) |
| 00:49:32 | × | robbert-vdh quits (~robbert@robbertvanderhelm.nl) (Server closed connection) |
| 00:49:57 | → | robbert-vdh joins (~robbert@robbertvanderhelm.nl) |
| 00:53:38 | → | falafel joins (~falafel@2607:fb91:86c:d890:1d91:5101:9269:b131) |
| 00:56:13 | → | chromoblob joins (~user@37.113.180.121) |
| 00:59:22 | × | jmdaemon quits (~jmdaemon@user/jmdaemon) (Ping timeout: 245 seconds) |
| 01:00:05 | × | foul_owl quits (~kerry@71.212.137.212) (Ping timeout: 246 seconds) |
| 01:09:08 | × | zeenk quits (~zeenk@2a02:2f04:a203:a700::7fe) (Quit: Konversation terminated!) |
| 01:12:51 | → | wroathe joins (~wroathe@207-153-38-140.fttp.usinternet.com) |
| 01:12:51 | × | wroathe quits (~wroathe@207-153-38-140.fttp.usinternet.com) (Changing host) |
| 01:12:51 | → | wroathe joins (~wroathe@user/wroathe) |
| 01:13:22 | × | albet70 quits (~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection) |
| 01:14:03 | → | foul_owl joins (~kerry@94.140.8.28) |
| 01:14:55 | → | ijqq joins (uid603979@2a03:5180:f:1::9:374b) |
| 01:17:19 | → | eggplantade joins (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) |
| 01:17:46 | <ijqq> | i have four hex digits representing unicode values, how can I write a function f :: String -> String. So I want f "00a0" to become "\x00a0" in haskell, and show a space when printed with putChar |
| 01:17:49 | <ijqq> | putString* |
| 01:19:29 | → | albet70 joins (~xxx@2400:8902::f03c:92ff:fe60:98d8) |
| 01:19:45 | <geekosaur> | :t Numeric.readHex |
| 01:19:46 | <lambdabot> | (Eq a, Num a) => ReadS a |
| 01:21:21 | → | merijn joins (~merijn@86-86-29-250.fixed.kpn.net) |
| 01:21:48 | × | eggplantade quits (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Ping timeout: 246 seconds) |
| 01:23:10 | <geekosaur> | > Data.Char.chr . fst . head . Numeric.readHex $ "00a0" -- assumes it always parses |
| 01:23:12 | <lambdabot> | '\160' |
| 01:23:34 | <ijqq> | ohh i get it |
| 01:23:39 | <ijqq> | idk why i completely forgot about chr |
| 01:24:14 | <ijqq> | thanks! |
| 01:24:47 | <geekosaur> | toEnum also works with a type ascription |
| 01:24:56 | → | srz joins (~srz@181.84.181.59) |
| 01:25:44 | × | merijn quits (~merijn@86-86-29-250.fixed.kpn.net) (Ping timeout: 250 seconds) |
| 01:25:55 | <ijqq> | To convert a Char to or from the corresponding Int value defined by Unicode, use toEnum and fromEnum from the Enum class respectively (or equivalently ord and chr). So i should just use chr because I don't need to give type? |
| 01:26:14 | × | ormaaaj quits (~ormaaj@user/ormaaj) (Remote host closed the connection) |
| 01:26:32 | <geekosaur> | it's also clearer what you're doing; toEnum could mean lots of things |
| 01:27:25 | <geekosaur> | (code should be written for people to understand) |
| 01:28:15 | → | ormaaaj joins (~ormaaj@user/ormaaj) |
| 01:28:49 | <ijqq> | oh yep, that's a good point too |
| 01:29:07 | <ijqq> | i guess better to use the more specific method when choosing between |
| 01:29:39 | <ijqq> | although maybe not as it seems haskell lots is about making things as general as possible |
| 01:30:09 | <geekosaur> | that can be overdone, at the price of performance (or compile time) |
| 01:32:29 | <geekosaur> | one of the things you will develop with experience is a feel for when to generalize and when not to |
| 01:34:15 | <ijqq> | yep i hope over time to improve and develop intuition for these kinds of things |
| 01:34:24 | <geekosaur> | although it can be good to generalize early on just to become more comfortable with it |
| 01:37:33 | × | codaraxis quits (~codaraxis@user/codaraxis) (Ping timeout: 246 seconds) |
| 01:42:06 | × | falafel quits (~falafel@2607:fb91:86c:d890:1d91:5101:9269:b131) (Remote host closed the connection) |
| 01:57:42 | × | xff0x_ quits (~xff0x@2405:6580:b080:900:455d:adce:c30:5eea) (Ping timeout: 245 seconds) |
| 02:03:09 | × | meinside quits (uid24933@id-24933.helmsley.irccloud.com) (Quit: Connection closed for inactivity) |
| 02:06:19 | × | jargon quits (~jargon@32.sub-174-205-224.myvzw.com) (Remote host closed the connection) |
| 02:07:38 | → | eggplantade joins (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) |
| 02:08:32 | × | ft quits (~ft@p4fc2afc9.dip0.t-ipconnect.de) (Ping timeout: 245 seconds) |
| 02:10:29 | → | ft joins (~ft@p508db151.dip0.t-ipconnect.de) |
| 02:15:25 | → | nate2 joins (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
| 02:19:28 | → | finn_elija joins (~finn_elij@user/finn-elija/x-0085643) |
| 02:19:28 | × | FinnElija quits (~finn_elij@user/finn-elija/x-0085643) (Killed (NickServ (Forcing logout FinnElija -> finn_elija))) |
| 02:19:28 | finn_elija | is now known as FinnElija |
| 02:24:22 | × | machinedgod quits (~machinedg@node-1w7jr9yirp0ap2d6xfacos1ph.ipv6.telus.net) (Ping timeout: 245 seconds) |
| 02:25:36 | × | gentauro quits (~gentauro@user/gentauro) (Read error: Connection reset by peer) |
| 02:26:13 | <EvanR> | :t chr |
| 02:26:14 | <lambdabot> | Int -> Char |
| 02:28:07 | <EvanR> | ijqq, chr and ord are great functions to introduce new people to because you don't have to explain polymorphism or typeclassing |
| 02:28:41 | × | srz quits (~srz@181.84.181.59) (Quit: Leaving) |
| 02:28:50 | <EvanR> | the types involved are even familiar C language types! |
| 02:29:23 | → | jargon joins (~jargon@32.sub-174-205-224.myvzw.com) |
| 02:29:34 | <monochrom> | No love for explaining the type of (+) :( |
| 02:29:53 | <monochrom> | And length is even worse :( |
| 02:30:44 | <EvanR> | oh yeah and you don't have to explain wtf 3 things separated with -> means |
| 02:31:25 | → | gentauro joins (~gentauro@user/gentauro) |
| 02:31:52 | <EvanR> | even math people who write A x B -> C think we're nuts |
| 02:33:07 | × | td_ quits (~td@i53870903.versanet.de) (Ping timeout: 245 seconds) |
| 02:35:02 | → | td_ joins (~td@i53870905.versanet.de) |
| 02:35:12 | <ijqq> | haha, i remember when i started i was confused what are the parameters and what is the return when there were all just arrows |
| 02:35:21 | → | codaraxis joins (~codaraxis@user/codaraxis) |
| 02:35:23 | <monochrom> | We are already nuts for saying "f is a function" not "f(x) is a function". |
| 02:35:48 | × | mud quits (~mud@user/kadoban) (Ping timeout: 252 seconds) |
| 02:37:20 | <monochrom> | and using types to infer "f(x) :: Integer" therefore "f(x) is an integer not a function". |
| 02:41:06 | → | xff0x_ joins (~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) |
| 02:41:29 | × | terrorjack quits (~terrorjac@2a01:4f8:c17:87f8::) (Quit: The Lounge - https://thelounge.chat) |
| 02:42:52 | → | terrorjack joins (~terrorjac@2a01:4f8:c17:87f8::) |
| 02:43:22 | <monochrom> | and defining "data Turing = Turing{alphabet :: [Char], transition :: Char -> S -> (Char, S, Dir), ...}" instead of "a Turing machine is a 10-tuple (alpha, beta, gamma, ...)" |
| 02:44:16 | <monochrom> | Yes I'm beginning to be sarcastic and pointing out all the about-time sane things we do that inspire insane people to call us nuts. |
| 02:45:33 | <ijqq> | :^) |
| 02:47:55 | → | Lycurgus joins (~juan@user/Lycurgus) |
| 02:48:49 | <Lycurgus> | indeed if you have come to the point where you believe your programming lang has superior expressivity to natural language, you've become unmoored, a fanatic |
| 02:50:38 | <monochrom> | You mean like this? https://www.smbc-comics.com/comic/language |
| 02:50:53 | <Lycurgus> | or that haskell === mathematics |
| 02:51:32 | × | wroathe quits (~wroathe@user/wroathe) (Ping timeout: 250 seconds) |
| 02:51:39 | <monochrom> | "10-tuple (alpha, beta, gamma, ...)" is unnatural language |
| 02:52:08 | <monochrom> | It's almost a tautology that almost any programming language has superior expressivity to unnatural languages. |
| 02:52:52 | × | jargon quits (~jargon@32.sub-174-205-224.myvzw.com) (Remote host closed the connection) |
| 02:53:22 | <Lycurgus> | the ruining everthings on that link was a giggle |
| 02:57:31 | <probie> | In fairness to many of the math people who write `A x B -> C`, functions aren't "primitive" to a lot of them, they're just a special case of a relation |
| 02:57:36 | <Lycurgus> | also Milton vs the age of the Marvel Universe, do you really wanna make that comparison? |
| 02:58:21 | <monochrom> | I don't understand why Marvel Universe is brought up. |
| 02:58:33 | <monochrom> | I don't know what's Milton. |
| 02:59:16 | <Lycurgus> | a lost thing apparently |
| 02:59:36 | <monochrom> | I have seen natural languages used correctly in math books. When that happens, I admire it. |
| 03:00:11 | × | kritty quits (~crumb@c-76-155-235-153.hsd1.co.comcast.net) (Quit: Leaving) |
| 03:00:41 | <monochrom> | For example in Emily Riehl's category book (and probably many other category theory books), it's like "a functor consists of the following data: <2 bullet points> subject to the following conditions <2 bullet points>" |
| 03:01:20 | <monochrom> | No bloody pompous 10-tuples whose component order no one will actually remember and strictly follow. |
| 03:01:47 | <monochrom> | That's when it actually qualifies as natural language. |
| 03:02:20 | → | dipper joins (~dipper@203.168.26.146) |
| 03:02:27 | <Lycurgus> | good band name - Pompous 10-tuples |
| 03:03:06 | <monochrom> | To borrow your language, when one believes that formal n-tuples have superior expressivity to bullet points, one has become a fanatic. |
| 03:03:56 | <Axman6> | Lycurgus: for some reason that makes me think they need a logo with a smug looking octopus |
| 03:04:11 | <Lycurgus> | Axman6, :) |
| 03:04:36 | <Lycurgus> | 10-tuples : tentacles |
| 03:04:40 | <Axman6> | obviously 10-tuple and tentacle are basically the same |
| 03:04:43 | <Axman6> | :) |
| 03:08:53 | × | codaraxis quits (~codaraxis@user/codaraxis) (Quit: Leaving) |
| 03:09:22 | × | jero98772 quits (~jero98772@2800:484:1d7f:5d36::4) (Remote host closed the connection) |
| 03:09:50 | <monochrom> | probie: Sometimes it is handy to consider functions as special relations, so I like that. But now, behold "a function is a 3-tuple (A, B, r) ..." |
| 03:10:10 | → | jargon joins (~jargon@32.sub-174-205-224.myvzw.com) |
| 03:10:37 | <monochrom> | But wait! There is more. Tuples are not primitive either. A 2-tuple is a set {{x}, {x,y}} or some such, I forgot the exact construction. |
| 03:11:10 | <monochrom> | Now what do we say about people who believe that sets have superior expressivity to types? :) |
| 03:12:18 | <ijqq> | In haskell I see people use the function go. Is it idiomatic to use it as a name when it's doing some kind of recusion, or is it just a name of a general helper function even when it doesn't 'go' anywhere? |
| 03:13:20 | <Nosrep> | not sure about general consensus but it sounds very recursy to me |
| 03:13:58 | <monochrom> | How about merging those two options into: general helper recursive function when we can't be bothered to brainstorm for a better name. |
| 03:14:10 | <Nosrep> | recursion is like the main use case anyway because otherwise you'd have a good name for it/wouldn't need to create a helper to give it starting arguments or something |
| 03:15:02 | × | jargon quits (~jargon@32.sub-174-205-224.myvzw.com) (Remote host closed the connection) |
| 03:16:50 | <Lycurgus> | ijqq, it is idiomatic English, not haskell |
| 03:18:19 | <ijqq> | so would you suggest not to use it? |
| 03:18:27 | <Lycurgus> | to do a thing go (steps) |
| 03:18:28 | <ijqq> | oh i found an interesting answer here https://stackoverflow.com/questions/5844653/haskell-why-the-convention-to-name-a-helper-function-go |
| 03:18:41 | × | nate2 quits (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 246 seconds) |
| 03:18:50 | <monochrom> | I suggest using it in anger and giving a finger to people who scaremonger against it. |
| 03:18:50 | <ijqq> | "So I'm going to call this as a Glasgow idiom invented by people at Glasgow who worked on GHC in the mid 90s, such as Simon Marlow, Sigbjorn Finne, Will Partain and Simon Peyton Jones." |
| 03:19:28 | <ijqq> | hehe, sounds like a good plan |
| 03:19:36 | → | aforemny_ joins (~aforemny@i59F516C0.versanet.de) |
| 03:19:46 | × | mei quits (~mei@user/mei) (Remote host closed the connection) |
| 03:20:06 | Lycurgus | goes back to binging titanic movies |
| 03:20:18 | × | Lycurgus quits (~juan@user/Lycurgus) (Quit: Exeunt: personae.ai-integration.biz) |
| 03:20:20 | × | aforemny quits (~aforemny@2001:9e8:6cc2:a900:fbea:dfb3:5fb7:629) (Ping timeout: 240 seconds) |
| 03:20:29 | <ijqq> | how did you do that? |
| 03:20:47 | <monochrom> | how... many are there such that you can say "binge"? |
| 03:21:00 | <ijqq> | the goes back to binging titanic movies is shown on my screen differently in italic text |
| 03:21:14 | <monochrom> | Oh, probably the /me command |
| 03:21:52 | ijqq | says hello |
| 03:21:57 | <ijqq> | oh cool |
| 03:22:00 | <monochrom> | For example the following is the result of: /me calls himself |
| 03:22:04 | monochrom | calls himself |
| 03:22:11 | → | mei joins (~mei@user/mei) |
| 03:22:32 | <monochrom> | since we're on recursion and calling self :) |
| 03:22:42 | → | jargon joins (~jargon@32.sub-174-205-224.myvzw.com) |
| 03:22:47 | <ijqq> | :) |
| 03:23:44 | <monochrom> | speaking of which, I gave this cool assignment lately: http://www.cs.utoronto.ca/~trebla/CSCC24-2023-Summer/a2/cscc24-2023-5-a2.pdf |
| 03:23:53 | × | jonrh_ quits (sid5185@id-5185.ilkley.irccloud.com) (Server closed connection) |
| 03:24:29 | → | jonrh_ joins (sid5185@2a03:5180:f:3::1441) |
| 03:25:58 | <ijqq> | oh cool, I didn't know you teach |
| 03:26:38 | <ijqq> | looks interesting, I have bookmarked it and i'll try to give it a go after my toml parser |
| 03:32:45 | × | simpleauthority quits (~simpleaut@user/simpleauthority) (Ping timeout: 240 seconds) |
| 03:33:11 | × | jargon quits (~jargon@32.sub-174-205-224.myvzw.com) (Remote host closed the connection) |
| 03:33:37 | → | simpleauthority joins (~simpleaut@user/simpleauthority) |
| 03:33:59 | → | Lycurgus joins (~juan@user/Lycurgus) |
| 03:34:43 | <Lycurgus> | see from the SO thread it is a hs idiom, and smacks of goto |
| 03:35:21 | <Lycurgus> | there have sofar been at least 3 big titanic movies |
| 03:35:51 | × | Lycurgus quits (~juan@user/Lycurgus) (Client Quit) |
| 03:35:54 | × | [itchyjunk] quits (~itchyjunk@user/itchyjunk/x-7353470) (Read error: Connection reset by peer) |
| 03:38:03 | <Nosrep> | 0 big titan movies |
| 03:38:06 | <ijqq> | i only know the leo one, which i have yet to watch actually |
| 03:38:14 | <ijqq> | are they good? |
| 03:42:08 | × | ec quits (~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds) |
| 03:42:37 | → | ec joins (~ec@gateway/tor-sasl/ec) |
| 04:01:26 | × | ec quits (~ec@gateway/tor-sasl/ec) (Remote host closed the connection) |
| 04:01:55 | × | aweinstock quits (~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) (*.net *.split) |
| 04:01:55 | × | pat__ quits (~pat67@pool-100-36-172-241.washdc.fios.verizon.net) (*.net *.split) |
| 04:01:55 | × | mxs quits (~mxs@user/mxs) (*.net *.split) |
| 04:01:55 | × | kawzeg quits (kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) (*.net *.split) |
| 04:01:55 | × | theodorc quits (theodorc@cassarossa.samfundet.no) (*.net *.split) |
| 04:01:55 | × | dtman34 quits (~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) (*.net *.split) |
| 04:01:55 | × | mtjm quits (~mutantmel@2604:a880:2:d0::208b:d001) (*.net *.split) |
| 04:01:55 | × | fiddlerwoaroof_ quits (~fiddlerwo@user/fiddlerwoaroof) (*.net *.split) |
| 04:01:55 | × | beaky quits (~beaky@2a03:b0c0:0:1010::1e:a001) (*.net *.split) |
| 04:01:55 | × | NinjaTrappeur quits (~ninja@user/ninjatrappeur) (*.net *.split) |
| 04:01:55 | × | [exa] quits (~exa@user/exa/x-3587197) (*.net *.split) |
| 04:01:55 | × | noctux quits (~noctux@user/noctux) (*.net *.split) |
| 04:01:55 | × | wz1000 quits (~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split) |
| 04:01:55 | × | absence quits (torgeihe@hildring.pvv.ntnu.no) (*.net *.split) |
| 04:01:55 | × | jsomedon quits (uid606872@id-606872.hampstead.irccloud.com) (*.net *.split) |
| 04:01:55 | × | Jon quits (jon@dow.land) (*.net *.split) |
| 04:01:55 | × | YuutaW quits (~YuutaW@mail.yuuta.moe) (*.net *.split) |
| 04:01:55 | × | buhman_ quits (sid411355@id-411355.tinside.irccloud.com) (*.net *.split) |
| 04:01:55 | × | jmct quits (sid160793@id-160793.tinside.irccloud.com) (*.net *.split) |
| 04:01:55 | × | lally quits (sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split) |
| 04:01:55 | × | hamishmack quits (sid389057@id-389057.hampstead.irccloud.com) (*.net *.split) |
| 04:01:55 | × | cyphase quits (~cyphase@user/cyphase) (*.net *.split) |
| 04:01:55 | × | bjobjo quits (~bjobjo@user/bjobjo) (*.net *.split) |
| 04:01:55 | × | nshepperd2 quits (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split) |
| 04:01:55 | × | agander_m quits (sid407952@id-407952.tinside.irccloud.com) (*.net *.split) |
| 04:01:55 | × | T_S__ quits (sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split) |
| 04:01:55 | × | rubin55 quits (sid175221@id-175221.hampstead.irccloud.com) (*.net *.split) |
| 04:01:55 | × | tabemann quits (~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) (*.net *.split) |
| 04:01:55 | × | ell quits (~ellie@user/ellie) (*.net *.split) |
| 04:01:55 | × | taktoa[c] quits (sid282096@id-282096.tinside.irccloud.com) (*.net *.split) |
| 04:01:55 | × | codedmart quits (codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split) |
| 04:01:55 | × | aristid quits (sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split) |
| 04:01:55 | × | tcard quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split) |
| 04:01:55 | × | zzz quits (~z@user/zero) (*.net *.split) |
| 04:01:55 | × | caubert quits (~caubert@user/caubert) (*.net *.split) |
| 04:01:55 | × | polux quits (~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split) |
| 04:01:55 | × | m5zs7k quits (aquares@web10.mydevil.net) (*.net *.split) |
| 04:01:55 | × | samhh quits (7569f027cf@2604:bf00:561:2000::e4) (*.net *.split) |
| 04:01:55 | × | whereiseveryone quits (206ba86c98@2604:bf00:561:2000::2e4) (*.net *.split) |
| 04:01:55 | × | ggb quits (a62ffbaf4f@2604:bf00:561:2000::3ac) (*.net *.split) |
| 04:01:55 | × | RMSBach quits (~guygastin@137.184.131.156) (*.net *.split) |
| 04:01:55 | × | fvr quits (ef3e56ca8b@2604:bf00:561:2000::3c4) (*.net *.split) |
| 04:01:55 | × | evanrelf quits (3addc196af@2604:bf00:561:2000::f0) (*.net *.split) |
| 04:01:55 | × | shreyasminocha quits (51fdc93eda@user/shreyasminocha) (*.net *.split) |
| 04:01:55 | × | Yumemi quits (~Yumemi@chamoin.net) (*.net *.split) |
| 04:01:55 | × | energizer quits (~energizer@user/energizer) (*.net *.split) |
| 04:01:55 | × | hexeme quits (~hexeme@user/hexeme) (*.net *.split) |
| 04:01:55 | × | JoelMcCracken quits (5ea8252fbb@2604:bf00:561:2000::10e3) (*.net *.split) |
| 04:01:55 | × | manwithluck quits (~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) (*.net *.split) |
| 04:01:55 | × | henrytill quits (e0180937c3@2604:bf00:561:2000::e8c) (*.net *.split) |
| 04:01:55 | × | MonsoonSecrecy quits (f78c86e960@2604:bf00:561:2000::f99) (*.net *.split) |
| 04:01:55 | × | probie quits (cc0b34050a@user/probie) (*.net *.split) |
| 04:01:55 | × | jakzale quits (6291399afa@user/jakzale) (*.net *.split) |
| 04:01:55 | × | fluffyballoon quits (45ce440a48@2604:bf00:561:2000::e2) (*.net *.split) |
| 04:01:55 | × | lbseale quits (~quassel@user/ep1ctetus) (*.net *.split) |
| 04:01:55 | × | chaitlatte0 quits (ea29c0bb16@user/chaitlatte0) (*.net *.split) |
| 04:01:55 | × | n1essa quits (3d621153a5@2604:bf00:561:2000::df7) (*.net *.split) |
| 04:01:55 | × | flukiluke quits (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) (*.net *.split) |
| 04:01:55 | × | jleightcap quits (7bc4014b62@user/jleightcap) (*.net *.split) |
| 04:01:55 | × | arcadewise quits (52968ed80d@2604:bf00:561:2000::3df) (*.net *.split) |
| 04:01:55 | × | jkoshy quits (99b9359beb@user/jkoshy) (*.net *.split) |
| 04:01:55 | × | sm2n quits (ae95cb1267@user/sm2n) (*.net *.split) |
| 04:01:55 | × | turlando quits (~turlando@user/turlando) (*.net *.split) |
| 04:01:55 | × | b0o quits (0e4a0bf4c9@2604:bf00:561:2000::1bf) (*.net *.split) |
| 04:01:55 | × | sus quits (1b7af6299f@user/zeromomentum) (*.net *.split) |
| 04:01:55 | × | landonf quits (landonf@mac68k.info) (*.net *.split) |
| 04:01:55 | × | Ankhers quits (e99e97ef8e@2604:bf00:561:2000::2a2) (*.net *.split) |
| 04:01:55 | × | marienz quits (~marienz@libera/staff/marienz) (*.net *.split) |
| 04:01:55 | × | bastelfreak quits (bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split) |
| 04:01:56 | samhh_ | is now known as samhh |
| 04:01:57 | → | ec joins (~ec@gateway/tor-sasl/ec) |
| 04:02:14 | × | samhh quits (7569f027cf@2604:bf00:561:2000::e4) (Remote host closed the connection) |
| 04:02:14 | × | cpli quits (77fc530071@2604:bf00:561:2000::252) (Read error: Connection reset by peer) |
| 04:02:14 | × | theesm quits (2cbdf4b38a@2604:bf00:561:2000::11c8) (Write error: Connection reset by peer) |
| 04:02:14 | × | ymherklotz quits (cb2c9cfbdd@2604:bf00:561:2000::29a) (Remote host closed the connection) |
| 04:02:14 | × | lukec quits (9dfd4d094e@2604:bf00:561:2000::10e) (Remote host closed the connection) |
| 04:02:14 | × | bsima1 quits (9d7e39c8ad@2604:bf00:561:2000::dd) (Remote host closed the connection) |
| 04:02:14 | × | filwisher quits (2e6936c793@2604:bf00:561:2000::170) (Remote host closed the connection) |
| 04:02:26 | → | filwisher joins (2e6936c793@2604:bf00:561:2000::170) |
| 04:02:30 | → | lukec joins (9dfd4d094e@2604:bf00:561:2000::10e) |
| 04:02:30 | → | bsima1 joins (9d7e39c8ad@2604:bf00:561:2000::dd) |
| 04:02:31 | → | ggb_ joins (a62ffbaf4f@2604:bf00:561:2000::3ac) |
| 04:02:32 | → | probie_ joins (cc0b34050a@user/probie) |
| 04:02:33 | → | cpli joins (77fc530071@2604:bf00:561:2000::252) |
| 04:02:37 | → | aweinstock joins (~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) |
| 04:02:37 | → | pat__ joins (~pat67@pool-100-36-172-241.washdc.fios.verizon.net) |
| 04:02:37 | → | mxs joins (~mxs@user/mxs) |
| 04:02:37 | → | kawzeg joins (kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) |
| 04:02:37 | → | theodorc joins (theodorc@cassarossa.samfundet.no) |
| 04:02:37 | → | dtman34 joins (~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) |
| 04:02:37 | → | mtjm joins (~mutantmel@2604:a880:2:d0::208b:d001) |
| 04:02:37 | → | fiddlerwoaroof_ joins (~fiddlerwo@user/fiddlerwoaroof) |
| 04:02:37 | → | beaky joins (~beaky@2a03:b0c0:0:1010::1e:a001) |
| 04:02:37 | → | NinjaTrappeur joins (~ninja@user/ninjatrappeur) |
| 04:02:37 | → | [exa] joins (~exa@user/exa/x-3587197) |
| 04:02:37 | → | noctux joins (~noctux@user/noctux) |
| 04:02:37 | → | wz1000 joins (~zubin@static.11.113.47.78.clients.your-server.de) |
| 04:02:37 | → | absence joins (torgeihe@hildring.pvv.ntnu.no) |
| 04:02:37 | → | jsomedon joins (uid606872@id-606872.hampstead.irccloud.com) |
| 04:02:37 | → | Jon joins (jon@dow.land) |
| 04:02:37 | → | YuutaW joins (~YuutaW@mail.yuuta.moe) |
| 04:02:37 | → | buhman_ joins (sid411355@id-411355.tinside.irccloud.com) |
| 04:02:37 | → | jmct joins (sid160793@id-160793.tinside.irccloud.com) |
| 04:02:37 | → | lally joins (sid388228@id-388228.uxbridge.irccloud.com) |
| 04:02:37 | → | hamishmack joins (sid389057@id-389057.hampstead.irccloud.com) |
| 04:02:37 | → | cyphase joins (~cyphase@user/cyphase) |
| 04:02:37 | → | bjobjo joins (~bjobjo@user/bjobjo) |
| 04:02:37 | → | nshepperd2 joins (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) |
| 04:02:37 | → | agander_m joins (sid407952@id-407952.tinside.irccloud.com) |
| 04:02:37 | → | T_S__ joins (sid501726@id-501726.uxbridge.irccloud.com) |
| 04:02:37 | → | rubin55 joins (sid175221@id-175221.hampstead.irccloud.com) |
| 04:02:37 | → | tabemann joins (~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) |
| 04:02:37 | → | ell joins (~ellie@user/ellie) |
| 04:02:37 | → | taktoa[c] joins (sid282096@id-282096.tinside.irccloud.com) |
| 04:02:37 | → | codedmart joins (codedmart@2600:3c01::f03c:92ff:fefe:8511) |
| 04:02:37 | → | aristid joins (sid1599@id-1599.uxbridge.irccloud.com) |
| 04:02:37 | → | tcard joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 04:02:37 | → | zzz joins (~z@user/zero) |
| 04:02:37 | → | caubert joins (~caubert@user/caubert) |
| 04:02:37 | → | polux joins (~polux@51-15-169-172.rev.poneytelecom.eu) |
| 04:02:37 | → | m5zs7k joins (aquares@web10.mydevil.net) |
| 04:02:37 | → | 047AABRIT joins (7569f027cf@2604:bf00:561:2000::e4) |
| 04:02:37 | → | whereiseveryone joins (206ba86c98@2604:bf00:561:2000::2e4) |
| 04:02:37 | → | ggb joins (a62ffbaf4f@2604:bf00:561:2000::3ac) |
| 04:02:37 | → | RMSBach joins (~guygastin@137.184.131.156) |
| 04:02:37 | → | fvr joins (ef3e56ca8b@2604:bf00:561:2000::3c4) |
| 04:02:37 | → | evanrelf joins (3addc196af@2604:bf00:561:2000::f0) |
| 04:02:37 | → | shreyasminocha joins (51fdc93eda@user/shreyasminocha) |
| 04:02:37 | → | Yumemi joins (~Yumemi@chamoin.net) |
| 04:02:37 | → | energizer joins (~energizer@user/energizer) |
| 04:02:37 | → | hexeme joins (~hexeme@user/hexeme) |
| 04:02:37 | → | JoelMcCracken joins (5ea8252fbb@2604:bf00:561:2000::10e3) |
| 04:02:37 | → | manwithluck joins (~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) |
| 04:02:37 | → | MonsoonSecrecy joins (f78c86e960@2604:bf00:561:2000::f99) |
| 04:02:37 | → | henrytill joins (e0180937c3@2604:bf00:561:2000::e8c) |
| 04:02:37 | → | probie joins (cc0b34050a@user/probie) |
| 04:02:37 | → | jakzale joins (6291399afa@user/jakzale) |
| 04:02:37 | → | fluffyballoon joins (45ce440a48@2604:bf00:561:2000::e2) |
| 04:02:37 | → | lbseale joins (~quassel@user/ep1ctetus) |
| 04:02:37 | → | chaitlatte0 joins (ea29c0bb16@user/chaitlatte0) |
| 04:02:37 | → | n1essa joins (3d621153a5@2604:bf00:561:2000::df7) |
| 04:02:37 | → | flukiluke joins (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) |
| 04:02:37 | → | jleightcap joins (7bc4014b62@user/jleightcap) |
| 04:02:37 | → | arcadewise joins (52968ed80d@2604:bf00:561:2000::3df) |
| 04:02:37 | → | jkoshy joins (99b9359beb@user/jkoshy) |
| 04:02:37 | → | sm2n joins (ae95cb1267@user/sm2n) |
| 04:02:37 | → | turlando joins (~turlando@user/turlando) |
| 04:02:37 | → | b0o joins (0e4a0bf4c9@2604:bf00:561:2000::1bf) |
| 04:02:37 | → | sus joins (1b7af6299f@user/zeromomentum) |
| 04:02:37 | → | landonf joins (landonf@mac68k.info) |
| 04:02:37 | → | Ankhers joins (e99e97ef8e@2604:bf00:561:2000::2a2) |
| 04:02:37 | → | marienz joins (~marienz@libera/staff/marienz) |
| 04:02:37 | → | bastelfreak joins (bastelfrea@libera/staff/VoxPupuli.bastelfreak) |
| 04:02:38 | → | samhh joins (7569f027cf@2604:bf00:561:2000::e4) |
| 04:02:39 | → | ymherklotz joins (cb2c9cfbdd@2604:bf00:561:2000::29a) |
| 04:02:42 | × | evanrelf quits (3addc196af@2604:bf00:561:2000::f0) (Read error: Connection reset by peer) |
| 04:02:42 | × | fvr quits (ef3e56ca8b@2604:bf00:561:2000::3c4) (Read error: Connection reset by peer) |
| 04:02:42 | × | JoelMcCracken quits (5ea8252fbb@2604:bf00:561:2000::10e3) (Read error: Connection reset by peer) |
| 04:02:42 | × | probie quits (cc0b34050a@user/probie) (Read error: Connection reset by peer) |
| 04:02:42 | × | Ankhers quits (e99e97ef8e@2604:bf00:561:2000::2a2) (Max SendQ exceeded) |
| 04:02:42 | × | whereiseveryone quits (206ba86c98@2604:bf00:561:2000::2e4) (Max SendQ exceeded) |
| 04:02:42 | × | MonsoonSecrecy quits (f78c86e960@2604:bf00:561:2000::f99) (Max SendQ exceeded) |
| 04:02:42 | × | sm2n quits (ae95cb1267@user/sm2n) (Max SendQ exceeded) |
| 04:02:42 | × | chaitlatte0 quits (ea29c0bb16@user/chaitlatte0) (Read error: Connection reset by peer) |
| 04:02:42 | × | 047AABRIT quits (7569f027cf@2604:bf00:561:2000::e4) (Read error: Connection reset by peer) |
| 04:02:42 | × | fluffyballoon quits (45ce440a48@2604:bf00:561:2000::e2) (Read error: Connection reset by peer) |
| 04:02:42 | × | n1essa quits (3d621153a5@2604:bf00:561:2000::df7) (Read error: Connection reset by peer) |
| 04:02:42 | × | jleightcap quits (7bc4014b62@user/jleightcap) (Read error: Connection reset by peer) |
| 04:02:42 | × | henrytill quits (e0180937c3@2604:bf00:561:2000::e8c) (Read error: Connection reset by peer) |
| 04:02:42 | × | arcadewise quits (52968ed80d@2604:bf00:561:2000::3df) (Read error: Connection reset by peer) |
| 04:02:42 | × | jkoshy quits (99b9359beb@user/jkoshy) (Read error: Connection reset by peer) |
| 04:02:42 | × | sus quits (1b7af6299f@user/zeromomentum) (Read error: Connection reset by peer) |
| 04:02:42 | × | shreyasminocha quits (51fdc93eda@user/shreyasminocha) (Read error: Connection reset by peer) |
| 04:02:42 | × | b0o quits (0e4a0bf4c9@2604:bf00:561:2000::1bf) (Read error: Connection reset by peer) |
| 04:02:42 | × | jakzale quits (6291399afa@user/jakzale) (Read error: Connection reset by peer) |
| 04:02:42 | × | ggb quits (a62ffbaf4f@2604:bf00:561:2000::3ac) (Read error: Connection reset by peer) |
| 04:02:47 | → | evanrelf_ joins (3addc196af@2604:bf00:561:2000::f0) |
| 04:02:48 | evanrelf_ | is now known as evanrelf |
| 04:02:51 | → | JoelMcCracken_ joins (5ea8252fbb@2604:bf00:561:2000::10e3) |
| 04:02:52 | → | fvr_ joins (ef3e56ca8b@2604:bf00:561:2000::3c4) |
| 04:02:52 | → | n1essa_ joins (3d621153a5@2604:bf00:561:2000::df7) |
| 04:02:52 | fvr_ | is now known as fvr |
| 04:02:54 | → | arcadewise_ joins (52968ed80d@2604:bf00:561:2000::3df) |
| 04:02:58 | × | Xe quits (~cadey@tailscale/xe) (Quit: WeeChat 3.8) |
| 04:03:00 | → | jkoshy_ joins (99b9359beb@user/jkoshy) |
| 04:03:04 | arcadewise_ | is now known as arcadewise |
| 04:03:05 | jkoshy_ | is now known as jkoshy |
| 04:03:06 | n1essa_ | is now known as n1essa |
| 04:03:07 | probie_ | is now known as probie |
| 04:03:08 | → | henrytill_ joins (e0180937c3@2604:bf00:561:2000::e8c) |
| 04:03:13 | → | theesm joins (2cbdf4b38a@2604:bf00:561:2000::11c8) |
| 04:03:13 | → | sus_ joins (1b7af6299f@user/zeromomentum) |
| 04:03:13 | → | shreyasminocha_ joins (51fdc93eda@user/shreyasminocha) |
| 04:03:13 | sus_ | is now known as sus |
| 04:03:15 | ggb_ | is now known as ggb |
| 04:03:16 | JoelMcCracken_ | is now known as JoelMcCracken |
| 04:03:17 | henrytill_ | is now known as henrytill |
| 04:03:26 | → | Xe joins (~cadey@tailscale/xe) |
| 04:03:40 | → | chaitlatte0 joins (ea29c0bb16@user/chaitlatte0) |
| 04:03:40 | → | whereiseveryone joins (206ba86c98@2604:bf00:561:2000::2e4) |
| 04:03:42 | → | sm2n joins (ae95cb1267@user/sm2n) |
| 04:03:45 | → | jakzale joins (6291399afa@user/jakzale) |
| 04:03:46 | → | MonsoonSecrecy joins (f78c86e960@2604:bf00:561:2000::f99) |
| 04:03:53 | → | samhh_ joins (7569f027cf@2604:bf00:561:2000::e4) |
| 04:03:59 | → | b0o joins (0e4a0bf4c9@2604:bf00:561:2000::1bf) |
| 04:04:18 | shreyasminocha_ | is now known as shreyasminocha |
| 04:04:18 | → | fluffyballoon joins (45ce440a48@2604:bf00:561:2000::e2) |
| 04:04:27 | → | Ankhers joins (e99e97ef8e@2604:bf00:561:2000::2a2) |
| 04:04:27 | → | jleightcap joins (7bc4014b62@user/jleightcap) |
| 04:04:56 | × | rubin55 quits (sid175221@id-175221.hampstead.irccloud.com) (Ping timeout: 260 seconds) |
| 04:07:10 | → | rubin55 joins (sid175221@2a03:5180:f:4::2:ac75) |
| 04:07:27 | × | gry quits (quasselcor@botters/gry) (*.net *.split) |
| 04:07:27 | × | Axman6 quits (~Axman6@user/axman6) (*.net *.split) |
| 04:07:39 | → | gry joins (quasselcor@botters/gry) |
| 04:07:39 | → | Axman6 joins (~Axman6@user/axman6) |
| 04:07:42 | × | gry quits (quasselcor@botters/gry) (Max SendQ exceeded) |
| 04:07:53 | → | gry joins (quasselcor@botters/gry) |
| 04:07:59 | × | aweinstock quits (~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) (*.net *.split) |
| 04:07:59 | × | pat__ quits (~pat67@pool-100-36-172-241.washdc.fios.verizon.net) (*.net *.split) |
| 04:07:59 | × | mxs quits (~mxs@user/mxs) (*.net *.split) |
| 04:07:59 | × | kawzeg quits (kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) (*.net *.split) |
| 04:07:59 | × | theodorc quits (theodorc@cassarossa.samfundet.no) (*.net *.split) |
| 04:07:59 | × | dtman34 quits (~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) (*.net *.split) |
| 04:07:59 | × | mtjm quits (~mutantmel@2604:a880:2:d0::208b:d001) (*.net *.split) |
| 04:07:59 | × | fiddlerwoaroof_ quits (~fiddlerwo@user/fiddlerwoaroof) (*.net *.split) |
| 04:07:59 | × | beaky quits (~beaky@2a03:b0c0:0:1010::1e:a001) (*.net *.split) |
| 04:07:59 | × | NinjaTrappeur quits (~ninja@user/ninjatrappeur) (*.net *.split) |
| 04:07:59 | × | [exa] quits (~exa@user/exa/x-3587197) (*.net *.split) |
| 04:07:59 | × | noctux quits (~noctux@user/noctux) (*.net *.split) |
| 04:07:59 | × | wz1000 quits (~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split) |
| 04:07:59 | × | absence quits (torgeihe@hildring.pvv.ntnu.no) (*.net *.split) |
| 04:07:59 | × | jsomedon quits (uid606872@id-606872.hampstead.irccloud.com) (*.net *.split) |
| 04:07:59 | × | Jon quits (jon@dow.land) (*.net *.split) |
| 04:07:59 | × | YuutaW quits (~YuutaW@mail.yuuta.moe) (*.net *.split) |
| 04:07:59 | × | buhman_ quits (sid411355@id-411355.tinside.irccloud.com) (*.net *.split) |
| 04:07:59 | × | jmct quits (sid160793@id-160793.tinside.irccloud.com) (*.net *.split) |
| 04:07:59 | × | lally quits (sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split) |
| 04:07:59 | × | hamishmack quits (sid389057@id-389057.hampstead.irccloud.com) (*.net *.split) |
| 04:07:59 | × | cyphase quits (~cyphase@user/cyphase) (*.net *.split) |
| 04:07:59 | × | bjobjo quits (~bjobjo@user/bjobjo) (*.net *.split) |
| 04:07:59 | × | nshepperd2 quits (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split) |
| 04:07:59 | × | agander_m quits (sid407952@id-407952.tinside.irccloud.com) (*.net *.split) |
| 04:07:59 | × | T_S__ quits (sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split) |
| 04:07:59 | × | tabemann quits (~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) (*.net *.split) |
| 04:07:59 | × | ell quits (~ellie@user/ellie) (*.net *.split) |
| 04:07:59 | × | taktoa[c] quits (sid282096@id-282096.tinside.irccloud.com) (*.net *.split) |
| 04:07:59 | × | codedmart quits (codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split) |
| 04:07:59 | × | aristid quits (sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split) |
| 04:07:59 | × | tcard quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split) |
| 04:07:59 | × | zzz quits (~z@user/zero) (*.net *.split) |
| 04:07:59 | × | caubert quits (~caubert@user/caubert) (*.net *.split) |
| 04:07:59 | × | polux quits (~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split) |
| 04:07:59 | × | m5zs7k quits (aquares@web10.mydevil.net) (*.net *.split) |
| 04:07:59 | × | RMSBach quits (~guygastin@137.184.131.156) (*.net *.split) |
| 04:07:59 | × | Yumemi quits (~Yumemi@chamoin.net) (*.net *.split) |
| 04:07:59 | × | energizer quits (~energizer@user/energizer) (*.net *.split) |
| 04:07:59 | × | hexeme quits (~hexeme@user/hexeme) (*.net *.split) |
| 04:07:59 | × | manwithluck quits (~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) (*.net *.split) |
| 04:07:59 | × | lbseale quits (~quassel@user/ep1ctetus) (*.net *.split) |
| 04:07:59 | × | flukiluke quits (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) (*.net *.split) |
| 04:07:59 | × | turlando quits (~turlando@user/turlando) (*.net *.split) |
| 04:07:59 | × | landonf quits (landonf@mac68k.info) (*.net *.split) |
| 04:07:59 | × | marienz quits (~marienz@libera/staff/marienz) (*.net *.split) |
| 04:07:59 | × | bastelfreak quits (bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split) |
| 04:08:22 | → | aweinstock joins (~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) |
| 04:08:22 | → | pat__ joins (~pat67@pool-100-36-172-241.washdc.fios.verizon.net) |
| 04:08:22 | → | mxs joins (~mxs@user/mxs) |
| 04:08:22 | → | kawzeg joins (kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) |
| 04:08:22 | → | theodorc joins (theodorc@cassarossa.samfundet.no) |
| 04:08:22 | → | dtman34 joins (~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) |
| 04:08:22 | → | mtjm joins (~mutantmel@2604:a880:2:d0::208b:d001) |
| 04:08:22 | → | fiddlerwoaroof_ joins (~fiddlerwo@user/fiddlerwoaroof) |
| 04:08:22 | → | beaky joins (~beaky@2a03:b0c0:0:1010::1e:a001) |
| 04:08:22 | → | NinjaTrappeur joins (~ninja@user/ninjatrappeur) |
| 04:08:22 | → | [exa] joins (~exa@user/exa/x-3587197) |
| 04:08:22 | → | noctux joins (~noctux@user/noctux) |
| 04:08:22 | → | wz1000 joins (~zubin@static.11.113.47.78.clients.your-server.de) |
| 04:08:22 | → | absence joins (torgeihe@hildring.pvv.ntnu.no) |
| 04:08:22 | → | jsomedon joins (uid606872@id-606872.hampstead.irccloud.com) |
| 04:08:22 | → | Jon joins (jon@dow.land) |
| 04:08:22 | → | YuutaW joins (~YuutaW@mail.yuuta.moe) |
| 04:08:22 | → | buhman_ joins (sid411355@id-411355.tinside.irccloud.com) |
| 04:08:22 | → | jmct joins (sid160793@id-160793.tinside.irccloud.com) |
| 04:08:22 | → | lally joins (sid388228@id-388228.uxbridge.irccloud.com) |
| 04:08:22 | → | hamishmack joins (sid389057@id-389057.hampstead.irccloud.com) |
| 04:08:22 | → | cyphase joins (~cyphase@user/cyphase) |
| 04:08:22 | → | bjobjo joins (~bjobjo@user/bjobjo) |
| 04:08:22 | → | nshepperd2 joins (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) |
| 04:08:22 | → | agander_m joins (sid407952@id-407952.tinside.irccloud.com) |
| 04:08:22 | → | T_S__ joins (sid501726@id-501726.uxbridge.irccloud.com) |
| 04:08:22 | → | tabemann joins (~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) |
| 04:08:22 | → | ell joins (~ellie@user/ellie) |
| 04:08:22 | → | taktoa[c] joins (sid282096@id-282096.tinside.irccloud.com) |
| 04:08:22 | → | codedmart joins (codedmart@2600:3c01::f03c:92ff:fefe:8511) |
| 04:08:22 | → | aristid joins (sid1599@id-1599.uxbridge.irccloud.com) |
| 04:08:22 | → | tcard joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 04:08:22 | → | zzz joins (~z@user/zero) |
| 04:08:22 | → | caubert joins (~caubert@user/caubert) |
| 04:08:22 | → | polux joins (~polux@51-15-169-172.rev.poneytelecom.eu) |
| 04:08:22 | → | m5zs7k joins (aquares@web10.mydevil.net) |
| 04:08:22 | → | RMSBach joins (~guygastin@137.184.131.156) |
| 04:08:22 | → | Yumemi joins (~Yumemi@chamoin.net) |
| 04:08:22 | → | energizer joins (~energizer@user/energizer) |
| 04:08:22 | → | hexeme joins (~hexeme@user/hexeme) |
| 04:08:22 | → | manwithluck joins (~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) |
| 04:08:22 | → | lbseale joins (~quassel@user/ep1ctetus) |
| 04:08:22 | → | flukiluke joins (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) |
| 04:08:22 | → | turlando joins (~turlando@user/turlando) |
| 04:08:22 | → | landonf joins (landonf@mac68k.info) |
| 04:08:22 | → | marienz joins (~marienz@libera/staff/marienz) |
| 04:08:22 | → | bastelfreak joins (bastelfrea@libera/staff/VoxPupuli.bastelfreak) |
| 04:08:36 | × | aweinstock quits (~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) (*.net *.split) |
| 04:08:36 | × | pat__ quits (~pat67@pool-100-36-172-241.washdc.fios.verizon.net) (*.net *.split) |
| 04:08:36 | × | mxs quits (~mxs@user/mxs) (*.net *.split) |
| 04:08:36 | × | kawzeg quits (kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) (*.net *.split) |
| 04:08:36 | × | theodorc quits (theodorc@cassarossa.samfundet.no) (*.net *.split) |
| 04:08:36 | × | dtman34 quits (~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) (*.net *.split) |
| 04:08:36 | × | mtjm quits (~mutantmel@2604:a880:2:d0::208b:d001) (*.net *.split) |
| 04:08:36 | × | fiddlerwoaroof_ quits (~fiddlerwo@user/fiddlerwoaroof) (*.net *.split) |
| 04:08:36 | × | beaky quits (~beaky@2a03:b0c0:0:1010::1e:a001) (*.net *.split) |
| 04:08:36 | × | NinjaTrappeur quits (~ninja@user/ninjatrappeur) (*.net *.split) |
| 04:08:36 | × | [exa] quits (~exa@user/exa/x-3587197) (*.net *.split) |
| 04:08:36 | × | noctux quits (~noctux@user/noctux) (*.net *.split) |
| 04:08:36 | × | wz1000 quits (~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split) |
| 04:08:36 | × | absence quits (torgeihe@hildring.pvv.ntnu.no) (*.net *.split) |
| 04:08:36 | × | jsomedon quits (uid606872@id-606872.hampstead.irccloud.com) (*.net *.split) |
| 04:08:36 | × | Jon quits (jon@dow.land) (*.net *.split) |
| 04:08:36 | × | YuutaW quits (~YuutaW@mail.yuuta.moe) (*.net *.split) |
| 04:08:36 | × | buhman_ quits (sid411355@id-411355.tinside.irccloud.com) (*.net *.split) |
| 04:08:36 | × | jmct quits (sid160793@id-160793.tinside.irccloud.com) (*.net *.split) |
| 04:08:36 | × | lally quits (sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:36 | × | hamishmack quits (sid389057@id-389057.hampstead.irccloud.com) (*.net *.split) |
| 04:08:36 | × | cyphase quits (~cyphase@user/cyphase) (*.net *.split) |
| 04:08:36 | × | bjobjo quits (~bjobjo@user/bjobjo) (*.net *.split) |
| 04:08:36 | × | nshepperd2 quits (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split) |
| 04:08:36 | × | agander_m quits (sid407952@id-407952.tinside.irccloud.com) (*.net *.split) |
| 04:08:36 | × | T_S__ quits (sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:36 | × | tabemann quits (~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) (*.net *.split) |
| 04:08:36 | × | ell quits (~ellie@user/ellie) (*.net *.split) |
| 04:08:36 | × | taktoa[c] quits (sid282096@id-282096.tinside.irccloud.com) (*.net *.split) |
| 04:08:36 | × | codedmart quits (codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split) |
| 04:08:36 | × | aristid quits (sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:36 | × | tcard quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split) |
| 04:08:36 | × | zzz quits (~z@user/zero) (*.net *.split) |
| 04:08:36 | × | caubert quits (~caubert@user/caubert) (*.net *.split) |
| 04:08:36 | × | polux quits (~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split) |
| 04:08:37 | × | m5zs7k quits (aquares@web10.mydevil.net) (*.net *.split) |
| 04:08:37 | × | RMSBach quits (~guygastin@137.184.131.156) (*.net *.split) |
| 04:08:37 | × | Yumemi quits (~Yumemi@chamoin.net) (*.net *.split) |
| 04:08:37 | × | energizer quits (~energizer@user/energizer) (*.net *.split) |
| 04:08:37 | × | hexeme quits (~hexeme@user/hexeme) (*.net *.split) |
| 04:08:37 | × | manwithluck quits (~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) (*.net *.split) |
| 04:08:37 | × | lbseale quits (~quassel@user/ep1ctetus) (*.net *.split) |
| 04:08:37 | × | flukiluke quits (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) (*.net *.split) |
| 04:08:37 | × | turlando quits (~turlando@user/turlando) (*.net *.split) |
| 04:08:37 | × | landonf quits (landonf@mac68k.info) (*.net *.split) |
| 04:08:37 | × | marienz quits (~marienz@libera/staff/marienz) (*.net *.split) |
| 04:08:37 | × | bastelfreak quits (bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split) |
| 04:08:37 | × | gry quits (quasselcor@botters/gry) (*.net *.split) |
| 04:08:37 | × | Axman6 quits (~Axman6@user/axman6) (*.net *.split) |
| 04:08:37 | × | evanrelf quits (3addc196af@2604:bf00:561:2000::f0) (*.net *.split) |
| 04:08:37 | × | samhh quits (7569f027cf@2604:bf00:561:2000::e4) (*.net *.split) |
| 04:08:37 | × | ymherklotz quits (cb2c9cfbdd@2604:bf00:561:2000::29a) (*.net *.split) |
| 04:08:37 | × | probie quits (cc0b34050a@user/probie) (*.net *.split) |
| 04:08:37 | × | cpli quits (77fc530071@2604:bf00:561:2000::252) (*.net *.split) |
| 04:08:37 | × | filwisher quits (2e6936c793@2604:bf00:561:2000::170) (*.net *.split) |
| 04:08:37 | × | mei quits (~mei@user/mei) (*.net *.split) |
| 04:08:37 | × | xff0x_ quits (~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) (*.net *.split) |
| 04:08:37 | × | gentauro quits (~gentauro@user/gentauro) (*.net *.split) |
| 04:08:37 | × | ft quits (~ft@p508db151.dip0.t-ipconnect.de) (*.net *.split) |
| 04:08:37 | × | eggplantade quits (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (*.net *.split) |
| 04:08:37 | × | albet70 quits (~xxx@2400:8902::f03c:92ff:fe60:98d8) (*.net *.split) |
| 04:08:37 | × | foul_owl quits (~kerry@94.140.8.28) (*.net *.split) |
| 04:08:37 | × | robbert-vdh quits (~robbert@robbertvanderhelm.nl) (*.net *.split) |
| 04:08:37 | × | mauke quits (~mauke@user/mauke) (*.net *.split) |
| 04:08:37 | × | mncheck-m quits (~mncheck@193.224.205.254) (*.net *.split) |
| 04:08:37 | × | EvanR quits (~EvanR@user/evanr) (*.net *.split) |
| 04:08:37 | × | phma quits (phma@2001:5b0:211f:2f08:1586:27d6:8ad8:5c55) (*.net *.split) |
| 04:08:37 | × | hippoid quits (~hippoid@user/hippoid) (*.net *.split) |
| 04:08:37 | × | Alex_test quits (~al_test@178.34.163.88) (*.net *.split) |
| 04:08:37 | × | kritzefitz quits (~kritzefit@debian/kritzefitz) (*.net *.split) |
| 04:08:37 | × | berberman quits (~berberman@user/berberman) (*.net *.split) |
| 04:08:37 | × | haritz quits (~hrtz@user/haritz) (*.net *.split) |
| 04:08:37 | × | Patternmaster quits (~georg@user/Patternmaster) (*.net *.split) |
| 04:08:37 | × | biberu quits (~biberu@user/biberu) (*.net *.split) |
| 04:08:37 | × | bw_ quits (sid2730@user/betawaffle) (*.net *.split) |
| 04:08:37 | × | Lord_of_Life quits (~Lord@user/lord-of-life/x-2819915) (*.net *.split) |
| 04:08:37 | × | hugo quits (znc@verdigris.lysator.liu.se) (*.net *.split) |
| 04:08:37 | × | PHO` quits (~pho@akari.cielonegro.org) (*.net *.split) |
| 04:08:37 | × | MironZ quits (~MironZ@nat-infra.ehlab.uk) (*.net *.split) |
| 04:08:37 | × | diagprov quits (sid348783@user/diagprov) (*.net *.split) |
| 04:08:37 | × | Ankhers quits (e99e97ef8e@2604:bf00:561:2000::2a2) (*.net *.split) |
| 04:08:37 | × | jleightcap quits (7bc4014b62@user/jleightcap) (*.net *.split) |
| 04:08:37 | × | fluffyballoon quits (45ce440a48@2604:bf00:561:2000::e2) (*.net *.split) |
| 04:08:37 | × | b0o quits (0e4a0bf4c9@2604:bf00:561:2000::1bf) (*.net *.split) |
| 04:08:37 | × | samhh_ quits (7569f027cf@2604:bf00:561:2000::e4) (*.net *.split) |
| 04:08:37 | × | MonsoonSecrecy quits (f78c86e960@2604:bf00:561:2000::f99) (*.net *.split) |
| 04:08:37 | × | jakzale quits (6291399afa@user/jakzale) (*.net *.split) |
| 04:08:37 | × | sm2n quits (ae95cb1267@user/sm2n) (*.net *.split) |
| 04:08:37 | × | chaitlatte0 quits (ea29c0bb16@user/chaitlatte0) (*.net *.split) |
| 04:08:37 | × | whereiseveryone quits (206ba86c98@2604:bf00:561:2000::2e4) (*.net *.split) |
| 04:08:37 | × | Xe quits (~cadey@tailscale/xe) (*.net *.split) |
| 04:08:37 | × | theesm quits (2cbdf4b38a@2604:bf00:561:2000::11c8) (*.net *.split) |
| 04:08:37 | × | sus quits (1b7af6299f@user/zeromomentum) (*.net *.split) |
| 04:08:37 | × | shreyasminocha quits (51fdc93eda@user/shreyasminocha) (*.net *.split) |
| 04:08:37 | × | henrytill quits (e0180937c3@2604:bf00:561:2000::e8c) (*.net *.split) |
| 04:08:37 | × | jkoshy quits (99b9359beb@user/jkoshy) (*.net *.split) |
| 04:08:37 | × | arcadewise quits (52968ed80d@2604:bf00:561:2000::3df) (*.net *.split) |
| 04:08:37 | × | JoelMcCracken quits (5ea8252fbb@2604:bf00:561:2000::10e3) (*.net *.split) |
| 04:08:37 | × | fvr quits (ef3e56ca8b@2604:bf00:561:2000::3c4) (*.net *.split) |
| 04:08:37 | × | n1essa quits (3d621153a5@2604:bf00:561:2000::df7) (*.net *.split) |
| 04:08:37 | × | ggb quits (a62ffbaf4f@2604:bf00:561:2000::3ac) (*.net *.split) |
| 04:08:37 | × | lukec quits (9dfd4d094e@2604:bf00:561:2000::10e) (*.net *.split) |
| 04:08:37 | × | bsima1 quits (9d7e39c8ad@2604:bf00:561:2000::dd) (*.net *.split) |
| 04:08:37 | × | aforemny_ quits (~aforemny@i59F516C0.versanet.de) (*.net *.split) |
| 04:08:37 | × | td_ quits (~td@i53870905.versanet.de) (*.net *.split) |
| 04:08:38 | × | wagle quits (~wagle@quassel.wagle.io) (*.net *.split) |
| 04:08:38 | × | myme quits (~myme@2a01:799:d60:e400:5ad3:735a:f98b:c82b) (*.net *.split) |
| 04:08:38 | × | dcoutts_ quits (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (*.net *.split) |
| 04:08:38 | × | tzh quits (~tzh@c-24-21-73-154.hsd1.or.comcast.net) (*.net *.split) |
| 04:08:38 | × | Sgeo quits (~Sgeo@user/sgeo) (*.net *.split) |
| 04:08:38 | × | econo_ quits (uid147250@id-147250.tinside.irccloud.com) (*.net *.split) |
| 04:08:38 | × | swamp_ quits (~zmt00@user/zmt00) (*.net *.split) |
| 04:08:38 | × | sunarch quits (~sunarch@user/sunarch) (*.net *.split) |
| 04:08:38 | × | shapr quits (~user@2600:1700:c640:3100:cca5:97e3:b957:869b) (*.net *.split) |
| 04:08:38 | × | RedNifre quits (~RedNifre@dslb-088-072-205-088.088.072.pools.vodafone-ip.de) (*.net *.split) |
| 04:08:38 | × | motherfsck quits (~motherfsc@user/motherfsck) (*.net *.split) |
| 04:08:38 | × | hisa38 quits (~hisa38@104-181-102-238.lightspeed.wepbfl.sbcglobal.net) (*.net *.split) |
| 04:08:38 | × | kmein quits (~weechat@user/kmein) (*.net *.split) |
| 04:08:38 | × | Moyst quits (~moyst@user/moyst) (*.net *.split) |
| 04:08:38 | × | smalltalkman quits (uid545680@id-545680.hampstead.irccloud.com) (*.net *.split) |
| 04:08:38 | × | Athas quits (athas@sigkill.dk) (*.net *.split) |
| 04:08:38 | × | pavonia quits (~user@user/siracusa) (*.net *.split) |
| 04:08:38 | × | simpleauthority quits (~simpleaut@user/simpleauthority) (*.net *.split) |
| 04:08:38 | × | dipper quits (~dipper@203.168.26.146) (*.net *.split) |
| 04:08:38 | × | chromoblob quits (~user@37.113.180.121) (*.net *.split) |
| 04:08:38 | × | Nokurn quits (~jeremiah@cpe-76-86-186-227.socal.res.rr.com) (*.net *.split) |
| 04:08:38 | × | connrs quits (~connrs@user/connrs) (*.net *.split) |
| 04:08:38 | × | myxos quits (~myxos@cpe-65-28-251-121.cinci.res.rr.com) (*.net *.split) |
| 04:08:38 | × | L29Ah quits (~L29Ah@wikipedia/L29Ah) (*.net *.split) |
| 04:08:38 | × | mjs2600 quits (~mjs2600@c-174-169-225-239.hsd1.vt.comcast.net) (*.net *.split) |
| 04:08:38 | × | Natch quits (~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) (*.net *.split) |
| 04:08:38 | × | AlexZenon quits (~alzenon@178.34.163.88) (*.net *.split) |
| 04:08:38 | × | geekosaur quits (~geekosaur@xmonad/geekosaur) (*.net *.split) |
| 04:08:38 | × | dsrt^ quits (~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) (*.net *.split) |
| 04:08:38 | × | shriekingnoise quits (~shrieking@186.137.175.87) (*.net *.split) |
| 04:08:38 | × | euandreh quits (~Thunderbi@189.6.18.7) (*.net *.split) |
| 04:08:38 | × | dibblego quits (~dibblego@haskell/developer/dibblego) (*.net *.split) |
| 04:08:38 | × | opqdonut quits (opqdonut@pseudo.fixme.fi) (*.net *.split) |
| 04:08:38 | × | ezzieyguywuf quits (~Unknown@user/ezzieyguywuf) (*.net *.split) |
| 04:08:38 | × | johnw quits (~johnw@76-234-69-149.lightspeed.frokca.sbcglobal.net) (*.net *.split) |
| 04:08:38 | × | puke quits (~puke@user/puke) (*.net *.split) |
| 04:08:38 | × | nicole quits (ilbelkyr@libera/staff/ilbelkyr) (*.net *.split) |
| 04:08:38 | × | rubin55 quits (sid175221@2a03:5180:f:4::2:ac75) (*.net *.split) |
| 04:08:38 | × | jonrh_ quits (sid5185@2a03:5180:f:3::1441) (*.net *.split) |
| 04:08:38 | × | terrorjack quits (~terrorjac@2a01:4f8:c17:87f8::) (*.net *.split) |
| 04:08:38 | × | ijqq quits (uid603979@2a03:5180:f:1::9:374b) (*.net *.split) |
| 04:08:38 | × | xenomorph quits (~xenomorph@188.220.172.130) (*.net *.split) |
| 04:08:38 | × | mrmonday quits (~robert@2a01:7e00:e000:1b2:95ca:100:49e0:3f15) (*.net *.split) |
| 04:08:38 | × | nonzen quits (~nonzen@user/nonzen) (*.net *.split) |
| 04:08:38 | × | bjs quits (sid190364@user/bjs) (*.net *.split) |
| 04:08:38 | × | leah2 quits (~leah@2001:1410:200:eea::1) (*.net *.split) |
| 04:08:38 | × | jakesyl____ quits (sid56879@2a03:5180:f:4::de2f) (*.net *.split) |
| 04:08:38 | × | farn quits (~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) (*.net *.split) |
| 04:08:38 | × | jrm quits (~jrm@user/jrm) (*.net *.split) |
| 04:08:38 | × | ByronJohnson quits (~bairyn@50.250.232.19) (*.net *.split) |
| 04:08:38 | × | zups quits (~meow@2a01:4f9:c010:6036::1) (*.net *.split) |
| 04:08:38 | × | natto quits (~natto@140.238.225.67) (*.net *.split) |
| 04:08:38 | × | mustafa quits (sid502723@rockylinux/releng/mustafa) (*.net *.split) |
| 04:08:38 | × | snek quits (sid280155@2a03:5180:f:2::4:465b) (*.net *.split) |
| 04:08:38 | × | edm quits (sid147314@2a03:5180:f:4::2:3f72) (*.net *.split) |
| 04:08:38 | × | tolt quits (~weechat-h@li219-154.members.linode.com) (*.net *.split) |
| 04:08:38 | × | tom__ quits (~tom@2a00:23c8:970c:4801:5b6a:e81b:79dc:f684) (*.net *.split) |
| 04:08:38 | × | truckasaurus quits (sid457088@id-457088.helmsley.irccloud.com) (*.net *.split) |
| 04:08:38 | × | texasmynsted quits (~username@99.96.221.112) (*.net *.split) |
| 04:08:38 | × | Boarders___ quits (sid425905@id-425905.lymington.irccloud.com) (*.net *.split) |
| 04:08:38 | × | pointlessslippe1 quits (~pointless@212.82.82.3) (*.net *.split) |
| 04:08:38 | × | troydm quits (~troydm@user/troydm) (*.net *.split) |
| 04:08:38 | × | user___ quits (~user@162.255.84.96) (*.net *.split) |
| 04:08:38 | × | xerox quits (~edi@user/edi) (*.net *.split) |
| 04:08:38 | × | siers quits (~ij@user/ij) (*.net *.split) |
| 04:08:38 | × | Rembane quits (~Rembane@178.79.177.36) (*.net *.split) |
| 04:08:38 | × | davean quits (~davean@67.205.182.208) (*.net *.split) |
| 04:08:38 | × | thaumavorio quits (~thaumavor@162.243.123.105) (*.net *.split) |
| 04:08:38 | × | darkling quits (~darkling@2001:ba8:1f1:f0e6::2) (*.net *.split) |
| 04:08:38 | × | yushyin quits (tGG5pLVJ8Y@2a01:4f8:1c17:80de::2) (*.net *.split) |
| 04:08:38 | × | Ellenor quits (ellenor@2001:19f0:8001:279::2000:1) (*.net *.split) |
| 04:08:38 | × | img quits (~img@user/img) (*.net *.split) |
| 04:08:38 | × | winny quits (~weechat@user/winny) (*.net *.split) |
| 04:08:38 | × | parseval quits (sid239098@2a03:5180:f:1::3:a5fa) (*.net *.split) |
| 04:08:38 | × | Adeon quits (sid418992@2a03:5180:f:2::6:64b0) (*.net *.split) |
| 04:08:38 | × | rembo10 quits (~rembo10@2a01:4f9:c010:b5b9::1) (*.net *.split) |
| 04:08:38 | × | Wojciech_K quits (~Wojciech_@2a01:4f9:6a:18a8::239) (*.net *.split) |
| 04:08:38 | × | astra quits (sid289983@2a03:5180:f:4::4:6cbf) (*.net *.split) |
| 04:08:38 | × | conjunctive quits (sid433686@2a03:5180:f:1::6:9e16) (*.net *.split) |
| 04:08:38 | × | dy quits (sid3438@user/dy) (*.net *.split) |
| 04:08:38 | × | nadja quits (~dequbed@2a01:4f8:201:34c7::1) (*.net *.split) |
| 04:08:38 | × | notzmv quits (~zmv@user/notzmv) (*.net *.split) |
| 04:08:38 | × | mzg quits (mzg@lazy.unconscious.biz) (*.net *.split) |
| 04:08:38 | × | idnar quits (sid12240@debian/mithrandi) (*.net *.split) |
| 04:08:38 | × | dsal quits (sid13060@id-13060.lymington.irccloud.com) (*.net *.split) |
| 04:08:38 | × | b20n quits (sid115913@id-115913.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:38 | × | tritlo_ quits (sid58727@id-58727.hampstead.irccloud.com) (*.net *.split) |
| 04:08:39 | × | glowcoil quits (sid3405@id-3405.tinside.irccloud.com) (*.net *.split) |
| 04:08:39 | × | integral quits (sid296274@user/integral) (*.net *.split) |
| 04:08:39 | × | ProofTechnique_ quits (sid79547@id-79547.ilkley.irccloud.com) (*.net *.split) |
| 04:08:39 | × | immae quits (~immae@2a01:4f8:141:53e7::) (*.net *.split) |
| 04:08:39 | × | Arsen quits (arsen@gentoo/developer/managarm.dev.Arsen) (*.net *.split) |
| 04:08:39 | × | Guest5986 quits (~m-mzmz6l@vmi833741.contaboserver.net) (*.net *.split) |
| 04:08:39 | × | ggVGc quits (~ggVGc@a.lowtech.earth) (*.net *.split) |
| 04:08:39 | × | bsima quits (~bsima@143.198.118.179) (*.net *.split) |
| 04:08:39 | × | noctux1 quits (88FTKVRINY@user/noctux) (*.net *.split) |
| 04:08:39 | × | stallmanator quits (~stallmana@user/stallmanator) (*.net *.split) |
| 04:08:39 | × | Ekho quits (~Ekho@user/ekho) (*.net *.split) |
| 04:08:39 | × | tomku quits (~tomku@user/tomku) (*.net *.split) |
| 04:08:39 | × | hpc quits (~juzz@ip98-169-35-163.dc.dc.cox.net) (*.net *.split) |
| 04:08:39 | × | esph quits (~weechat@user/esph) (*.net *.split) |
| 04:08:39 | × | dunj3 quits (~dunj3@kingdread.de) (*.net *.split) |
| 04:08:39 | × | disconnect3d quits (~disconnec@user/disconnect3d) (*.net *.split) |
| 04:08:39 | × | monochrom quits (trebla@216.138.220.146) (*.net *.split) |
| 04:08:39 | × | TMA quits (tma@twin.jikos.cz) (*.net *.split) |
| 04:08:39 | × | Lears quits (~Leary]@user/Leary/x-0910699) (*.net *.split) |
| 04:08:39 | × | apache quits (apache2@anubis.0x90.dk) (*.net *.split) |
| 04:08:39 | × | jinsun quits (~jinsun@user/jinsun) (*.net *.split) |
| 04:08:39 | × | dumptruckman quits (~dumptruck@143-42-239-71.ip.linodeusercontent.com) (*.net *.split) |
| 04:08:39 | × | Luj quits (~Luj@2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb) (*.net *.split) |
| 04:08:39 | × | koala_man quits (~vidar@157.146.251.23.bc.googleusercontent.com) (*.net *.split) |
| 04:08:39 | × | drlkf quits (~drlkf@192.184.163.34.bc.googleusercontent.com) (*.net *.split) |
| 04:08:39 | × | son0p quits (~ff@181.136.122.143) (*.net *.split) |
| 04:08:39 | × | kaskal quits (~kaskal@2001:4bb8:2dd:a79d:1a7:8529:b79b:cfa) (*.net *.split) |
| 04:08:39 | × | ski quits (~ski@remote11.chalmers.se) (*.net *.split) |
| 04:08:39 | × | alpm quits (~alp@user/alp) (*.net *.split) |
| 04:08:39 | × | Hobbyboy quits (Hobbyboy@hobbyboy.co.uk) (*.net *.split) |
| 04:08:39 | × | zer0bitz quits (~zer0bitz@user/zer0bitz) (*.net *.split) |
| 04:08:39 | × | danso quits (~danso@user/danso) (*.net *.split) |
| 04:08:39 | × | c_wraith quits (~c_wraith@adjoint.us) (*.net *.split) |
| 04:08:39 | × | Firedancer quits (sid336191@id-336191.hampstead.irccloud.com) (*.net *.split) |
| 04:08:39 | × | russruss2 quits (~russruss@my.russellmcc.com) (*.net *.split) |
| 04:08:39 | × | alinab_ quits (sid468903@id-468903.helmsley.irccloud.com) (*.net *.split) |
| 04:08:39 | × | dagit quits (~dagit@2001:558:6025:38:71c6:9d58:7252:8976) (*.net *.split) |
| 04:08:39 | × | dove quits (~irc@2600:3c00:e000:287::1) (*.net *.split) |
| 04:08:39 | × | bradparker quits (sid262931@id-262931.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:39 | × | sa1 quits (sid7690@id-7690.ilkley.irccloud.com) (*.net *.split) |
| 04:08:39 | × | hueso quits (~root@user/hueso) (*.net *.split) |
| 04:08:39 | × | Ranhir quits (~Ranhir@157.97.53.139) (*.net *.split) |
| 04:08:39 | × | bcmiller quits (~bm3719@66.42.95.185) (*.net *.split) |
| 04:08:39 | × | paddymahoney quits (~paddymaho@cpe883d24bcf597-cmbc4dfb741f80.cpe.net.cable.rogers.com) (*.net *.split) |
| 04:08:39 | × | CAT_S quits (apic@brezn3.muc.ccc.de) (*.net *.split) |
| 04:08:39 | × | davl quits (~davl@207.154.228.18) (*.net *.split) |
| 04:08:39 | × | echoreply quits (~echoreply@45.32.163.16) (*.net *.split) |
| 04:08:39 | × | AkechiShiro quits (~licht@user/akechishiro) (*.net *.split) |
| 04:08:39 | × | dragestil quits (~znc@user/dragestil) (*.net *.split) |
| 04:08:39 | × | gmc quits (sid58314@id-58314.ilkley.irccloud.com) (*.net *.split) |
| 04:08:39 | × | systemfault quits (sid267009@id-267009.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:39 | × | kristjansson_ quits (sid126207@id-126207.tinside.irccloud.com) (*.net *.split) |
| 04:08:39 | × | micro quits (~micro@user/micro) (*.net *.split) |
| 04:08:39 | × | dexter1 quits (dexter@2a01:7e00::f03c:91ff:fe86:59ec) (*.net *.split) |
| 04:08:39 | × | sa quits (sid1055@id-1055.tinside.irccloud.com) (*.net *.split) |
| 04:08:39 | × | Profpatsch quits (~Profpatsc@static.88-198-193-255.clients.your-server.de) (*.net *.split) |
| 04:08:39 | × | loonycyborg quits (loonycybor@wesnoth/developer/loonycyborg) (*.net *.split) |
| 04:08:39 | × | incertia quits (~incertia@209.122.71.127) (*.net *.split) |
| 04:08:39 | × | hexagoxel quits (~hexagoxel@2a01:4f8:c0c:e::2) (*.net *.split) |
| 04:08:39 | × | sclv quits (sid39734@haskell/developer/sclv) (*.net *.split) |
| 04:08:39 | × | CalculusCats quits (NyaaTheKit@user/calculuscat) (*.net *.split) |
| 04:08:39 | × | Momentum quits (momentum@tilde.team) (*.net *.split) |
| 04:08:39 | × | kronicma1 quits (user40967@neotame.csclub.uwaterloo.ca) (*.net *.split) |
| 04:08:39 | × | ggranberry quits (sid267884@id-267884.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:39 | × | madnight quits (~madnight@static.59.103.201.195.clients.your-server.de) (*.net *.split) |
| 04:08:39 | × | mjacob quits (~mjacob@adrastea.uberspace.de) (*.net *.split) |
| 04:08:39 | × | nek0 quits (~nek0@2a01:4f8:222:2b41::12) (*.net *.split) |
| 04:08:39 | × | fbytez quits (~uid@user/fbytez) (*.net *.split) |
| 04:08:39 | × | lawt quits (~lawt@129.159.36.129) (*.net *.split) |
| 04:08:39 | × | gabiruh quits (~gabiruh@vps19177.publiccloud.com.br) (*.net *.split) |
| 04:08:39 | × | jludwig quits (~justin@li657-110.members.linode.com) (*.net *.split) |
| 04:08:39 | × | haskl quits (~haskl@user/haskl) (*.net *.split) |
| 04:08:39 | × | Franciman quits (~Franciman@mx1.fracta.dev) (*.net *.split) |
| 04:08:39 | × | witcher quits (~witcher@wiredspace.de) (*.net *.split) |
| 04:08:39 | × | Inst_ quits (~Inst@2601:6c4:4081:2fc0:61ec:e42a:c603:c093) (*.net *.split) |
| 04:08:39 | × | APic quits (apic@apic.name) (*.net *.split) |
| 04:08:39 | × | AndreasK quits (sid320732@id-320732.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:39 | × | hyvoid quits (~hyenavoid@222-0-178-69.static.gci.net) (*.net *.split) |
| 04:08:39 | × | yaroot quits (~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp) (*.net *.split) |
| 04:08:39 | × | Fangs quits (sid141280@id-141280.hampstead.irccloud.com) (*.net *.split) |
| 04:08:39 | × | cheater quits (~Username@user/cheater) (*.net *.split) |
| 04:08:39 | × | perrierjouet quits (~perrier-j@modemcable048.127-56-74.mc.videotron.ca) (*.net *.split) |
| 04:08:39 | × | srk quits (~sorki@user/srk) (*.net *.split) |
| 04:08:39 | × | robertm quits (robertm@lattice.rojoma.com) (*.net *.split) |
| 04:08:39 | × | lottaquestions quits (~nick@2607:fa49:503f:6d00:ee98:182c:4ae3:99fe) (*.net *.split) |
| 04:08:39 | × | tomboy64 quits (~tomboy64@user/tomboy64) (*.net *.split) |
| 04:08:39 | × | daemon_ quits (uid606752@id-606752.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:39 | × | bwe quits (~bwe@2a01:4f8:1c1c:4878::2) (*.net *.split) |
| 04:08:39 | × | [_________] quits (~oos95GWG@user/oos95GWG) (*.net *.split) |
| 04:08:39 | × | urdh quits (~urdh@user/urdh) (*.net *.split) |
| 04:08:39 | × | aku quits (~aku@65.108.245.241) (*.net *.split) |
| 04:08:39 | × | shawwwn quits (sid6132@id-6132.helmsley.irccloud.com) (*.net *.split) |
| 04:08:39 | × | skippy quits (sid26890@user/slice) (*.net *.split) |
| 04:08:39 | × | rune_ quits (sid21167@id-21167.ilkley.irccloud.com) (*.net *.split) |
| 04:08:40 | × | phaazon quits (~phaazon@2001:41d0:a:fe76::1) (*.net *.split) |
| 04:08:40 | × | lexi-lambda quits (sid92601@hampstead.irccloud.com) (*.net *.split) |
| 04:08:40 | × | ryantrinkle quits (~ryantrink@204.2.90.61) (*.net *.split) |
| 04:08:40 | × | gawen quits (~gawen@user/gawen) (*.net *.split) |
| 04:08:40 | × | driib quits (~driib@vmi931078.contaboserver.net) (*.net *.split) |
| 04:08:40 | × | p3n quits (~p3n@217.198.124.246) (*.net *.split) |
| 04:08:40 | × | ralu1 quits (~ralu@static.211.245.203.116.clients.your-server.de) (*.net *.split) |
| 04:08:40 | × | quintasan quits (~quassel@quintasan.pl) (*.net *.split) |
| 04:08:40 | × | mhatta quits (~mhatta@www21123ui.sakura.ne.jp) (*.net *.split) |
| 04:08:40 | × | forell quits (~forell@user/forell) (*.net *.split) |
| 04:08:40 | × | Putonlalla quits (~Putonlall@it-cyan.it.jyu.fi) (*.net *.split) |
| 04:08:40 | × | Maxdamantus quits (~Maxdamant@user/maxdamantus) (*.net *.split) |
| 04:08:40 | × | barrucadu quits (~barrucadu@carcosa.barrucadu.co.uk) (*.net *.split) |
| 04:08:40 | × | hnOsmium0001 quits (~hnosm@user/hnOsmium0001) (*.net *.split) |
| 04:08:40 | × | cross quits (~cross@spitfire.i.gajendra.net) (*.net *.split) |
| 04:08:40 | × | joeyh quits (joeyh@2600:3c03::f03c:91ff:fe73:b0d2) (*.net *.split) |
| 04:08:40 | × | emergence quits (emergence@2607:5300:60:5910:dcad:beff:feef:5bc) (*.net *.split) |
| 04:08:40 | × | nyc quits (~nyc@user/nyc) (*.net *.split) |
| 04:08:40 | × | Everything quits (~Everythin@static.208.206.21.65.clients.your-server.de) (*.net *.split) |
| 04:08:40 | × | drdo quits (~drdo@bl8-153-185.dsl.telepac.pt) (*.net *.split) |
| 04:08:40 | × | hays quits (rootvegeta@fsf/member/hays) (*.net *.split) |
| 04:08:40 | × | anpad quits (~pandeyan@user/anpad) (*.net *.split) |
| 04:08:40 | × | heartburn quits (~gass@2a00:d880:3:1::b1e4:b241) (*.net *.split) |
| 04:08:40 | × | ridcully quits (~ridcully@p57b52f2c.dip0.t-ipconnect.de) (*.net *.split) |
| 04:08:40 | × | megaTherion quits (~therion@unix.io) (*.net *.split) |
| 04:08:40 | × | cawfee quits (~root@2406:3003:2077:2758::babe) (*.net *.split) |
| 04:08:40 | × | Buggys- quits (Buggys@shelltalk.net) (*.net *.split) |
| 04:08:40 | × | Flow quits (~none@gentoo/developer/flow) (*.net *.split) |
| 04:08:40 | × | SoF quits (~skius@user/skius) (*.net *.split) |
| 04:08:40 | × | m1dnight quits (~christoph@78-22-4-67.access.telenet.be) (*.net *.split) |
| 04:08:40 | × | Katarushisu quits (~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net) (*.net *.split) |
| 04:08:40 | × | Angelz quits (Angelz@2605:6400:30:fc15:d55b:fa6c:bd14:9973) (*.net *.split) |
| 04:08:40 | × | dolio quits (~dolio@130.44.134.54) (*.net *.split) |
| 04:08:40 | × | kitzman quits (~kitzman@user/dekenevs) (*.net *.split) |
| 04:08:40 | × | fr33domlover quits (~fr33domlo@towards.vision) (*.net *.split) |
| 04:08:40 | × | Me-me quits (~me-me@2602:ff16:3:0:1:dc:beef:d00d) (*.net *.split) |
| 04:08:40 | × | s4msung quits (4RqcWUWWqt@user/s4msung) (*.net *.split) |
| 04:08:40 | × | qhong quits (~qhong@rescomp-21-400677.stanford.edu) (*.net *.split) |
| 04:08:40 | × | Taneb quits (~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0) (*.net *.split) |
| 04:08:40 | × | eL_Bart0 quits (eL_Bart0@dietunichtguten.org) (*.net *.split) |
| 04:08:40 | × | finnekit quits (~finnekit@fsf/member/finnekit) (*.net *.split) |
| 04:08:40 | × | jbalint quits (~jbalint@071-090-119-177.res.spectrum.com) (*.net *.split) |
| 04:08:40 | × | bah quits (~bah@l1.tel) (*.net *.split) |
| 04:08:40 | × | stilgart quits (~Christoph@chezlefab.net) (*.net *.split) |
| 04:08:40 | × | abrar_ quits (~abrar@pool-72-78-199-186.phlapa.fios.verizon.net) (*.net *.split) |
| 04:08:40 | × | hololeap quits (~quassel@user/hololeap) (*.net *.split) |
| 04:08:40 | × | jinsl quits (~jinsl@2408:8207:2558:8870:211:32ff:fec8:6aea) (*.net *.split) |
| 04:08:40 | × | mira quits (~aranea@wireguard/contributorcat/mira) (*.net *.split) |
| 04:08:40 | × | brettgilio quits (~brettgili@2001:19f0:5c00:27fc:5400:4ff:fe7a:1f8e) (*.net *.split) |
| 04:08:40 | × | tired quits (~tired@user/tired) (*.net *.split) |
| 04:08:40 | × | Logio quits (em@kapsi.fi) (*.net *.split) |
| 04:08:40 | × | Cheery quits (~cheery@server-239-7.tentacle.cloud) (*.net *.split) |
| 04:08:40 | × | ringo__ quits (~ringo@157.230.117.128) (*.net *.split) |
| 04:08:40 | × | remedan quits (~remedan@ip-94-112-0-18.bb.vodafone.cz) (*.net *.split) |
| 04:08:40 | × | _d0t quits (~{-d0t-}@user/-d0t-/x-7915216) (*.net *.split) |
| 04:08:40 | × | krjst quits (~krjst@2604:a880:800:c1::16b:8001) (*.net *.split) |
| 04:08:40 | × | Sciencentistguy quits (~sciencent@hacksoc/ordinary-member) (*.net *.split) |
| 04:08:40 | × | Nosrep quits (~Nosrep@user/nosrep) (*.net *.split) |
| 04:08:40 | × | mrmr quits (~mrmr@user/mrmr) (*.net *.split) |
| 04:08:40 | × | carbolymer quits (~carbolyme@dropacid.net) (*.net *.split) |
| 04:08:40 | × | hexology quits (~hexology@user/hexology) (*.net *.split) |
| 04:08:40 | × | kraftwerk28 quits (~kraftwerk@178.62.210.83) (*.net *.split) |
| 04:08:40 | × | juri_ quits (~juri@84-19-175-187.pool.ovpn.com) (*.net *.split) |
| 04:08:40 | × | shachaf quits (~shachaf@user/shachaf) (*.net *.split) |
| 04:08:40 | × | bgamari quits (~bgamari@64.223.233.113) (*.net *.split) |
| 04:08:40 | × | ames quits (~amelia@offtopia/offtopian/amelia) (*.net *.split) |
| 04:08:40 | × | heath2 quits (~heath@user/heath) (*.net *.split) |
| 04:08:40 | × | anderson quits (~anderson@user/anderson) (*.net *.split) |
| 04:08:40 | × | glider quits (~glider@user/glider) (*.net *.split) |
| 04:08:40 | × | adamCS quits (~adamCS@ec2-34-207-160-255.compute-1.amazonaws.com) (*.net *.split) |
| 04:08:40 | × | piele quits (~piele@tbonesteak.creativeserver.net) (*.net *.split) |
| 04:08:40 | × | Benzi-Junior quits (~BenziJuni@88-149-64-112.du.xdsl.is) (*.net *.split) |
| 04:08:41 | × | bramhaag quits (~bramhaag@134.195.121.39) (*.net *.split) |
| 04:08:41 | × | niko quits (niko@libera/staff/niko) (*.net *.split) |
| 04:08:41 | × | ncf quits (~n@monade.li) (*.net *.split) |
| 04:08:41 | × | end^ quits (~end^@user/end/x-0094621) (*.net *.split) |
| 04:08:41 | × | DustinStiles[m] quits (~duwstiles@2001:470:69fc:105::3:699b) (*.net *.split) |
| 04:08:41 | × | hellwolf[m] quits (~hellwolfm@2001:470:69fc:105::3:6a4) (*.net *.split) |
| 04:08:41 | × | eldritchcookie[m quits (~eldritchc@2001:470:69fc:105::2:d53c) (*.net *.split) |
| 04:08:41 | × | lilpotent_jlemen quits (~lilpotent@2001:470:69fc:105::3:6eb6) (*.net *.split) |
| 04:08:41 | × | oak- quits (~oak-@2001:470:69fc:105::fcd) (*.net *.split) |
| 04:08:41 | × | m1-s[m] quits (~m1-smatri@2001:470:69fc:105::2:39da) (*.net *.split) |
| 04:08:41 | × | supersven[m] quits (~supersven@2001:470:69fc:105::31b6) (*.net *.split) |
| 04:08:41 | × | joyfulmantis[m] quits (~joyfulman@2001:470:69fc:105::3:400a) (*.net *.split) |
| 04:08:41 | × | shapr[m] quits (~shaprcofr@2001:470:69fc:105::2:d107) (*.net *.split) |
| 04:08:41 | × | VarikValefor[m] quits (~varikvale@2001:470:69fc:105::a5d) (*.net *.split) |
| 04:08:41 | × | earthy quits (~arthurvl@2a02-a469-f5e2-1-83d2-ca43-57a2-dc81.fixed6.kpn.net) (*.net *.split) |
| 04:08:41 | × | czy quits (~user@host-140-26.ilcub310.champaign.il.us.clients.pavlovmedia.net) (*.net *.split) |
| 04:08:41 | × | hsw quits (~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) (*.net *.split) |
| 04:08:41 | × | Vajb quits (~Vajb@2001:999:484:a37d:e618:9886:4843:f5d8) (*.net *.split) |
| 04:08:41 | × | Adran quits (~adran@botters/adran) (*.net *.split) |
| 04:08:41 | × | bionade24 quits (~bionade24@2a03:4000:33:45b::1) (*.net *.split) |
| 04:08:41 | × | JSharp quits (sid4580@id-4580.lymington.irccloud.com) (*.net *.split) |
| 04:08:41 | × | Clint quits (~Clint@user/clint) (*.net *.split) |
| 04:08:41 | × | lightandlight quits (sid135476@id-135476.helmsley.irccloud.com) (*.net *.split) |
| 04:08:41 | × | acro quits (~acro@user/acro) (*.net *.split) |
| 04:08:41 | × | xstill_0 quits (xstill@fimu/xstill) (*.net *.split) |
| 04:08:41 | × | kosmikus_ quits (~kosmikus@nullzig.kosmikus.org) (*.net *.split) |
| 04:08:41 | × | bcoppens_ quits (~bartcopp@vpn2.bartcoppens.be) (*.net *.split) |
| 04:08:41 | × | laman3 quits (~laman@rego.ai) (*.net *.split) |
| 04:08:41 | × | litharge quits (litharge@libera/bot/litharge) (*.net *.split) |
| 04:08:41 | × | ec quits (~ec@gateway/tor-sasl/ec) (*.net *.split) |
| 04:08:41 | × | FinnElija quits (~finn_elij@user/finn-elija/x-0085643) (*.net *.split) |
| 04:08:41 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (*.net *.split) |
| 04:08:41 | × | azimut quits (~azimut@gateway/tor-sasl/azimut) (*.net *.split) |
| 04:08:41 | × | cafkafk quits (~cafkafk@fsf/member/cafkafk) (*.net *.split) |
| 04:08:41 | × | jpds quits (~jpds@gateway/tor-sasl/jpds) (*.net *.split) |
| 04:08:41 | × | chexum quits (~quassel@gateway/tor-sasl/chexum) (*.net *.split) |
| 04:08:41 | × | califax quits (~califax@user/califx) (*.net *.split) |
| 04:08:41 | × | stiell_ quits (~stiell@gateway/tor-sasl/stiell) (*.net *.split) |
| 04:08:41 | × | chiselfuse quits (~chiselfus@user/chiselfuse) (*.net *.split) |
| 04:08:41 | × | adanwan quits (~adanwan@gateway/tor-sasl/adanwan) (*.net *.split) |
| 04:08:41 | × | shane quits (~shane@ana.rch.ist) (*.net *.split) |
| 04:08:41 | × | int-e quits (~noone@int-e.eu) (*.net *.split) |
| 04:08:41 | × | ghostbuster quits (~admin@user/ghostbuster) (*.net *.split) |
| 04:08:41 | × | Dykam quits (Dykam@dykam.nl) (*.net *.split) |
| 04:08:41 | × | cods quits (~fred@82-65-232-44.subs.proxad.net) (*.net *.split) |
| 04:08:41 | × | Igloo quits (~ian@matrix.chaos.earth.li) (*.net *.split) |
| 04:08:41 | × | AlexNoo quits (~AlexNoo@178.34.163.88) (*.net *.split) |
| 04:08:41 | × | hammond quits (proscan@gateway02.insomnia247.nl) (*.net *.split) |
| 04:08:41 | × | pieguy128 quits (~pieguy128@bras-base-mtrlpq5031w-grc-56-65-92-162-12.dsl.bell.ca) (*.net *.split) |
| 04:08:41 | × | dextaa quits (~DV@user/dextaa) (*.net *.split) |
| 04:08:41 | × | sajith quits (~sajith@user/sajith) (*.net *.split) |
| 04:08:41 | × | finsternis quits (~X@23.226.237.192) (*.net *.split) |
| 04:08:41 | × | justache quits (~justache@user/justache) (*.net *.split) |
| 04:08:41 | × | tureba quits (~tureba@tureba.org) (*.net *.split) |
| 04:08:41 | × | ystael quits (~ystael@user/ystael) (*.net *.split) |
| 04:08:41 | × | Buliarous quits (~gypsydang@46.232.210.139) (*.net *.split) |
| 04:08:41 | × | Nikopol quits (nikopol@user/astrorigin) (*.net *.split) |
| 04:08:41 | × | lyxia quits (~lyxia@poisson.chat) (*.net *.split) |
| 04:08:41 | × | xsarnik quits (xsarnik@lounge.fi.muni.cz) (*.net *.split) |
| 04:08:41 | × | remexre quits (~remexre@user/remexre) (*.net *.split) |
| 04:08:41 | × | meejah quits (~meejah@rutas.meejah.ca) (*.net *.split) |
| 04:08:41 | × | dontdieych quits (~alarm@132.226.169.184) (*.net *.split) |
| 04:08:41 | × | tv quits (~tv@user/tv) (*.net *.split) |
| 04:08:41 | × | JimL quits (~quassel@89.162.16.26) (*.net *.split) |
| 04:08:41 | × | migas quits (~migas@astra4961.startdedicated.net) (*.net *.split) |
| 04:08:41 | × | TheCoffeMaker quits (~TheCoffeM@user/thecoffemaker) (*.net *.split) |
| 04:08:41 | × | nckx quits (~nckx@tobias.gr) (*.net *.split) |
| 04:08:41 | × | tokie quits (~tokie@tokie.net) (*.net *.split) |
| 04:08:41 | × | noteness- quits (~noteness@user/noteness) (*.net *.split) |
| 04:08:41 | × | andjjj23 quits (~irc@107.170.228.47) (*.net *.split) |
| 04:08:41 | × | peutri quits (~peutri@bobo.desast.re) (*.net *.split) |
| 04:08:41 | × | asm quits (~alexander@user/asm) (*.net *.split) |
| 04:08:41 | × | edwtjo quits (~edwtjo@fsf/member/edwtjo) (*.net *.split) |
| 04:08:41 | × | mniip quits (mniip@libera/staff/mniip) (*.net *.split) |
| 04:08:41 | × | AWizzArd quits (~code@user/awizzard) (*.net *.split) |
| 04:08:41 | × | cjay quits (cjay@nerdbox.nerd2nerd.org) (*.net *.split) |
| 04:08:41 | × | it_ quits (~quassel@v2202212189510211193.supersrv.de) (*.net *.split) |
| 04:08:41 | × | josias quits (~mottmatri@2001:470:69fc:105::b6c) (*.net *.split) |
| 04:08:41 | × | ddrone[m] quits (~ddronemat@2001:470:69fc:105::3:70d5) (*.net *.split) |
| 04:08:41 | × | mon_aaraj quits (~montchncs@2001:470:69fc:105::8e6b) (*.net *.split) |
| 04:08:42 | × | Ross[m] quits (~zhichuche@2001:470:69fc:105::3:584b) (*.net *.split) |
| 04:08:42 | × | teo quits (~teo@user/teo) (*.net *.split) |
| 04:08:42 | × | polykernel[m] quits (~polykerne@user/polykernel) (*.net *.split) |
| 04:08:42 | × | somerandomnick[m quits (~somerando@2001:470:69fc:105::3:4f2e) (*.net *.split) |
| 04:08:42 | × | Daniel[m]1 quits (~danieltan@2001:470:69fc:105::3:6e5e) (*.net *.split) |
| 04:08:42 | × | kleenestar[m] quits (~kleenesta@2001:470:69fc:105::3:6d78) (*.net *.split) |
| 04:08:42 | × | aaronv quits (~aaronv@user/aaronv) (*.net *.split) |
| 04:08:42 | × | tbidne[m] quits (~tbidnemat@2001:470:69fc:105::3:6d42) (*.net *.split) |
| 04:08:42 | × | adziahel quits (~adziahelm@2001:470:69fc:105::b4d) (*.net *.split) |
| 04:08:42 | × | hsiktas[m] quits (~hsiktasm]@2001:470:69fc:105::30d4) (*.net *.split) |
| 04:08:42 | × | chreekat quits (~chreekat@2001:470:69fc:105::16b5) (*.net *.split) |
| 04:08:42 | × | elvishjerricco quits (~elvishjer@2001:470:69fc:105::6172) (*.net *.split) |
| 04:08:42 | × | alanz quits (~alanz@2001:470:69fc:105::2:49a6) (*.net *.split) |
| 04:08:42 | × | Null_A[m] quits (~jasonjckn@2001:470:69fc:105::bb85) (*.net *.split) |
| 04:08:42 | × | Artem[m] quits (~artemtype@2001:470:69fc:105::75b) (*.net *.split) |
| 04:08:42 | × | paulapatience quits (~paulapati@2001:470:69fc:105::16a4) (*.net *.split) |
| 04:08:42 | × | fgaz quits (~fgaz@2001:470:69fc:105::842) (*.net *.split) |
| 04:08:42 | × | maralorn quits (~maralorn@2001:470:69fc:105::251) (*.net *.split) |
| 04:08:42 | × | ericson2314 quits (~ericson23@2001:470:69fc:105::70c) (*.net *.split) |
| 04:08:42 | × | Guillaum[m] quits (~guiboumat@2001:470:69fc:105::1:72ac) (*.net *.split) |
| 04:08:42 | × | h2t quits (~h2t@user/h2t) (*.net *.split) |
| 04:08:42 | × | nurupo quits (~nurupo.ga@user/nurupo) (*.net *.split) |
| 04:08:42 | × | sudden quits (~cat@user/sudden) (*.net *.split) |
| 04:08:42 | × | vjoki quits (~vjoki@2a00:d880:3:1::fea1:9ae) (*.net *.split) |
| 04:08:42 | × | defanor quits (~defanor@tart.uberspace.net) (*.net *.split) |
| 04:08:42 | × | Cale quits (~cale@cpe80d04ade0a03-cm80d04ade0a01.cpe.net.cable.rogers.com) (*.net *.split) |
| 04:08:42 | × | acarrico quits (~acarrico@dhcp-68-142-49-163.greenmountainaccess.net) (*.net *.split) |
| 04:08:42 | × | carter quits (sid14827@id-14827.helmsley.irccloud.com) (*.net *.split) |
| 04:08:42 | × | dminuoso quits (~dminuoso@user/dminuoso) (*.net *.split) |
| 04:08:42 | × | swistak quits (~swistak@185.21.216.141) (*.net *.split) |
| 04:08:42 | × | maxfan8_ quits (~max@2a01:4f8:192:5356::2) (*.net *.split) |
| 04:08:42 | × | TimWolla quits (~timwolla@2a01:4f8:150:6153:beef::6667) (*.net *.split) |
| 04:08:42 | × | yahb2 quits (~yahb2@2a01:4f8:c0c:5c7b::2) (*.net *.split) |
| 04:08:42 | × | delyan_ quits (sid523379@id-523379.hampstead.irccloud.com) (*.net *.split) |
| 04:08:42 | × | PotatoGim_ quits (sid99505@id-99505.lymington.irccloud.com) (*.net *.split) |
| 04:08:42 | × | jackdk quits (sid373013@cssa/jackdk) (*.net *.split) |
| 04:08:42 | × | edwardk quits (sid47016@haskell/developer/edwardk) (*.net *.split) |
| 04:08:42 | × | S11001001 quits (sid42510@id-42510.ilkley.irccloud.com) (*.net *.split) |
| 04:08:42 | × | nshepperd quits (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split) |
| 04:08:42 | × | dmj` quits (sid72307@id-72307.hampstead.irccloud.com) (*.net *.split) |
| 04:08:42 | × | rburkholder quits (~blurb@96.45.2.121) (*.net *.split) |
| 04:08:42 | × | Unode quits (~Unode@fg-ext-220.embl.de) (*.net *.split) |
| 04:08:42 | × | hackyhacker quits (~hackyhack@2a05:f480:1400:24b2:5400:4ff:fe76:a8f3) (*.net *.split) |
| 04:08:42 | × | pierrot quits (~pi@user/pierrot) (*.net *.split) |
| 04:08:42 | × | koolazer quits (~koo@user/koolazer) (*.net *.split) |
| 04:08:42 | × | oljenkins quits (~philipp@p5dec4bb3.dip0.t-ipconnect.de) (*.net *.split) |
| 04:08:42 | × | ario quits (~ario@159.65.220.102) (*.net *.split) |
| 04:08:42 | × | hongminhee quits (sid295@id-295.tinside.irccloud.com) (*.net *.split) |
| 04:08:42 | × | tnks quits (sid412124@id-412124.helmsley.irccloud.com) (*.net *.split) |
| 04:08:42 | × | oats_ quits (~thomas@user/oats) (*.net *.split) |
| 04:08:42 | × | lisq quits (~quassel@lis.moe) (*.net *.split) |
| 04:08:42 | × | jjhoo quits (~jahakala@user/jjhoo) (*.net *.split) |
| 04:08:42 | × | V quits (~v@ircpuzzles/2022/april/winner/V) (*.net *.split) |
| 04:08:42 | × | meooow quits (~meooow@2400:6180:100:d0::ad9:e001) (*.net *.split) |
| 04:08:42 | × | acidsys quits (~crameleon@openSUSE/member/crameleon) (*.net *.split) |
| 04:08:42 | × | liskin quits (~liskin@xmonad/liskin) (*.net *.split) |
| 04:08:42 | × | arkeet quits (arkeet@moriya.ca) (*.net *.split) |
| 04:08:42 | × | xnbya quits (~xnbya@2a01:4f8:c17:cbdd::1) (*.net *.split) |
| 04:08:42 | × | Batzy quits (~quassel@user/batzy) (*.net *.split) |
| 04:08:42 | × | whatsupdoc quits (uid509081@id-509081.hampstead.irccloud.com) (*.net *.split) |
| 04:08:42 | × | NemesisD quits (sid24071@id-24071.lymington.irccloud.com) (*.net *.split) |
| 04:08:42 | × | gnyeki quits (~gnyeki@user/gnyeki) (*.net *.split) |
| 04:08:42 | × | GoldsteinQ quits (~goldstein@goldstein.rs) (*.net *.split) |
| 04:08:42 | × | mcfrdy quits (~mcfrdy@user/mcfrdy) (*.net *.split) |
| 04:08:42 | × | ouroboros quits (~ouroboros@user/ouroboros) (*.net *.split) |
| 04:08:42 | × | eugenrh quits (~eugenrh@2a01:4f9:c011:265::1) (*.net *.split) |
| 04:08:42 | × | Typedfern quits (~Typedfern@60.red-83-37-32.dynamicip.rima-tde.net) (*.net *.split) |
| 04:08:42 | × | wrengr quits (~wrengr@201.59.83.34.bc.googleusercontent.com) (*.net *.split) |
| 04:08:42 | × | lav quits (~pi@wikipedia/maddy-from-celeste) (*.net *.split) |
| 04:08:42 | × | christiaanb quits (sid84827@id-84827.lymington.irccloud.com) (*.net *.split) |
| 04:08:42 | × | mht-wtf quits (~mht@2a03:b0c0:3:e0::1e2:c001) (*.net *.split) |
| 04:08:42 | × | degraafk quits (sid71464@id-71464.lymington.irccloud.com) (*.net *.split) |
| 04:08:42 | × | kawen quits (~quassel@static.208.191.216.95.clients.your-server.de) (*.net *.split) |
| 04:08:42 | × | Guest585 quits (~mike@user/feetwind) (*.net *.split) |
| 04:08:42 | × | welterde quits (welterde@thinkbase.srv.welterde.de) (*.net *.split) |
| 04:08:42 | × | aaronm04 quits (~user@user/aaronm04) (*.net *.split) |
| 04:08:42 | × | YoungFrog quits (~youngfrog@2a02:a03f:ca07:f900:9506:825b:e271:15c3) (*.net *.split) |
| 04:08:42 | × | Teacup quits (~teacup@user/teacup) (*.net *.split) |
| 04:08:42 | × | end\ quits (~end^@user/end/x-0094621) (*.net *.split) |
| 04:08:42 | × | jaror[m] quits (~jaror@2001:470:69fc:105::265) (*.net *.split) |
| 04:08:42 | × | Las[m]1 quits (~lasmatrix@2001:470:69fc:105::74e) (*.net *.split) |
| 04:08:42 | × | xrvdg[m] quits (~xrvdgmatr@2001:470:69fc:105::3:625a) (*.net *.split) |
| 04:08:42 | × | aerc[m] quits (~aercmatri@2001:470:69fc:105::3:67b9) (*.net *.split) |
| 04:08:42 | × | Clinton[m] quits (~clintonme@2001:470:69fc:105::2:31d4) (*.net *.split) |
| 04:08:42 | × | kosmikus[m] quits (~andresloe@2001:470:69fc:105::95d) (*.net *.split) |
| 04:08:43 | × | iphy quits (sid67735@id-67735.lymington.irccloud.com) (*.net *.split) |
| 04:08:43 | × | caasih quits (sid13241@id-13241.ilkley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | chessai quits (sid225296@id-225296.lymington.irccloud.com) (*.net *.split) |
| 04:08:43 | × | minigrim0 quits (~minigrim0@2a01:4f9:6b:3416:68ba:8dff:fe58:a5ea) (*.net *.split) |
| 04:08:43 | × | Ram-Z quits (Ram-Z@2a01:7e01::f03c:91ff:fe57:d2df) (*.net *.split) |
| 04:08:43 | × | nrr_____ quits (sid20938@id-20938.lymington.irccloud.com) (*.net *.split) |
| 04:08:43 | × | brprice quits (~brprice@user/brprice) (*.net *.split) |
| 04:08:43 | × | SethTisue quits (sid14912@id-14912.ilkley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | mrvdb quits (~mrvdb@185.92.221.186) (*.net *.split) |
| 04:08:43 | × | bbhoss quits (sid18216@id-18216.tinside.irccloud.com) (*.net *.split) |
| 04:08:43 | × | ormaaaj quits (~ormaaj@user/ormaaj) (*.net *.split) |
| 04:08:43 | × | isomorpheme[m] quits (~isomorphe@2001:470:69fc:105::3:731a) (*.net *.split) |
| 04:08:43 | × | severen[m] quits (~severenmt@2001:470:69fc:105::2:9932) (*.net *.split) |
| 04:08:43 | × | NiKaN quits (sid385034@id-385034.helmsley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | SrPx quits (sid108780@id-108780.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:43 | × | Pent_ quits (sid313808@id-313808.lymington.irccloud.com) (*.net *.split) |
| 04:08:43 | × | edmundnoble_ quits (sid229620@id-229620.helmsley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | yandere quits (sid467876@id-467876.ilkley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | acertain_ quits (sid470584@id-470584.hampstead.irccloud.com) (*.net *.split) |
| 04:08:43 | × | ysh____ quits (sid6017@id-6017.ilkley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | dfordvm quits (~dfordivam@160.16.87.223.v6.sakura.ne.jp) (*.net *.split) |
| 04:08:43 | × | ners[m] quits (~nersnixos@2001:470:69fc:105::3:648b) (*.net *.split) |
| 04:08:43 | × | ozkutuk[m] quits (~ozkutuk@2001:470:69fc:105::2:9af8) (*.net *.split) |
| 04:08:43 | × | maerwald[m] quits (~maerwaldm@2001:470:69fc:105::1ee) (*.net *.split) |
| 04:08:43 | × | nicm[m] quits (~nicmollel@2001:470:69fc:105::1:feeb) (*.net *.split) |
| 04:08:43 | × | zfnmxt quits (~zfnmxt@user/zfnmxt) (*.net *.split) |
| 04:08:43 | × | Hafydd quits (~Hafydd@user/hafydd) (*.net *.split) |
| 04:08:43 | × | Christoph[m] quits (~hpotsirhc@2001:470:69fc:105::2ff8) (*.net *.split) |
| 04:08:43 | × | alexfmpe[m] quits (~alexfmpem@2001:470:69fc:105::38ba) (*.net *.split) |
| 04:08:43 | × | MangoIV[m] quits (~mangoivma@2001:470:69fc:105::2:8417) (*.net *.split) |
| 04:08:43 | × | nomagno quits (~nomagno@2001:470:69fc:105::c1f0) (*.net *.split) |
| 04:08:43 | × | fendor[m] quits (~fendormat@2001:470:69fc:105::fcbd) (*.net *.split) |
| 04:08:43 | × | kadoban quits (~kadoban@user/kadoban) (*.net *.split) |
| 04:08:43 | × | ocharles[m] quits (~ocharlesm@2001:470:69fc:105::3:5899) (*.net *.split) |
| 04:08:43 | × | zebrag[m] quits (~inkbottle@2001:470:69fc:105::2ff5) (*.net *.split) |
| 04:08:43 | × | jmcantrell quits (~jmcantrel@user/jmcantrell) (*.net *.split) |
| 04:08:43 | × | sm quits (~sm@plaintextaccounting/sm) (*.net *.split) |
| 04:08:43 | × | Matthew|m quits (~arathorn@2001:470:69fc:105::1f) (*.net *.split) |
| 04:08:43 | × | sphynx quits (~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) (*.net *.split) |
| 04:08:43 | × | tinwood quits (~tinwood@canonical/tinwood) (*.net *.split) |
| 04:08:43 | × | SanchayanMaity quits (sid478177@id-478177.hampstead.irccloud.com) (*.net *.split) |
| 04:08:43 | × | gaze___ quits (sid387101@id-387101.helmsley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | davetapley quits (sid666@id-666.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:43 | × | vgtw_ quits (~vgtw@user/vgtw) (*.net *.split) |
| 04:08:43 | × | ddellacosta quits (~ddellacos@146.70.166.166) (*.net *.split) |
| 04:08:43 | × | Vq quits (~vq@90-227-195-9-no77.tbcn.telia.com) (*.net *.split) |
| 04:08:43 | × | totbwf quits (sid402332@id-402332.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:43 | × | tomsmeding quits (~tomsmedin@static.21.109.88.23.clients.your-server.de) (*.net *.split) |
| 04:08:43 | × | andreas303 quits (andreas303@is.drunk.and.ready-to.party) (*.net *.split) |
| 04:08:43 | × | amir quits (sid22336@user/amir) (*.net *.split) |
| 04:08:43 | × | ham quits (~ham@user/ham) (*.net *.split) |
| 04:08:43 | × | jil quits (~user@vps-15050500.vps.ovh.net) (*.net *.split) |
| 04:08:43 | × | bliminse quits (~bliminse@user/bliminse) (*.net *.split) |
| 04:08:43 | × | pepeiborra quits (sid443799@id-443799.ilkley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | tessier quits (~treed@ec2-184-72-149-67.compute-1.amazonaws.com) (*.net *.split) |
| 04:08:43 | × | pie_ quits (~pie_bnc@user/pie/x-2818909) (*.net *.split) |
| 04:08:43 | × | marinelli[m] quits (~marinelli@2001:470:69fc:105::2d8) (*.net *.split) |
| 04:08:43 | × | akadude[m] quits (~akadudema@2001:470:69fc:105::2:5bf7) (*.net *.split) |
| 04:08:43 | × | jade[m]1 quits (~jade256th@2001:470:69fc:105::3:58df) (*.net *.split) |
| 04:08:43 | × | romes[m] quits (~romesmatr@2001:470:69fc:105::2:1660) (*.net *.split) |
| 04:08:43 | × | elevenkb quits (~elevenkb@2001:470:69fc:105::2:cb89) (*.net *.split) |
| 04:08:43 | × | geekosaur[m] quits (~geekosaur@xmonad/geekosaur) (*.net *.split) |
| 04:08:43 | × | JensPetersen[m] quits (~juhp@2001:470:69fc:105::6e9) (*.net *.split) |
| 04:08:43 | × | SeanKing[m] quits (~seankingm@2001:470:69fc:105::cf9c) (*.net *.split) |
| 04:08:43 | × | bgamari[m] quits (~bgamari@2001:470:69fc:105::c7b9) (*.net *.split) |
| 04:08:43 | × | smichel17[m] quits (~smichel17@2001:470:69fc:105::2d32) (*.net *.split) |
| 04:08:43 | × | peddie quits (~peddie@2001:470:69fc:105::25d) (*.net *.split) |
| 04:08:43 | × | jean-paul[m] quits (~jean-paul@2001:470:69fc:105::d1ab) (*.net *.split) |
| 04:08:43 | × | Deide quits (~deide@user/deide) (*.net *.split) |
| 04:08:43 | × | jorwas[m] quits (~jorwasmat@2001:470:69fc:105::3:60e7) (*.net *.split) |
| 04:08:43 | × | ManofLetters[m] quits (~manoflett@2001:470:69fc:105::3be) (*.net *.split) |
| 04:08:43 | × | riatre quits (~quassel@2001:310:6000:f::5198:1) (*.net *.split) |
| 04:08:43 | × | sefidel quits (~sefidel@user/sefidel) (*.net *.split) |
| 04:08:43 | × | nisstyre quits (wes@user/nisstyre) (*.net *.split) |
| 04:08:43 | × | df quits (~ben@justworks.xyz) (*.net *.split) |
| 04:08:43 | × | hook54321 quits (sid149355@user/hook54321) (*.net *.split) |
| 04:08:43 | × | lieven quits (~mal@ns2.wyrd.be) (*.net *.split) |
| 04:08:43 | × | chymera quits (~chymera@ns1000526.ip-51-81-46.us) (*.net *.split) |
| 04:08:43 | × | wallymathieu quits (sid533252@id-533252.uxbridge.irccloud.com) (*.net *.split) |
| 04:08:43 | × | grfn quits (sid449115@id-449115.helmsley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | scav quits (sid309693@user/scav) (*.net *.split) |
| 04:08:43 | × | pjlsergeant__ quits (sid143467@id-143467.hampstead.irccloud.com) (*.net *.split) |
| 04:08:43 | × | cbarrett quits (sid192934@id-192934.helmsley.irccloud.com) (*.net *.split) |
| 04:08:43 | × | orcus quits (~orcus@user/brprice) (*.net *.split) |
| 04:08:43 | × | dispater quits (~dispater@user/brprice) (*.net *.split) |
| 04:08:43 | × | yvan-sraka quits (sid419690@id-419690.lymington.irccloud.com) (*.net *.split) |
| 04:08:43 | × | jocke-l quits (jocke-l@a.x0.is) (*.net *.split) |
| 04:08:43 | × | dyniec quits (~dyniec@mail.dybiec.info) (*.net *.split) |
| 04:08:43 | × | sweater quits (~sweater@206.81.18.26) (*.net *.split) |
| 04:08:43 | × | ChanServ quits (ChanServ@services.libera.chat) (*.net *.split) |
| 04:09:01 | → | bastelfreak joins (bastelfrea@libera/staff/VoxPupuli.bastelfreak) |
| 04:09:01 | → | marienz joins (~marienz@libera/staff/marienz) |
| 04:09:01 | → | landonf joins (landonf@mac68k.info) |
| 04:09:01 | → | turlando joins (~turlando@user/turlando) |
| 04:09:01 | → | flukiluke joins (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) |
| 04:09:01 | → | lbseale joins (~quassel@user/ep1ctetus) |
| 04:09:01 | → | manwithluck joins (~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) |
| 04:09:01 | → | hexeme joins (~hexeme@user/hexeme) |
| 04:09:01 | → | energizer joins (~energizer@user/energizer) |
| 04:09:01 | → | Yumemi joins (~Yumemi@chamoin.net) |
| 04:09:01 | → | RMSBach joins (~guygastin@137.184.131.156) |
| 04:09:01 | → | m5zs7k joins (aquares@web10.mydevil.net) |
| 04:09:01 | → | polux joins (~polux@51-15-169-172.rev.poneytelecom.eu) |
| 04:09:01 | → | caubert joins (~caubert@user/caubert) |
| 04:09:01 | → | zzz joins (~z@user/zero) |
| 04:09:01 | → | tcard joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 04:09:01 | → | aristid joins (sid1599@id-1599.uxbridge.irccloud.com) |
| 04:09:01 | → | codedmart joins (codedmart@2600:3c01::f03c:92ff:fefe:8511) |
| 04:09:01 | → | taktoa[c] joins (sid282096@id-282096.tinside.irccloud.com) |
| 04:09:01 | → | ell joins (~ellie@user/ellie) |
| 04:09:01 | → | tabemann joins (~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) |
| 04:09:01 | → | T_S__ joins (sid501726@id-501726.uxbridge.irccloud.com) |
| 04:09:01 | → | agander_m joins (sid407952@id-407952.tinside.irccloud.com) |
| 04:09:01 | → | nshepperd2 joins (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) |
| 04:09:01 | → | bjobjo joins (~bjobjo@user/bjobjo) |
| 04:09:01 | → | cyphase joins (~cyphase@user/cyphase) |
| 04:09:01 | → | hamishmack joins (sid389057@id-389057.hampstead.irccloud.com) |
| 04:09:01 | → | lally joins (sid388228@id-388228.uxbridge.irccloud.com) |
| 04:09:01 | → | jmct joins (sid160793@id-160793.tinside.irccloud.com) |
| 04:09:01 | → | buhman_ joins (sid411355@id-411355.tinside.irccloud.com) |
| 04:09:01 | → | YuutaW joins (~YuutaW@mail.yuuta.moe) |
| 04:09:01 | → | Jon joins (jon@dow.land) |
| 04:09:01 | → | jsomedon joins (uid606872@id-606872.hampstead.irccloud.com) |
| 04:09:01 | → | absence joins (torgeihe@hildring.pvv.ntnu.no) |
| 04:09:01 | → | wz1000 joins (~zubin@static.11.113.47.78.clients.your-server.de) |
| 04:09:01 | → | noctux joins (~noctux@user/noctux) |
| 04:09:01 | → | [exa] joins (~exa@user/exa/x-3587197) |
| 04:09:01 | → | NinjaTrappeur joins (~ninja@user/ninjatrappeur) |
| 04:09:01 | → | beaky joins (~beaky@2a03:b0c0:0:1010::1e:a001) |
| 04:09:01 | → | fiddlerwoaroof_ joins (~fiddlerwo@user/fiddlerwoaroof) |
| 04:09:01 | → | mtjm joins (~mutantmel@2604:a880:2:d0::208b:d001) |
| 04:09:01 | → | dtman34 joins (~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) |
| 04:09:01 | → | theodorc joins (theodorc@cassarossa.samfundet.no) |
| 04:09:01 | → | kawzeg joins (kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) |
| 04:09:01 | → | mxs joins (~mxs@user/mxs) |
| 04:09:01 | → | pat__ joins (~pat67@pool-100-36-172-241.washdc.fios.verizon.net) |
| 04:09:01 | → | aweinstock joins (~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) |
| 04:09:01 | → | gry joins (quasselcor@botters/gry) |
| 04:09:01 | → | Axman6 joins (~Axman6@user/axman6) |
| 04:09:01 | → | rubin55 joins (sid175221@2a03:5180:f:4::2:ac75) |
| 04:09:01 | → | hongminhee joins (sid295@id-295.tinside.irccloud.com) |
| 04:09:01 | → | tnks joins (sid412124@id-412124.helmsley.irccloud.com) |
| 04:09:01 | → | oats_ joins (~thomas@user/oats) |
| 04:09:01 | → | xsarnik joins (xsarnik@lounge.fi.muni.cz) |
| 04:09:01 | → | lisq joins (~quassel@lis.moe) |
| 04:09:01 | → | jjhoo joins (~jahakala@user/jjhoo) |
| 04:09:01 | → | remexre joins (~remexre@user/remexre) |
| 04:09:01 | → | meejah joins (~meejah@rutas.meejah.ca) |
| 04:09:01 | → | V joins (~v@ircpuzzles/2022/april/winner/V) |
| 04:09:01 | → | meooow joins (~meooow@2400:6180:100:d0::ad9:e001) |
| 04:09:01 | → | acidsys joins (~crameleon@openSUSE/member/crameleon) |
| 04:09:01 | → | liskin joins (~liskin@xmonad/liskin) |
| 04:09:01 | → | arkeet joins (arkeet@moriya.ca) |
| 04:09:01 | → | xnbya joins (~xnbya@2a01:4f8:c17:cbdd::1) |
| 04:09:01 | → | dontdieych joins (~alarm@132.226.169.184) |
| 04:09:01 | → | tv joins (~tv@user/tv) |
| 04:09:01 | → | Batzy joins (~quassel@user/batzy) |
| 04:09:01 | → | JimL joins (~quassel@89.162.16.26) |
| 04:09:01 | → | migas joins (~migas@astra4961.startdedicated.net) |
| 04:09:01 | → | TheCoffeMaker joins (~TheCoffeM@user/thecoffemaker) |
| 04:09:01 | → | whatsupdoc joins (uid509081@id-509081.hampstead.irccloud.com) |
| 04:09:01 | → | nckx joins (~nckx@tobias.gr) |
| 04:09:01 | → | NemesisD joins (sid24071@id-24071.lymington.irccloud.com) |
| 04:09:01 | → | tokie joins (~tokie@tokie.net) |
| 04:09:01 | → | sudden joins (~cat@user/sudden) |
| 04:09:01 | → | gnyeki joins (~gnyeki@user/gnyeki) |
| 04:09:01 | → | GoldsteinQ joins (~goldstein@goldstein.rs) |
| 04:09:01 | → | mcfrdy joins (~mcfrdy@user/mcfrdy) |
| 04:09:01 | → | ouroboros joins (~ouroboros@user/ouroboros) |
| 04:09:01 | → | eugenrh joins (~eugenrh@2a01:4f9:c011:265::1) |
| 04:09:01 | → | Typedfern joins (~Typedfern@60.red-83-37-32.dynamicip.rima-tde.net) |
| 04:09:01 | → | noteness- joins (~noteness@user/noteness) |
| 04:09:01 | → | wrengr joins (~wrengr@201.59.83.34.bc.googleusercontent.com) |
| 04:09:01 | → | lav joins (~pi@wikipedia/maddy-from-celeste) |
| 04:09:01 | → | christiaanb joins (sid84827@id-84827.lymington.irccloud.com) |
| 04:09:01 | → | andjjj23 joins (~irc@107.170.228.47) |
| 04:09:01 | → | peutri joins (~peutri@bobo.desast.re) |
| 04:09:01 | → | asm joins (~alexander@user/asm) |
| 04:09:01 | → | mht-wtf joins (~mht@2a03:b0c0:3:e0::1e2:c001) |
| 04:09:01 | → | degraafk joins (sid71464@id-71464.lymington.irccloud.com) |
| 04:09:01 | → | kawen joins (~quassel@static.208.191.216.95.clients.your-server.de) |
| 04:09:01 | → | Guest585 joins (~mike@user/feetwind) |
| 04:09:01 | → | vjoki joins (~vjoki@2a00:d880:3:1::fea1:9ae) |
| 04:09:01 | → | welterde joins (welterde@thinkbase.srv.welterde.de) |
| 04:09:01 | → | aaronm04 joins (~user@user/aaronm04) |
| 04:09:01 | → | caasih joins (sid13241@id-13241.ilkley.irccloud.com) |
| 04:09:01 | → | iphy joins (sid67735@id-67735.lymington.irccloud.com) |
| 04:09:01 | → | chessai joins (sid225296@id-225296.lymington.irccloud.com) |
| 04:09:01 | → | minigrim0 joins (~minigrim0@2a01:4f9:6b:3416:68ba:8dff:fe58:a5ea) |
| 04:09:01 | → | edwtjo joins (~edwtjo@fsf/member/edwtjo) |
| 04:09:01 | → | brprice joins (~brprice@user/brprice) |
| 04:09:01 | → | riatre joins (~quassel@2001:310:6000:f::5198:1) |
| 04:09:01 | → | sphynx joins (~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) |
| 04:09:01 | → | mniip joins (mniip@libera/staff/mniip) |
| 04:09:01 | → | AWizzArd joins (~code@user/awizzard) |
| 04:09:01 | → | cjay joins (cjay@nerdbox.nerd2nerd.org) |
| 04:09:01 | → | tinwood joins (~tinwood@canonical/tinwood) |
| 04:09:01 | → | it_ joins (~quassel@v2202212189510211193.supersrv.de) |
| 04:09:01 | → | sefidel joins (~sefidel@user/sefidel) |
| 04:09:01 | → | nisstyre joins (wes@user/nisstyre) |
| 04:09:01 | → | df joins (~ben@justworks.xyz) |
| 04:09:01 | → | Ram-Z joins (Ram-Z@2a01:7e01::f03c:91ff:fe57:d2df) |
| 04:09:01 | → | litharge joins (litharge@libera/bot/litharge) |
| 04:09:01 | → | hook54321 joins (sid149355@user/hook54321) |
| 04:09:01 | → | nrr_____ joins (sid20938@id-20938.lymington.irccloud.com) |
| 04:09:01 | → | bbhoss joins (sid18216@id-18216.tinside.irccloud.com) |
| 04:09:01 | → | mrvdb joins (~mrvdb@185.92.221.186) |
| 04:09:01 | → | SethTisue joins (sid14912@id-14912.ilkley.irccloud.com) |
| 04:09:01 | → | davetapley joins (sid666@id-666.uxbridge.irccloud.com) |
| 04:09:01 | → | gaze___ joins (sid387101@id-387101.helmsley.irccloud.com) |
| 04:09:01 | → | SanchayanMaity joins (sid478177@id-478177.hampstead.irccloud.com) |
| 04:09:01 | → | sweater joins (~sweater@206.81.18.26) |
| 04:09:01 | → | dyniec joins (~dyniec@mail.dybiec.info) |
| 04:09:01 | → | jocke-l joins (jocke-l@a.x0.is) |
| 04:09:01 | → | yvan-sraka joins (sid419690@id-419690.lymington.irccloud.com) |
| 04:09:01 | → | dispater joins (~dispater@user/brprice) |
| 04:09:01 | → | orcus joins (~orcus@user/brprice) |
| 04:09:01 | → | cbarrett joins (sid192934@id-192934.helmsley.irccloud.com) |
| 04:09:01 | → | pjlsergeant__ joins (sid143467@id-143467.hampstead.irccloud.com) |
| 04:09:01 | → | grfn joins (sid449115@id-449115.helmsley.irccloud.com) |
| 04:09:01 | → | scav joins (sid309693@user/scav) |
| 04:09:01 | → | wallymathieu joins (sid533252@id-533252.uxbridge.irccloud.com) |
| 04:09:01 | → | chymera joins (~chymera@ns1000526.ip-51-81-46.us) |
| 04:09:01 | → | lieven joins (~mal@ns2.wyrd.be) |
| 04:09:01 | → | ChanServ joins (ChanServ@services.libera.chat) |
| 04:09:01 | → | h2t joins (~h2t@user/h2t) |
| 04:09:01 | → | nurupo joins (~nurupo.ga@user/nurupo) |
| 04:09:01 | → | ario joins (~ario@159.65.220.102) |
| 04:09:01 | → | oljenkins joins (~philipp@p5dec4bb3.dip0.t-ipconnect.de) |
| 04:09:01 | → | lyxia joins (~lyxia@poisson.chat) |
| 04:09:01 | → | niko joins (niko@libera/staff/niko) |
| 04:09:01 | sodium.libera.chat | sets mode +o ChanServ |
| 04:09:01 | → | laman3 joins (~laman@rego.ai) |
| 04:09:01 | → | bcoppens_ joins (~bartcopp@vpn2.bartcoppens.be) |
| 04:09:01 | → | kosmikus_ joins (~kosmikus@nullzig.kosmikus.org) |
| 04:09:01 | → | acro joins (~acro@user/acro) |
| 04:09:01 | → | xstill_0 joins (xstill@fimu/xstill) |
| 04:09:01 | → | bramhaag joins (~bramhaag@134.195.121.39) |
| 04:09:01 | → | cawfee joins (~root@2406:3003:2077:2758::babe) |
| 04:09:01 | → | megaTherion joins (~therion@unix.io) |
| 04:09:01 | → | ridcully joins (~ridcully@p57b52f2c.dip0.t-ipconnect.de) |
| 04:09:01 | → | lightandlight joins (sid135476@id-135476.helmsley.irccloud.com) |
| 04:09:01 | → | Clint joins (~Clint@user/clint) |
| 04:09:01 | → | Benzi-Junior joins (~BenziJuni@88-149-64-112.du.xdsl.is) |
| 04:09:01 | → | piele joins (~piele@tbonesteak.creativeserver.net) |
| 04:09:01 | → | JSharp joins (sid4580@id-4580.lymington.irccloud.com) |
| 04:09:01 | → | heartburn joins (~gass@2a00:d880:3:1::b1e4:b241) |
| 04:09:01 | → | bionade24 joins (~bionade24@2a03:4000:33:45b::1) |
| 04:09:01 | → | anpad joins (~pandeyan@user/anpad) |
| 04:09:01 | → | adamCS joins (~adamCS@ec2-34-207-160-255.compute-1.amazonaws.com) |
| 04:09:01 | → | glider joins (~glider@user/glider) |
| 04:09:01 | → | anderson joins (~anderson@user/anderson) |
| 04:09:01 | → | heath2 joins (~heath@user/heath) |
| 04:09:01 | → | Adran joins (~adran@botters/adran) |
| 04:09:01 | → | Vajb joins (~Vajb@2001:999:484:a37d:e618:9886:4843:f5d8) |
| 04:09:01 | → | ames joins (~amelia@offtopia/offtopian/amelia) |
| 04:09:01 | → | bgamari joins (~bgamari@64.223.233.113) |
| 04:09:01 | → | hsw joins (~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) |
| 04:09:01 | → | hays joins (rootvegeta@fsf/member/hays) |
| 04:09:01 | → | adanwan joins (~adanwan@gateway/tor-sasl/adanwan) |
| 04:09:01 | → | shachaf joins (~shachaf@user/shachaf) |
| 04:09:01 | → | drdo joins (~drdo@bl8-153-185.dsl.telepac.pt) |
| 04:09:01 | → | czy joins (~user@host-140-26.ilcub310.champaign.il.us.clients.pavlovmedia.net) |
| 04:09:01 | → | Nikopol joins (nikopol@user/astrorigin) |
| 04:09:01 | → | juri_ joins (~juri@84-19-175-187.pool.ovpn.com) |
| 04:09:01 | → | kraftwerk28 joins (~kraftwerk@178.62.210.83) |
| 04:09:01 | → | koolazer joins (~koo@user/koolazer) |
| 04:09:01 | → | Everything joins (~Everythin@static.208.206.21.65.clients.your-server.de) |
| 04:09:01 | → | earthy joins (~arthurvl@2a02-a469-f5e2-1-83d2-ca43-57a2-dc81.fixed6.kpn.net) |
| 04:09:01 | → | hexology joins (~hexology@user/hexology) |
| 04:09:01 | → | MangoIV[m] joins (~mangoivma@2001:470:69fc:105::2:8417) |
| 04:09:01 | → | Hafydd joins (~Hafydd@user/hafydd) |
| 04:09:01 | → | peddie joins (~peddie@2001:470:69fc:105::25d) |
| 04:09:01 | → | jean-paul[m] joins (~jean-paul@2001:470:69fc:105::d1ab) |
| 04:09:01 | → | fgaz joins (~fgaz@2001:470:69fc:105::842) |
| 04:09:01 | → | Null_A[m] joins (~jasonjckn@2001:470:69fc:105::bb85) |
| 04:09:01 | → | ericson2314 joins (~ericson23@2001:470:69fc:105::70c) |
| 04:09:01 | → | ocharles[m] joins (~ocharlesm@2001:470:69fc:105::3:5899) |
| 04:09:01 | → | alanz joins (~alanz@2001:470:69fc:105::2:49a6) |
| 04:09:01 | → | maralorn joins (~maralorn@2001:470:69fc:105::251) |
| 04:09:01 | → | sm joins (~sm@plaintextaccounting/sm) |
| 04:09:01 | → | nomagno joins (~nomagno@2001:470:69fc:105::c1f0) |
| 04:09:01 | → | Christoph[m] joins (~hpotsirhc@2001:470:69fc:105::2ff8) |
| 04:09:01 | → | Deide joins (~deide@user/deide) |
| 04:09:01 | → | smichel17[m] joins (~smichel17@2001:470:69fc:105::2d32) |
| 04:09:01 | → | ManofLetters[m] joins (~manoflett@2001:470:69fc:105::3be) |
| 04:09:01 | → | fendor[m] joins (~fendormat@2001:470:69fc:105::fcbd) |
| 04:09:01 | → | jmcantrell joins (~jmcantrel@user/jmcantrell) |
| 04:09:01 | → | JensPetersen[m] joins (~juhp@2001:470:69fc:105::6e9) |
| 04:09:01 | → | jorwas[m] joins (~jorwasmat@2001:470:69fc:105::3:60e7) |
| 04:09:01 | → | Guillaum[m] joins (~guiboumat@2001:470:69fc:105::1:72ac) |
| 04:09:01 | → | alexfmpe[m] joins (~alexfmpem@2001:470:69fc:105::38ba) |
| 04:09:01 | → | chreekat joins (~chreekat@2001:470:69fc:105::16b5) |
| 04:09:01 | → | Matthew|m joins (~arathorn@2001:470:69fc:105::1f) |
| 04:09:01 | → | elevenkb joins (~elevenkb@2001:470:69fc:105::2:cb89) |
| 04:09:01 | → | VarikValefor[m] joins (~varikvale@2001:470:69fc:105::a5d) |
| 04:09:01 | → | bgamari[m] joins (~bgamari@2001:470:69fc:105::c7b9) |
| 04:09:01 | → | supersven[m] joins (~supersven@2001:470:69fc:105::31b6) |
| 04:09:01 | → | zebrag[m] joins (~inkbottle@2001:470:69fc:105::2ff5) |
| 04:09:01 | → | paulapatience joins (~paulapati@2001:470:69fc:105::16a4) |
| 04:09:01 | → | maerwald[m] joins (~maerwaldm@2001:470:69fc:105::1ee) |
| 04:09:01 | → | shapr[m] joins (~shaprcofr@2001:470:69fc:105::2:d107) |
| 04:09:01 | → | elvishjerricco joins (~elvishjer@2001:470:69fc:105::6172) |
| 04:09:01 | → | hsiktas[m] joins (~hsiktasm]@2001:470:69fc:105::30d4) |
| 04:09:01 | → | kosmikus[m] joins (~andresloe@2001:470:69fc:105::95d) |
| 04:09:01 | → | ozkutuk[m] joins (~ozkutuk@2001:470:69fc:105::2:9af8) |
| 04:09:01 | → | geekosaur[m] joins (~geekosaur@xmonad/geekosaur) |
| 04:09:01 | → | joyfulmantis[m] joins (~joyfulman@2001:470:69fc:105::3:400a) |
| 04:09:01 | → | Artem[m] joins (~artemtype@2001:470:69fc:105::75b) |
| 04:09:01 | → | zfnmxt joins (~zfnmxt@user/zfnmxt) |
| 04:09:01 | → | nicm[m] joins (~nicmollel@2001:470:69fc:105::1:feeb) |
| 04:09:01 | → | kadoban joins (~kadoban@user/kadoban) |
| 04:09:01 | → | SeanKing[m] joins (~seankingm@2001:470:69fc:105::cf9c) |
| 04:09:01 | → | tbidne[m] joins (~tbidnemat@2001:470:69fc:105::3:6d42) |
| 04:09:01 | → | Clinton[m] joins (~clintonme@2001:470:69fc:105::2:31d4) |
| 04:09:01 | → | m1-s[m] joins (~m1-smatri@2001:470:69fc:105::2:39da) |
| 04:09:01 | → | aaronv joins (~aaronv@user/aaronv) |
| 04:09:01 | → | kleenestar[m] joins (~kleenesta@2001:470:69fc:105::3:6d78) |
| 04:09:01 | → | aerc[m] joins (~aercmatri@2001:470:69fc:105::3:67b9) |
| 04:09:01 | → | oak- joins (~oak-@2001:470:69fc:105::fcd) |
| 04:09:01 | → | Daniel[m]1 joins (~danieltan@2001:470:69fc:105::3:6e5e) |
| 04:09:01 | → | ners[m] joins (~nersnixos@2001:470:69fc:105::3:648b) |
| 04:09:01 | → | somerandomnick[m joins (~somerando@2001:470:69fc:105::3:4f2e) |
| 04:09:01 | → | lilpotent_jlemen joins (~lilpotent@2001:470:69fc:105::3:6eb6) |
| 04:09:01 | → | romes[m] joins (~romesmatr@2001:470:69fc:105::2:1660) |
| 04:09:01 | → | jade[m]1 joins (~jade256th@2001:470:69fc:105::3:58df) |
| 04:09:01 | → | akadude[m] joins (~akadudema@2001:470:69fc:105::2:5bf7) |
| 04:09:01 | → | marinelli[m] joins (~marinelli@2001:470:69fc:105::2d8) |
| 04:09:01 | → | xrvdg[m] joins (~xrvdgmatr@2001:470:69fc:105::3:625a) |
| 04:09:01 | → | teo joins (~teo@user/teo) |
| 04:09:01 | → | eldritchcookie[m joins (~eldritchc@2001:470:69fc:105::2:d53c) |
| 04:09:01 | → | hellwolf[m] joins (~hellwolfm@2001:470:69fc:105::3:6a4) |
| 04:09:01 | → | Las[m]1 joins (~lasmatrix@2001:470:69fc:105::74e) |
| 04:09:01 | → | Ross[m] joins (~zhichuche@2001:470:69fc:105::3:584b) |
| 04:09:01 | → | DustinStiles[m] joins (~duwstiles@2001:470:69fc:105::3:699b) |
| 04:09:01 | → | polykernel[m] joins (~polykerne@user/polykernel) |
| 04:09:01 | → | nyc joins (~nyc@user/nyc) |
| 04:09:01 | → | pie_ joins (~pie_bnc@user/pie/x-2818909) |
| 04:09:01 | → | emergence joins (emergence@2607:5300:60:5910:dcad:beff:feef:5bc) |
| 04:09:01 | → | carbolymer joins (~carbolyme@dropacid.net) |
| 04:09:01 | → | joeyh joins (joeyh@2600:3c03::f03c:91ff:fe73:b0d2) |
| 04:09:01 | → | Buliarous joins (~gypsydang@46.232.210.139) |
| 04:09:01 | → | cross joins (~cross@spitfire.i.gajendra.net) |
| 04:09:01 | → | hnOsmium0001 joins (~hnosm@user/hnOsmium0001) |
| 04:09:01 | → | mrmr joins (~mrmr@user/mrmr) |
| 04:09:01 | → | ystael joins (~ystael@user/ystael) |
| 04:09:01 | → | barrucadu joins (~barrucadu@carcosa.barrucadu.co.uk) |
| 04:09:01 | → | tureba joins (~tureba@tureba.org) |
| 04:09:01 | → | justache joins (~justache@user/justache) |
| 04:09:01 | → | adziahel joins (~adziahelm@2001:470:69fc:105::b4d) |
| 04:09:01 | → | Franciman joins (~Franciman@mx1.fracta.dev) |
| 04:09:01 | → | haskl joins (~haskl@user/haskl) |
| 04:09:02 | → | tessier joins (~treed@ec2-184-72-149-67.compute-1.amazonaws.com) |
| 04:09:02 | → | Maxdamantus joins (~Maxdamant@user/maxdamantus) |
| 04:09:02 | → | pierrot joins (~pi@user/pierrot) |
| 04:09:02 | → | Putonlalla joins (~Putonlall@it-cyan.it.jyu.fi) |
| 04:09:02 | → | jludwig joins (~justin@li657-110.members.linode.com) |
| 04:09:02 | → | gabiruh joins (~gabiruh@vps19177.publiccloud.com.br) |
| 04:09:02 | → | lawt joins (~lawt@129.159.36.129) |
| 04:09:02 | → | finsternis joins (~X@23.226.237.192) |
| 04:09:02 | → | fbytez joins (~uid@user/fbytez) |
| 04:09:02 | → | Nosrep joins (~Nosrep@user/nosrep) |
| 04:09:02 | → | Sciencentistguy joins (~sciencent@hacksoc/ordinary-member) |
| 04:09:02 | → | nek0 joins (~nek0@2a01:4f8:222:2b41::12) |
| 04:09:02 | → | sajith joins (~sajith@user/sajith) |
| 04:09:02 | → | krjst joins (~krjst@2604:a880:800:c1::16b:8001) |
| 04:09:02 | → | mjacob joins (~mjacob@adrastea.uberspace.de) |
| 04:09:02 | → | madnight joins (~madnight@static.59.103.201.195.clients.your-server.de) |
| 04:09:02 | → | forell joins (~forell@user/forell) |
| 04:09:02 | → | ggranberry joins (sid267884@id-267884.uxbridge.irccloud.com) |
| 04:09:02 | → | kronicma1 joins (user40967@neotame.csclub.uwaterloo.ca) |
| 04:09:02 | → | Momentum joins (momentum@tilde.team) |
| 04:09:02 | → | dextaa joins (~DV@user/dextaa) |
| 04:09:02 | → | CalculusCats joins (NyaaTheKit@user/calculuscat) |
| 04:09:02 | → | chiselfuse joins (~chiselfus@user/chiselfuse) |
| 04:09:02 | → | _d0t joins (~{-d0t-}@user/-d0t-/x-7915216) |
| 04:09:02 | → | sclv joins (sid39734@haskell/developer/sclv) |
| 04:09:02 | → | pepeiborra joins (sid443799@id-443799.ilkley.irccloud.com) |
| 04:09:02 | → | hexagoxel joins (~hexagoxel@2a01:4f8:c0c:e::2) |
| 04:09:02 | → | mhatta joins (~mhatta@www21123ui.sakura.ne.jp) |
| 04:09:02 | → | hackyhacker joins (~hackyhack@2a05:f480:1400:24b2:5400:4ff:fe76:a8f3) |
| 04:09:02 | → | Unode joins (~Unode@fg-ext-220.embl.de) |
| 04:09:02 | → | incertia joins (~incertia@209.122.71.127) |
| 04:09:02 | → | loonycyborg joins (loonycybor@wesnoth/developer/loonycyborg) |
| 04:09:02 | → | Profpatsch joins (~Profpatsc@static.88-198-193-255.clients.your-server.de) |
| 04:09:02 | → | sa joins (sid1055@id-1055.tinside.irccloud.com) |
| 04:09:02 | → | remedan joins (~remedan@ip-94-112-0-18.bb.vodafone.cz) |
| 04:09:02 | → | ddrone[m] joins (~ddronemat@2001:470:69fc:105::3:70d5) |
| 04:09:02 | → | dexter1 joins (dexter@2a01:7e00::f03c:91ff:fe86:59ec) |
| 04:09:02 | → | immae joins (~immae@2a01:4f8:141:53e7::) |
| 04:09:02 | → | micro joins (~micro@user/micro) |
| 04:09:02 | → | kristjansson_ joins (sid126207@id-126207.tinside.irccloud.com) |
| 04:09:02 | → | systemfault joins (sid267009@id-267009.uxbridge.irccloud.com) |
| 04:09:02 | → | gmc joins (sid58314@id-58314.ilkley.irccloud.com) |
| 04:09:02 | → | dragestil joins (~znc@user/dragestil) |
| 04:09:02 | → | ProofTechnique_ joins (sid79547@id-79547.ilkley.irccloud.com) |
| 04:09:02 | → | ringo__ joins (~ringo@157.230.117.128) |
| 04:09:02 | → | end^ joins (~end^@user/end/x-0094621) |
| 04:09:02 | → | integral joins (sid296274@user/integral) |
| 04:09:02 | → | AkechiShiro joins (~licht@user/akechishiro) |
| 04:09:02 | → | echoreply joins (~echoreply@45.32.163.16) |
| 04:09:02 | → | glowcoil joins (sid3405@id-3405.tinside.irccloud.com) |
| 04:09:02 | → | end\ joins (~end^@user/end/x-0094621) |
| 04:09:02 | → | davl joins (~davl@207.154.228.18) |
| 04:09:02 | → | tritlo_ joins (sid58727@id-58727.hampstead.irccloud.com) |
| 04:09:02 | → | b20n joins (sid115913@id-115913.uxbridge.irccloud.com) |
| 04:09:02 | → | dsal joins (sid13060@id-13060.lymington.irccloud.com) |
| 04:09:02 | → | quintasan joins (~quassel@quintasan.pl) |
| 04:09:02 | → | ralu1 joins (~ralu@static.211.245.203.116.clients.your-server.de) |
| 04:09:02 | → | idnar joins (sid12240@debian/mithrandi) |
| 04:09:02 | → | Cheery joins (~cheery@server-239-7.tentacle.cloud) |
| 04:09:02 | → | mzg joins (mzg@lazy.unconscious.biz) |
| 04:09:02 | → | CAT_S joins (apic@brezn3.muc.ccc.de) |
| 04:09:02 | → | Logio joins (em@kapsi.fi) |
| 04:09:02 | → | mon_aaraj joins (~montchncs@2001:470:69fc:105::8e6b) |
| 04:09:02 | → | paddymahoney joins (~paddymaho@cpe883d24bcf597-cmbc4dfb741f80.cpe.net.cable.rogers.com) |
| 04:09:02 | → | bcmiller joins (~bm3719@66.42.95.185) |
| 04:09:02 | → | notzmv joins (~zmv@user/notzmv) |
| 04:09:02 | → | pieguy128 joins (~pieguy128@bras-base-mtrlpq5031w-grc-56-65-92-162-12.dsl.bell.ca) |
| 04:09:02 | → | Ranhir joins (~Ranhir@157.97.53.139) |
| 04:09:02 | → | nadja joins (~dequbed@2a01:4f8:201:34c7::1) |
| 04:09:02 | → | dy joins (sid3438@user/dy) |
| 04:09:02 | → | conjunctive joins (sid433686@2a03:5180:f:1::6:9e16) |
| 04:09:02 | → | hammond joins (proscan@gateway02.insomnia247.nl) |
| 04:09:02 | → | hueso joins (~root@user/hueso) |
| 04:09:02 | → | p3n joins (~p3n@217.198.124.246) |
| 04:09:02 | → | AlexNoo joins (~AlexNoo@178.34.163.88) |
| 04:09:02 | → | astra joins (sid289983@2a03:5180:f:4::4:6cbf) |
| 04:09:02 | → | sa1 joins (sid7690@id-7690.ilkley.irccloud.com) |
| 04:09:02 | → | rburkholder joins (~blurb@96.45.2.121) |
| 04:09:02 | → | josias joins (~mottmatri@2001:470:69fc:105::b6c) |
| 04:09:02 | → | tired joins (~tired@user/tired) |
| 04:09:02 | → | bradparker joins (sid262931@id-262931.uxbridge.irccloud.com) |
| 04:09:02 | → | dmj` joins (sid72307@id-72307.hampstead.irccloud.com) |
| 04:09:02 | → | jaror[m] joins (~jaror@2001:470:69fc:105::265) |
| 04:09:02 | → | Wojciech_K joins (~Wojciech_@2a01:4f9:6a:18a8::239) |
| 04:09:02 | → | brettgilio joins (~brettgili@2001:19f0:5c00:27fc:5400:4ff:fe7a:1f8e) |
| 04:09:02 | → | rembo10 joins (~rembo10@2a01:4f9:c010:b5b9::1) |
| 04:09:02 | → | Adeon joins (sid418992@2a03:5180:f:2::6:64b0) |
| 04:09:02 | → | dove joins (~irc@2600:3c00:e000:287::1) |
| 04:09:02 | → | nshepperd joins (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) |
| 04:09:02 | → | dagit joins (~dagit@2001:558:6025:38:71c6:9d58:7252:8976) |
| 04:09:02 | → | driib joins (~driib@vmi931078.contaboserver.net) |
| 04:09:02 | → | alinab_ joins (sid468903@id-468903.helmsley.irccloud.com) |
| 04:09:02 | → | parseval joins (sid239098@2a03:5180:f:1::3:a5fa) |
| 04:09:02 | → | S11001001 joins (sid42510@id-42510.ilkley.irccloud.com) |
| 04:09:02 | → | russruss2 joins (~russruss@my.russellmcc.com) |
| 04:09:02 | → | Firedancer joins (sid336191@id-336191.hampstead.irccloud.com) |
| 04:09:02 | → | gawen joins (~gawen@user/gawen) |
| 04:09:02 | → | mira joins (~aranea@wireguard/contributorcat/mira) |
| 04:09:02 | → | Buggys- joins (Buggys@shelltalk.net) |
| 04:09:02 | → | jinsl joins (~jinsl@2408:8207:2558:8870:211:32ff:fec8:6aea) |
| 04:09:02 | → | edwardk joins (sid47016@haskell/developer/edwardk) |
| 04:09:02 | → | c_wraith joins (~c_wraith@adjoint.us) |
| 04:09:02 | → | bliminse joins (~bliminse@user/bliminse) |
| 04:09:02 | → | hololeap joins (~quassel@user/hololeap) |
| 04:09:02 | → | abrar_ joins (~abrar@pool-72-78-199-186.phlapa.fios.verizon.net) |
| 04:09:02 | → | danso joins (~danso@user/danso) |
| 04:09:02 | → | Igloo joins (~ian@matrix.chaos.earth.li) |
| 04:09:02 | → | jil joins (~user@vps-15050500.vps.ovh.net) |
| 04:09:02 | → | winny joins (~weechat@user/winny) |
| 04:09:02 | → | zer0bitz joins (~zer0bitz@user/zer0bitz) |
| 04:09:02 | → | Hobbyboy joins (Hobbyboy@hobbyboy.co.uk) |
| 04:09:02 | → | stilgart joins (~Christoph@chezlefab.net) |
| 04:09:02 | → | dfordvm joins (~dfordivam@160.16.87.223.v6.sakura.ne.jp) |
| 04:09:02 | → | bah joins (~bah@l1.tel) |
| 04:09:02 | → | alpm joins (~alp@user/alp) |
| 04:09:02 | → | ysh____ joins (sid6017@id-6017.ilkley.irccloud.com) |
| 04:09:02 | → | yandere joins (sid467876@id-467876.ilkley.irccloud.com) |
| 04:09:02 | → | jackdk joins (sid373013@cssa/jackdk) |
| 04:09:02 | → | acertain_ joins (sid470584@id-470584.hampstead.irccloud.com) |
| 04:09:02 | → | edmundnoble_ joins (sid229620@id-229620.helmsley.irccloud.com) |
| 04:09:02 | → | Pent_ joins (sid313808@id-313808.lymington.irccloud.com) |
| 04:09:02 | → | PotatoGim_ joins (sid99505@id-99505.lymington.irccloud.com) |
| 04:09:02 | → | delyan_ joins (sid523379@id-523379.hampstead.irccloud.com) |
| 04:09:02 | → | lexi-lambda joins (sid92601@hampstead.irccloud.com) |
| 04:09:02 | → | SrPx joins (sid108780@id-108780.uxbridge.irccloud.com) |
| 04:09:02 | → | NiKaN joins (sid385034@id-385034.helmsley.irccloud.com) |
| 04:09:02 | → | phaazon joins (~phaazon@2001:41d0:a:fe76::1) |
| 04:09:02 | → | jbalint joins (~jbalint@071-090-119-177.res.spectrum.com) |
| 04:09:02 | → | finnekit joins (~finnekit@fsf/member/finnekit) |
| 04:09:02 | → | rune_ joins (sid21167@id-21167.ilkley.irccloud.com) |
| 04:09:02 | → | eL_Bart0 joins (eL_Bart0@dietunichtguten.org) |
| 04:09:02 | → | skippy joins (sid26890@user/slice) |
| 04:09:02 | → | ski joins (~ski@remote11.chalmers.se) |
| 04:09:02 | → | img joins (~img@user/img) |
| 04:09:02 | → | shawwwn joins (sid6132@id-6132.helmsley.irccloud.com) |
| 04:09:02 | → | Ellenor joins (ellenor@2001:19f0:8001:279::2000:1) |
| 04:09:02 | → | kaskal joins (~kaskal@2001:4bb8:2dd:a79d:1a7:8529:b79b:cfa) |
| 04:09:02 | → | son0p joins (~ff@181.136.122.143) |
| 04:09:02 | → | aku joins (~aku@65.108.245.241) |
| 04:09:02 | → | severen[m] joins (~severenmt@2001:470:69fc:105::2:9932) |
| 04:09:02 | → | Taneb joins (~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0) |
| 04:09:02 | → | urdh joins (~urdh@user/urdh) |
| 04:09:02 | → | qhong joins (~qhong@rescomp-21-400677.stanford.edu) |
| 04:09:02 | → | yahb2 joins (~yahb2@2a01:4f8:c0c:5c7b::2) |
| 04:09:02 | → | TimWolla joins (~timwolla@2a01:4f8:150:6153:beef::6667) |
| 04:09:02 | → | maxfan8_ joins (~max@2a01:4f8:192:5356::2) |
| 04:09:02 | → | [_________] joins (~oos95GWG@user/oos95GWG) |
| 04:09:02 | → | bwe joins (~bwe@2a01:4f8:1c1c:4878::2) |
| 04:09:02 | → | s4msung joins (4RqcWUWWqt@user/s4msung) |
| 04:09:02 | → | yushyin joins (tGG5pLVJ8Y@2a01:4f8:1c17:80de::2) |
| 04:09:02 | → | drlkf joins (~drlkf@192.184.163.34.bc.googleusercontent.com) |
| 04:09:02 | → | cods joins (~fred@82-65-232-44.subs.proxad.net) |
| 04:09:02 | → | daemon_ joins (uid606752@id-606752.uxbridge.irccloud.com) |
| 04:09:02 | → | ham joins (~ham@user/ham) |
| 04:09:02 | → | koala_man joins (~vidar@157.146.251.23.bc.googleusercontent.com) |
| 04:09:02 | → | Luj joins (~Luj@2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb) |
| 04:09:02 | → | swistak joins (~swistak@185.21.216.141) |
| 04:09:02 | → | dminuoso joins (~dminuoso@user/dminuoso) |
| 04:09:02 | → | Me-me joins (~me-me@2602:ff16:3:0:1:dc:beef:d00d) |
| 04:09:02 | → | fr33domlover joins (~fr33domlo@towards.vision) |
| 04:09:02 | → | amir joins (sid22336@user/amir) |
| 04:09:02 | → | andreas303 joins (andreas303@is.drunk.and.ready-to.party) |
| 04:09:02 | → | kitzman joins (~kitzman@user/dekenevs) |
| 04:09:02 | → | darkling joins (~darkling@2001:ba8:1f1:f0e6::2) |
| 04:09:02 | → | isomorpheme[m] joins (~isomorphe@2001:470:69fc:105::3:731a) |
| 04:09:02 | → | dumptruckman joins (~dumptruck@143-42-239-71.ip.linodeusercontent.com) |
| 04:09:02 | → | jinsun joins (~jinsun@user/jinsun) |
| 04:09:02 | → | apache joins (apache2@anubis.0x90.dk) |
| 04:09:02 | → | Lears joins (~Leary]@user/Leary/x-0910699) |
| 04:09:02 | → | TMA joins (tma@twin.jikos.cz) |
| 04:09:02 | → | monochrom joins (trebla@216.138.220.146) |
| 04:09:02 | → | thaumavorio joins (~thaumavor@162.243.123.105) |
| 04:09:02 | → | Dykam joins (Dykam@dykam.nl) |
| 04:09:02 | → | disconnect3d joins (~disconnec@user/disconnect3d) |
| 04:09:02 | → | ghostbuster joins (~admin@user/ghostbuster) |
| 04:09:02 | → | davean joins (~davean@67.205.182.208) |
| 04:09:02 | → | tomsmeding joins (~tomsmedin@static.21.109.88.23.clients.your-server.de) |
| 04:09:02 | → | dunj3 joins (~dunj3@kingdread.de) |
| 04:09:02 | → | hpc joins (~juzz@ip98-169-35-163.dc.dc.cox.net) |
| 04:09:02 | → | esph joins (~weechat@user/esph) |
| 04:09:02 | → | int-e joins (~noone@int-e.eu) |
| 04:09:02 | → | Rembane joins (~Rembane@178.79.177.36) |
| 04:09:02 | → | tomku joins (~tomku@user/tomku) |
| 04:09:02 | → | shane joins (~shane@ana.rch.ist) |
| 04:09:02 | → | Teacup joins (~teacup@user/teacup) |
| 04:09:02 | → | Ekho joins (~Ekho@user/ekho) |
| 04:09:02 | → | tomboy64 joins (~tomboy64@user/tomboy64) |
| 04:09:02 | → | dolio joins (~dolio@130.44.134.54) |
| 04:09:02 | → | ryantrinkle joins (~ryantrink@204.2.90.61) |
| 04:09:02 | → | Angelz joins (Angelz@2605:6400:30:fc15:d55b:fa6c:bd14:9973) |
| 04:09:02 | → | totbwf joins (sid402332@id-402332.uxbridge.irccloud.com) |
| 04:09:02 | → | lottaquestions joins (~nick@2607:fa49:503f:6d00:ee98:182c:4ae3:99fe) |
| 04:09:02 | → | siers joins (~ij@user/ij) |
| 04:09:02 | → | robertm joins (robertm@lattice.rojoma.com) |
| 04:09:02 | → | srk joins (~sorki@user/srk) |
| 04:09:02 | → | xerox joins (~edi@user/edi) |
| 04:09:02 | → | stallmanator joins (~stallmana@user/stallmanator) |
| 04:09:02 | → | noctux1 joins (88FTKVRINY@user/noctux) |
| 04:09:02 | → | bsima joins (~bsima@143.198.118.179) |
| 04:09:02 | → | user___ joins (~user@162.255.84.96) |
| 04:09:02 | → | troydm joins (~troydm@user/troydm) |
| 04:09:02 | → | ggVGc joins (~ggVGc@a.lowtech.earth) |
| 04:09:02 | → | perrierjouet joins (~perrier-j@modemcable048.127-56-74.mc.videotron.ca) |
| 04:09:02 | → | Katarushisu joins (~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net) |
| 04:09:02 | → | pointlessslippe1 joins (~pointless@212.82.82.3) |
| 04:09:02 | → | cheater joins (~Username@user/cheater) |
| 04:09:02 | → | Fangs joins (sid141280@id-141280.hampstead.irccloud.com) |
| 04:09:02 | → | Boarders___ joins (sid425905@id-425905.lymington.irccloud.com) |
| 04:09:02 | → | m1dnight joins (~christoph@78-22-4-67.access.telenet.be) |
| 04:09:02 | → | yaroot joins (~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp) |
| 04:09:02 | → | hyvoid joins (~hyenavoid@222-0-178-69.static.gci.net) |
| 04:09:02 | → | carter joins (sid14827@id-14827.helmsley.irccloud.com) |
| 04:09:02 | → | texasmynsted joins (~username@99.96.221.112) |
| 04:09:02 | → | truckasaurus joins (sid457088@id-457088.helmsley.irccloud.com) |
| 04:09:02 | → | Guest5986 joins (~m-mzmz6l@vmi833741.contaboserver.net) |
| 04:09:02 | → | tom__ joins (~tom@2a00:23c8:970c:4801:5b6a:e81b:79dc:f684) |
| 04:09:02 | → | Vq joins (~vq@90-227-195-9-no77.tbcn.telia.com) |
| 04:09:02 | → | SoF joins (~skius@user/skius) |
| 04:09:02 | → | ncf joins (~n@monade.li) |
| 04:09:02 | → | tolt joins (~weechat-h@li219-154.members.linode.com) |
| 04:09:02 | → | AndreasK joins (sid320732@id-320732.uxbridge.irccloud.com) |
| 04:09:02 | → | APic joins (apic@apic.name) |
| 04:09:02 | → | stiell_ joins (~stiell@gateway/tor-sasl/stiell) |
| 04:09:02 | → | edm joins (sid147314@2a03:5180:f:4::2:3f72) |
| 04:09:02 | → | snek joins (sid280155@2a03:5180:f:2::4:465b) |
| 04:09:02 | → | mustafa joins (sid502723@rockylinux/releng/mustafa) |
| 04:09:02 | → | Inst_ joins (~Inst@2601:6c4:4081:2fc0:61ec:e42a:c603:c093) |
| 04:09:02 | → | Arsen joins (arsen@gentoo/developer/managarm.dev.Arsen) |
| 04:09:02 | → | natto joins (~natto@140.238.225.67) |
| 04:09:02 | → | zups joins (~meow@2a01:4f9:c010:6036::1) |
| 04:09:02 | → | ddellacosta joins (~ddellacos@146.70.166.166) |
| 04:09:02 | → | acarrico joins (~acarrico@dhcp-68-142-49-163.greenmountainaccess.net) |
| 04:09:02 | → | Cale joins (~cale@cpe80d04ade0a03-cm80d04ade0a01.cpe.net.cable.rogers.com) |
| 04:09:02 | → | ByronJohnson joins (~bairyn@50.250.232.19) |
| 04:09:02 | → | witcher joins (~witcher@wiredspace.de) |
| 04:09:02 | → | defanor joins (~defanor@tart.uberspace.net) |
| 04:09:02 | → | YoungFrog joins (~youngfrog@2a02:a03f:ca07:f900:9506:825b:e271:15c3) |
| 04:09:02 | → | vgtw_ joins (~vgtw@user/vgtw) |
| 04:09:02 | → | jrm joins (~jrm@user/jrm) |
| 04:09:02 | → | califax joins (~califax@user/califx) |
| 04:09:02 | → | farn joins (~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) |
| 04:09:02 | → | chexum joins (~quassel@gateway/tor-sasl/chexum) |
| 04:09:02 | → | jakesyl____ joins (sid56879@2a03:5180:f:4::de2f) |
| 04:09:02 | → | pavonia joins (~user@user/siracusa) |
| 04:09:02 | → | Athas joins (athas@sigkill.dk) |
| 04:09:02 | → | nicole joins (ilbelkyr@libera/staff/ilbelkyr) |
| 04:09:02 | → | puke joins (~puke@user/puke) |
| 04:09:02 | → | leah2 joins (~leah@2001:1410:200:eea::1) |
| 04:09:02 | → | smalltalkman joins (uid545680@id-545680.hampstead.irccloud.com) |
| 04:09:02 | → | bjs joins (sid190364@user/bjs) |
| 04:09:02 | → | Flow joins (~none@gentoo/developer/flow) |
| 04:09:02 | → | Moyst joins (~moyst@user/moyst) |
| 04:09:02 | → | johnw joins (~johnw@76-234-69-149.lightspeed.frokca.sbcglobal.net) |
| 04:09:02 | → | diagprov joins (sid348783@user/diagprov) |
| 04:09:02 | → | ezzieyguywuf joins (~Unknown@user/ezzieyguywuf) |
| 04:09:02 | → | opqdonut joins (opqdonut@pseudo.fixme.fi) |
| 04:09:02 | → | MironZ joins (~MironZ@nat-infra.ehlab.uk) |
| 04:09:02 | → | kmein joins (~weechat@user/kmein) |
| 04:09:02 | → | hisa38 joins (~hisa38@104-181-102-238.lightspeed.wepbfl.sbcglobal.net) |
| 04:09:02 | → | nonzen joins (~nonzen@user/nonzen) |
| 04:09:02 | → | PHO` joins (~pho@akari.cielonegro.org) |
| 04:09:02 | → | hugo joins (znc@verdigris.lysator.liu.se) |
| 04:09:02 | → | dibblego joins (~dibblego@haskell/developer/dibblego) |
| 04:09:02 | → | Lord_of_Life joins (~Lord@user/lord-of-life/x-2819915) |
| 04:09:02 | → | jpds joins (~jpds@gateway/tor-sasl/jpds) |
| 04:09:02 | → | bw_ joins (sid2730@user/betawaffle) |
| 04:09:02 | → | biberu joins (~biberu@user/biberu) |
| 04:09:02 | → | motherfsck joins (~motherfsc@user/motherfsck) |
| 04:09:02 | → | RedNifre joins (~RedNifre@dslb-088-072-205-088.088.072.pools.vodafone-ip.de) |
| 04:09:02 | → | Patternmaster joins (~georg@user/Patternmaster) |
| 04:09:02 | → | shapr joins (~user@2600:1700:c640:3100:cca5:97e3:b957:869b) |
| 04:09:02 | → | haritz joins (~hrtz@user/haritz) |
| 04:09:02 | → | sunarch joins (~sunarch@user/sunarch) |
| 04:09:02 | → | swamp_ joins (~zmt00@user/zmt00) |
| 04:09:02 | → | euandreh joins (~Thunderbi@189.6.18.7) |
| 04:09:02 | → | shriekingnoise joins (~shrieking@186.137.175.87) |
| 04:09:02 | → | econo_ joins (uid147250@id-147250.tinside.irccloud.com) |
| 04:09:02 | → | cafkafk joins (~cafkafk@fsf/member/cafkafk) |
| 04:09:02 | → | Sgeo joins (~Sgeo@user/sgeo) |
| 04:09:02 | → | tzh joins (~tzh@c-24-21-73-154.hsd1.or.comcast.net) |
| 04:09:02 | → | berberman joins (~berberman@user/berberman) |
| 04:09:02 | → | geekosaur joins (~geekosaur@xmonad/geekosaur) |
| 04:09:02 | → | azimut joins (~azimut@gateway/tor-sasl/azimut) |
| 04:09:02 | → | dsrt^ joins (~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) |
| 04:09:02 | → | mrmonday joins (~robert@2a01:7e00:e000:1b2:95ca:100:49e0:3f15) |
| 04:09:02 | → | kritzefitz joins (~kritzefit@debian/kritzefitz) |
| 04:09:02 | → | Alex_test joins (~al_test@178.34.163.88) |
| 04:09:02 | → | AlexZenon joins (~alzenon@178.34.163.88) |
| 04:09:02 | → | Natch joins (~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) |
| 04:09:02 | → | hippoid joins (~hippoid@user/hippoid) |
| 04:09:02 | → | mjs2600 joins (~mjs2600@c-174-169-225-239.hsd1.vt.comcast.net) |
| 04:09:02 | → | xenomorph joins (~xenomorph@188.220.172.130) |
| 04:09:02 | → | dcoutts_ joins (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) |
| 04:09:02 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 04:09:02 | → | myxos joins (~myxos@cpe-65-28-251-121.cinci.res.rr.com) |
| 04:09:02 | → | phma joins (phma@2001:5b0:211f:2f08:1586:27d6:8ad8:5c55) |
| 04:09:02 | → | EvanR joins (~EvanR@user/evanr) |
| 04:09:02 | → | connrs joins (~connrs@user/connrs) |
| 04:09:02 | → | mncheck-m joins (~mncheck@193.224.205.254) |
| 04:09:02 | → | myme joins (~myme@2a01:799:d60:e400:5ad3:735a:f98b:c82b) |
| 04:09:02 | → | wagle joins (~wagle@quassel.wagle.io) |
| 04:09:02 | → | mauke joins (~mauke@user/mauke) |
| 04:09:02 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 04:09:02 | → | Nokurn joins (~jeremiah@cpe-76-86-186-227.socal.res.rr.com) |
| 04:09:02 | → | robbert-vdh joins (~robbert@robbertvanderhelm.nl) |
| 04:09:02 | → | chromoblob joins (~user@37.113.180.121) |
| 04:09:02 | → | foul_owl joins (~kerry@94.140.8.28) |
| 04:09:02 | → | ijqq joins (uid603979@2a03:5180:f:1::9:374b) |
| 04:09:02 | → | albet70 joins (~xxx@2400:8902::f03c:92ff:fe60:98d8) |
| 04:09:02 | → | ormaaaj joins (~ormaaj@user/ormaaj) |
| 04:09:02 | → | eggplantade joins (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) |
| 04:09:02 | → | ft joins (~ft@p508db151.dip0.t-ipconnect.de) |
| 04:09:02 | → | FinnElija joins (~finn_elij@user/finn-elija/x-0085643) |
| 04:09:02 | → | gentauro joins (~gentauro@user/gentauro) |
| 04:09:02 | → | td_ joins (~td@i53870905.versanet.de) |
| 04:09:02 | → | xff0x_ joins (~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) |
| 04:09:02 | → | terrorjack joins (~terrorjac@2a01:4f8:c17:87f8::) |
| 04:09:02 | → | dipper joins (~dipper@203.168.26.146) |
| 04:09:02 | → | aforemny_ joins (~aforemny@i59F516C0.versanet.de) |
| 04:09:02 | → | mei joins (~mei@user/mei) |
| 04:09:02 | → | jonrh_ joins (sid5185@2a03:5180:f:3::1441) |
| 04:09:02 | → | simpleauthority joins (~simpleaut@user/simpleauthority) |
| 04:09:02 | → | ec joins (~ec@gateway/tor-sasl/ec) |
| 04:09:02 | → | filwisher joins (2e6936c793@2604:bf00:561:2000::170) |
| 04:09:02 | → | lukec joins (9dfd4d094e@2604:bf00:561:2000::10e) |
| 04:09:02 | → | bsima1 joins (9d7e39c8ad@2604:bf00:561:2000::dd) |
| 04:09:02 | → | ggb joins (a62ffbaf4f@2604:bf00:561:2000::3ac) |
| 04:09:02 | → | probie joins (cc0b34050a@user/probie) |
| 04:09:02 | → | cpli joins (77fc530071@2604:bf00:561:2000::252) |
| 04:09:02 | → | samhh joins (7569f027cf@2604:bf00:561:2000::e4) |
| 04:09:02 | → | ymherklotz joins (cb2c9cfbdd@2604:bf00:561:2000::29a) |
| 04:09:02 | → | evanrelf joins (3addc196af@2604:bf00:561:2000::f0) |
| 04:09:02 | → | JoelMcCracken joins (5ea8252fbb@2604:bf00:561:2000::10e3) |
| 04:09:02 | → | fvr joins (ef3e56ca8b@2604:bf00:561:2000::3c4) |
| 04:09:02 | → | n1essa joins (3d621153a5@2604:bf00:561:2000::df7) |
| 04:09:02 | → | arcadewise joins (52968ed80d@2604:bf00:561:2000::3df) |
| 04:09:02 | → | jkoshy joins (99b9359beb@user/jkoshy) |
| 04:09:02 | → | henrytill joins (e0180937c3@2604:bf00:561:2000::e8c) |
| 04:09:02 | → | theesm joins (2cbdf4b38a@2604:bf00:561:2000::11c8) |
| 04:09:02 | → | sus joins (1b7af6299f@user/zeromomentum) |
| 04:09:02 | → | shreyasminocha joins (51fdc93eda@user/shreyasminocha) |
| 04:09:02 | → | Xe joins (~cadey@tailscale/xe) |
| 04:09:02 | → | chaitlatte0 joins (ea29c0bb16@user/chaitlatte0) |
| 04:09:02 | → | whereiseveryone joins (206ba86c98@2604:bf00:561:2000::2e4) |
| 04:09:02 | → | sm2n joins (ae95cb1267@user/sm2n) |
| 04:09:02 | → | jakzale joins (6291399afa@user/jakzale) |
| 04:09:02 | → | MonsoonSecrecy joins (f78c86e960@2604:bf00:561:2000::f99) |
| 04:09:02 | → | samhh_ joins (7569f027cf@2604:bf00:561:2000::e4) |
| 04:09:02 | → | b0o joins (0e4a0bf4c9@2604:bf00:561:2000::1bf) |
| 04:09:02 | → | fluffyballoon joins (45ce440a48@2604:bf00:561:2000::e2) |
| 04:09:02 | → | Ankhers joins (e99e97ef8e@2604:bf00:561:2000::2a2) |
| 04:09:02 | → | jleightcap joins (7bc4014b62@user/jleightcap) |
| 04:09:05 | × | _________ quits (~nobody@user/noodly) (Max SendQ exceeded) |
| 04:09:06 | × | vulpine quits (xfnw@tilde.team) (Max SendQ exceeded) |
| 04:09:06 | × | raym quits (~ray@user/raym) (Max SendQ exceeded) |
| 04:09:06 | × | sympt quits (~sympt@user/sympt) (Max SendQ exceeded) |
| 04:09:43 | → | raym joins (~ray@user/raym) |
| 04:09:50 | → | _________ joins (~nobody@user/noodly) |
| 04:09:51 | → | vulpine joins (xfnw@tilde.team) |
| 04:10:11 | → | _ht joins (~Thunderbi@28-52-174-82.ftth.glasoperator.nl) |
| 04:10:14 | × | Arsen quits (arsen@gentoo/developer/managarm.dev.Arsen) (*.net *.split) |
| 04:10:14 | × | Guest5986 quits (~m-mzmz6l@vmi833741.contaboserver.net) (*.net *.split) |
| 04:10:14 | × | ggVGc quits (~ggVGc@a.lowtech.earth) (*.net *.split) |
| 04:10:14 | × | bsima quits (~bsima@143.198.118.179) (*.net *.split) |
| 04:10:14 | × | noctux1 quits (88FTKVRINY@user/noctux) (*.net *.split) |
| 04:10:14 | × | stallmanator quits (~stallmana@user/stallmanator) (*.net *.split) |
| 04:10:14 | × | Ekho quits (~Ekho@user/ekho) (*.net *.split) |
| 04:10:14 | × | tomku quits (~tomku@user/tomku) (*.net *.split) |
| 04:10:14 | × | hpc quits (~juzz@ip98-169-35-163.dc.dc.cox.net) (*.net *.split) |
| 04:10:14 | × | esph quits (~weechat@user/esph) (*.net *.split) |
| 04:10:14 | × | dunj3 quits (~dunj3@kingdread.de) (*.net *.split) |
| 04:10:14 | × | disconnect3d quits (~disconnec@user/disconnect3d) (*.net *.split) |
| 04:10:14 | × | monochrom quits (trebla@216.138.220.146) (*.net *.split) |
| 04:10:14 | × | TMA quits (tma@twin.jikos.cz) (*.net *.split) |
| 04:10:14 | × | Lears quits (~Leary]@user/Leary/x-0910699) (*.net *.split) |
| 04:10:14 | × | apache quits (apache2@anubis.0x90.dk) (*.net *.split) |
| 04:10:14 | × | jinsun quits (~jinsun@user/jinsun) (*.net *.split) |
| 04:10:14 | × | dumptruckman quits (~dumptruck@143-42-239-71.ip.linodeusercontent.com) (*.net *.split) |
| 04:10:14 | × | Luj quits (~Luj@2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb) (*.net *.split) |
| 04:10:14 | × | koala_man quits (~vidar@157.146.251.23.bc.googleusercontent.com) (*.net *.split) |
| 04:10:14 | × | drlkf quits (~drlkf@192.184.163.34.bc.googleusercontent.com) (*.net *.split) |
| 04:10:14 | × | son0p quits (~ff@181.136.122.143) (*.net *.split) |
| 04:10:14 | × | kaskal quits (~kaskal@2001:4bb8:2dd:a79d:1a7:8529:b79b:cfa) (*.net *.split) |
| 04:10:14 | × | ski quits (~ski@remote11.chalmers.se) (*.net *.split) |
| 04:10:14 | × | alpm quits (~alp@user/alp) (*.net *.split) |
| 04:10:14 | × | Hobbyboy quits (Hobbyboy@hobbyboy.co.uk) (*.net *.split) |
| 04:10:14 | × | zer0bitz quits (~zer0bitz@user/zer0bitz) (*.net *.split) |
| 04:10:15 | × | danso quits (~danso@user/danso) (*.net *.split) |
| 04:10:15 | × | c_wraith quits (~c_wraith@adjoint.us) (*.net *.split) |
| 04:10:15 | × | Firedancer quits (sid336191@id-336191.hampstead.irccloud.com) (*.net *.split) |
| 04:10:15 | × | russruss2 quits (~russruss@my.russellmcc.com) (*.net *.split) |
| 04:10:15 | × | alinab_ quits (sid468903@id-468903.helmsley.irccloud.com) (*.net *.split) |
| 04:10:15 | × | dagit quits (~dagit@2001:558:6025:38:71c6:9d58:7252:8976) (*.net *.split) |
| 04:10:15 | × | dove quits (~irc@2600:3c00:e000:287::1) (*.net *.split) |
| 04:10:15 | × | bradparker quits (sid262931@id-262931.uxbridge.irccloud.com) (*.net *.split) |
| 04:10:15 | × | sa1 quits (sid7690@id-7690.ilkley.irccloud.com) (*.net *.split) |
| 04:10:15 | × | hueso quits (~root@user/hueso) (*.net *.split) |
| 04:10:15 | × | Ranhir quits (~Ranhir@157.97.53.139) (*.net *.split) |
| 04:10:15 | × | bcmiller quits (~bm3719@66.42.95.185) (*.net *.split) |
| 04:10:15 | × | paddymahoney quits (~paddymaho@cpe883d24bcf597-cmbc4dfb741f80.cpe.net.cable.rogers.com) (*.net *.split) |
| 04:10:15 | × | CAT_S quits (apic@brezn3.muc.ccc.de) (*.net *.split) |
| 04:10:15 | × | davl quits (~davl@207.154.228.18) (*.net *.split) |
| 04:10:15 | × | echoreply quits (~echoreply@45.32.163.16) (*.net *.split) |
| 04:10:15 | × | AkechiShiro quits (~licht@user/akechishiro) (*.net *.split) |
| 04:10:15 | × | dragestil quits (~znc@user/dragestil) (*.net *.split) |
| 04:10:15 | × | gmc quits (sid58314@id-58314.ilkley.irccloud.com) (*.net *.split) |
| 04:10:15 | × | systemfault quits (sid267009@id-267009.uxbridge.irccloud.com) (*.net *.split) |
| 04:10:15 | × | kristjansson_ quits (sid126207@id-126207.tinside.irccloud.com) (*.net *.split) |
| 04:10:15 | × | micro quits (~micro@user/micro) (*.net *.split) |
| 04:10:15 | × | dexter1 quits (dexter@2a01:7e00::f03c:91ff:fe86:59ec) (*.net *.split) |
| 04:10:15 | × | sa quits (sid1055@id-1055.tinside.irccloud.com) (*.net *.split) |
| 04:10:15 | × | Profpatsch quits (~Profpatsc@static.88-198-193-255.clients.your-server.de) (*.net *.split) |
| 04:10:15 | × | loonycyborg quits (loonycybor@wesnoth/developer/loonycyborg) (*.net *.split) |
| 04:10:15 | × | incertia quits (~incertia@209.122.71.127) (*.net *.split) |
| 04:10:15 | × | hexagoxel quits (~hexagoxel@2a01:4f8:c0c:e::2) (*.net *.split) |
| 04:10:15 | × | sclv quits (sid39734@haskell/developer/sclv) (*.net *.split) |
| 04:10:15 | × | CalculusCats quits (NyaaTheKit@user/calculuscat) (*.net *.split) |
| 04:10:15 | × | Momentum quits (momentum@tilde.team) (*.net *.split) |
| 04:10:15 | × | kronicma1 quits (user40967@neotame.csclub.uwaterloo.ca) (*.net *.split) |
| 04:10:15 | × | ggranberry quits (sid267884@id-267884.uxbridge.irccloud.com) (*.net *.split) |
| 04:10:15 | × | madnight quits (~madnight@static.59.103.201.195.clients.your-server.de) (*.net *.split) |
| 04:10:15 | × | mjacob quits (~mjacob@adrastea.uberspace.de) (*.net *.split) |
| 04:10:15 | × | nek0 quits (~nek0@2a01:4f8:222:2b41::12) (*.net *.split) |
| 04:10:15 | × | fbytez quits (~uid@user/fbytez) (*.net *.split) |
| 04:10:15 | × | lawt quits (~lawt@129.159.36.129) (*.net *.split) |
| 04:10:15 | × | gabiruh quits (~gabiruh@vps19177.publiccloud.com.br) (*.net *.split) |
| 04:10:15 | × | jludwig quits (~justin@li657-110.members.linode.com) (*.net *.split) |
| 04:10:15 | × | haskl quits (~haskl@user/haskl) (*.net *.split) |
| 04:10:15 | × | Franciman quits (~Franciman@mx1.fracta.dev) (*.net *.split) |
| 04:10:20 | → | sympt joins (~sympt@user/sympt) |
| 04:10:45 | → | Arsen joins (arsen@gentoo/developer/managarm.dev.Arsen) |
| 04:10:45 | → | Guest5986 joins (~m-mzmz6l@vmi833741.contaboserver.net) |
| 04:10:45 | → | ggVGc joins (~ggVGc@a.lowtech.earth) |
| 04:10:45 | → | bsima joins (~bsima@143.198.118.179) |
| 04:10:45 | → | noctux1 joins (88FTKVRINY@user/noctux) |
| 04:10:45 | → | stallmanator joins (~stallmana@user/stallmanator) |
| 04:10:45 | → | Ekho joins (~Ekho@user/ekho) |
| 04:10:45 | → | tomku joins (~tomku@user/tomku) |
| 04:10:45 | → | esph joins (~weechat@user/esph) |
| 04:10:45 | → | hpc joins (~juzz@ip98-169-35-163.dc.dc.cox.net) |
| 04:10:45 | → | dunj3 joins (~dunj3@kingdread.de) |
| 04:10:45 | → | disconnect3d joins (~disconnec@user/disconnect3d) |
| 04:10:45 | → | monochrom joins (trebla@216.138.220.146) |
| 04:10:45 | → | TMA joins (tma@twin.jikos.cz) |
| 04:10:45 | → | Lears joins (~Leary]@user/Leary/x-0910699) |
| 04:10:45 | → | apache joins (apache2@anubis.0x90.dk) |
| 04:10:45 | → | jinsun joins (~jinsun@user/jinsun) |
| 04:10:45 | → | dumptruckman joins (~dumptruck@143-42-239-71.ip.linodeusercontent.com) |
| 04:10:45 | → | Luj joins (~Luj@2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb) |
| 04:10:45 | → | koala_man joins (~vidar@157.146.251.23.bc.googleusercontent.com) |
| 04:10:45 | → | drlkf joins (~drlkf@192.184.163.34.bc.googleusercontent.com) |
| 04:10:45 | → | son0p joins (~ff@181.136.122.143) |
| 04:10:45 | → | kaskal joins (~kaskal@2001:4bb8:2dd:a79d:1a7:8529:b79b:cfa) |
| 04:10:45 | → | ski joins (~ski@remote11.chalmers.se) |
| 04:10:45 | → | alpm joins (~alp@user/alp) |
| 04:10:45 | → | Hobbyboy joins (Hobbyboy@hobbyboy.co.uk) |
| 04:10:45 | → | zer0bitz joins (~zer0bitz@user/zer0bitz) |
| 04:10:45 | → | danso joins (~danso@user/danso) |
| 04:10:45 | → | c_wraith joins (~c_wraith@adjoint.us) |
| 04:10:45 | → | Firedancer joins (sid336191@id-336191.hampstead.irccloud.com) |
| 04:10:45 | → | russruss2 joins (~russruss@my.russellmcc.com) |
| 04:10:45 | → | alinab_ joins (sid468903@id-468903.helmsley.irccloud.com) |
| 04:10:45 | → | dagit joins (~dagit@2001:558:6025:38:71c6:9d58:7252:8976) |
| 04:10:45 | → | dove joins (~irc@2600:3c00:e000:287::1) |
| 04:10:45 | → | bradparker joins (sid262931@id-262931.uxbridge.irccloud.com) |
| 04:10:45 | → | sa1 joins (sid7690@id-7690.ilkley.irccloud.com) |
| 04:10:45 | → | hueso joins (~root@user/hueso) |
| 04:10:45 | → | Ranhir joins (~Ranhir@157.97.53.139) |
| 04:10:45 | → | bcmiller joins (~bm3719@66.42.95.185) |
| 04:10:45 | → | paddymahoney joins (~paddymaho@cpe883d24bcf597-cmbc4dfb741f80.cpe.net.cable.rogers.com) |
| 04:10:45 | → | CAT_S joins (apic@brezn3.muc.ccc.de) |
| 04:10:45 | → | davl joins (~davl@207.154.228.18) |
| 04:10:45 | → | echoreply joins (~echoreply@45.32.163.16) |
| 04:10:45 | → | AkechiShiro joins (~licht@user/akechishiro) |
| 04:10:45 | → | dragestil joins (~znc@user/dragestil) |
| 04:10:45 | → | gmc joins (sid58314@id-58314.ilkley.irccloud.com) |
| 04:10:45 | → | systemfault joins (sid267009@id-267009.uxbridge.irccloud.com) |
| 04:10:45 | → | kristjansson_ joins (sid126207@id-126207.tinside.irccloud.com) |
| 04:10:45 | → | micro joins (~micro@user/micro) |
| 04:10:45 | → | dexter1 joins (dexter@2a01:7e00::f03c:91ff:fe86:59ec) |
| 04:10:45 | → | sa joins (sid1055@id-1055.tinside.irccloud.com) |
| 04:10:45 | → | Profpatsch joins (~Profpatsc@static.88-198-193-255.clients.your-server.de) |
| 04:10:45 | → | loonycyborg joins (loonycybor@wesnoth/developer/loonycyborg) |
| 04:10:45 | → | incertia joins (~incertia@209.122.71.127) |
| 04:10:45 | → | hexagoxel joins (~hexagoxel@2a01:4f8:c0c:e::2) |
| 04:10:45 | → | sclv joins (sid39734@haskell/developer/sclv) |
| 04:10:45 | → | CalculusCats joins (NyaaTheKit@user/calculuscat) |
| 04:10:45 | → | Momentum joins (momentum@tilde.team) |
| 04:10:45 | → | kronicma1 joins (user40967@neotame.csclub.uwaterloo.ca) |
| 04:10:45 | → | ggranberry joins (sid267884@id-267884.uxbridge.irccloud.com) |
| 04:10:45 | → | madnight joins (~madnight@static.59.103.201.195.clients.your-server.de) |
| 04:10:45 | → | mjacob joins (~mjacob@adrastea.uberspace.de) |
| 04:10:45 | → | nek0 joins (~nek0@2a01:4f8:222:2b41::12) |
| 04:10:45 | → | fbytez joins (~uid@user/fbytez) |
| 04:10:45 | → | lawt joins (~lawt@129.159.36.129) |
| 04:10:45 | → | gabiruh joins (~gabiruh@vps19177.publiccloud.com.br) |
| 04:10:45 | → | jludwig joins (~justin@li657-110.members.linode.com) |
| 04:10:45 | → | haskl joins (~haskl@user/haskl) |
| 04:10:45 | → | Franciman joins (~Franciman@mx1.fracta.dev) |
| 04:10:48 | × | Momentum quits (momentum@tilde.team) (Max SendQ exceeded) |
| 04:10:48 | × | CAT_S quits (apic@brezn3.muc.ccc.de) (Max SendQ exceeded) |
| 04:10:48 | × | Arsen quits (arsen@gentoo/developer/managarm.dev.Arsen) (Max SendQ exceeded) |
| 04:10:48 | × | zer0bitz quits (~zer0bitz@user/zer0bitz) (Max SendQ exceeded) |
| 04:10:48 | × | lawt quits (~lawt@129.159.36.129) (Max SendQ exceeded) |
| 04:10:48 | × | CalculusCats quits (NyaaTheKit@user/calculuscat) (Max SendQ exceeded) |
| 04:10:59 | → | CAT_S_ joins (apic@brezn3.muc.ccc.de) |
| 04:11:01 | → | Arsen_ joins (arsen@gentoo/developer/managarm.dev.Arsen) |
| 04:11:03 | → | zer0bitz joins (~zer0bitz@user/zer0bitz) |
| 04:11:22 | → | lawt joins (~lawt@129.159.36.129) |
| 04:11:30 | → | Momentum joins (momentum@2607:5300:60:4f58::248) |
| 04:11:49 | × | witcher quits (~witcher@wiredspace.de) (*.net *.split) |
| 04:11:49 | × | Inst_ quits (~Inst@2601:6c4:4081:2fc0:61ec:e42a:c603:c093) (*.net *.split) |
| 04:11:49 | × | APic quits (apic@apic.name) (*.net *.split) |
| 04:11:49 | × | AndreasK quits (sid320732@id-320732.uxbridge.irccloud.com) (*.net *.split) |
| 04:11:49 | × | hyvoid quits (~hyenavoid@222-0-178-69.static.gci.net) (*.net *.split) |
| 04:11:49 | × | yaroot quits (~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp) (*.net *.split) |
| 04:11:49 | × | Fangs quits (sid141280@id-141280.hampstead.irccloud.com) (*.net *.split) |
| 04:11:49 | × | cheater quits (~Username@user/cheater) (*.net *.split) |
| 04:11:49 | × | perrierjouet quits (~perrier-j@modemcable048.127-56-74.mc.videotron.ca) (*.net *.split) |
| 04:11:49 | × | srk quits (~sorki@user/srk) (*.net *.split) |
| 04:11:49 | × | robertm quits (robertm@lattice.rojoma.com) (*.net *.split) |
| 04:11:49 | × | lottaquestions quits (~nick@2607:fa49:503f:6d00:ee98:182c:4ae3:99fe) (*.net *.split) |
| 04:11:49 | × | tomboy64 quits (~tomboy64@user/tomboy64) (*.net *.split) |
| 04:11:49 | × | daemon_ quits (uid606752@id-606752.uxbridge.irccloud.com) (*.net *.split) |
| 04:11:49 | × | bwe quits (~bwe@2a01:4f8:1c1c:4878::2) (*.net *.split) |
| 04:11:49 | × | [_________] quits (~oos95GWG@user/oos95GWG) (*.net *.split) |
| 04:11:49 | × | urdh quits (~urdh@user/urdh) (*.net *.split) |
| 04:11:49 | × | aku quits (~aku@65.108.245.241) (*.net *.split) |
| 04:11:49 | × | shawwwn quits (sid6132@id-6132.helmsley.irccloud.com) (*.net *.split) |
| 04:11:49 | × | skippy quits (sid26890@user/slice) (*.net *.split) |
| 04:11:49 | × | rune_ quits (sid21167@id-21167.ilkley.irccloud.com) (*.net *.split) |
| 04:11:49 | × | phaazon quits (~phaazon@2001:41d0:a:fe76::1) (*.net *.split) |
| 04:11:49 | × | lexi-lambda quits (sid92601@hampstead.irccloud.com) (*.net *.split) |
| 04:11:49 | × | ryantrinkle quits (~ryantrink@204.2.90.61) (*.net *.split) |
| 04:11:49 | × | gawen quits (~gawen@user/gawen) (*.net *.split) |
| 04:11:49 | × | driib quits (~driib@vmi931078.contaboserver.net) (*.net *.split) |
| 04:11:49 | × | p3n quits (~p3n@217.198.124.246) (*.net *.split) |
| 04:11:49 | × | ralu1 quits (~ralu@static.211.245.203.116.clients.your-server.de) (*.net *.split) |
| 04:11:49 | × | quintasan quits (~quassel@quintasan.pl) (*.net *.split) |
| 04:11:49 | × | mhatta quits (~mhatta@www21123ui.sakura.ne.jp) (*.net *.split) |
| 04:11:49 | × | forell quits (~forell@user/forell) (*.net *.split) |
| 04:11:49 | × | Putonlalla quits (~Putonlall@it-cyan.it.jyu.fi) (*.net *.split) |
| 04:11:49 | × | Maxdamantus quits (~Maxdamant@user/maxdamantus) (*.net *.split) |
| 04:11:49 | × | barrucadu quits (~barrucadu@carcosa.barrucadu.co.uk) (*.net *.split) |
| 04:11:49 | × | hnOsmium0001 quits (~hnosm@user/hnOsmium0001) (*.net *.split) |
| 04:11:49 | × | cross quits (~cross@spitfire.i.gajendra.net) (*.net *.split) |
| 04:11:49 | × | joeyh quits (joeyh@2600:3c03::f03c:91ff:fe73:b0d2) (*.net *.split) |
| 04:11:49 | × | emergence quits (emergence@2607:5300:60:5910:dcad:beff:feef:5bc) (*.net *.split) |
| 04:11:49 | × | nyc quits (~nyc@user/nyc) (*.net *.split) |
| 04:11:49 | × | Everything quits (~Everythin@static.208.206.21.65.clients.your-server.de) (*.net *.split) |
| 04:11:49 | × | drdo quits (~drdo@bl8-153-185.dsl.telepac.pt) (*.net *.split) |
| 04:11:49 | × | hays quits (rootvegeta@fsf/member/hays) (*.net *.split) |
| 04:11:49 | × | anpad quits (~pandeyan@user/anpad) (*.net *.split) |
| 04:11:49 | × | heartburn quits (~gass@2a00:d880:3:1::b1e4:b241) (*.net *.split) |
| 04:11:49 | × | ridcully quits (~ridcully@p57b52f2c.dip0.t-ipconnect.de) (*.net *.split) |
| 04:11:49 | × | megaTherion quits (~therion@unix.io) (*.net *.split) |
| 04:11:49 | × | cawfee quits (~root@2406:3003:2077:2758::babe) (*.net *.split) |
| 04:11:49 | × | Buggys- quits (Buggys@shelltalk.net) (*.net *.split) |
| 04:11:58 | → | CalculusCats7 joins (NyaaTheKit@user/calculuscat) |
| 04:13:30 | → | witcher joins (~witcher@wiredspace.de) |
| 04:13:30 | → | Inst_ joins (~Inst@2601:6c4:4081:2fc0:61ec:e42a:c603:c093) |
| 04:13:30 | → | APic joins (apic@apic.name) |
| 04:13:30 | → | AndreasK joins (sid320732@id-320732.uxbridge.irccloud.com) |
| 04:13:30 | → | hyvoid joins (~hyenavoid@222-0-178-69.static.gci.net) |
| 04:13:30 | → | yaroot joins (~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp) |
| 04:13:30 | → | Fangs joins (sid141280@id-141280.hampstead.irccloud.com) |
| 04:13:30 | → | cheater joins (~Username@user/cheater) |
| 04:13:30 | → | perrierjouet joins (~perrier-j@modemcable048.127-56-74.mc.videotron.ca) |
| 04:13:30 | → | srk joins (~sorki@user/srk) |
| 04:13:30 | → | robertm joins (robertm@lattice.rojoma.com) |
| 04:13:30 | → | lottaquestions joins (~nick@2607:fa49:503f:6d00:ee98:182c:4ae3:99fe) |
| 04:13:30 | → | ryantrinkle joins (~ryantrink@204.2.90.61) |
| 04:13:30 | → | tomboy64 joins (~tomboy64@user/tomboy64) |
| 04:13:30 | → | daemon_ joins (uid606752@id-606752.uxbridge.irccloud.com) |
| 04:13:30 | → | bwe joins (~bwe@2a01:4f8:1c1c:4878::2) |
| 04:13:30 | → | [_________] joins (~oos95GWG@user/oos95GWG) |
| 04:13:30 | → | urdh joins (~urdh@user/urdh) |
| 04:13:30 | → | aku joins (~aku@65.108.245.241) |
| 04:13:30 | → | shawwwn joins (sid6132@id-6132.helmsley.irccloud.com) |
| 04:13:30 | → | skippy joins (sid26890@user/slice) |
| 04:13:30 | → | rune_ joins (sid21167@id-21167.ilkley.irccloud.com) |
| 04:13:30 | → | phaazon joins (~phaazon@2001:41d0:a:fe76::1) |
| 04:13:30 | → | lexi-lambda joins (sid92601@hampstead.irccloud.com) |
| 04:13:30 | → | Buggys- joins (Buggys@shelltalk.net) |
| 04:13:30 | → | gawen joins (~gawen@user/gawen) |
| 04:13:30 | → | driib joins (~driib@vmi931078.contaboserver.net) |
| 04:13:30 | → | p3n joins (~p3n@217.198.124.246) |
| 04:13:30 | → | ralu1 joins (~ralu@static.211.245.203.116.clients.your-server.de) |
| 04:13:30 | → | quintasan joins (~quassel@quintasan.pl) |
| 04:13:30 | → | mhatta joins (~mhatta@www21123ui.sakura.ne.jp) |
| 04:13:30 | → | forell joins (~forell@user/forell) |
| 04:13:30 | → | Putonlalla joins (~Putonlall@it-cyan.it.jyu.fi) |
| 04:13:30 | → | Maxdamantus joins (~Maxdamant@user/maxdamantus) |
| 04:13:30 | → | barrucadu joins (~barrucadu@carcosa.barrucadu.co.uk) |
| 04:13:30 | → | hnOsmium0001 joins (~hnosm@user/hnOsmium0001) |
| 04:13:30 | → | cross joins (~cross@spitfire.i.gajendra.net) |
| 04:13:30 | → | joeyh joins (joeyh@2600:3c03::f03c:91ff:fe73:b0d2) |
| 04:13:30 | → | emergence joins (emergence@2607:5300:60:5910:dcad:beff:feef:5bc) |
| 04:13:30 | → | nyc joins (~nyc@user/nyc) |
| 04:13:30 | → | Everything joins (~Everythin@static.208.206.21.65.clients.your-server.de) |
| 04:13:30 | → | drdo joins (~drdo@bl8-153-185.dsl.telepac.pt) |
| 04:13:30 | → | hays joins (rootvegeta@fsf/member/hays) |
| 04:13:30 | → | anpad joins (~pandeyan@user/anpad) |
| 04:13:30 | → | heartburn joins (~gass@2a00:d880:3:1::b1e4:b241) |
| 04:13:30 | → | ridcully joins (~ridcully@p57b52f2c.dip0.t-ipconnect.de) |
| 04:13:30 | → | megaTherion joins (~therion@unix.io) |
| 04:13:30 | → | cawfee joins (~root@2406:3003:2077:2758::babe) |
| 04:13:32 | × | cross quits (~cross@spitfire.i.gajendra.net) (Max SendQ exceeded) |
| 04:13:32 | × | cheater quits (~Username@user/cheater) (Max SendQ exceeded) |
| 04:14:00 | × | kristjansson_ quits (sid126207@id-126207.tinside.irccloud.com) (Ping timeout: 258 seconds) |
| 04:14:46 | × | sa quits (sid1055@id-1055.tinside.irccloud.com) (Ping timeout: 258 seconds) |
| 04:15:21 | → | cross joins (~cross@spitfire.i.gajendra.net) |
| 04:15:35 | → | kristjansson_ joins (sid126207@id-126207.tinside.irccloud.com) |
| 04:16:03 | → | cheater joins (~Username@user/cheater) |
| 04:17:00 | × | hdggxin quits (~hdggxin@122.175.41.19) (Ping timeout: 252 seconds) |
| 04:18:46 | → | sa joins (sid1055@id-1055.tinside.irccloud.com) |
| 04:20:20 | → | hdggxin joins (~hdggxin@122.175.41.19) |
| 04:37:55 | × | aaronm04 quits (~user@user/aaronm04) (Server closed connection) |
| 04:38:15 | → | aaronm04 joins (~user@user/aaronm04) |
| 04:39:57 | → | takuan joins (~takuan@178-116-218-225.access.telenet.be) |
| 04:44:49 | → | michalz joins (~michalz@185.246.207.197) |
| 04:45:09 | → | Feuermagier joins (~Feuermagi@user/feuermagier) |
| 04:54:04 | → | mud joins (~mud@user/kadoban) |
| 04:56:46 | × | Nokurn quits (~jeremiah@cpe-76-86-186-227.socal.res.rr.com) (Ping timeout: 250 seconds) |
| 05:08:19 | × | ft quits (~ft@p508db151.dip0.t-ipconnect.de) (Quit: leaving) |
| 05:14:34 | × | tomku quits (~tomku@user/tomku) (Ping timeout: 258 seconds) |
| 05:18:51 | → | bgs joins (~bgs@212-85-160-171.dynamic.telemach.net) |
| 05:19:41 | × | vjoki quits (~vjoki@2a00:d880:3:1::fea1:9ae) (Server closed connection) |
| 05:20:37 | × | shapr quits (~user@2600:1700:c640:3100:cca5:97e3:b957:869b) (Ping timeout: 245 seconds) |
| 05:20:57 | → | vjoki joins (~vjoki@2a00:d880:3:1::fea1:9ae) |
| 05:21:16 | → | tomku joins (~tomku@user/tomku) |
| 05:25:17 | × | _________ quits (~nobody@user/noodly) (Quit: Reconnecting) |
| 05:25:33 | → | finn joins (~finn@176-151-21-224.abo.bbox.fr) |
| 05:25:40 | → | _________ joins (~nobody@user/noodly) |
| 05:26:10 | × | welterde quits (welterde@thinkbase.srv.welterde.de) (Server closed connection) |
| 05:26:52 | → | welterde joins (welterde@thinkbase.srv.welterde.de) |
| 05:27:53 | → | jonathan_ joins (~jonathan@c83-252-3-92.bredband.tele2.se) |
| 05:31:15 | × | _ht quits (~Thunderbi@28-52-174-82.ftth.glasoperator.nl) (Quit: _ht) |
| 05:36:56 | → | trev joins (~trev@user/trev) |
| 05:41:06 | × | sweater quits (~sweater@206.81.18.26) (Server closed connection) |
| 05:41:24 | → | sweater joins (~sweater@206.81.18.26) |
| 05:43:44 | × | azimut quits (~azimut@gateway/tor-sasl/azimut) (Ping timeout: 240 seconds) |
| 05:45:20 | × | ec quits (~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds) |
| 05:45:54 | → | ec joins (~ec@gateway/tor-sasl/ec) |
| 05:50:52 | × | jonathan_ quits (~jonathan@c83-252-3-92.bredband.tele2.se) (Read error: Connection reset by peer) |
| 05:53:44 | × | finn quits (~finn@176-151-21-224.abo.bbox.fr) (Ping timeout: 246 seconds) |
| 06:00:16 | × | pat__ quits (~pat67@pool-100-36-172-241.washdc.fios.verizon.net) (Remote host closed the connection) |
| 06:03:46 | → | finn joins (~finn@176-151-21-224.abo.bbox.fr) |
| 06:05:43 | × | bgs quits (~bgs@212-85-160-171.dynamic.telemach.net) (Remote host closed the connection) |
| 06:11:12 | × | Guest585 quits (~mike@user/feetwind) (Server closed connection) |
| 06:11:31 | → | Guest585 joins (~mike@user/feetwind) |
| 06:11:59 | → | yaroot_ joins (~yaroot@p2782030-ipngn7701souka.saitama.ocn.ne.jp) |
| 06:13:59 | × | yaroot quits (~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp) (Ping timeout: 240 seconds) |
| 06:14:00 | yaroot_ | is now known as yaroot |
| 06:17:14 | × | tcard quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (Quit: Leaving) |
| 06:21:13 | × | whatsupdoc quits (uid509081@id-509081.hampstead.irccloud.com) (Quit: Connection closed for inactivity) |
| 06:22:10 | → | whatsupdoc joins (uid509081@id-509081.hampstead.irccloud.com) |
| 06:22:10 | → | tcard joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 06:22:35 | × | finn quits (~finn@176-151-21-224.abo.bbox.fr) (Ping timeout: 260 seconds) |
| 06:27:19 | → | acidjnk joins (~acidjnk@p200300d6e7072f582449b77723e04244.dip0.t-ipconnect.de) |
| 06:37:03 | → | pat67 joins (~pat67@145.14.135.131) |
| 06:40:17 | × | mauke quits (~mauke@user/mauke) (Ping timeout: 246 seconds) |
| 06:43:55 | → | actioninja joins (~actioninj@user/actioninja) |
| 06:45:26 | × | dyniec quits (~dyniec@mail.dybiec.info) (Server closed connection) |
| 06:45:43 | → | dyniec joins (~dyniec@mail.dybiec.info) |
| 06:49:44 | → | teleprompter[m] joins (~telepromp@2001:470:69fc:105::3:74ef) |
| 06:50:29 | × | ridcully quits (~ridcully@p57b52f2c.dip0.t-ipconnect.de) (Ping timeout: 240 seconds) |
| 06:50:57 | → | tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
| 06:51:17 | → | coot joins (~coot@89-69-206-216.dynamic.chello.pl) |
| 06:51:29 | → | ridcully joins (~ridcully@p57b52f2c.dip0.t-ipconnect.de) |
| 06:54:41 | → | CiaoSen joins (~Jura@2a05:5800:29f:3300:664b:f0ff:fe37:9ef) |
| 06:58:00 | → | fweht joins (uid404746@id-404746.lymington.irccloud.com) |
| 07:06:52 | → | gmg joins (~user@user/gehmehgeh) |
| 07:07:00 | → | vpan joins (~0@mail.elitnet.lt) |
| 07:09:44 | → | fendor joins (~fendor@2a02:8388:1640:be00:7aca:a77a:4a28:631a) |
| 07:15:54 | × | kmein quits (~weechat@user/kmein) (Quit: ciao kakao) |
| 07:18:04 | → | kmein joins (~weechat@user/kmein) |
| 07:24:54 | → | mmhat joins (~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) |
| 07:25:10 | × | mmhat quits (~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) (Client Quit) |
| 07:25:57 | × | eggplantade quits (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Remote host closed the connection) |
| 07:33:41 | × | jocke-l quits (jocke-l@a.x0.is) (Server closed connection) |
| 07:34:06 | → | jocke-l joins (jocke-l@a.x0.is) |
| 07:35:41 | × | gmg quits (~user@user/gehmehgeh) (Remote host closed the connection) |
| 07:35:48 | × | euandreh quits (~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds) |
| 07:36:22 | → | gmg joins (~user@user/gehmehgeh) |
| 07:38:09 | → | euandreh joins (~Thunderbi@189.6.18.7) |
| 07:42:18 | × | euandreh quits (~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds) |
| 07:42:29 | → | hisa382 joins (~hisa38@104-181-102-238.lightspeed.wepbfl.sbcglobal.net) |
| 07:43:57 | × | hisa38 quits (~hisa38@104-181-102-238.lightspeed.wepbfl.sbcglobal.net) (Ping timeout: 245 seconds) |
| 07:43:58 | hisa382 | is now known as hisa38 |
| 07:44:19 | × | ijqq quits (uid603979@2a03:5180:f:1::9:374b) (Quit: Connection closed for inactivity) |
| 07:45:59 | × | tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 07:46:01 | → | mc47 joins (~mc47@xmonad/TheMC47) |
| 07:46:19 | → | euandreh joins (~Thunderbi@189.6.18.7) |
| 07:50:32 | × | euandreh quits (~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds) |
| 07:53:23 | × | johnw quits (~johnw@76-234-69-149.lightspeed.frokca.sbcglobal.net) (Quit: ZNC - http://znc.in) |
| 07:53:40 | × | actioninja quits (~actioninj@user/actioninja) (Quit: see ya mane) |
| 07:54:07 | → | actioninja joins (~actioninj@user/actioninja) |
| 07:55:29 | → | machinedgod joins (~machinedg@d198-53-218-113.abhsia.telus.net) |
| 07:59:09 | × | jil quits (~user@vps-15050500.vps.ovh.net) (Quit: ERC 5.4 (IRC client for GNU Emacs 28.2)) |
| 07:59:32 | → | jil joins (~user@vps-15050500.vps.ovh.net) |
| 08:05:20 | × | mei quits (~mei@user/mei) (Ping timeout: 246 seconds) |
| 08:06:26 | <dminuoso> | I have a bunch of lines with varying leading whitespace. I would like to build some kind of tree represeentation according to the whitespace (such that subsequent lines with the same amount of indentation become children of the previous group that has one-less indentation. |
| 08:06:29 | → | chele joins (~chele@user/chele) |
| 08:07:18 | <dminuoso> | Before I go build this myself, is there some simple parser combinators (say for attoparsec) that would give me this? |
| 08:10:54 | → | shriekingnoise_ joins (~shrieking@186.137.175.87) |
| 08:12:10 | → | johnw joins (~johnw@76-234-69-149.lightspeed.frokca.sbcglobal.net) |
| 08:12:12 | × | shriekingnoise quits (~shrieking@186.137.175.87) (Ping timeout: 250 seconds) |
| 08:12:52 | → | shriekingnoise joins (~shrieking@186.137.175.87) |
| 08:13:56 | × | _d0t quits (~{-d0t-}@user/-d0t-/x-7915216) (Remote host closed the connection) |
| 08:14:20 | → | merijn joins (~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) |
| 08:14:36 | × | mstksg quits (~jle`@cpe-23-240-75-236.socal.res.rr.com) (Ping timeout: 252 seconds) |
| 08:14:45 | → | _d0t joins (~{-d0t-}@user/-d0t-/x-7915216) |
| 08:15:35 | × | shriekingnoise_ quits (~shrieking@186.137.175.87) (Ping timeout: 264 seconds) |
| 08:16:31 | → | mstksg joins (~jle`@cpe-23-240-75-236.socal.res.rr.com) |
| 08:17:30 | × | shriekingnoise quits (~shrieking@186.137.175.87) (Ping timeout: 260 seconds) |
| 08:21:19 | <probie> | I don't think it's particularly convenient for most parser combinator libraries. Even if it's supported it'll probably involve a lot of unnecessary backtracking |
| 08:21:39 | → | cfricke joins (~cfricke@user/cfricke) |
| 08:22:31 | aforemny_ | is now known as aforemny |
| 08:26:00 | → | oo_miguel joins (~Thunderbi@78-11-179-96.static.ip.netia.com.pl) |
| 08:26:45 | → | eggplantade joins (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) |
| 08:27:31 | <tdammers> | megaparsec has a few primitives that can be used for parsing indentation-based syntax: https://hackage.haskell.org/package/megaparsec-9.4.1/docs/Text-Megaparsec-Char-Lexer.html#g:2 |
| 08:28:35 | → | ubert joins (~Thunderbi@p200300ecdf0b5770229a67f1b6d9782d.dip0.t-ipconnect.de) |
| 08:30:07 | × | Katarushisu quits (~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net) (Quit: The Lounge - https://thelounge.chat) |
| 08:30:25 | → | Katarushisu joins (~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net) |
| 08:31:02 | × | eggplantade quits (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Ping timeout: 245 seconds) |
| 08:38:11 | → | tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
| 08:38:53 | × | hpc quits (~juzz@ip98-169-35-163.dc.dc.cox.net) (Ping timeout: 258 seconds) |
| 08:40:28 | → | hpc joins (~juzz@ip98-169-35-163.dc.dc.cox.net) |
| 08:40:49 | × | Sgeo quits (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
| 08:42:28 | × | tzh quits (~tzh@c-24-21-73-154.hsd1.or.comcast.net) (Quit: zzz) |
| 08:43:44 | × | gmg quits (~user@user/gehmehgeh) (Ping timeout: 240 seconds) |
| 08:45:15 | → | gmg joins (~user@user/gehmehgeh) |
| 08:45:15 | → | zeenk joins (~zeenk@2a02:2f04:a203:a700::7fe) |
| 08:45:53 | × | tom__ quits (~tom@2a00:23c8:970c:4801:5b6a:e81b:79dc:f684) (Remote host closed the connection) |
| 08:46:06 | → | tom__ joins (~tom@2a00:23c8:970c:4801:5b6a:e81b:79dc:f684) |
| 08:50:41 | → | gnalzo joins (~gnalzo@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c) |
| 08:53:27 | × | son0p quits (~ff@181.136.122.143) (Ping timeout: 258 seconds) |
| 08:54:01 | → | danse-nr3 joins (~francesco@151.44.132.173) |
| 08:56:11 | → | misterfish joins (~misterfis@87.215.131.102) |
| 08:58:25 | × | sudden quits (~cat@user/sudden) (Server closed connection) |
| 08:58:41 | → | sudden joins (~cat@user/sudden) |
| 09:00:06 | × | jorwas[m] quits (~jorwasmat@2001:470:69fc:105::3:60e7) (Remote host closed the connection) |
| 09:05:25 | × | econo_ quits (uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity) |
| 09:06:58 | × | yvan-sraka quits (sid419690@id-419690.lymington.irccloud.com) (Server closed connection) |
| 09:07:09 | → | yvan-sraka joins (sid419690@id-419690.lymington.irccloud.com) |
| 09:07:13 | → | euandreh joins (~Thunderbi@189.6.18.7) |
| 09:07:20 | × | ec quits (~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds) |
| 09:08:24 | → | Pickchea joins (~private@user/pickchea) |
| 09:08:26 | → | ec joins (~ec@gateway/tor-sasl/ec) |
| 09:09:50 | → | Tuplanolla joins (~Tuplanoll@91-159-68-236.elisa-laajakaista.fi) |
| 09:11:34 | × | euandreh quits (~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds) |
| 09:16:45 | × | Lord_of_Life quits (~Lord@user/lord-of-life/x-2819915) (Ping timeout: 246 seconds) |
| 09:17:06 | → | nate2 joins (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
| 09:17:53 | → | Lord_of_Life joins (~Lord@user/lord-of-life/x-2819915) |
| 09:18:40 | → | euandreh joins (~Thunderbi@189.6.18.7) |
| 09:21:42 | × | nate2 quits (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 252 seconds) |
| 09:32:47 | → | mei joins (~mei@user/mei) |
| 09:39:17 | <dminuoso> | tdammers: Mmm, I guess `first length . span isSpace` gives me all I need then. |
| 09:39:30 | <dminuoso> | It then boils down to a simple loop to construct a tree with that. |
| 09:41:28 | × | chromoblob quits (~user@37.113.180.121) (Ping timeout: 250 seconds) |
| 09:45:43 | × | tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Read error: Connection reset by peer) |
| 09:46:46 | × | dextaa quits (~DV@user/dextaa) (Read error: Connection reset by peer) |
| 09:47:18 | → | dextaa joins (~DV@user/dextaa) |
| 09:57:44 | → | titibandit joins (~titibandi@user/titibandit) |
| 10:03:32 | × | CAT_S_ quits (apic@brezn3.muc.ccc.de) (Quit: Reconnecting) |
| 10:03:39 | × | xff0x_ quits (~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) (Ping timeout: 246 seconds) |
| 10:03:43 | → | CAT_S joins (apic@brezn3.muc.ccc.de) |
| 10:10:37 | × | driib quits (~driib@vmi931078.contaboserver.net) (Quit: The Lounge - https://thelounge.chat) |
| 10:11:00 | → | driib joins (~driib@vmi931078.contaboserver.net) |
| 10:11:43 | → | chromoblob joins (~user@37.113.180.121) |
| 10:20:53 | → | raehik joins (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) |
| 10:26:00 | ← | L29Ah parts (~L29Ah@wikipedia/L29Ah) () |
| 10:26:59 | × | Maxdamantus quits (~Maxdamant@user/maxdamantus) (Ping timeout: 240 seconds) |
| 10:27:02 | → | __monty__ joins (~toonn@user/toonn) |
| 10:29:11 | → | Maxdamantus joins (~Maxdamant@user/maxdamantus) |
| 10:30:30 | × | pie_ quits (~pie_bnc@user/pie/x-2818909) () |
| 10:30:46 | → | pie_ joins (~pie_bnc@user/pie/x-2818909) |
| 10:40:15 | × | dispater quits (~dispater@user/brprice) (Server closed connection) |
| 10:40:33 | → | dispater joins (~dispater@user/brprice) |
| 10:42:50 | × | hugo quits (znc@verdigris.lysator.liu.se) (Ping timeout: 246 seconds) |
| 10:43:28 | × | orcus quits (~orcus@user/brprice) (Server closed connection) |
| 10:43:48 | → | orcus joins (~orcus@user/brprice) |
| 10:46:55 | → | Midjak joins (~Midjak@82.66.147.146) |
| 10:51:29 | → | hugo joins (znc@verdigris.lysator.liu.se) |
| 10:56:03 | × | ubert quits (~Thunderbi@p200300ecdf0b5770229a67f1b6d9782d.dip0.t-ipconnect.de) (Quit: ubert) |
| 10:56:08 | × | cafkafk quits (~cafkafk@fsf/member/cafkafk) (Ping timeout: 240 seconds) |
| 10:58:36 | → | cafkafk joins (~cafkafk@fsf/member/cafkafk) |
| 10:59:11 | → | doyougnu joins (~doyougnu@45.46.170.68) |
| 10:59:56 | → | wootehfoot joins (~wootehfoo@user/wootehfoot) |
| 11:11:10 | × | chromoblob quits (~user@37.113.180.121) (Ping timeout: 250 seconds) |
| 11:13:16 | × | gnalzo quits (~gnalzo@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c) (Quit: WeeChat 3.8) |
| 11:16:05 | × | hugo quits (znc@verdigris.lysator.liu.se) (Ping timeout: 246 seconds) |
| 11:16:31 | × | mei quits (~mei@user/mei) (Remote host closed the connection) |
| 11:18:55 | → | mei joins (~mei@user/mei) |
| 11:21:31 | × | pavonia quits (~user@user/siracusa) (Quit: Bye!) |
| 11:22:47 | × | danse-nr3 quits (~francesco@151.44.132.173) (Ping timeout: 264 seconds) |
| 11:25:06 | → | hugo joins (znc@verdigris.lysator.liu.se) |
| 11:29:23 | × | acidjnk quits (~acidjnk@p200300d6e7072f582449b77723e04244.dip0.t-ipconnect.de) (Ping timeout: 264 seconds) |
| 11:29:47 | × | doyougnu quits (~doyougnu@45.46.170.68) (Remote host closed the connection) |
| 11:33:12 | → | jtza8 joins (~user@165.255.86.117) |
| 11:33:17 | × | dextaa quits (~DV@user/dextaa) (Quit: Leaving) |
| 11:34:28 | → | dextaa joins (~DV@user/dextaa) |
| 11:36:02 | × | raehik quits (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 246 seconds) |
| 11:40:30 | → | doyougnu joins (~node0@45.46.170.68) |
| 11:43:13 | × | coot quits (~coot@89-69-206-216.dynamic.chello.pl) (Quit: coot) |
| 11:43:49 | → | coot joins (~coot@89-69-206-216.dynamic.chello.pl) |
| 11:44:45 | → | chromoblob joins (~user@37.113.180.121) |
| 11:45:51 | → | raehik joins (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) |
| 11:48:26 | → | tomjaguarpaw joins (~tom@172-104-25-182.ip.linodeusercontent.com) |
| 11:49:18 | × | chromoblob quits (~user@37.113.180.121) (Ping timeout: 250 seconds) |
| 11:49:47 | → | chromoblob joins (~user@37.113.180.121) |
| 11:51:20 | × | ec quits (~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds) |
| 11:51:27 | × | Pickchea quits (~private@user/pickchea) (Quit: Leaving) |
| 11:56:47 | → | Lycurgus joins (~juan@user/Lycurgus) |
| 11:56:53 | × | doyougnu quits (~node0@45.46.170.68) (Quit: ZNC 1.8.2 - https://znc.in) |
| 11:58:45 | → | doyougnu joins (~node0@45.46.170.68) |
| 12:04:01 | → | finn joins (~finn@rul16-h01-176-151-21-224.dsl.sta.abo.bbox.fr) |
| 12:07:58 | → | ec joins (~ec@gateway/tor-sasl/ec) |
| 12:12:35 | × | raehik quits (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 264 seconds) |
| 12:13:32 | × | cbarrett quits (sid192934@id-192934.helmsley.irccloud.com) (Server closed connection) |
| 12:13:41 | → | cbarrett joins (sid192934@id-192934.helmsley.irccloud.com) |
| 12:18:37 | → | xff0x_ joins (~xff0x@2405:6580:b080:900:57ce:487e:db60:a2b9) |
| 12:21:04 | × | doyougnu quits (~node0@45.46.170.68) (Quit: ZNC 1.8.2 - https://znc.in) |
| 12:21:24 | → | doyougnu joins (~node0@45.46.170.68) |
| 12:24:20 | × | kawen quits (~quassel@static.208.191.216.95.clients.your-server.de) (Server closed connection) |
| 12:24:29 | → | kawen joins (~quassel@static.208.191.216.95.clients.your-server.de) |
| 12:30:17 | → | eggplantade joins (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) |
| 12:31:13 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 12:33:48 | → | raehik joins (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) |
| 12:34:47 | × | eggplantade quits (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Ping timeout: 264 seconds) |
| 12:35:51 | → | acidjnk joins (~acidjnk@p200300d6e7072f582449b77723e04244.dip0.t-ipconnect.de) |
| 12:41:42 | → | danse-nr3 joins (~francesco@151.44.132.173) |
| 12:46:11 | → | bontaq joins (~user@ool-45779b84.dyn.optonline.net) |
| 12:48:29 | → | danse-nr3_ joins (~francesco@151.46.165.173) |
| 12:50:50 | × | danse-nr3 quits (~francesco@151.44.132.173) (Ping timeout: 250 seconds) |
| 12:51:05 | × | Lycurgus quits (~juan@user/Lycurgus) (Quit: Exeunt: personae.ai-integration.biz) |
| 13:02:12 | × | raehik quits (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Quit: WeeChat 3.8) |
| 13:05:19 | × | dsrt^ quits (~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) (Remote host closed the connection) |
| 13:05:40 | → | dsrt^ joins (~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) |
| 13:09:18 | × | dsrt^ quits (~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) (Remote host closed the connection) |
| 13:09:36 | → | dsrt^ joins (~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) |
| 13:10:01 | → | [itchyjunk] joins (~itchyjunk@user/itchyjunk/x-7353470) |
| 13:26:59 | × | finn quits (~finn@rul16-h01-176-151-21-224.dsl.sta.abo.bbox.fr) (Ping timeout: 264 seconds) |
| 13:28:40 | × | degraafk quits (sid71464@id-71464.lymington.irccloud.com) (Server closed connection) |
| 13:28:50 | → | degraafk joins (sid71464@id-71464.lymington.irccloud.com) |
| 13:32:42 | × | __monty__ quits (~toonn@user/toonn) (Quit: leaving) |
| 13:38:56 | × | cfricke quits (~cfricke@user/cfricke) (Ping timeout: 250 seconds) |
| 13:42:53 | × | CalculusCats7 quits (NyaaTheKit@user/calculuscat) (Quit: Meow Meow Meow Meow Meow Meow Meow Meow) |
| 13:43:58 | → | CalculusCats joins (NyaaTheKit@user/calculuscat) |
| 13:48:12 | × | notzmv quits (~zmv@user/notzmv) (Ping timeout: 240 seconds) |
| 13:51:51 | × | vpan quits (~0@mail.elitnet.lt) (Quit: Leaving.) |
| 13:52:34 | → | ripspin joins (~chatzilla@1.145.204.85) |
| 13:56:02 | × | danse-nr3_ quits (~francesco@151.46.165.173) (Ping timeout: 245 seconds) |
| 14:03:06 | → | __monty__ joins (~toonn@user/toonn) |
| 14:07:12 | → | gurkenglas joins (~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) |
| 14:15:17 | × | acidjnk quits (~acidjnk@p200300d6e7072f582449b77723e04244.dip0.t-ipconnect.de) (Ping timeout: 246 seconds) |
| 14:15:46 | × | pjlsergeant__ quits (sid143467@id-143467.hampstead.irccloud.com) (Server closed connection) |
| 14:15:59 | → | pjlsergeant__ joins (sid143467@id-143467.hampstead.irccloud.com) |
| 14:18:42 | → | danse-nr3_ joins (~francesco@151.46.165.173) |
| 14:22:00 | → | Pickchea joins (~private@user/pickchea) |
| 14:26:29 | → | cfricke joins (~cfricke@user/cfricke) |
| 14:30:12 | → | jero98772 joins (~jero98772@2800:484:1d7f:5d36::2) |
| 14:32:14 | × | misterfish quits (~misterfis@87.215.131.102) (Ping timeout: 250 seconds) |
| 14:36:13 | × | mht-wtf quits (~mht@2a03:b0c0:3:e0::1e2:c001) (Server closed connection) |
| 14:36:25 | → | mht-wtf joins (~mht@2a03:b0c0:3:e0::1e2:c001) |
| 14:38:18 | × | Pickchea quits (~private@user/pickchea) (Ping timeout: 250 seconds) |
| 14:44:49 | → | infinity0 joins (~infinity0@pwned.gg) |
| 14:45:28 | × | jtza8 quits (~user@165.255.86.117) (Quit: ERC 5.4 (IRC client for GNU Emacs 28.2)) |
| 14:46:35 | → | Unicorn_Princess joins (~Unicorn_P@user/Unicorn-Princess/x-3540542) |
| 14:48:15 | → | son0p joins (~ff@181.136.122.143) |
| 14:49:54 | × | Arsen_ quits (arsen@gentoo/developer/managarm.dev.Arsen) (Quit: Quit.) |
| 14:53:45 | × | zeenk quits (~zeenk@2a02:2f04:a203:a700::7fe) (Quit: Konversation terminated!) |
| 14:54:58 | → | Arsen joins (arsen@gentoo/developer/managarm.dev.Arsen) |
| 14:56:47 | → | gnalzo joins (~gnalzo@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c) |
| 14:58:54 | → | mauke joins (~mauke@user/mauke) |
| 14:59:23 | × | albet70 quits (~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection) |
| 14:59:32 | × | danse-nr3_ quits (~francesco@151.46.165.173) (Ping timeout: 250 seconds) |
| 15:00:09 | → | ft joins (~ft@p508db151.dip0.t-ipconnect.de) |
| 15:00:10 | × | __monty__ quits (~toonn@user/toonn) (Quit: leaving) |
| 15:00:44 | → | shriekingnoise joins (~shrieking@186.137.175.87) |
| 15:04:28 | → | byte joins (~byte@user/byte) |
| 15:05:09 | × | Cale quits (~cale@cpe80d04ade0a03-cm80d04ade0a01.cpe.net.cable.rogers.com) (Read error: Connection reset by peer) |
| 15:05:30 | → | albet70 joins (~xxx@2400:8902::f03c:92ff:fe60:98d8) |
| 15:06:01 | → | Cale joins (~cale@cpe80d04ade0a03-cm80d04ade0a01.cpe.net.cable.rogers.com) |
| 15:07:14 | × | scav quits (sid309693@user/scav) (Server closed connection) |
| 15:07:50 | → | scav joins (sid309693@user/scav) |
| 15:08:26 | → | __monty__ joins (~toonn@user/toonn) |
| 15:09:23 | × | sunarch quits (~sunarch@user/sunarch) (Quit: WeeChat 3.8) |
| 15:12:51 | → | danse-nr3_ joins (~francesco@151.46.165.173) |
| 15:16:53 | × | grfn quits (sid449115@id-449115.helmsley.irccloud.com) (Server closed connection) |
| 15:17:01 | → | grfn joins (sid449115@id-449115.helmsley.irccloud.com) |
| 15:17:40 | → | bgs joins (~bgs@212-85-160-171.dynamic.telemach.net) |
| 15:19:08 | → | mmhat joins (~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) |
| 15:23:19 | × | wallymathieu quits (sid533252@id-533252.uxbridge.irccloud.com) (Server closed connection) |
| 15:23:29 | → | wallymathieu joins (sid533252@id-533252.uxbridge.irccloud.com) |
| 15:26:24 | × | merijn quits (~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) (Ping timeout: 250 seconds) |
| 15:37:02 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 15:39:08 | → | infinity0 joins (~infinity0@pwned.gg) |
| 15:40:15 | → | Sgeo joins (~Sgeo@user/sgeo) |
| 15:40:55 | × | mmhat quits (~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) (Quit: WeeChat 3.8) |
| 15:41:55 | × | euandreh quits (~Thunderbi@189.6.18.7) (Remote host closed the connection) |
| 15:53:41 | → | euandreh joins (~Thunderbi@189.6.18.7) |
| 15:53:49 | → | merijn joins (~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) |
| 15:54:49 | → | eggplantade joins (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) |
| 15:58:32 | × | cafkafk quits (~cafkafk@fsf/member/cafkafk) (Ping timeout: 240 seconds) |
| 15:59:17 | → | notzmv joins (~zmv@user/notzmv) |
| 16:03:04 | → | econo_ joins (uid147250@id-147250.tinside.irccloud.com) |
| 16:04:47 | × | CiaoSen quits (~Jura@2a05:5800:29f:3300:664b:f0ff:fe37:9ef) (Ping timeout: 245 seconds) |
| 16:05:06 | × | eggplantade quits (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Remote host closed the connection) |
| 16:06:08 | → | nut joins (~finn@176-151-21-224.abo.bbox.fr) |
| 16:06:50 | → | eggplantade joins (~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net) |
| 16:07:47 | × | danse-nr3_ quits (~francesco@151.46.165.173) (Ping timeout: 264 seconds) |
| 16:07:47 | × | byte quits (~byte@user/byte) (Ping timeout: 264 seconds) |
| 16:09:18 | × | cfricke quits (~cfricke@user/cfricke) (Quit: WeeChat 3.8) |
| 16:10:26 | × | nut quits (~finn@176-151-21-224.abo.bbox.fr) (Ping timeout: 246 seconds) |
| 16:12:33 | → | _ht joins (~Thunderbi@28-52-174-82.ftth.glasoperator.nl) |
| 16:15:01 | → | byte joins (~byte@user/byte) |
| 16:18:32 | × | xff0x_ quits (~xff0x@2405:6580:b080:900:57ce:487e:db60:a2b9) (Ping timeout: 245 seconds) |
| 16:20:30 | → | xff0x_ joins (~xff0x@ai098135.d.east.v6connect.net) |
| 16:21:56 | → | danse-nr3_ joins (~francesco@151.46.165.173) |
| 16:27:04 | × | merijn quits (~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) (Ping timeout: 250 seconds) |
| 16:28:31 | → | tzh joins (~tzh@c-24-21-73-154.hsd1.or.comcast.net) |
| 16:29:34 | × | perrierjouet quits (~perrier-j@modemcable048.127-56-74.mc.videotron.ca) (Quit: WeeChat 3.8) |
| 16:29:53 | → | perrierjouet joins (~perrier-j@modemcable048.127-56-74.mc.videotron.ca) |
| 16:35:35 | × | gnalzo quits (~gnalzo@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c) (Quit: WeeChat 3.8) |
| 16:35:45 | × | TheCoffeMaker quits (~TheCoffeM@user/thecoffemaker) (Ping timeout: 240 seconds) |
| 16:36:33 | → | Guest63 joins (~Guest5@p4fc7a247.dip0.t-ipconnect.de) |
| 16:37:01 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 16:38:03 | × | jinsl quits (~jinsl@2408:8207:2558:8870:211:32ff:fec8:6aea) (Quit: ZNC - https://znc.in) |
| 16:38:10 | × | eggplantade quits (~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection) |
| 16:38:16 | → | jinsl joins (~jinsl@2408:8207:2558:8870:211:32ff:fec8:6aea) |
| 16:38:22 | × | Guest63 quits (~Guest5@p4fc7a247.dip0.t-ipconnect.de) (Client Quit) |
| 16:38:52 | × | ByronJohnson quits (~bairyn@50.250.232.19) (Ping timeout: 240 seconds) |
| 16:39:08 | → | infinity0 joins (~infinity0@pwned.gg) |
| 16:39:09 | → | ByronJohnson joins (~bairyn@50-250-232-19-static.hfc.comcastbusiness.net) |
| 16:41:54 | × | gurkenglas quits (~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) (Read error: Connection reset by peer) |
| 16:48:05 | → | gurkenglas joins (~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) |
| 16:48:14 | × | danse-nr3_ quits (~francesco@151.46.165.173) (Read error: Connection reset by peer) |
| 16:48:16 | → | danse-nr3__ joins (~francesco@151.46.142.153) |
| 16:48:38 | → | k`` joins (~user@136.56.140.2) |
| 16:51:00 | <k``> | Why does Haskell prefer `tail` and `init` throwing an error on `[]` rather than producing `[]` ? |
| 16:52:10 | <ncf> | because that would make no sense, and possibly result in hard-to-debug infinite loops |
| 16:53:24 | <EvanR> | more incisive question is why haskell gives tail and init the "wrong type" (a more precise type might catch that error) |
| 16:53:25 | × | __monty__ quits (~toonn@user/toonn) (Quit: leaving) |
| 16:54:02 | <k``> | You mean for folks calling `fix tail` and then using unsafePerformIO to catch the error that it eventually throws? |
| 16:54:46 | <k``> | Sorry, not `fix` |
| 16:58:01 | <EvanR> | usually algorithms with tail are written assuming the argument list of non-empty. In which case the presence of an empty list is a bug. But if you can reasonably use a case statement instead of tail you're golden |
| 16:58:13 | <EvanR> | init is a bit harder to do that way |
| 16:58:31 | <ncf> | k``: sum l = head l + sum (tail l) -- oops, i forgot the base case; what happens now? |
| 16:58:35 | × | ft quits (~ft@p508db151.dip0.t-ipconnect.de) (Quit: leaving) |
| 16:58:45 | <ncf> | should sum [] loop forever or crash? |
| 16:59:11 | <ncf> | (well it would crash anyway because of head [] but you get the idea) |
| 16:59:19 | → | TheCoffeMaker joins (~TheCoffeM@user/thecoffemaker) |
| 16:59:20 | <k``> | I mean, you're using head without checking for null. Is that not universally regarded as insane? |
| 16:59:36 | <EvanR> | making the programming language treat human errors as not errors is an ancient crime against humanity |
| 16:59:49 | <chromoblob> | length l = 1 + length (tail l) |
| 17:00:00 | <chromoblob> | "ancient" hehehe |
| 17:00:05 | <k``> | Fair. |
| 17:00:30 | <geekosaur> | goes back at least to WATFIV |
| 17:00:37 | <EvanR> | the javascript table of what happens if you use + in any way, none of which are a crash, is a great example |
| 17:00:40 | <ncf> | k``: i mean sure, but in that case there's no point in tail [] returning [] either... |
| 17:00:43 | <geekosaur> | seems ancient enough to me |
| 17:01:03 | <chromoblob> | tail [] = "banana" |
| 17:01:10 | <chromoblob> | tail :: String -> String |
| 17:01:20 | → | ft joins (~ft@p508db151.dip0.t-ipconnect.de) |
| 17:01:53 | <EvanR> | and I'll repeat the first point. [] is not the tail of an empty list so... doing that would not "do what it says on the tin" |
| 17:02:10 | <k``> | The tail of the empty list is what you define it to be. |
| 17:02:18 | <EvanR> | really. |
| 17:02:23 | <chromoblob> | you shouldn't define it at all |
| 17:02:34 | <chromoblob> | so that's why it's bottom, i think |
| 17:02:47 | <k``> | I think `tail [] = undefined` is pretty unhelpful. |
| 17:03:06 | <mauke> | how so? |
| 17:03:17 | <k``> | Or do you mean the case should be ommitted? |
| 17:03:32 | × | Xe quits (~cadey@tailscale/xe) (Ping timeout: 245 seconds) |
| 17:03:37 | <EvanR> | you can omit that case with a different type signature |
| 17:03:54 | <int-e> | > tail [] |
| 17:03:56 | <lambdabot> | *Exception: Prelude.tail: empty list |
| 17:04:24 | → | kimiamania6 joins (~6790af62@user/kimiamania) |
| 17:04:47 | → | __monty__ joins (~toonn@user/toonn) |
| 17:05:12 | <chromoblob> | this is almost like "what is the natural predecessor of 0" |
| 17:05:39 | <chromoblob> | if it had a predecessor, you couldn't do infinite descent |
| 17:06:55 | <EvanR> | also, if you are keen to define things in ways that you find to be helpful, you can |
| 17:07:12 | <chromoblob> | tailOrEmpty |
| 17:07:21 | <EvanR> | ^ |
| 17:07:35 | <k``> | So then let me ask another question. Why does `drop 1` [] not throw an error? |
| 17:07:37 | <ncf> | defining pred 0 = 0 wouldn't magically make ℕ non-well-founded, but it would break the contract that pred x < x |
| 17:08:08 | <k``> | > drop 1 [] |
| 17:08:10 | <lambdabot> | [] |
| 17:08:23 | <int-e> | I'm used to `tail []` being an error... but I'm sure I could live with a Haskell that has `tail [] = []` as well. |
| 17:08:24 | <k``> | take 5 [] |
| 17:08:32 | <k``> | > take 5 [] |
| 17:08:34 | <lambdabot> | [] |
| 17:09:10 | <int-e> | Indeed, if you actually need that total variant of `tail`, use `drop 1`. |
| 17:09:31 | <chromoblob> | good, i'm also wondering why |
| 17:09:45 | → | waleee joins (~waleee@2001:9b0:21c:4000:5bf9:6515:c030:57b7) |
| 17:09:50 | <int-e> | I think the idea is that it's a field selector for the list type, just like `head`. |
| 17:10:45 | <int-e> | (imagine data List a = Nil | Cons { head :: a, tail :: List a }) |
| 17:10:52 | <k``> | I see, so rather than interpreting `tail` as `give me all the remaining elements after the head` , is `give me the second value of the cons cell`. |
| 17:11:28 | <chromoblob> | data [a] = [] | (:) { head :: a, tail :: [a] } |
| 17:11:49 | <int-e> | chromoblob: oh right, that almost works |
| 17:11:55 | <EvanR> | you might not be holding a cons cell is the issue |
| 17:12:15 | <EvanR> | in which case the tail, the field selector, don't make sense |
| 17:13:30 | → | acidjnk joins (~acidjnk@p200300d6e7072f58e181befd01b866a0.dip0.t-ipconnect.de) |
| 17:13:55 | <chromoblob> | why drop n l = [] when n > length l? how can it be used? |
| 17:14:42 | <EvanR> | so that if you take more than there is in the list it doesn't crash and could very well give you useful stuff |
| 17:15:19 | <EvanR> | take n l ++ drop n l = l still makes sense |
| 17:16:02 | <EvanR> | allowing you do use that law without first checking n is small enough |
| 17:16:25 | <chromoblob> | i need an example or two where it will be useful |
| 17:17:00 | <EvanR> | I think I have one from advent of code |
| 17:17:35 | <ncf> | look at all the times you've used take and drop and count how many of those are really "take at most" and "drop at most" |
| 17:17:56 | <int-e> | > let splitOn p [] = []; splitOn p xs = let (ys, zs) = break p xs in ys : splitOn p (drop 1 zs) in splitOn even [1,3,2,4,5,6,1] |
| 17:17:58 | <lambdabot> | [[1,3],[],[5],[1]] |
| 17:19:44 | × | ByronJohnson quits (~bairyn@50-250-232-19-static.hfc.comcastbusiness.net) (Ping timeout: 246 seconds) |
| 17:19:55 | <EvanR> | nevermind, all my takes and drops are exact |
| 17:19:57 | <int-e> | I don't think that there is a theme around uses of `drop n xs` with n > length xs; it just comes on occasion when dealing with lists. |
| 17:20:53 | → | eggplantade joins (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) |
| 17:21:35 | <int-e> | > map (printf "%.3s") ["ab", "abcd"] :: [String] |
| 17:21:37 | <lambdabot> | ["ab","abc"] |
| 17:21:48 | <EvanR> | a different take and drop which crashes would satsify e.g. take n l definitely has length n if it doesn't crash |
| 17:21:51 | <int-e> | > map (take 3) ["ab", "abcd"] :: [String] |
| 17:21:53 | <lambdabot> | ["ab","abc"] |
| 17:21:56 | <ncf> | "all my takes are exact" -- average twitter user |
| 17:22:40 | <EvanR> | but that crashing part leads back to "you're using the wrong datatype / type sig" |
| 17:23:08 | <EvanR> | i.e. you wanted a Vect n |
| 17:23:31 | → | ss4 joins (~wootehfoo@user/wootehfoot) |
| 17:23:50 | → | Pickchea joins (~private@user/pickchea) |
| 17:23:54 | <chromoblob> | int-e: splitOn even [2, 1] = [[], [1]] but splitOn even [1, 2] = [[1]] |
| 17:24:25 | <int-e> | chromoblob: nice |
| 17:26:04 | <int-e> | chromoblob: I guess the base case is wrong if the predicate recognizes separators; [] should split into [[]]. |
| 17:26:26 | <int-e> | hmm |
| 17:27:06 | × | wootehfoot quits (~wootehfoo@user/wootehfoot) (Ping timeout: 246 seconds) |
| 17:27:10 | <int-e> | Ultimately the `drop 1` is ill-advised there. Good to know. |
| 17:27:36 | → | wootehfoot joins (~wootehfoo@user/wootehfoot) |
| 17:29:29 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 17:30:12 | × | ss4 quits (~wootehfoo@user/wootehfoot) (Ping timeout: 245 seconds) |
| 17:32:42 | → | infinity0 joins (~infinity0@pwned.gg) |
| 17:36:03 | × | ripspin quits (~chatzilla@1.145.204.85) (Remote host closed the connection) |
| 17:37:02 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 17:37:43 | → | Xe joins (~cadey@tailscale/xe) |
| 17:39:09 | → | infinity0 joins (~infinity0@pwned.gg) |
| 17:40:12 | × | Pickchea quits (~private@user/pickchea) (Ping timeout: 245 seconds) |
| 17:41:08 | → | ss4 joins (~wootehfoo@user/wootehfoot) |
| 17:41:36 | × | danse-nr3__ quits (~francesco@151.46.142.153) (Ping timeout: 250 seconds) |
| 17:42:54 | × | wootehfoot quits (~wootehfoo@user/wootehfoot) (Ping timeout: 250 seconds) |
| 17:46:42 | → | ByronJohnson joins (~bairyn@50-250-232-19-static.hfc.comcastbusiness.net) |
| 17:53:00 | → | mechap joins (~mechap@user/mechap) |
| 17:58:56 | × | ByronJohnson quits (~bairyn@50-250-232-19-static.hfc.comcastbusiness.net) (Ping timeout: 250 seconds) |
| 18:02:08 | × | TheCoffeMaker quits (~TheCoffeM@user/thecoffemaker) (Quit: So long and thanks for all the fish) |
| 18:02:30 | → | TheCoffeMaker joins (~TheCoffeM@user/thecoffemaker) |
| 18:03:10 | × | mxs quits (~mxs@user/mxs) (Ping timeout: 260 seconds) |
| 18:03:21 | × | drdo quits (~drdo@bl8-153-185.dsl.telepac.pt) (Remote host closed the connection) |
| 18:03:30 | × | APic quits (apic@apic.name) (Ping timeout: 240 seconds) |
| 18:06:28 | → | shapr joins (~user@2600:1700:c640:3100:26eb:2672:45bb:f222) |
| 18:08:28 | × | nurupo quits (~nurupo.ga@user/nurupo) (Server closed connection) |
| 18:08:42 | → | nurupo joins (~nurupo.ga@user/nurupo) |
| 18:10:43 | → | ByronJohnson joins (~bairyn@50-250-232-19-static.hfc.comcastbusiness.net) |
| 18:11:41 | × | h2t quits (~h2t@user/h2t) (Server closed connection) |
| 18:11:55 | → | h2t joins (~h2t@user/h2t) |
| 18:17:01 | × | chymera quits (~chymera@ns1000526.ip-51-81-46.us) (Server closed connection) |
| 18:18:49 | → | chymera joins (~chymera@ns1000526.ip-51-81-46.us) |
| 18:19:46 | <nyc> | I wonder where -ddump-to-file dumps its files. |
| 18:20:17 | × | eggplantade quits (~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Remote host closed the connection) |
| 18:21:33 | <geekosaur> | `-odir` iirc |
| 18:21:56 | <EvanR> | I tried to get the dirt on WATFIV's transgressions but didn't immediately find anything |
| 18:22:33 | <geekosaur> | WATFIV was infamous for trying to do something no matter what errors were in the source it was compiling |
| 18:23:05 | <nyc> | geekosaur: Maybe the options didn't take hold. I'll try again. |
| 18:23:08 | <Rembane> | Sounds like old versions of Internet Explorer. |
| 18:23:10 | <geekosaur> | "correct" spelling errors, etc |
| 18:24:57 | <geekosaur> | nyc, note that cabal and stack will override your specifications for `-odir` (and force `-ddump-to-file`)… in different ways |
| 18:26:07 | <nyc> | geekosaur: I need to get past their overriding, then. |
| 18:26:15 | → | mmhat joins (~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) |
| 18:29:49 | → | eggplantade joins (~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net) |
| 18:31:50 | → | merijn joins (~merijn@86-86-29-250.fixed.kpn.net) |
| 18:33:30 | <k``> | for what it's worth, cabal usually dumps to dist-newstyle/build/{platform-specific}/ghc-{version}/{package}-{version}/build/src/ |
| 18:34:24 | <nyc> | k``: Okay, in that case, it's just not there. |
| 18:34:36 | × | __monty__ quits (~toonn@user/toonn) (Quit: leaving) |
| 18:34:51 | <Nosrep> | why is haskell language server constantly broken |
| 18:35:16 | <k``> | In your ghc-options line, I think ddump-to-file has to come before the options you want to dump. At least I ran into problems years ago when I had it last. |
| 18:35:20 | <Nosrep> | if i stack build and it errors out hls just dies completely even after a restart |
| 18:36:32 | <nyc> | k``: I've got some stg dumps now. |
| 18:37:01 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 18:39:08 | → | infinity0 joins (~infinity0@pwned.gg) |
| 18:39:44 | <nyc> | Now I've got to figure out how to build the package that I actually need the stg from & how to switch ghc versions in it, which nix appears to complicate. |
| 18:40:37 | → | __monty__ joins (~toonn@user/toonn) |
| 18:43:07 | × | dcoutts_ quits (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (Ping timeout: 245 seconds) |
| 18:44:23 | × | chele quits (~chele@user/chele) (Remote host closed the connection) |
| 18:50:44 | → | drdo joins (~drdo@bl8-153-185.dsl.telepac.pt) |
| 18:52:45 | <geekosaur> | Nosrep, suggest asking in #haskell-language-server |
| 18:52:56 | <geekosaur> | I've never seen that kind of breakage but I use cabal |
| 18:55:47 | × | hyvoid quits (~hyenavoid@222-0-178-69.static.gci.net) (Quit: "going offlinesies") |
| 18:55:51 | <Nosrep> | yeah cabal is fine kinda |
| 18:56:14 | <Nosrep> | there's an issue already on github and the solution is just use the cabal cradle which isn't a great solution imo |
| 18:57:59 | → | mxs joins (~mxs@user/mxs) |
| 18:59:10 | → | tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
| 18:59:54 | → | kupi_ joins (uid212005@id-212005.hampstead.irccloud.com) |
| 19:05:12 | × | infinity0 quits (~infinity0@pwned.gg) (Ping timeout: 245 seconds) |
| 19:05:39 | → | infinity0 joins (~infinity0@pwned.gg) |
| 19:06:06 | × | merijn quits (~merijn@86-86-29-250.fixed.kpn.net) (Ping timeout: 250 seconds) |
| 19:16:02 | × | infinity0 quits (~infinity0@pwned.gg) (Ping timeout: 245 seconds) |
| 19:16:59 | → | infinity0 joins (~infinity0@pwned.gg) |
| 19:17:27 | × | drdo quits (~drdo@bl8-153-185.dsl.telepac.pt) (Remote host closed the connection) |
| 19:17:56 | → | drdo joins (~drdo@bl8-153-185.dsl.telepac.pt) |
| 19:19:59 | × | k`` quits (~user@136.56.140.2) (Remote host closed the connection) |
| 19:20:13 | → | k`` joins (~user@136.56.140.2) |
| 19:27:17 | × | infinity0 quits (~infinity0@pwned.gg) (Ping timeout: 245 seconds) |
| 19:29:46 | → | bratwurst joins (~dfadsva@2604:3d09:207f:f650::38e4) |
| 19:29:53 | × | mei quits (~mei@user/mei) (Remote host closed the connection) |
| 19:30:35 | × | hugo quits (znc@verdigris.lysator.liu.se) (Ping timeout: 264 seconds) |
| 19:32:18 | → | mei joins (~mei@user/mei) |
| 19:33:59 | → | infinity0 joins (~infinity0@pwned.gg) |
| 19:34:27 | × | shapr quits (~user@2600:1700:c640:3100:26eb:2672:45bb:f222) (Remote host closed the connection) |
| 19:34:40 | → | shapr joins (~user@2600:1700:c640:3100:ee1c:885c:bacf:e48c) |
| 19:36:29 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 19:38:35 | → | infinity0 joins (~infinity0@pwned.gg) |
| 19:40:39 | × | lieven quits (~mal@ns2.wyrd.be) (Server closed connection) |
| 19:40:59 | → | lieven joins (~mal@ns2.wyrd.be) |
| 19:54:32 | → | hugo- joins (znc@2001:6b0:17:f0a0::17) |
| 19:57:19 | → | Nokurn joins (~jeremiah@cpe-76-86-186-227.socal.res.rr.com) |
| 20:07:35 | × | Unicorn_Princess quits (~Unicorn_P@user/Unicorn-Princess/x-3540542) (Remote host closed the connection) |
| 20:14:09 | × | machinedgod quits (~machinedg@d198-53-218-113.abhsia.telus.net) (Quit: Lost terminal) |
| 20:14:31 | → | machinedgod joins (~machinedg@d198-53-218-113.abhsia.telus.net) |
| 20:15:33 | → | dcoutts_ joins (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) |
| 20:18:30 | × | machinedgod quits (~machinedg@d198-53-218-113.abhsia.telus.net) (Client Quit) |
| 20:18:58 | → | machinedgod joins (~machinedg@d198-53-218-113.abhsia.telus.net) |
| 20:19:31 | → | Pickchea joins (~private@user/pickchea) |
| 20:19:38 | × | mmhat quits (~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) (Quit: WeeChat 3.8) |
| 20:20:45 | × | jinsun quits (~jinsun@user/jinsun) (Read error: Connection reset by peer) |
| 20:30:00 | × | Guillaum[m] quits (~guiboumat@2001:470:69fc:105::1:72ac) (Server closed connection) |
| 20:30:42 | × | michalz quits (~michalz@185.246.207.197) (Remote host closed the connection) |
| 20:33:04 | × | elkcl quits (~elkcl@broadband-37-110-27-252.ip.moscow.rt.ru) (Ping timeout: 252 seconds) |
| 20:35:20 | × | hook54321 quits (sid149355@user/hook54321) (Server closed connection) |
| 20:36:31 | → | hyvoid joins (~hyenavoid@222-0-178-69.static.gci.net) |
| 20:36:44 | → | hook54321 joins (sid149355@user/hook54321) |
| 20:37:02 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 20:39:03 | → | merijn joins (~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) |
| 20:39:08 | → | infinity0 joins (~infinity0@pwned.gg) |
| 20:41:49 | → | elkcl joins (~elkcl@broadband-37-110-27-252.ip.moscow.rt.ru) |
| 20:46:12 | × | chromoblob quits (~user@37.113.180.121) (Ping timeout: 250 seconds) |
| 20:49:47 | × | __monty__ quits (~toonn@user/toonn) (Quit: leaving) |
| 20:50:39 | × | gurkenglas quits (~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) (Read error: Connection reset by peer) |
| 20:51:33 | → | __monty__ joins (~toonn@user/toonn) |
| 20:55:38 | → | chromoblob joins (~user@37.113.180.121) |
| 20:56:54 | × | eggplantade quits (~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection) |
| 20:57:58 | <drdo> | Any book recommendation for learning Haskell where the reader is a mathematician in an area unrelated to computation and has only a very basic experience with computer programming? |
| 20:58:20 | × | hippoid quits (~hippoid@user/hippoid) (Quit: WeeChat 3.8) |
| 20:58:51 | → | eggplantade joins (~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net) |
| 20:58:54 | × | coot quits (~coot@89-69-206-216.dynamic.chello.pl) (Quit: coot) |
| 21:00:10 | → | jargon joins (~jargon@116.sub-174-205-160.myvzw.com) |
| 21:00:36 | × | Nokurn quits (~jeremiah@cpe-76-86-186-227.socal.res.rr.com) (Ping timeout: 246 seconds) |
| 21:00:56 | → | oberblastmeister joins (~brian@c-67-186-157-91.hsd1.ma.comcast.net) |
| 21:01:56 | × | oberblastmeister quits (~brian@c-67-186-157-91.hsd1.ma.comcast.net) (Client Quit) |
| 21:05:19 | × | _ht quits (~Thunderbi@28-52-174-82.ftth.glasoperator.nl) (Quit: _ht) |
| 21:06:19 | × | trev quits (~trev@user/trev) (Quit: trev) |
| 21:08:35 | <ryantrinkle> | is anyone here a new at haskell but experienced with React? I'm writing a talk on React and Haskell integration, and I'd love to get feedback on the ideas |
| 21:11:31 | → | gurkenglas joins (~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) |
| 21:13:47 | × | merijn quits (~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) (Ping timeout: 264 seconds) |
| 21:20:26 | × | byte quits (~byte@user/byte) (Ping timeout: 250 seconds) |
| 21:20:56 | → | byte` joins (~byte@user/byte) |
| 21:20:56 | byte` | is now known as byte |
| 21:23:46 | <monochrom> | drdo: I would think that almost every generic Haskell textbook suits the "little or no prior programming" part. |
| 21:24:25 | <drdo> | monochrom: but not the first part |
| 21:24:29 | → | jargon_ joins (~jargon@116.sub-174-205-160.myvzw.com) |
| 21:24:37 | <monochrom> | I don't think the first part matters. |
| 21:25:24 | × | dcoutts_ quits (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (Remote host closed the connection) |
| 21:25:32 | <geekosaur> | math only really comes into it with advanced Haskell, I think. a lot of things in Haskell come from math, but you don't need math to learn or use them |
| 21:25:38 | × | euandreh quits (~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds) |
| 21:25:40 | <monochrom> | You're a a lawyer or you're a surgeon or you're a pianist or you're a mathematician, it's all the same, you're a beginner in programming so you're a beginner in programming. |
| 21:25:46 | → | dcoutts_ joins (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) |
| 21:26:15 | <dolio> | Is the desire for a book that specifically teaches how to unlearn all the things mathematicians do poorly? :þ |
| 21:26:23 | × | jargon quits (~jargon@116.sub-174-205-160.myvzw.com) (Ping timeout: 264 seconds) |
| 21:26:32 | <monochrom> | Oh haha, forgot that. |
| 21:26:53 | <monochrom> | Just last night I was complaining about "the function f(x)" already :) |
| 21:28:51 | <EvanR> | I'm looking for a book which teaches how to unlearn all the things that programmers do poorly, not even including all the stuff books on programming teach |
| 21:29:33 | <EvanR> | (OOP) |
| 21:29:35 | <monochrom> | But as an analogy, keyboard typing schools do not have a "special track for Lang-Lang level pianists". |
| 21:29:35 | <jade[m]1> | I'm looking for a book to unlearn programming |
| 21:29:40 | × | mc47 quits (~mc47@xmonad/TheMC47) (Remote host closed the connection) |
| 21:29:41 | <jade[m]1> | (im trapped) |
| 21:30:08 | <darkling> | jade[m]1: Have you tried using mental floss? :) |
| 21:30:27 | <monochrom> | I think to unlearn programming you just go out more often. :) |
| 21:31:28 | <EvanR> | f(x) is a rabbit hole don't ask |
| 21:32:00 | <monochrom> | OOP is not bad. I don't think one needs to unlearn OOP. |
| 21:32:30 | <EvanR> | yeah if you did that you couldn't get all the jokes about it |
| 21:32:33 | <monochrom> | However, people do OOP poorly or even abuse it. That needs to be unlearned. But then it's tautological. |
| 21:33:00 | <EvanR> | poor OOP is poor |
| 21:33:10 | <jade[m]1> | I think you don't need to unlearn it, because knowing about something bad helps you avoid the bad parts about it |
| 21:33:21 | <monochrom> | But OK I have my share of track record of mocking OOP so I'm a hypocrite :) |
| 21:33:25 | <jade[m]1> | if you forgot about it you'd do the bad things again |
| 21:33:38 | <EvanR> | first semester will be entirely bad ways to do things |
| 21:33:55 | <EvanR> | just so you know what not to do |
| 21:34:30 | <EvanR> | I wonder if that's why bubblesort exists |
| 21:34:44 | <monochrom> | hahaha |
| 21:35:33 | <hpc> | "unlearning programming" makes me think of https://www.youtube.com/shorts/QJ3kCxsOjLc |
| 21:37:04 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 21:39:10 | → | infinity0 joins (~infinity0@pwned.gg) |
| 21:45:48 | × | ddellacosta quits (~ddellacos@146.70.166.166) (Quit: WeeChat 3.8) |
| 21:47:54 | → | ddellacosta joins (~ddellacos@146.70.166.166) |
| 21:49:48 | → | azimut joins (~azimut@gateway/tor-sasl/azimut) |
| 21:51:18 | → | Unicorn_Princess joins (~Unicorn_P@user/Unicorn-Princess/x-3540542) |
| 21:51:53 | × | Midjak quits (~Midjak@82.66.147.146) (Quit: This computer has gone to sleep) |
| 21:52:32 | × | ec quits (~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds) |
| 21:54:33 | → | ec joins (~ec@gateway/tor-sasl/ec) |
| 21:55:13 | → | nut joins (~finn@rul16-h01-176-151-21-224.dsl.sta.abo.bbox.fr) |
| 21:58:11 | × | tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 21:59:26 | × | chromoblob quits (~user@37.113.180.121) (Ping timeout: 250 seconds) |
| 22:00:40 | × | gmg quits (~user@user/gehmehgeh) (Quit: Leaving) |
| 22:00:54 | × | bgs quits (~bgs@212-85-160-171.dynamic.telemach.net) (Remote host closed the connection) |
| 22:07:28 | <drdo> | I suppose the desire is for a book that can take advantage of the general mathematical experience of the reader |
| 22:07:42 | <drdo> | and that has the right intuitions for someone with that background |
| 22:07:52 | <drdo> | Rather than droning on about burritos or whatever |
| 22:07:57 | <dolio> | I really have no idea why bubblesort is still taught. Not only is it usually a bad algorithm, it's harder to understand than the other bad algorithms. :) |
| 22:08:48 | <monochrom> | Here is the 1% of mathematical experience that's relevant. "f : X -> Y" from math becomes "f :: X -> Y" in Haskell. And also the fact that it's a pure function, i.e., not C functions. |
| 22:08:54 | <jade[m]1> | haha yeah |
| 22:09:19 | <Nosrep> | bubble sort might be marginally shorter? not sure about that though |
| 22:09:37 | <Nosrep> | i feel like it has less going on at least conceptually even if its harder to understand as a whole |
| 22:09:40 | <monochrom> | And here is why the other 99% is actually harmful. [x | x <- [0..], x < 0] is not going to be the empty list, despite mathemtical thinking. |
| 22:09:43 | × | ericson2314 quits (~ericson23@2001:470:69fc:105::70c) (Server closed connection) |
| 22:09:46 | <drdo> | Is the channel overrun by trolls? |
| 22:09:49 | <jade[m]1> | there's this one weird algo that's even shorter |
| 22:09:57 | <jade[m]1> | but that's not taught either |
| 22:10:03 | × | ss4 quits (~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer) |
| 22:10:05 | <Nosrep> | stooge? |
| 22:10:37 | jargon_ | is now known as jargon |
| 22:11:00 | <monochrom> | I have the same sentiment as dolio. If quadratic-time sorting is to be taught, selection sort or insertion sort is actually comprehensible. |
| 22:11:11 | <jade[m]1> | monochrom: unless we use something that's bounded inside the list, *right*? |
| 22:11:23 | × | dcoutts_ quits (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (Ping timeout: 264 seconds) |
| 22:11:34 | <monochrom> | Yeah change [0..] to [0..10] and it's OK. |
| 22:12:00 | <monochrom> | But in this channel I've seen numerous mathematical talents who were tripped by this. |
| 22:12:01 | <jade[m]1> | what if you did :: [Word8] |
| 22:12:03 | <dolio> | I think the only thing it really has going for it is that it can be implemented in terms of a 'swap neighbors' primitive. So there's a really niche case where you might have a machine/network that is ideally suited to it specifically. |
| 22:12:11 | <monochrom> | To which I said "Haskell is not Mathematica". |
| 22:12:25 | <Nosrep> | i got tripped on it before i tried it out :x |
| 22:12:35 | × | nut quits (~finn@rul16-h01-176-151-21-224.dsl.sta.abo.bbox.fr) (Ping timeout: 264 seconds) |
| 22:12:43 | <monochrom> | QED :) |
| 22:13:15 | <hpc> | monochrom: if you really want to mess with your students, say that [0..3] is [0,1,2,3] and [0..2) is [0,1,2] |
| 22:13:17 | <monochrom> | Ah I haven't thought of the swap-neighbours-only angle. That's a nice constraint. |
| 22:13:25 | <hpc> | er, [0..3) |
| 22:13:50 | <monochrom> | Unfortunately Haskell doesn't have the [0..3) syntax... |
| 22:14:14 | <monochrom> | But I do wish Haskell had [0..3] = [0,1,2]. Dijkstra would too. |
| 22:14:21 | <hpc> | sure, but it's a nice "haskell isn't math" if they start taking similarities for granted |
| 22:14:50 | <monochrom> | Oh hey I think I heard that the Double instance would do that. OK "problem solved". >:D |
| 22:14:56 | <hpc> | monochrom: i am split on that - it looks right for loops, but then you can't enumFromTo the whole range of a type |
| 22:15:08 | <hpc> | [False..True] is [False] for instance |
| 22:15:11 | <hpc> | and that feels weird to me |
| 22:15:23 | <monochrom> | For the full range you say [False ... ] |
| 22:15:42 | <hpc> | yeah, but still |
| 22:16:27 | <jade[m]1> | when would you ever use the enum instance for Bool though? |
| 22:16:56 | × | ec quits (~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds) |
| 22:16:57 | <monochrom> | How about this probably sacrilegeous proposal: Two notations, [x .. y] includes y, [x .., y] has an extra comma to be an assymetic syntax and it excludes y. |
| 22:17:50 | <monochrom> | When I would the Enum instance of a type variable, and the user sets that type variable to Bool. :) |
| 22:17:59 | <monochrom> | s/would/would use/ |
| 22:18:35 | × | fendor quits (~fendor@2a02:8388:1640:be00:7aca:a77a:4a28:631a) (Remote host closed the connection) |
| 22:18:56 | <monochrom> | Perhaps we should have the [x .. y) syntax after all. |
| 22:19:35 | <dolio> | That'll be nice to ruin everyone's text editor. |
| 22:19:57 | <monochrom> | Oh haha oops |
| 22:20:13 | <hpc> | if people can deal with bash's case syntax, they can deal with this :D |
| 22:20:31 | <geekosaur> | I'd've suggested ..? |
| 22:20:59 | × | takuan quits (~takuan@178-116-218-225.access.telenet.be) (Ping timeout: 264 seconds) |
| 22:21:03 | <jade[m]1> | hpc: I can't |
| 22:23:10 | <geekosaur> | lol |
| 22:24:29 | <monochrom> | Is it just because an editor needs a special case (pun!) for "pattern )" which does not close any open parenthesis? |
| 22:26:09 | <hpc> | yeah, and nothing actually has that special case afaik :P |
| 22:26:43 | <monochrom> | heh |
| 22:27:45 | <geekosaur> | emacs ftw |
| 22:28:26 | <dolio> | drdo: I'm not aware of any book that, 'drones on about burritos.' But I also don't know of any book specifically oriented towards mathematicians. |
| 22:29:44 | × | azimut quits (~azimut@gateway/tor-sasl/azimut) (Ping timeout: 240 seconds) |
| 22:29:59 | <dolio> | I am aware of a paper about burritos that got linked on the n-category cafe. |
| 22:31:24 | → | azimut joins (~azimut@gateway/tor-sasl/azimut) |
| 22:31:51 | <Nosrep> | what rust does for the ranges thing is [0..3] is [0, 1, 2] but [0..=3] is [0, 1, 2, 3] |
| 22:32:08 | <dolio> | I'm not sure if it counts as being by a mathematician, though, because apparently the author was working at CMU at the time, so it seems likely they were involved in computer science. |
| 22:35:51 | <dolio> | Maybe you could read the Homotopy Type Theory book, and then look at Haskell as a more plain and less theoretically sound version of that. |
| 22:36:14 | <drdo> | dolio: The book isn't for me |
| 22:37:01 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 22:37:32 | <dolio> | I'm uncertain how good that is at explaining the programming-related aspects of type theory, though. |
| 22:38:23 | → | APic joins (apic@apic.name) |
| 22:38:47 | <drdo> | Thank you though |
| 22:39:07 | → | infinity0 joins (~infinity0@pwned.gg) |
| 22:47:17 | × | bratwurst quits (~dfadsva@2604:3d09:207f:f650::38e4) (Quit: Leaving) |
| 22:47:59 | × | acidjnk quits (~acidjnk@p200300d6e7072f58e181befd01b866a0.dip0.t-ipconnect.de) (Ping timeout: 264 seconds) |
| 22:48:28 | × | __monty__ quits (~toonn@user/toonn) (Quit: leaving) |
| 22:50:25 | × | k`` quits (~user@136.56.140.2) (Remote host closed the connection) |
| 22:50:30 | → | wroathe joins (~wroathe@user/wroathe) |
| 22:50:40 | → | k`` joins (~user@136.56.140.2) |
| 22:51:22 | × | phma quits (phma@2001:5b0:211f:2f08:1586:27d6:8ad8:5c55) (Read error: Connection reset by peer) |
| 22:51:32 | × | maralorn quits (~maralorn@2001:470:69fc:105::251) (Server closed connection) |
| 22:51:50 | → | phma joins (~phma@host-67-44-208-160.hnremote.net) |
| 22:53:06 | × | wroathe quits (~wroathe@user/wroathe) (Client Quit) |
| 22:54:13 | → | wroathe joins (~wroathe@user/wroathe) |
| 23:07:14 | <jackdk> | jade[m]1:`instance Enum Bool` is often handy when calling into a property-based testing library, though Hedgehog offers `Gen.bool` as a specialisation. |
| 23:19:23 | × | df quits (~ben@justworks.xyz) (Server closed connection) |
| 23:19:38 | → | df joins (~ben@justworks.xyz) |
| 23:24:59 | × | czy quits (~user@host-140-26.ilcub310.champaign.il.us.clients.pavlovmedia.net) (Remote host closed the connection) |
| 23:27:26 | × | gurkenglas quits (~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) (Read error: Connection reset by peer) |
| 23:29:03 | → | pavonia joins (~user@user/siracusa) |
| 23:32:29 | × | berberman quits (~berberman@user/berberman) (Quit: ZNC 1.8.2 - https://znc.in) |
| 23:32:59 | → | berberman joins (~berberman@user/berberman) |
| 23:34:25 | × | ystael quits (~ystael@user/ystael) (Ping timeout: 240 seconds) |
| 23:35:00 | → | codaraxis joins (~codaraxis@user/codaraxis) |
| 23:35:43 | × | k`` quits (~user@136.56.140.2) (Remote host closed the connection) |
| 23:35:56 | → | k`` joins (~user@136.56.140.2) |
| 23:35:56 | × | wrengr quits (~wrengr@201.59.83.34.bc.googleusercontent.com) (Quit: leaving) |
| 23:36:04 | × | wroathe quits (~wroathe@user/wroathe) (Ping timeout: 250 seconds) |
| 23:37:01 | × | infinity0 quits (~infinity0@pwned.gg) (Remote host closed the connection) |
| 23:39:08 | → | infinity0 joins (~infinity0@pwned.gg) |
| 23:41:10 | → | Square joins (~Square@user/square) |
| 23:44:05 | × | k`` quits (~user@136.56.140.2) (Remote host closed the connection) |
| 23:44:18 | → | k`` joins (~user@136.56.140.2) |
| 23:46:42 | × | Pickchea quits (~private@user/pickchea) (Quit: Leaving) |
| 23:49:26 | × | fgaz quits (~fgaz@2001:470:69fc:105::842) (Server closed connection) |
| 23:49:49 | → | mauke_ joins (~mauke@user/mauke) |
| 23:51:27 | × | mauke quits (~mauke@user/mauke) (Ping timeout: 245 seconds) |
| 23:51:28 | mauke_ | is now known as mauke |
| 23:59:05 | × | foul_owl quits (~kerry@94.140.8.28) (Ping timeout: 246 seconds) |
All times are in UTC on 2023-06-23.