2021/04/24

2021-04-24 00:07:14 +0000 <tanner_> noob question: I wanna define a function like this:
2021-04-24 00:07:23 +0000 <tanner_> func :: Int -> Int
2021-04-24 00:07:28 +0000 <tanner_> func 1 = 2
2021-04-24 00:07:35 +0000 <tanner_> func = (+1)
2021-04-24 00:08:57 +0000 <geekosaur> you need a wildcard in the second case
2021-04-24 00:08:59 +0000 <tanner_> but GHC says the two equations have a different number of arguments. Is this really the problem, (+1) clearly takes one argument. Or is it that the semantics of how to deal with a definition like this aren't well defined?
2021-04-24 00:09:15 +0000 <geekosaur> oh, right, ghc doesn't allow that case
2021-04-24 00:09:39 +0000 <geekosaur> it's a deviation from standard Haskell that all cases of a function must have  the same number of arguments
2021-04-24 00:10:06 +0000 <geekosaur> so you'll have to eta-expand the second one to: func x = x + 1
2021-04-24 00:10:35 +0000 <tanner_> Ok, so is the problem that it can't figure out (+1) only takes a single argument?
2021-04-24 00:11:14 +0000 <geekosaur> the problem is what I said it is
2021-04-24 00:11:19 +0000Synthetica(uid199651@gateway/web/irccloud.com/x-jigmslouldxhdupx) (Quit: Connection closed for inactivity)
2021-04-24 00:11:23 +0000 <tanner_> As a side note, I also tried func _ = (+1) and got a different error. This time about not being able to match types.
2021-04-24 00:11:24 +0000 <geekosaur> you have func 1 = 2, which takes an argument
2021-04-24 00:11:44 +0000 <geekosaur> all *other* definitions of func must therefore take an argument
2021-04-24 00:12:08 +0000bitmapper(uid464869@gateway/web/irccloud.com/x-qyszewyuetfjzacp)
2021-04-24 00:13:00 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Ping timeout: 268 seconds)
2021-04-24 00:13:14 +0000 <geekosaur> this is not required by standard Haskell but ghc requires it because of how it works
2021-04-24 00:13:41 +0000 <geekosaur> "func _ = (+1)" does not do what you think
2021-04-24 00:14:06 +0000 <geekosaur> it accepts and ignores a parameter, like func x = some_expression_that_doesn't_use_x
2021-04-24 00:19:04 +0000 <tanner_> So func 1 = 2 means that func takes one argument, func = (+1) means that func evaluates to something that takes one argument, and func _ = (+1) is syntactic sugar for func x = (+1). Oh and the reason func x = (+1) doesn't work is because the rhs there should be of type Int not of type Int -> Int. Is this all correct?
2021-04-24 00:19:32 +0000 <geekosaur> func itself takes 0 parameters and returns something that takes a parameter
2021-04-24 00:19:44 +0000 <geekosaur> yes
2021-04-24 00:20:04 +0000 <geekosaur> and ghc has this restriction that all definitions of func must have the same number of parameters
2021-04-24 00:20:22 +0000 <geekosaur> so you *should* be able to do what you tried, but ghc won't allow it
2021-04-24 00:24:30 +0000 <tanner_> Ok I think I got it. "func _ = (+1)" doesn't even make sense in this context. func = (+1) does make sense but for some reason ghc doesn't like it.
2021-04-24 00:24:38 +0000 <tanner_> Thanks for your help.
2021-04-24 00:24:39 +0000 <monochrom> Wait, "Note that all clauses defining a function must be contiguous, and the number of patterns in each clause must be the same." is straight from Haskell 2010 Report section 4.4.3.1
2021-04-24 00:24:46 +0000geowiesnot(~user@87-89-181-157.abo.bbox.fr)
2021-04-24 00:25:28 +0000 <geekosaur> interesting. could have sworn that was a ghc wart. was it the same in H98?
2021-04-24 00:25:52 +0000lordcirth_(~lordcirth@2607:f2c0:95b3:4400:bc81:7608:42a7:e76a) (Ping timeout: 276 seconds)
2021-04-24 00:26:44 +0000sz0(uid110435@gateway/web/irccloud.com/x-cbtqvvpmzwwkflbr) (Quit: Connection closed for inactivity)
2021-04-24 00:26:45 +0000 <tanner_> Hmm, I haven't read the Haskell Report yet, so I don't know what a "clause" or a "pattern"is. But... does my origional definition make sense? Or is there a good reason for that restriction that I'm just not realizing?
2021-04-24 00:27:07 +0000 <geekosaur> according to monochrom it's just the rules
2021-04-24 00:27:32 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 240 seconds)
2021-04-24 00:27:42 +0000 <tanner_> ok
2021-04-24 00:27:53 +0000 <geekosaur> hm, same in H98
2021-04-24 00:28:10 +0000 <geekosaur> so I guess it's just illegal
2021-04-24 00:30:26 +0000geowiesnot(~user@87-89-181-157.abo.bbox.fr) (Ping timeout: 240 seconds)
2021-04-24 00:31:24 +0000philderbeast(~textual@bras-base-vldvpq5901w-grc-06-184-144-244-252.dsl.bell.ca)
2021-04-24 00:35:09 +0000gnumonic(~gnumonic@c-73-170-91-210.hsd1.ca.comcast.net) (Ping timeout: 265 seconds)
2021-04-24 00:38:05 +0000bennofs__(~quassel@dynamic-089-012-022-232.89.12.pool.telefonica.de)
2021-04-24 00:38:30 +0000rajivr(uid269651@gateway/web/irccloud.com/x-emjdgfahhcenqbut)
2021-04-24 00:40:51 +0000zmijunkie(~Adium@87.122.222.145)
2021-04-24 00:40:58 +0000Jd007(~Jd007@162.156.11.151) (Quit: Jd007)
2021-04-24 00:41:40 +0000zmijunkie1(~Adium@87.123.48.31) (Ping timeout: 252 seconds)
2021-04-24 00:41:41 +0000bennofs_(~quassel@dynamic-077-013-079-233.77.13.pool.telefonica.de) (Ping timeout: 240 seconds)
2021-04-24 00:47:50 +0000tabemann(~travisb@172-13-49-137.lightspeed.milwwi.sbcglobal.net)
2021-04-24 00:48:00 +0000Codaraxis_(~Codaraxis@ip68-5-90-227.oc.oc.cox.net)
2021-04-24 00:48:41 +0000justsomeguy(~justsomeg@unaffiliated/--/x-3805311)
2021-04-24 00:51:34 +0000Codaraxis__(~Codaraxis@92.223.89.199) (Ping timeout: 252 seconds)
2021-04-24 00:53:31 +0000CrazyPython(~crazypyth@98.122.164.118)
2021-04-24 00:53:54 +0000werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net)
2021-04-24 00:55:40 +0000tabemann(~travisb@172-13-49-137.lightspeed.milwwi.sbcglobal.net) (Remote host closed the connection)
2021-04-24 00:56:18 +0000tabemann(~travisb@172-13-49-137.lightspeed.milwwi.sbcglobal.net)
2021-04-24 00:56:19 +0000erisco(~erisco@d24-57-249-233.home.cgocable.net)
2021-04-24 00:59:22 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com) (Ping timeout: 240 seconds)
2021-04-24 00:59:45 +0000tabemann(~travisb@172-13-49-137.lightspeed.milwwi.sbcglobal.net) (Remote host closed the connection)
2021-04-24 01:00:05 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net) (Quit: Leaving)
2021-04-24 01:00:25 +0000tabemann(~travisb@172-13-49-137.lightspeed.milwwi.sbcglobal.net)
2021-04-24 01:02:26 +0000tsaka_(~torstein@athedsl-4519432.home.otenet.gr) (Ping timeout: 260 seconds)
2021-04-24 01:05:33 +0000snowflake_(~snowflake@gateway/tor-sasl/snowflake)
2021-04-24 01:05:57 +0000snowflake(~snowflake@gateway/tor-sasl/snowflake) (Ping timeout: 240 seconds)
2021-04-24 01:11:28 +0000jess(jess@freenode/staff/jess) (Quit: Lost terminal)
2021-04-24 01:11:48 +0000philderbeast(~textual@bras-base-vldvpq5901w-grc-06-184-144-244-252.dsl.bell.ca) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-04-24 01:12:24 +0000jess(jess@freenode/staff/jess)
2021-04-24 01:21:31 +0000Jd007(~Jd007@162.156.11.151)
2021-04-24 01:22:04 +0000renzhi(~renzhi@2607:fa49:6500:bc00::e7b) (Ping timeout: 245 seconds)
2021-04-24 01:22:29 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 01:23:56 +0000drbean_(~drbean@TC210-63-209-220.static.apol.com.tw)
2021-04-24 01:28:11 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 240 seconds)
2021-04-24 01:28:22 +0000perrier-jouet(~perrier-j@modemcable012.251-130-66.mc.videotron.ca) (Quit: WeeChat 3.1)
2021-04-24 01:32:11 +0000st8less(~st8less@inet-167-224-197-181.isp.ozarksgo.net) (Quit: WeeChat 2.9)
2021-04-24 01:34:02 +0000xcmw(~textual@dyn-72-33-2-152.uwnet.wisc.edu) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-04-24 01:47:55 +0000xff0x(~xff0x@2001:1a81:52f5:ac00:2560:bbed:ada5:1f88) (Ping timeout: 250 seconds)
2021-04-24 01:48:20 +0000stree(~stree@68.36.8.116) (Ping timeout: 246 seconds)
2021-04-24 01:49:59 +0000xff0x(~xff0x@2001:1a81:5345:1000:b335:7ff7:cb5b:57a8)
2021-04-24 01:53:28 +0000HarveyPwca(~HarveyPwc@c-98-220-98-201.hsd1.il.comcast.net)
2021-04-24 01:55:42 +0000gnumonic(~gnumonic@c-73-170-91-210.hsd1.ca.comcast.net)
2021-04-24 01:56:40 +0000falafel(~falafel@pool-96-255-70-50.washdc.fios.verizon.net)
2021-04-24 01:58:15 +0000__minoru__shirae(~shiraeesh@46.34.206.138)
2021-04-24 02:00:54 +0000machinedgod(~machinedg@24.105.81.50) (Ping timeout: 268 seconds)
2021-04-24 02:01:45 +0000stree(~stree@68.36.8.116)
2021-04-24 02:04:34 +0000nineonine(~nineonine@50.216.62.2) (Ping timeout: 265 seconds)
2021-04-24 02:07:52 +0000CrazyPython(~crazypyth@98.122.164.118) (Read error: Connection reset by peer)
2021-04-24 02:09:11 +0000tmciver(~tmciver@cpe-172-101-40-226.maine.res.rr.com) (Ping timeout: 240 seconds)
2021-04-24 02:11:05 +0000tmciver(~tmciver@cpe-172-101-40-226.maine.res.rr.com)
2021-04-24 02:12:56 +0000xcmw(~textual@dyn-72-33-2-152.uwnet.wisc.edu)
2021-04-24 02:14:34 +0000Jd007(~Jd007@162.156.11.151) (Quit: Jd007)
2021-04-24 02:23:28 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 02:25:10 +0000Jd007(~Jd007@162.156.11.151)
2021-04-24 02:30:26 +0000dpl(~dpl@77-121-78-163.chn.volia.net) (Ping timeout: 240 seconds)
2021-04-24 02:32:22 +0000Jd007(~Jd007@162.156.11.151) (Quit: Jd007)
2021-04-24 02:33:08 +0000MVQq(~anja@198.254.208.159) (Quit: q)
2021-04-24 02:33:46 +0000MarcelineVQ(~anja@198.254.208.159)
2021-04-24 02:36:04 +0000theDon(~td@94.134.91.183) (Ping timeout: 252 seconds)
2021-04-24 02:38:08 +0000theDon(~td@94.134.91.143)
2021-04-24 02:41:18 +0000fresheyeball(~isaac@c-71-237-105-37.hsd1.co.comcast.net) (Quit: WeeChat 2.9)
2021-04-24 02:42:18 +0000FinnElija(~finn_elij@gateway/tor-sasl/finnelija/x-67402716)
2021-04-24 02:42:18 +0000finn_elijaGuest91582
2021-04-24 02:42:18 +0000FinnElijafinn_elija
2021-04-24 02:43:16 +0000Katarushisu6(~Katarushi@cpc152083-finc20-2-0-cust170.4-2.cable.virginm.net)
2021-04-24 02:44:06 +0000vulcan01(~Perpetual@c-73-254-191-149.hsd1.wa.comcast.net)
2021-04-24 02:44:20 +0000dastomaten(~dastomate@0543f40b.skybroadband.com) (Ping timeout: 246 seconds)
2021-04-24 02:44:28 +0000Katarushisu(~Katarushi@cpc152083-finc20-2-0-cust170.4-2.cable.virginm.net) (Ping timeout: 252 seconds)
2021-04-24 02:44:29 +0000Katarushisu6Katarushisu
2021-04-24 02:44:58 +0000dastomaten(~dastomate@0543f40b.skybroadband.com)
2021-04-24 02:45:02 +0000nineonine(~nineonine@50.216.62.2)
2021-04-24 02:45:57 +0000Guest91582(~finn_elij@gateway/tor-sasl/finnelija/x-67402716) (Ping timeout: 240 seconds)
2021-04-24 02:46:25 +0000Jd007(~Jd007@162.156.11.151)
2021-04-24 02:46:51 +0000ericsagnes(~ericsagne@2405:6580:0:5100:243e:56b2:17ce:1eff) (Ping timeout: 250 seconds)
2021-04-24 02:48:32 +0000falafel(~falafel@pool-96-255-70-50.washdc.fios.verizon.net) (Ping timeout: 240 seconds)
2021-04-24 02:49:16 +0000nineonine(~nineonine@50.216.62.2) (Ping timeout: 252 seconds)
2021-04-24 02:51:39 +0000thc202(~thc202@unaffiliated/thc202) (Ping timeout: 258 seconds)
2021-04-24 02:52:38 +0000nicholasbulka(~nicholasb@2601:900:4301:da0:5440:6bb8:f181:7832) (Remote host closed the connection)
2021-04-24 02:57:31 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 252 seconds)
2021-04-24 02:59:22 +0000redmp(~redmp@172.58.35.164) (Quit: leaving)
2021-04-24 02:59:49 +0000ericsagnes(~ericsagne@2405:6580:0:5100:7ff1:91b1:bbc6:45b2)
2021-04-24 03:02:50 +0000shailangsa(~shailangs@host217-42-54-186.range217-42.btcentralplus.com) (Ping timeout: 260 seconds)
2021-04-24 03:11:34 +0000kiweun(~kiweun@2607:fea8:2a62:9600:5994:3900:4bf6:3fc2) (Remote host closed the connection)
2021-04-24 03:14:39 +0000frozenErebus(~frozenEre@37.231.244.249)
2021-04-24 03:20:42 +0000carlomagno(~cararell@148.87.23.4) (Remote host closed the connection)
2021-04-24 03:21:25 +0000carlomagno(~cararell@148.87.23.4)
2021-04-24 03:24:28 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 03:27:17 +0000shailangsa(~shailangs@host86-185-58-137.range86-185.btcentralplus.com)
2021-04-24 03:27:40 +0000gabiruh(~gabiruh@vps19177.publiccloud.com.br) (Quit: ZNC 1.7.5 - https://znc.in)
2021-04-24 03:27:56 +0000gabiruh(~gabiruh@vps19177.publiccloud.com.br)
2021-04-24 03:28:07 +0000nineonine(~nineonine@50.216.62.2)
2021-04-24 03:28:07 +0000falafel(~falafel@pool-96-255-70-50.washdc.fios.verizon.net)
2021-04-24 03:30:06 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 240 seconds)
2021-04-24 03:30:09 +0000jakalx(~jakalx@base.jakalx.net) ()
2021-04-24 03:31:03 +0000jakalx(~jakalx@base.jakalx.net)
2021-04-24 03:32:37 +0000Jd007(~Jd007@162.156.11.151) (Quit: Jd007)
2021-04-24 03:32:43 +0000nineonine(~nineonine@50.216.62.2) (Ping timeout: 252 seconds)
2021-04-24 03:33:11 +0000vulcan01(~Perpetual@c-73-254-191-149.hsd1.wa.comcast.net) (Ping timeout: 240 seconds)
2021-04-24 03:34:22 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
2021-04-24 03:40:43 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net)
2021-04-24 03:42:09 +0000heavyk(x@2601:1c0:6800:7a50:242a:f090:f333:3919)
2021-04-24 03:49:38 +0000vulcan01(~Perpetual@c-73-254-191-149.hsd1.wa.comcast.net)
2021-04-24 03:49:46 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
2021-04-24 04:02:01 +0000redmp(~redmp@172.58.35.164)
2021-04-24 04:09:34 +0000stree(~stree@68.36.8.116) (Ping timeout: 252 seconds)
2021-04-24 04:12:54 +0000urodna(~urodna@unaffiliated/urodna) (Quit: urodna)
2021-04-24 04:18:53 +0000xiinotulp(~q@node-uhc.pool-125-24.dynamic.totinternet.net)
2021-04-24 04:19:15 +0000texasmynsted_texasmynsted
2021-04-24 04:20:32 +0000Sheilong(uid293653@gateway/web/irccloud.com/x-oxdglogbveesxllt) ()
2021-04-24 04:21:52 +0000plutoniix(~q@node-unm.pool-125-24.dynamic.totinternet.net) (Ping timeout: 240 seconds)
2021-04-24 04:22:37 +0000stree(~stree@68.36.8.116)
2021-04-24 04:34:41 +0000kiweun(~kiweun@2607:fea8:2a62:9600:d9c9:b93d:8eb5:6ff)
2021-04-24 04:34:56 +0000casu(b8aaa7ab@184.170.167.171)
2021-04-24 04:35:10 +0000casu(b8aaa7ab@184.170.167.171) (Client Quit)
2021-04-24 04:42:00 +0000casu(b8aaa7ab@184.170.167.171)
2021-04-24 04:43:22 +0000casu(b8aaa7ab@184.170.167.171) (Client Quit)
2021-04-24 04:52:28 +0000RandomArcher(RandomArch@gateway/vpn/protonvpn/randomarcher) (Ping timeout: 252 seconds)
2021-04-24 04:54:44 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 04:56:43 +0000redmp(~redmp@172.58.35.164) (Quit: leaving)
2021-04-24 05:09:10 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-aqzweplpcsywgnal) (Quit: Connection closed for inactivity)
2021-04-24 05:09:34 +0000Sgeo(~Sgeo@ool-18b98aa4.dyn.optonline.net) (Read error: Connection reset by peer)
2021-04-24 05:13:29 +0000Sgeo(~Sgeo@ool-18b98aa4.dyn.optonline.net)
2021-04-24 05:17:27 +0000SynOps(~SynOps@185.204.1.185) (Remote host closed the connection)
2021-04-24 05:17:48 +0000nineonine(~nineonine@50.216.62.2)
2021-04-24 05:18:51 +0000xcmw(~textual@dyn-72-33-2-152.uwnet.wisc.edu) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-04-24 05:19:02 +0000gnumonic(~gnumonic@c-73-170-91-210.hsd1.ca.comcast.net) (Ping timeout: 246 seconds)
2021-04-24 05:21:16 +0000kiweun(~kiweun@2607:fea8:2a62:9600:d9c9:b93d:8eb5:6ff) (Remote host closed the connection)
2021-04-24 05:26:38 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 05:27:28 +0000Bergle_3(~Bergle_4@101.165.90.119)
2021-04-24 05:29:01 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 265 seconds)
2021-04-24 05:29:41 +0000drbean_(~drbean@TC210-63-209-220.static.apol.com.tw) (Ping timeout: 240 seconds)
2021-04-24 05:29:46 +0000Bergle_2(~Bergle_4@101.165.90.119) (Ping timeout: 240 seconds)
2021-04-24 05:31:17 +0000drbean_(~drbean@TC210-63-209-188.static.apol.com.tw)
2021-04-24 05:32:20 +0000__minoru__shirae(~shiraeesh@46.34.206.138) (Remote host closed the connection)
2021-04-24 05:32:20 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 246 seconds)
2021-04-24 05:32:37 +0000Cale(~cale@cpef48e38ee8583-cm0c473de9d680.cpe.net.cable.rogers.com) (Ping timeout: 260 seconds)
2021-04-24 05:35:09 +0000__minoru__shirae(~shiraeesh@46.34.206.138)
2021-04-24 05:35:43 +0000santa_1(~santa_@139.28.218.148)
2021-04-24 05:37:09 +0000howdoi(uid224@gateway/web/irccloud.com/x-vstezmgnvunlkcvf) (Quit: Connection closed for inactivity)
2021-04-24 05:37:46 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 240 seconds)
2021-04-24 05:38:16 +0000coot(~coot@37.30.50.130.nat.umts.dynamic.t-mobile.pl)
2021-04-24 05:39:56 +0000HarveyPwca(~HarveyPwc@c-98-220-98-201.hsd1.il.comcast.net) (Quit: Leaving)
2021-04-24 05:40:03 +0000ericsagnes(~ericsagne@2405:6580:0:5100:7ff1:91b1:bbc6:45b2) (Ping timeout: 260 seconds)
2021-04-24 05:40:11 +0000falafel(~falafel@pool-96-255-70-50.washdc.fios.verizon.net) (Ping timeout: 240 seconds)
2021-04-24 05:44:27 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 05:44:38 +0000blankshadow(~slimespid@218.208.129.41)
2021-04-24 05:45:31 +0000jao(~jao@pdpc/supporter/professional/jao) (Ping timeout: 260 seconds)
2021-04-24 05:46:25 +0000vulcan01(~Perpetual@c-73-254-191-149.hsd1.wa.comcast.net) (Ping timeout: 265 seconds)
2021-04-24 05:51:34 +0000dsrt^(dsrt@ip98-184-89-2.mc.at.cox.net) ()
2021-04-24 05:52:34 +0000ericsagnes(~ericsagne@2405:6580:0:5100:8fae:31da:399b:f0f7)
2021-04-24 05:52:57 +0000Cale(~cale@cpef48e38ee8583-cm0c473de9d680.cpe.net.cable.rogers.com)
2021-04-24 06:02:31 +0000MidAutumnHotaru(~MidAutumn@unaffiliated/midautumnhotaru) (Quit: Quit 啾)
2021-04-24 06:03:06 +0000MidAutumnHotaru(~MidAutumn@unaffiliated/midautumnhotaru)
2021-04-24 06:03:34 +0000nineonin_(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07)
2021-04-24 06:03:52 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 268 seconds)
2021-04-24 06:06:17 +0000nineonine(~nineonine@50.216.62.2) (Ping timeout: 246 seconds)
2021-04-24 06:14:01 +0000vulcan01(~Perpetual@c-73-254-191-149.hsd1.wa.comcast.net)
2021-04-24 06:14:44 +0000ashesham`(~user@d8D87D1B0.access.telenet.be)
2021-04-24 06:14:58 +0000__minoru__shirae(~shiraeesh@46.34.206.138) (Ping timeout: 252 seconds)
2021-04-24 06:15:14 +0000vicfred(~vicfred@unaffiliated/vicfred) (Quit: Leaving)
2021-04-24 06:15:16 +0000geowiesnot(~user@i15-les02-ix2-87-89-181-157.sfr.lns.abo.bbox.fr)
2021-04-24 06:17:24 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 06:18:39 +0000malumore(~malumore@151.62.120.175)
2021-04-24 06:18:41 +0000vulcan01(~Perpetual@c-73-254-191-149.hsd1.wa.comcast.net) (Ping timeout: 240 seconds)
2021-04-24 06:19:58 +0000Varis(~Tadas@unaffiliated/varis)
2021-04-24 06:21:52 +0000alx741(~alx741@181.196.69.117) (Quit: alx741)
2021-04-24 06:23:31 +0000tsaka_(~torstein@athedsl-4519432.home.otenet.gr)
2021-04-24 06:24:13 +0000ashesham`(~user@d8D87D1B0.access.telenet.be) (Ping timeout: 268 seconds)
2021-04-24 06:24:20 +0000ashesham`(~user@ptr-e1lysaxi96yfnpwdt4u.18120a2.ip6.access.telenet.be)
2021-04-24 06:24:56 +0000mrchampion(~mrchampio@38.18.109.23) (Ping timeout: 245 seconds)
2021-04-24 06:25:47 +0000tomsmeding(~tomsmedin@tomsmeding.com) (Quit: ZNC 1.8.2 - https://znc.in)
2021-04-24 06:26:26 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 240 seconds)
2021-04-24 06:26:37 +0000tomsmeding(~tomsmedin@tomsmeding.com)
2021-04-24 06:29:57 +0000vs^(vs@ip98-184-89-2.mc.at.cox.net)
2021-04-24 06:30:41 +0000stree(~stree@68.36.8.116) (Ping timeout: 240 seconds)
2021-04-24 06:34:00 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 06:35:06 +0000blankshadow(~slimespid@218.208.129.41) (Remote host closed the connection)
2021-04-24 06:37:01 +0000Varis(~Tadas@unaffiliated/varis) (Remote host closed the connection)
2021-04-24 06:38:44 +0000mrchampion(~mrchampio@38.18.109.23)
2021-04-24 06:40:33 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 265 seconds)
2021-04-24 06:43:55 +0000stree(~stree@68.36.8.116)
2021-04-24 06:43:56 +0000dastomaten(~dastomate@0543f40b.skybroadband.com) (Ping timeout: 265 seconds)
2021-04-24 06:46:59 +0000tanner_(~tanner@216.106.138.184) (Quit: tanner_)
2021-04-24 06:47:46 +0000shailangsa(~shailangs@host86-185-58-137.range86-185.btcentralplus.com) (Ping timeout: 260 seconds)
2021-04-24 06:47:56 +0000geowiesnot(~user@i15-les02-ix2-87-89-181-157.sfr.lns.abo.bbox.fr) (Ping timeout: 246 seconds)
2021-04-24 06:48:23 +0000RusAlex_(~Chel@BSN-77-82-41.static.siol.net) (Quit: WeeChat 3.0)
2021-04-24 06:48:30 +0000RusAlex(~Chel@unaffiliated/rusalex)
2021-04-24 06:48:55 +0000danvet(~Daniel@2a02:168:57f4:0:efd0:b9e5:5ae6:c2fa)
2021-04-24 06:50:25 +0000Gurkenglas(~Gurkengla@unaffiliated/gurkenglas)
2021-04-24 06:51:32 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 06:51:40 +0000pony(sid257727@gateway/web/irccloud.com/x-sdyjzzvtmmdtnyry)
2021-04-24 06:56:27 +0000carlomagno(~cararell@148.87.23.4) (Quit: Leaving.)
2021-04-24 06:57:31 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 268 seconds)
2021-04-24 06:59:55 +0000dyniec[m](dyniecmatr@gateway/shell/matrix.org/x-tozcupusvmlxhyii) (Ping timeout: 250 seconds)
2021-04-24 06:59:59 +0000srid(sridmatrix@gateway/shell/matrix.org/x-kdiohswnikqzcrsc) (Ping timeout: 245 seconds)
2021-04-24 06:59:59 +0000pqwy[m](pqwymatrix@gateway/shell/matrix.org/x-ytydtmynqqqucxon) (Ping timeout: 245 seconds)
2021-04-24 06:59:59 +0000johnnyboy[m](gifumatrix@gateway/shell/matrix.org/x-elnqcrstviceefpa) (Ping timeout: 245 seconds)
2021-04-24 07:00:02 +0000dyniec[m](dyniecmatr@gateway/shell/matrix.org/x-uodwhoydkwsqekam)
2021-04-24 07:00:47 +0000M9ndres[m](m9ndresmat@gateway/shell/matrix.org/x-dfiqdthtgevvjnld) (Ping timeout: 250 seconds)
2021-04-24 07:00:49 +0000mith[m](mithmatrix@gateway/shell/matrix.org/x-hzfozeeypcpgvsfv) (Ping timeout: 245 seconds)
2021-04-24 07:00:50 +0000mjlbach(atriusmatr@gateway/shell/matrix.org/x-naaogafgvvujonsu) (Ping timeout: 245 seconds)
2021-04-24 07:01:40 +0000pqwy[m](pqwymatrix@gateway/shell/matrix.org/x-owkvliodtdhnzlyi)
2021-04-24 07:01:48 +0000johnnyboy[m](gifumatrix@gateway/shell/matrix.org/x-werjqffkoelbdsvc)
2021-04-24 07:02:02 +0000M9ndres[m](m9ndresmat@gateway/shell/matrix.org/x-seocxulfsqrbeznw)
2021-04-24 07:03:52 +0000mith[m](mithmatrix@gateway/shell/matrix.org/x-tlapkgppewplnptl)
2021-04-24 07:04:31 +0000srid(sridmatrix@gateway/shell/matrix.org/x-qplbjwlmsmpxtvvc)
2021-04-24 07:05:03 +0000mjlbach(atriusmatr@gateway/shell/matrix.org/x-pmoozefxefawidpk)
2021-04-24 07:06:30 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 07:07:55 +0000wonko7(~wonko7@62.115.229.50)
2021-04-24 07:07:56 +0000conal(~conal@64.71.133.70) (Read error: Connection reset by peer)
2021-04-24 07:08:49 +0000DTZUZU_(~DTZUZO@207.81.119.43)
2021-04-24 07:09:51 +0000Rudd0(~Rudd0@185.189.115.103) (Ping timeout: 268 seconds)
2021-04-24 07:10:37 +0000DTZUZU(~DTZUZO@205.ip-149-56-132.net) (Ping timeout: 260 seconds)
2021-04-24 07:11:31 +0000honigkuchen(~honigkuch@ip5b429953.dynamic.kabel-deutschland.de)
2021-04-24 07:11:52 +0000 <honigkuchen> can aspect orientated programming be understood as somehow higher then polymorphism?
2021-04-24 07:12:10 +0000 <honigkuchen> and what else could also maybe be understood as being somehow higher then polymorphism
2021-04-24 07:12:37 +0000shailangsa(~shailangs@host86-185-58-137.range86-185.btcentralplus.com)
2021-04-24 07:12:43 +0000cole-h(~cole-h@c-73-48-197-220.hsd1.ca.comcast.net) (Ping timeout: 252 seconds)
2021-04-24 07:13:07 +0000conal(~conal@64.71.133.70)
2021-04-24 07:15:44 +0000alexander(~alexander@2a02:587:dc0a:2700:dc6:16ac:a95:eabf)
2021-04-24 07:16:13 +0000alexanderGuest72214
2021-04-24 07:17:35 +0000ashesham`(~user@ptr-e1lysaxi96yfnpwdt4u.18120a2.ip6.access.telenet.be) (Ping timeout: 260 seconds)
2021-04-24 07:18:44 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 252 seconds)
2021-04-24 07:20:18 +0000bitmapper(uid464869@gateway/web/irccloud.com/x-qyszewyuetfjzacp) (Quit: Connection closed for inactivity)
2021-04-24 07:24:45 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 07:25:20 +0000mrchampion(~mrchampio@38.18.109.23) (Ping timeout: 252 seconds)
2021-04-24 07:26:41 +0000mrchampion(~mrchampio@38.18.109.23)
2021-04-24 07:28:45 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 07:29:46 +0000petersen(~petersen@redhat/juhp) (Ping timeout: 252 seconds)
2021-04-24 07:31:57 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 07:32:19 +0000zva(~zava@ip5f5bdf0f.dynamic.kabel-deutschland.de)
2021-04-24 07:32:54 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 245 seconds)
2021-04-24 07:35:38 +0000Codaraxis__(~Codaraxis@92.223.89.200)
2021-04-24 07:38:07 +0000avn(~avn@78-56-108-78.static.zebra.lt) (Remote host closed the connection)
2021-04-24 07:38:39 +0000Varis(~Tadas@unaffiliated/varis)
2021-04-24 07:38:44 +0000redmp(~redmp@172.58.35.164)
2021-04-24 07:39:07 +0000Codaraxis_(~Codaraxis@ip68-5-90-227.oc.oc.cox.net) (Ping timeout: 252 seconds)
2021-04-24 07:40:55 +0000nineonin_(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07) (Remote host closed the connection)
2021-04-24 07:41:45 +0000nineonine(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07)
2021-04-24 07:46:17 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 265 seconds)
2021-04-24 07:46:31 +0000nineonine(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07) (Ping timeout: 260 seconds)
2021-04-24 07:50:10 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 07:51:41 +0000knupfer(~Thunderbi@200116b82b743500b4b3cc7adcbc939f.dip.versatel-1u1.de)
2021-04-24 07:52:34 +0000dastomaten(~dastomate@0543f40b.skybroadband.com)
2021-04-24 07:52:40 +0000redmp_(~redmp@172.58.30.188)
2021-04-24 07:55:57 +0000redmp(~redmp@172.58.35.164) (Ping timeout: 265 seconds)
2021-04-24 07:56:41 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 07:57:16 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 252 seconds)
2021-04-24 07:58:41 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 08:00:37 +0000kiweun(~kiweun@2607:fea8:2a62:9600:c9e3:31f8:9b69:d4e3)
2021-04-24 08:04:44 +0000Aquazi(uid312403@gateway/web/irccloud.com/x-oimvpawnrgwfachw)
2021-04-24 08:04:53 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 08:04:59 +0000kiweun(~kiweun@2607:fea8:2a62:9600:c9e3:31f8:9b69:d4e3) (Ping timeout: 245 seconds)
2021-04-24 08:06:47 +0000geowiesnot(~user@i15-les02-ix2-87-89-181-157.sfr.lns.abo.bbox.fr)
2021-04-24 08:07:16 +0000hendursaga(~weechat@gateway/tor-sasl/hendursaga)
2021-04-24 08:09:57 +0000hendursa1(~weechat@gateway/tor-sasl/hendursaga) (Ping timeout: 240 seconds)
2021-04-24 08:13:50 +0000frozenErebus(~frozenEre@37.231.244.249) (Ping timeout: 265 seconds)
2021-04-24 08:16:48 +0000machinedgod(~machinedg@24.105.81.50)
2021-04-24 08:17:04 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 268 seconds)
2021-04-24 08:18:08 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 08:19:41 +0000geowiesnot(~user@i15-les02-ix2-87-89-181-157.sfr.lns.abo.bbox.fr) (Ping timeout: 240 seconds)
2021-04-24 08:20:37 +0000xiinotulp(~q@node-uhc.pool-125-24.dynamic.totinternet.net) (Quit: Leaving)
2021-04-24 08:20:45 +0000tzh(~tzh@c-24-21-73-154.hsd1.wa.comcast.net) (Quit: zzz)
2021-04-24 08:23:06 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 240 seconds)
2021-04-24 08:26:12 +0000cheater1(~user@unaffiliated/cheater) (Ping timeout: 240 seconds)
2021-04-24 08:28:05 +0000_ht(~quassel@82-169-194-8.biz.kpn.net)
2021-04-24 08:28:19 +0000xff0x(~xff0x@2001:1a81:5345:1000:b335:7ff7:cb5b:57a8) (Ping timeout: 245 seconds)
2021-04-24 08:29:10 +0000xff0x(~xff0x@2001:1a81:5345:1000:6c4e:76aa:9183:d81d)
2021-04-24 08:29:50 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 08:33:43 +0000Tario(~Tario@201.192.165.173) (Ping timeout: 268 seconds)
2021-04-24 08:36:47 +0000ph88(~ph88@2a02:8109:9e00:7e5c:d5ef:86b3:afc4:9258)
2021-04-24 08:40:34 +0000vs^(vs@ip98-184-89-2.mc.at.cox.net) ()
2021-04-24 08:43:05 +0000forell(~forell@unaffiliated/forell) (Ping timeout: 246 seconds)
2021-04-24 08:44:12 +0000fendor(~fendor@178.165.131.197.wireless.dyn.drei.com)
2021-04-24 08:46:40 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 268 seconds)
2021-04-24 08:47:19 +0000nineonine(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07)
2021-04-24 08:48:19 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 245 seconds)
2021-04-24 08:51:04 +0000dsrt^(dsrt@ip98-184-89-2.mc.at.cox.net)
2021-04-24 08:51:43 +0000nineonine(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07) (Ping timeout: 250 seconds)
2021-04-24 08:52:16 +0000stree(~stree@68.36.8.116) (Ping timeout: 252 seconds)
2021-04-24 08:53:15 +0000hiroaki_(~hiroaki@2a02:8108:8c40:2bb8:f194:fff7:6857:408) (Ping timeout: 260 seconds)
2021-04-24 08:54:22 +0000forell(~forell@unaffiliated/forell)
2021-04-24 08:54:48 +0000kristijonas(~kristijon@78-56-32-39.static.zebra.lt)
2021-04-24 08:55:10 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 08:56:59 +0000ericsagnes(~ericsagne@2405:6580:0:5100:8fae:31da:399b:f0f7) (Ping timeout: 260 seconds)
2021-04-24 08:58:12 +0000 <johnnyboy[m]> are there mature concolic testing frameworks for Haskell?
2021-04-24 08:58:54 +0000 <johnnyboy[m]> I found this by googling, but it seems abandoned: https://github.com/m-alvarez/scher
2021-04-24 09:00:03 +0000unclechu(unclechuma@gateway/shell/matrix.org/x-ertytzmkazzzhybx) (Quit: Idle for 30+ days)
2021-04-24 09:00:11 +0000kadoban(kadobanemp@gateway/shell/matrix.org/x-zvjltlxvjsvasrie) (Quit: Idle for 30+ days)
2021-04-24 09:01:03 +0000__minoru__shirae(~shiraeesh@46.34.206.138)
2021-04-24 09:01:29 +0000conal(~conal@64.71.133.70) (Quit: Textual IRC Client: www.textualapp.com)
2021-04-24 09:02:38 +0000Dave10(b6447b27@gateway/web/cgi-irc/kiwiirc.com/ip.182.68.123.39)
2021-04-24 09:03:27 +0000Dave10(b6447b27@gateway/web/cgi-irc/kiwiirc.com/ip.182.68.123.39) (Client Quit)
2021-04-24 09:03:32 +0000wonko7(~wonko7@62.115.229.50) (Ping timeout: 240 seconds)
2021-04-24 09:03:44 +0000 <johnnyboy[m]> now I found this: https://hackage.haskell.org/package/g2
2021-04-24 09:04:03 +0000Dave17(b6447b27@gateway/web/cgi-irc/kiwiirc.com/ip.182.68.123.39)
2021-04-24 09:04:45 +0000stree(~stree@68.36.8.116)
2021-04-24 09:05:38 +0000hiroaki_(~hiroaki@2a02:8108:8c40:2bb8:22bd:58fd:2b08:64b5)
2021-04-24 09:06:24 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 268 seconds)
2021-04-24 09:09:21 +0000ericsagnes(~ericsagne@2405:6580:0:5100:e8ce:9fd2:d362:4446)
2021-04-24 09:10:33 +0000nut(~user@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr)
2021-04-24 09:14:03 +0000Sgeo(~Sgeo@ool-18b98aa4.dyn.optonline.net) (Read error: Connection reset by peer)
2021-04-24 09:16:15 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 09:20:32 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 246 seconds)
2021-04-24 09:20:32 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
2021-04-24 09:22:38 +0000drbean_(~drbean@TC210-63-209-188.static.apol.com.tw) (Quit: ZNC 1.8.2+cygwin2 - https://znc.in)
2021-04-24 09:23:34 +0000conal(~conal@64.71.133.70)
2021-04-24 09:26:26 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 09:30:51 +0000ddellaco_(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 09:32:51 +0000philderbeast(~textual@bras-base-vldvpq5901w-grc-06-184-144-244-252.dsl.bell.ca)
2021-04-24 09:35:09 +0000ddellaco_(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 252 seconds)
2021-04-24 09:38:01 +0000geowiesnot(~user@87-89-181-157.abo.bbox.fr)
2021-04-24 09:40:12 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 240 seconds)
2021-04-24 09:41:42 +0000 <johnnyboy[m]> I've came accross a couple of papers with the argument that somehow if type checking succeeds and quickcheck doesn't find errors, then "it's probably okay"
2021-04-24 09:41:47 +0000 <johnnyboy[m]> but I'm a bit skeptic
2021-04-24 09:42:31 +0000 <johnnyboy[m]> I've come to understand that quickcheck just generates random inputs basically
2021-04-24 09:43:01 +0000 <johnnyboy[m]> how does that ensure maximal coverage of the exponentially many possible executions of a program?
2021-04-24 09:43:41 +0000 <johnnyboy[m]> how do we know what kind of distribution finds most errors on arbitrary code?
2021-04-24 09:44:47 +0000redmp_(~redmp@172.58.30.188) (Quit: goodnight you fabulous people)
2021-04-24 09:46:10 +0000machinedgod(~machinedg@24.105.81.50) (Ping timeout: 265 seconds)
2021-04-24 09:46:34 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 09:50:27 +0000 <nut> C-r C-r reload Haskell code in the emacs buffer. Is there a way to evalute just a region? I would like to check some intermediate values for debugging purposes
2021-04-24 09:50:41 +0000 <nut> I mean C-c C-r
2021-04-24 09:56:33 +0000Guest48627(~textual@2603-7000-3040-0000-5566-884b-fd9b-56dc.res6.spectrum.com) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-04-24 09:58:42 +0000geowiesnot(~user@87-89-181-157.abo.bbox.fr) (Ping timeout: 240 seconds)
2021-04-24 10:01:50 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 246 seconds)
2021-04-24 10:04:37 +0000Rudd0(~Rudd0@185.189.115.103)
2021-04-24 10:06:03 +0000hiroaki_(~hiroaki@2a02:8108:8c40:2bb8:22bd:58fd:2b08:64b5) (Ping timeout: 260 seconds)
2021-04-24 10:07:09 +0000mikoto-chan(~anass@gateway/tor-sasl/mikoto-chan)
2021-04-24 10:10:49 +0000brandonhamilton(~brandonha@151.68.89.220)
2021-04-24 10:11:26 +0000brandonhamilton(~brandonha@151.68.89.220) (Client Quit)
2021-04-24 10:14:40 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 10:21:01 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 260 seconds)
2021-04-24 10:21:02 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-04-24 10:23:46 +0000Alleria(~textual@mskresolve-a.mskcc.org)
2021-04-24 10:24:10 +0000AlleriaGuest13213
2021-04-24 10:25:11 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 240 seconds)
2021-04-24 10:26:00 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 10:29:46 +0000ekleog(~ii@grym.ekleog.org) (Changing host)
2021-04-24 10:29:46 +0000ekleog(~ii@prologin/ekleog)
2021-04-24 10:29:51 +0000cheater1(~user@unaffiliated/cheater)
2021-04-24 10:30:53 +0000__minoru__shirae(~shiraeesh@46.34.206.138) (Ping timeout: 268 seconds)
2021-04-24 10:36:00 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 252 seconds)
2021-04-24 10:38:28 +0000dpl(~dpl@77-121-78-163.chn.volia.net)
2021-04-24 10:39:36 +0000__minoru__shirae(~shiraeesh@46.34.206.138)
2021-04-24 10:41:55 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 10:42:00 +0000unyu(~pyon@unaffiliated/pyon) (Quit: brb)
2021-04-24 10:44:15 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 10:46:59 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 246 seconds)
2021-04-24 10:49:11 +0000Tuplanolla(~Tuplanoll@91-159-68-239.elisa-laajakaista.fi)
2021-04-24 10:50:11 +0000raym(~ray@45.64.220.116) (Quit: leaving)
2021-04-24 10:50:25 +0000nut(~user@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr) (Ping timeout: 260 seconds)
2021-04-24 10:52:50 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 10:52:52 +0000raym(~ray@45.64.220.116)
2021-04-24 10:55:03 +0000santa_1(~santa_@139.28.218.148) (Remote host closed the connection)
2021-04-24 10:56:19 +0000Kaiepi(~Kaiepi@47.54.252.148) (Remote host closed the connection)
2021-04-24 10:57:07 +0000Guest_79(b9b40cf3@185.180.12.243)
2021-04-24 10:57:58 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 10:58:19 +0000xff0x(~xff0x@2001:1a81:5345:1000:6c4e:76aa:9183:d81d) (Ping timeout: 245 seconds)
2021-04-24 10:58:38 +0000xff0x(xff0x@gateway/vpn/mullvad/xff0x)
2021-04-24 10:58:46 +0000machinedgod(~machinedg@24.105.81.50)
2021-04-24 11:02:39 +0000acidjnk_new(~acidjnk@p200300d0c72b9505e98f0c32b6dcafff.dip0.t-ipconnect.de)
2021-04-24 11:03:08 +0000Dave17(b6447b27@gateway/web/cgi-irc/kiwiirc.com/ip.182.68.123.39) (Quit: Connection closed)
2021-04-24 11:05:30 +0000mav1(~mav@200116b80079610035523288c3f29af4.dip.versatel-1u1.de)
2021-04-24 11:06:02 +0000xff0x(xff0x@gateway/vpn/mullvad/xff0x) (Ping timeout: 268 seconds)
2021-04-24 11:07:50 +0000xff0x(~xff0x@2001:1a81:5345:1000:6c4e:76aa:9183:d81d)
2021-04-24 11:07:50 +0000Guest_79(b9b40cf3@185.180.12.243) (Quit: Connection closed)
2021-04-24 11:08:06 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 240 seconds)
2021-04-24 11:08:57 +0000philderbeast(~textual@bras-base-vldvpq5901w-grc-06-184-144-244-252.dsl.bell.ca) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-04-24 11:10:27 +0000pera(pera@gateway/vpn/mullvad/pera)
2021-04-24 11:11:01 +0000jemarch(~jemarch@185.204.1.185)
2021-04-24 11:11:36 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Remote host closed the connection)
2021-04-24 11:12:00 +0000geowiesnot(~user@87-89-181-157.abo.bbox.fr)
2021-04-24 11:12:32 +0000stree(~stree@68.36.8.116) (Ping timeout: 246 seconds)
2021-04-24 11:17:52 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 240 seconds)
2021-04-24 11:18:57 +0000geowiesnot(~user@87-89-181-157.abo.bbox.fr) (Ping timeout: 265 seconds)
2021-04-24 11:26:08 +0000stree(~stree@68.36.8.116)
2021-04-24 11:26:10 +0000gitgood(~gitgood@80-44-9-246.dynamic.dsl.as9105.com)
2021-04-24 11:32:24 +0000Eva43(25020b66@m37-2-11-102.cust.tele2.se)
2021-04-24 11:32:47 +0000ddellaco_(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 11:33:11 +0000Eva43(25020b66@m37-2-11-102.cust.tele2.se) (Quit: Connection closed)
2021-04-24 11:38:43 +0000ddellaco_(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 268 seconds)
2021-04-24 11:40:04 +0000olligobber(olligobber@gateway/vpn/privateinternetaccess/olligobber) (Remote host closed the connection)
2021-04-24 11:48:23 +0000pavonia(~user@unaffiliated/siracusa) (Quit: Bye!)
2021-04-24 11:51:10 +0000drbean_(~drbean@TC210-63-209-37.static.apol.com.tw)
2021-04-24 11:51:14 +0000acidjnk_new(~acidjnk@p200300d0c72b9505e98f0c32b6dcafff.dip0.t-ipconnect.de) (Ping timeout: 245 seconds)
2021-04-24 11:51:39 +0000perrier-jouet(~perrier-j@modemcable012.251-130-66.mc.videotron.ca)
2021-04-24 11:52:48 +0000Kaiepi(~Kaiepi@47.54.252.148) (Remote host closed the connection)
2021-04-24 11:53:07 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 11:53:50 +0000__minoru__shirae(~shiraeesh@46.34.206.138) (Remote host closed the connection)
2021-04-24 11:54:14 +0000__minoru__shirae(~shiraeesh@46.34.206.138)
2021-04-24 11:57:36 +0000dmytrish(~mitra@2a02:8084:a82:d900:6010:2869:d10:372c)
2021-04-24 11:58:38 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 12:01:26 +0000kiweun(~kiweun@2607:fea8:2a62:9600:f0f8:41cd:ca51:131e)
2021-04-24 12:02:06 +0000Gurkenglas(~Gurkengla@unaffiliated/gurkenglas) (Ping timeout: 240 seconds)
2021-04-24 12:02:56 +0000dpl(~dpl@77-121-78-163.chn.volia.net) (Ping timeout: 260 seconds)
2021-04-24 12:03:40 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 252 seconds)
2021-04-24 12:03:48 +0000dpl(~dpl@77-121-78-163.chn.volia.net)
2021-04-24 12:04:00 +0000Kaiepi(~Kaiepi@47.54.252.148) (Ping timeout: 268 seconds)
2021-04-24 12:05:51 +0000kiweun(~kiweun@2607:fea8:2a62:9600:f0f8:41cd:ca51:131e) (Ping timeout: 250 seconds)
2021-04-24 12:06:25 +0000tsaka_(~torstein@athedsl-4519432.home.otenet.gr) (Ping timeout: 252 seconds)
2021-04-24 12:08:00 +0000mmfood_1(~mmfood@45.91.21.41)
2021-04-24 12:08:52 +0000Rudd0(~Rudd0@185.189.115.103) (Ping timeout: 240 seconds)
2021-04-24 12:10:48 +0000mmfood(~mmfood@185.176.246.69) (Ping timeout: 268 seconds)
2021-04-24 12:14:55 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 12:15:14 +0000unyu(~pyon@unaffiliated/pyon)
2021-04-24 12:15:55 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com)
2021-04-24 12:21:38 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 12:22:45 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-04-24 12:23:45 +0000ericsagn1(~ericsagne@2405:6580:0:5100:bd68:2e0:1f11:8b3a)
2021-04-24 12:24:40 +0000Pickchea(~private@unaffiliated/pickchea)
2021-04-24 12:25:10 +0000HannaM(~quassel@p54849510.dip0.t-ipconnect.de)
2021-04-24 12:25:39 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Ping timeout: 265 seconds)
2021-04-24 12:26:39 +0000ericsagnes(~ericsagne@2405:6580:0:5100:e8ce:9fd2:d362:4446) (Ping timeout: 250 seconds)
2021-04-24 12:27:24 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 12:28:11 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 240 seconds)
2021-04-24 12:28:55 +0000 <Uniaika> are Haskell module names values?
2021-04-24 12:29:06 +0000 <Uniaika> like, can I pass a module name as an argument?
2021-04-24 12:30:08 +0000mmfood_2(~mmfood@45.91.21.41)
2021-04-24 12:30:49 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 12:30:55 +0000 <unyu> Inside a normal Haskell program? No.
2021-04-24 12:30:57 +0000 <geekosaur> nope
2021-04-24 12:31:02 +0000 <unyu> Inside a Haskell compiler? Yes.
2021-04-24 12:31:02 +0000 <Uniaika> ok cool :)
2021-04-24 12:31:23 +0000 <Uniaika> yeah I was talking about a program, I have no doubt that module names are turned into values in the compiler ;)
2021-04-24 12:31:29 +0000 <Uniaika> thanks unyu and geekosaur !
2021-04-24 12:32:05 +0000 <mniip> there's some hashes that are generated that are used in typeable machinery
2021-04-24 12:32:23 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net)
2021-04-24 12:32:49 +0000mmfood_1(~mmfood@45.91.21.41) (Ping timeout: 252 seconds)
2021-04-24 12:34:10 +0000nut(~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr)
2021-04-24 12:35:32 +0000 <Uniaika> I want to infer the position of a template from the module of the view
2021-04-24 12:36:07 +0000 <Uniaika> like, look up the template in src/Web/Templates/Foo/index.html.jinja2 is the view calls "render index.html"
2021-04-24 12:36:34 +0000 <Uniaika> and that the view is located in src/Web/View/Foo.hs
2021-04-24 12:39:09 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 268 seconds)
2021-04-24 12:48:58 +0000nineonine(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07)
2021-04-24 12:51:59 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Read error: Connection reset by peer)
2021-04-24 12:52:19 +0000Nik05(~Nik05@unaffiliated/nik05) (Quit: ZNC - https://znc.in)
2021-04-24 12:53:19 +0000nineonine(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07) (Ping timeout: 245 seconds)
2021-04-24 12:56:08 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 12:56:28 +0000Nik05(~Nik05@unaffiliated/nik05)
2021-04-24 12:59:51 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 13:00:42 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 13:00:45 +0000urodna(~urodna@unaffiliated/urodna)
2021-04-24 13:01:42 +0000conal_(~conal@64.71.133.70)
2021-04-24 13:02:26 +0000conal(~conal@64.71.133.70) (Ping timeout: 260 seconds)
2021-04-24 13:04:32 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 240 seconds)
2021-04-24 13:06:27 +0000mmfood_2mmfood
2021-04-24 13:06:27 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net)
2021-04-24 13:07:02 +0000is_null_(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 13:07:09 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net)
2021-04-24 13:09:59 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Ping timeout: 268 seconds)
2021-04-24 13:10:13 +0000Kaiepi(~Kaiepi@47.54.252.148) (Ping timeout: 252 seconds)
2021-04-24 13:10:43 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 13:11:05 +0000hiroaki(~hiroaki@2a02:8108:8c40:2bb8:6312:c8ad:fc31:201b)
2021-04-24 13:11:30 +0000dinciorip(~dincio@5.170.69.95)
2021-04-24 13:19:45 +0000Aquazi(uid312403@gateway/web/irccloud.com/x-oimvpawnrgwfachw) (Quit: Connection closed for inactivity)
2021-04-24 13:21:26 +0000kiweun(~kiweun@2607:fea8:2a62:9600:1db2:7ce6:d59d:96e7)
2021-04-24 13:22:02 +0000kiweun(~kiweun@2607:fea8:2a62:9600:1db2:7ce6:d59d:96e7) (Remote host closed the connection)
2021-04-24 13:24:31 +0000mmfood_1(~mmfood@45.91.21.41)
2021-04-24 13:26:50 +0000hypercube(hypercube@gateway/vpn/protonvpn/hypercube) (Quit: WeeChat 3.1)
2021-04-24 13:26:56 +0000mmfood(~mmfood@45.91.21.41) (Ping timeout: 260 seconds)
2021-04-24 13:29:12 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Ping timeout: 240 seconds)
2021-04-24 13:30:17 +0000hypercube(hypercube@gateway/vpn/protonvpn/hypercube)
2021-04-24 13:30:34 +0000hypercube(hypercube@gateway/vpn/protonvpn/hypercube) (Client Quit)
2021-04-24 13:33:50 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 13:33:56 +0000stree(~stree@68.36.8.116) (Ping timeout: 246 seconds)
2021-04-24 13:33:58 +0000nicholasbulka(~nicholasb@2601:900:4301:da0:58e6:3a0a:96a:ca2c)
2021-04-24 13:33:59 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com)
2021-04-24 13:35:41 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Read error: Connection reset by peer)
2021-04-24 13:36:52 +0000is_null_(~jpic@pdpc/supporter/professional/is-null) (Ping timeout: 240 seconds)
2021-04-24 13:37:24 +0000Kaiepi(~Kaiepi@47.54.252.148) (Remote host closed the connection)
2021-04-24 13:37:41 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 13:38:34 +0000mmfood_2(~mmfood@45.91.21.41)
2021-04-24 13:38:47 +0000ADG1089(~aditya@171.76.29.233)
2021-04-24 13:38:50 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 13:40:45 +0000mmfood_1(~mmfood@45.91.21.41) (Ping timeout: 260 seconds)
2021-04-24 13:40:47 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com) (Quit: WeeChat 3.1)
2021-04-24 13:42:17 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com)
2021-04-24 13:43:58 +0000ADG1089(~aditya@171.76.29.233) (Remote host closed the connection)
2021-04-24 13:44:11 +0000drbean_(~drbean@TC210-63-209-37.static.apol.com.tw) (Quit: ZNC 1.8.2+cygwin2 - https://znc.in)
2021-04-24 13:44:32 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Ping timeout: 240 seconds)
2021-04-24 13:45:47 +0000nek0(~nek0@mail.nek0.eu) (Remote host closed the connection)
2021-04-24 13:46:56 +0000frozenErebus(~frozenEre@37.231.244.249)
2021-04-24 13:47:24 +0000stree(~stree@68.36.8.116)
2021-04-24 13:47:48 +0000thc202(~thc202@unaffiliated/thc202)
2021-04-24 13:48:41 +0000stef204(~stef204@unaffiliated/stef-204/x-384198)
2021-04-24 13:49:59 +0000mmfood_1(~mmfood@45.91.21.41)
2021-04-24 13:50:41 +0000nek0(~nek0@mail.nek0.eu)
2021-04-24 13:52:36 +0000mmfood(~mmfood@45.91.21.41)
2021-04-24 13:52:38 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection)
2021-04-24 13:52:56 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net)
2021-04-24 13:53:09 +0000mmfood_2(~mmfood@45.91.21.41) (Ping timeout: 268 seconds)
2021-04-24 13:53:24 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection)
2021-04-24 13:53:41 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net)
2021-04-24 13:53:48 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection)
2021-04-24 13:54:06 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net)
2021-04-24 13:54:25 +0000Tario(~Tario@201.192.165.173)
2021-04-24 13:54:45 +0000Flonk(~Flonk@ec2-52-40-29-25.us-west-2.compute.amazonaws.com) (Ping timeout: 252 seconds)
2021-04-24 13:55:13 +0000mmfood_1(~mmfood@45.91.21.41) (Ping timeout: 260 seconds)
2021-04-24 13:55:30 +0000mmfood_1(~mmfood@45.91.21.41)
2021-04-24 13:55:43 +0000Flonk(~Flonk@ec2-34-221-127-147.us-west-2.compute.amazonaws.com)
2021-04-24 13:56:06 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection)
2021-04-24 13:56:24 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net)
2021-04-24 13:56:28 +0000idhugo(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection)
2021-04-24 13:57:25 +0000catern(~sbaugh@2604:2000:8fc0:b:a9c7:866a:bf36:3407)
2021-04-24 13:57:26 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 13:57:30 +0000mmfood_2(~mmfood@45.91.21.41)
2021-04-24 13:58:04 +0000mmfood(~mmfood@45.91.21.41) (Ping timeout: 252 seconds)
2021-04-24 13:58:46 +0000jao(~jao@pdpc/supporter/professional/jao)
2021-04-24 13:59:40 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net)
2021-04-24 14:00:08 +0000nek0(~nek0@mail.nek0.eu) (Remote host closed the connection)
2021-04-24 14:00:16 +0000mmfood_1(~mmfood@45.91.21.41) (Ping timeout: 252 seconds)
2021-04-24 14:00:39 +0000mmfood(~mmfood@185.176.246.69)
2021-04-24 14:01:17 +0000emetrusky(561e1a8f@cpc152439-cosh18-2-0-cust142.6-1.cable.virginm.net)
2021-04-24 14:01:39 +0000dpl_(~dpl@77-121-78-163.chn.volia.net)
2021-04-24 14:02:13 +0000mmfood_2(~mmfood@45.91.21.41) (Ping timeout: 260 seconds)
2021-04-24 14:03:21 +0000nek0(~nek0@mail.nek0.eu)
2021-04-24 14:04:06 +0000zariuq(~zar@fw1.ciirc.cvut.cz) (Ping timeout: 240 seconds)
2021-04-24 14:04:52 +0000dpl(~dpl@77-121-78-163.chn.volia.net) (Ping timeout: 268 seconds)
2021-04-24 14:05:28 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-caupldtffelvoeqp)
2021-04-24 14:05:46 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 252 seconds)
2021-04-24 14:08:52 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Ping timeout: 240 seconds)
2021-04-24 14:09:41 +0000machinedgod(~machinedg@24.105.81.50) (Ping timeout: 240 seconds)
2021-04-24 14:10:24 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com) (Quit: WeeChat 3.1)
2021-04-24 14:10:43 +0000Kaiepi(~Kaiepi@47.54.252.148) (Remote host closed the connection)
2021-04-24 14:10:50 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com)
2021-04-24 14:12:54 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 14:13:23 +0000Kaiepi(~Kaiepi@47.54.252.148) (Remote host closed the connection)
2021-04-24 14:13:41 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 14:14:49 +0000tms__(thomaav@cassarossa.samfundet.no) (Ping timeout: 260 seconds)
2021-04-24 14:14:56 +0000teddyc(theodorc@cassarossa.samfundet.no) (Ping timeout: 258 seconds)
2021-04-24 14:16:19 +0000tms_(thomaav@cassarossa.samfundet.no)
2021-04-24 14:16:50 +0000teddyc(theodorc@cassarossa.samfundet.no)
2021-04-24 14:17:41 +0000nut(~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr) (Ping timeout: 260 seconds)
2021-04-24 14:25:15 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-04-24 14:28:43 +0000son0p(~ff@181.136.122.143)
2021-04-24 14:29:58 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 252 seconds)
2021-04-24 14:34:17 +0000kristijonas(~kristijon@78-56-32-39.static.zebra.lt) (Remote host closed the connection)
2021-04-24 14:35:51 +0000kristijonas(~kristijon@78-56-32-39.static.zebra.lt)
2021-04-24 14:36:00 +0000P1RATEZ(piratez@unaffiliated/p1ratez)
2021-04-24 14:37:28 +0000Lowl3v3l(~Lowl3v3l@dslb-002-207-103-026.002.207.pools.vodafone-ip.de)
2021-04-24 14:38:01 +0000Deide(~Deide@217.155.19.23)
2021-04-24 14:39:19 +0000renzhi(~renzhi@2607:fa49:6500:bc00::e7b)
2021-04-24 14:45:28 +0000carlomagno(~cararell@148.87.23.7)
2021-04-24 14:46:31 +0000ph88(~ph88@2a02:8109:9e00:7e5c:d5ef:86b3:afc4:9258) (Ping timeout: 260 seconds)
2021-04-24 14:48:39 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 14:49:01 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 252 seconds)
2021-04-24 14:54:06 +0000 <zzz> does anyone suggest a good plotting library?
2021-04-24 14:54:11 +0000justsomeguy(~justsomeg@unaffiliated/--/x-3805311) (Ping timeout: 240 seconds)
2021-04-24 14:55:29 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 265 seconds)
2021-04-24 14:55:52 +0000HarveyPwca(~HarveyPwc@c-98-220-98-201.hsd1.il.comcast.net)
2021-04-24 14:56:26 +0000nan`(~nan`@unaffiliated/nan/x-5405850)
2021-04-24 14:59:14 +0000aiken(~aiken@188.114.143.150.dyn.plus.net)
2021-04-24 15:01:31 +0000elfets(~elfets@ip-37-201-23-96.hsi13.unitymediagroup.de)
2021-04-24 15:03:26 +0000russruss40(~russruss@my.russellmcc.com) (Quit: The Lounge - https://thelounge.chat)
2021-04-24 15:03:31 +0000Pickchea(~private@unaffiliated/pickchea) (Ping timeout: 252 seconds)
2021-04-24 15:04:40 +0000russruss40(~russruss@my.russellmcc.com)
2021-04-24 15:09:22 +0000Mrbuck(~Mrbuck@gateway/tor-sasl/mrbuck)
2021-04-24 15:12:15 +0000kritzefitz(~kritzefit@212.86.56.80)
2021-04-24 15:14:11 +0000dinciorip(~dincio@5.170.69.95) (Quit: WeeChat 3.1)
2021-04-24 15:16:05 +0000robotmay(~beepboop@2001:8b0:7af0:2580:e563:8f42:67c7:6d13) (Ping timeout: 250 seconds)
2021-04-24 15:16:45 +0000robotmay(~beepboop@2001:8b0:7af0:2580:94a2:bb95:e8d4:22af)
2021-04-24 15:19:09 +0000 <wz1000> zzz: I'm quite happy with Chart
2021-04-24 15:20:35 +0000nicholasbulka(~nicholasb@2601:900:4301:da0:58e6:3a0a:96a:ca2c) (Remote host closed the connection)
2021-04-24 15:21:22 +0000 <wz1000> Uniaika: You can get the Module of a particular type constructor (TyCon) using typeable
2021-04-24 15:21:28 +0000tanner_(~tanner@216.106.138.184)
2021-04-24 15:21:55 +0000 <Uniaika> wz1000: I came up with a TTH solution ;)
2021-04-24 15:22:09 +0000gnumonic(~gnumonic@c-73-170-91-210.hsd1.ca.comcast.net)
2021-04-24 15:22:16 +0000bor0(~boro@unaffiliated/boro/x-000000001)
2021-04-24 15:22:26 +0000frozenErebus(~frozenEre@37.231.244.249) (Ping timeout: 246 seconds)
2021-04-24 15:22:32 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 15:22:37 +0000kiweun(~kiweun@cpe98524a8cef7c-cm98524a8cef7a.cpe.net.cable.rogers.com)
2021-04-24 15:22:55 +0000 <bor0> I have a data type as follows: `data Arith = Z | S Arith | Plus Arith Arith`. I have two functions: one of them does `applyX [GoLeft:xs] r (Plus x y) = Plus (f xs r x) y` (so it kinda applies a function to every term), and another function `getX [GoLeft:xs] (Plus x y) = x`. is there a better name for these functions? the first one seems to be some kind of a fold but I'm not sure. basically the first one kinda "modifies" the terms while the seco
2021-04-24 15:22:56 +0000 <bor0> nd one just "reads" them
2021-04-24 15:23:46 +0000 <bor0> besides naming, I'm curious to see if there's a more elegant way to write these functions
2021-04-24 15:25:11 +0000dixie(~dixie@real.wilbury.sk) (Ping timeout: 240 seconds)
2021-04-24 15:25:27 +0000 <ski> it's not at all clear what the intent of `applyX' nor `getX' is
2021-04-24 15:25:54 +0000dixie(~dixie@real.wilbury.sk)
2021-04-24 15:26:05 +0000 <ski> also, as you've stated them, they're only partially defined (not defined for all inputs). perhaps you'd prefer making them total ?
2021-04-24 15:26:43 +0000 <ski> also, one would wonder, whether when you say `[GoLeft:xs]', perhaps you actually meant `(GoLeft:xs)'
2021-04-24 15:26:44 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 15:26:52 +0000 <bor0> Ah yeah, I was just trying to capture the idea, they're total otherwise (you helped me construct these the other day :)) Basically, applyX accepts a list of paths (lefts and rights) and specifically applies the function `r` to this term
2021-04-24 15:27:06 +0000kiweun(~kiweun@cpe98524a8cef7c-cm98524a8cef7a.cpe.net.cable.rogers.com) (Ping timeout: 240 seconds)
2021-04-24 15:27:25 +0000 <bor0> I can paste the full def, if that would help
2021-04-24 15:27:28 +0000 <ski> mm. it's also not clear where `f' comes from
2021-04-24 15:28:09 +0000 <ski> perhaps you could state some kind of specification, or intent, about what these two functions are meant for
2021-04-24 15:29:08 +0000 <bor0> Here's it: https://paste.tomsmeding.com/047Vypqa
2021-04-24 15:29:13 +0000 <ski> (mm, i had a vague memory of `GoLeft' and was wondering whether this was related)
2021-04-24 15:29:52 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 240 seconds)
2021-04-24 15:30:32 +0000 <bor0> So basically I am wondering if there's a better name than `applyArithRule` (I have several rules of type `Arith a -> Arith a`), and I am also curious if there's a more elegant way to write this function. The thing is, I have another function (getArithTerm) which is very close to the original so I feel like I am duplicating things. https://paste.tomsmeding.com/zAfE37rR
2021-04-24 15:31:12 +0000geowiesnot(~user@87-89-181-157.abo.bbox.fr)
2021-04-24 15:31:31 +0000 <bor0> One is just getting the term from a specific Path, the other one is modifying a term on a specific Path
2021-04-24 15:31:34 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Ping timeout: 252 seconds)
2021-04-24 15:32:20 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 15:33:06 +0000vicfred(~vicfred@unaffiliated/vicfred)
2021-04-24 15:36:34 +0000 <ski> hm
2021-04-24 15:37:17 +0000 <ski> i'd wonder if you might want to catch failure to apply a rule (e.g. because the indicated position doesn't exist)
2021-04-24 15:37:27 +0000 <ski> s/want to/want to be able to/
2021-04-24 15:38:15 +0000 <bor0> Hm, yeah, maybe I could use `Either` for that
2021-04-24 15:38:36 +0000 <emetrusky> how would i output a table from a list of items that have different data types
2021-04-24 15:38:36 +0000 <emetrusky> my data type is this
2021-04-24 15:38:37 +0000 <emetrusky> type NorthEast = (Int,Int)
2021-04-24 15:38:37 +0000 <emetrusky> data City = City{name ::String,
2021-04-24 15:38:38 +0000 <emetrusky>                 northeast :: NorthEast,
2021-04-24 15:38:38 +0000 <emetrusky>                 population :: [Int]}
2021-04-24 15:38:39 +0000 <emetrusky>                 deriving (Show,Read, Eq)
2021-04-24 15:38:41 +0000 <bor0> Lines 16-21 and lines 28-34 feel like duplicating at https://paste.tomsmeding.com/zAfE37rR. But at the same time I don't see an easy way to abstract this
2021-04-24 15:38:43 +0000 <ski> regarding the duplication, you might be able to avoid that, by adopting some form of "functional references" (the most popular form of being lenses)
2021-04-24 15:38:53 +0000geowiesnot(~user@87-89-181-157.abo.bbox.fr) (Ping timeout: 246 seconds)
2021-04-24 15:39:14 +0000 <bor0> Ah, ok. That goes beyond my current knowledge, but I've heard about lenses. Might worth digging into it
2021-04-24 15:40:10 +0000 <ski> emetrusky : what's your list of items ?
2021-04-24 15:40:17 +0000Flonk(~Flonk@ec2-34-221-127-147.us-west-2.compute.amazonaws.com) (Quit: ZNC - http://znc.in)
2021-04-24 15:41:39 +0000 <emetrusky> testData :: [City]
2021-04-24 15:41:40 +0000 <emetrusky> testData = [City "Amsterdam" (52,5) [1158, 1149, 1140, 1132],
2021-04-24 15:41:40 +0000 <ski> emetrusky : also, my guess is that the `NorthEast' naming here isn't that great. presumably the point is to indicate relative or absolute position, or coordinates, and that that may be represented as an amount in the north direction, and an mount in the east direction, is merely an implementation detail, irrelevant to most of the code, no ?
2021-04-24 15:41:40 +0000 <emetrusky>             City "Athens" (38,23) [3153, 3153, 3154, 3156],
2021-04-24 15:41:41 +0000 <emetrusky>             City "Berlin" (53,13) [3567, 3562, 3557, 3552],
2021-04-24 15:41:41 +0000 <emetrusky>             City "Brussels" (51,4) [2096, 2081, 2065, 2050],
2021-04-24 15:41:42 +0000 <emetrusky>             City "Bucharest" (44,26) [1794, 1803, 1812, 1821],
2021-04-24 15:41:42 +0000 <emetrusky>             City "London" (52,0) [9426, 9304, 9177, 9046],
2021-04-24 15:41:43 +0000 <emetrusky>             City "Madrid" (40,4) [6669, 6618, 6559, 6497],
2021-04-24 15:41:43 +0000 <emetrusky>             City "Paris" (49,2) [11079, 11017, 10958, 10901],
2021-04-24 15:41:44 +0000 <emetrusky>             City "Rome" (42,13) [4278, 4257, 4234, 4210],
2021-04-24 15:41:44 +0000 <emetrusky>             City "Sofia" (43,23) [1284, 1281, 1277, 1272],
2021-04-24 15:41:45 +0000 <emetrusky>             City "Vienna" (48,16) [1945, 1930, 1915, 1901],
2021-04-24 15:41:45 +0000 <emetrusky>             City "Warsaw" (52,21) [1790, 1783, 1776, 1768]]
2021-04-24 15:42:02 +0000 <ski> also, please don't paste large amounts of lines into the channel
2021-04-24 15:42:06 +0000 <ski> @where paste
2021-04-24 15:42:07 +0000 <lambdabot> Help us help you: please paste full code, input and/or output at e.g. https://paste.tomsmeding.com
2021-04-24 15:42:56 +0000 <ski> emetrusky : output one line at a time ?
2021-04-24 15:42:58 +0000 <emetrusky> ski: the northeast is coordinated
2021-04-24 15:43:42 +0000 <ski> perhaps first generate a list of rows of columns, then determine the maximum width of columns in order to properly pad, before outputting, or something like that
2021-04-24 15:44:10 +0000 <emetrusky> here is my code so far
2021-04-24 15:44:11 +0000 <emetrusky> https://paste.tomsmeding.com/qd5qw6hA
2021-04-24 15:44:22 +0000 <ski> (i was figuring they were coordinates of some sort, yes)
2021-04-24 15:44:31 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Read error: Connection reset by peer)
2021-04-24 15:44:40 +0000 <emetrusky> yes they are coordinates as an int
2021-04-24 15:45:04 +0000vulcan01(~Perpetual@c-73-254-191-149.hsd1.wa.comcast.net)
2021-04-24 15:45:10 +0000 <ski> so, perhaps you could rename `NorthEast' to `Coord' or `Pos', then ?
2021-04-24 15:45:22 +0000 <emetrusky> yep i will do that
2021-04-24 15:45:54 +0000 <ski> @type find :: (a -> Bool) -> [a] -> Maybe a
2021-04-24 15:45:56 +0000 <lambdabot> (a -> Bool) -> [a] -> Maybe a
2021-04-24 15:45:56 +0000Flonk(~Flonk@ec2-52-40-29-25.us-west-2.compute.amazonaws.com)
2021-04-24 15:46:01 +0000Tario(~Tario@201.192.165.173) (Read error: Connection reset by peer)
2021-04-24 15:46:03 +0000frozenErebus(~frozenEre@37.231.244.249)
2021-04-24 15:46:14 +0000frozenErebus(~frozenEre@37.231.244.249) (Client Quit)
2021-04-24 15:47:49 +0000 <emetrusky> changed northeast to position
2021-04-24 15:47:50 +0000 <emetrusky> https://paste.tomsmeding.com/wwDHK2QR
2021-04-24 15:48:11 +0000frozenErebus(~frozenEre@37.231.244.249)
2021-04-24 15:48:33 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net) (Read error: Connection reset by peer)
2021-04-24 15:49:02 +0000royal_screwup21(52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9)
2021-04-24 15:49:10 +0000 <ski> `listToSting' (did you mean `listToString') needs a base case
2021-04-24 15:49:44 +0000 <emetrusky> listToString to make the population a string to make it easier to display
2021-04-24 15:49:50 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 15:50:06 +0000gentauro(~gentauro@unaffiliated/gentauro) (Ping timeout: 265 seconds)
2021-04-24 15:50:06 +0000 <ski> i see
2021-04-24 15:50:17 +0000Flonk(~Flonk@ec2-52-40-29-25.us-west-2.compute.amazonaws.com) (Quit: The Lounge - https://thelounge.chat)
2021-04-24 15:50:38 +0000Flonk(~Flonk@ec2-52-40-29-25.us-west-2.compute.amazonaws.com)
2021-04-24 15:50:58 +0000 <ski> will all the population lists have the same length, within a single list of test data ?
2021-04-24 15:51:04 +0000Tario(~Tario@201.192.165.173)
2021-04-24 15:51:26 +0000 <emetrusky> yes all populations will have the same length of test data
2021-04-24 15:51:28 +0000 <ski> will all population lists always have length four ?
2021-04-24 15:51:42 +0000 <emetrusky> no
2021-04-24 15:52:06 +0000 <emetrusky> eventually i will make a function that will allow me to add elements to the list
2021-04-24 15:52:08 +0000Mrbuck(~Mrbuck@gateway/tor-sasl/mrbuck) (Remote host closed the connection)
2021-04-24 15:52:23 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net)
2021-04-24 15:52:35 +0000 <ski> findCity name cities = head (filter (\(City n _ _ ) -> n == name) cities)
2021-04-24 15:52:55 +0000 <ski> findCity name0 cities = head (filter (\city -> name city == name0) cities)
2021-04-24 15:54:15 +0000 <emetrusky> i dont quite understand why you have removed the () -> n?
2021-04-24 15:54:31 +0000 <emetrusky> if you could explain that would be helpful?
2021-04-24 15:55:00 +0000 <ski> record notation, `data City = City {name :: String,...}' already gives you `name' as a field selector to extract the name
2021-04-24 15:55:20 +0000stree(~stree@68.36.8.116) (Ping timeout: 246 seconds)
2021-04-24 15:55:44 +0000 <ski> so, by avoiding the shadowing of that (by renaming the parameter from `name' to `name0'), you can use that to access the name of the current city, rather than having to use pattern-matching there
2021-04-24 15:56:20 +0000 <emetrusky> oh ok thanks
2021-04-24 15:56:41 +0000 <ski> you could also use `find' instead of `filter'
2021-04-24 15:56:44 +0000gentauro(~gentauro@unaffiliated/gentauro)
2021-04-24 15:57:00 +0000 <emetrusky> oh yeah i could shit
2021-04-24 15:57:04 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Read error: Connection reset by peer)
2021-04-24 15:57:13 +0000is_null_(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 15:57:42 +0000 <ski> findCity name0 cities = head (filter ((name0 ==) . name) cities) -- a rephrasing of that predicate, using function composition
2021-04-24 15:58:06 +0000 <ski> (you might or might not find that clearer)
2021-04-24 15:58:08 +0000 <emetrusky> ok that seems more confusing
2021-04-24 15:58:58 +0000 <ski> what do you want to happen, if the sought city is not there to be found ?
2021-04-24 15:59:18 +0000nan`(~nan`@unaffiliated/nan/x-5405850) (Quit: leaving)
2021-04-24 16:00:05 +0000juliendehos[m](juliendeho@gateway/shell/matrix.org/x-vouozuyzgovkqdyo) (Quit: Idle for 30+ days)
2021-04-24 16:00:07 +0000 <emetrusky> umm idk tbh. That wasn't on my mind
2021-04-24 16:00:15 +0000 <emetrusky> when creating the code
2021-04-24 16:00:37 +0000 <ski> is it something that shouldn't happen, with proper data and code ?
2021-04-24 16:00:49 +0000 <ski> or can it reasonably happen, in some cases ?
2021-04-24 16:01:19 +0000Rudd0(~Rudd0@185.189.115.108)
2021-04-24 16:01:52 +0000is_null_(~jpic@pdpc/supporter/professional/is-null) (Ping timeout: 240 seconds)
2021-04-24 16:01:58 +0000 <emetrusky> it is something that shouldn't happen since i will be doing the demonstration and i don't quite know how to do exception handling
2021-04-24 16:02:02 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 16:02:09 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 16:02:42 +0000 <ski> well. you could be handling failures, rather simplistically, by using `Maybe'. it's not very hard
2021-04-24 16:02:55 +0000 <ski> i.e., if you wanted to catch them
2021-04-24 16:03:12 +0000 <emetrusky> nahh i think it will be find for know
2021-04-24 16:03:15 +0000 <emetrusky> tbh
2021-04-24 16:03:22 +0000skinods
2021-04-24 16:03:39 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 16:03:54 +0000e(e@freenode/staff/spy.edk) (Quit: edk)
2021-04-24 16:04:03 +0000nicholasbulka(~nicholasb@2601:900:4301:da0:58e6:3a0a:96a:ca2c)
2021-04-24 16:05:59 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Read error: Connection reset by peer)
2021-04-24 16:07:15 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 16:07:45 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 260 seconds)
2021-04-24 16:08:46 +0000stree(~stree@68.36.8.116)
2021-04-24 16:09:06 +0000dpl_(~dpl@77-121-78-163.chn.volia.net) (Ping timeout: 240 seconds)
2021-04-24 16:10:24 +0000nicholasbulka(~nicholasb@2601:900:4301:da0:58e6:3a0a:96a:ca2c) (Ping timeout: 245 seconds)
2021-04-24 16:11:33 +0000mith[m](mithmatrix@gateway/shell/matrix.org/x-tlapkgppewplnptl) (Ping timeout: 250 seconds)
2021-04-24 16:11:39 +0000Guillaum(guiboumatr@gateway/shell/matrix.org/x-mugmiqkelizccvxg) (Ping timeout: 245 seconds)
2021-04-24 16:12:25 +0000my_name_is_not_j(mynameisno@gateway/shell/matrix.org/x-hhwvpqfmykooxqsa) (Ping timeout: 250 seconds)
2021-04-24 16:12:25 +0000jtojnar(jtojnarmat@gateway/shell/matrix.org/x-letamvhzjtbwxmeu) (Ping timeout: 250 seconds)
2021-04-24 16:12:52 +0000elliott_(~elliott@pool-108-18-30-46.washdc.fios.verizon.net)
2021-04-24 16:13:34 +0000Guillaum(guiboumatr@gateway/shell/matrix.org/x-rnvdqawoouwzijnb)
2021-04-24 16:13:54 +0000my_name_is_not_j(mynameisno@gateway/shell/matrix.org/x-ooxznpdftgbscqkq)
2021-04-24 16:14:33 +0000twk-(~thewormki@unaffiliated/twk-) (Quit: WeeChat 2.5)
2021-04-24 16:16:01 +0000mith[m](mithmatrix@gateway/shell/matrix.org/x-lrdejlaijmmvhxim)
2021-04-24 16:16:35 +0000twk-(~thewormki@unaffiliated/twk-)
2021-04-24 16:16:40 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
2021-04-24 16:17:02 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com) (Ping timeout: 240 seconds)
2021-04-24 16:20:16 +0000jtojnar(jtojnarmat@gateway/shell/matrix.org/x-wixcztqkasbhacii)
2021-04-24 16:20:32 +0000kritzefitz(~kritzefit@212.86.56.80) (Ping timeout: 268 seconds)
2021-04-24 16:21:31 +0000juuandyy(~juuandyy@90.106.228.121)
2021-04-24 16:22:58 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net)
2021-04-24 16:25:11 +0000alx741(~alx741@181.196.69.117)
2021-04-24 16:27:12 +0000kritzefitz(~kritzefit@212.86.56.80)
2021-04-24 16:27:32 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 246 seconds)
2021-04-24 16:28:27 +0000ericsagn1(~ericsagne@2405:6580:0:5100:bd68:2e0:1f11:8b3a) (Ping timeout: 250 seconds)
2021-04-24 16:30:58 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net)
2021-04-24 16:33:36 +0000minoru_shiraeesh(~shiraeesh@46.34.206.138)
2021-04-24 16:34:01 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net)
2021-04-24 16:34:43 +0000__minoru__shirae(~shiraeesh@46.34.206.138) (Remote host closed the connection)
2021-04-24 16:37:57 +0000mikoto-chan(~anass@gateway/tor-sasl/mikoto-chan) (Ping timeout: 240 seconds)
2021-04-24 16:38:21 +0000Guest13213(~textual@mskresolve-a.mskcc.org) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-04-24 16:38:23 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 246 seconds)
2021-04-24 16:39:12 +0000tzh(~tzh@c-24-21-73-154.hsd1.wa.comcast.net)
2021-04-24 16:39:42 +0000cole-h(~cole-h@c-73-48-197-220.hsd1.ca.comcast.net)
2021-04-24 16:41:14 +0000ericsagn1(~ericsagne@2405:6580:0:5100:9e02:7bf3:beb9:eefe)
2021-04-24 16:43:28 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net)
2021-04-24 16:44:48 +0000knupfer(~Thunderbi@200116b82b743500b4b3cc7adcbc939f.dip.versatel-1u1.de) (Remote host closed the connection)
2021-04-24 16:44:57 +0000knupfer(~Thunderbi@200116b82b743500c4eb8f5452e52d74.dip.versatel-1u1.de)
2021-04-24 16:45:16 +0000is_null(~jpic@pdpc/supporter/professional/is-null) (Ping timeout: 252 seconds)
2021-04-24 16:46:09 +0000Guest6509(~laudiacay@67.176.215.84)
2021-04-24 16:46:55 +0000minoru_shiraeesh(~shiraeesh@46.34.206.138) (Remote host closed the connection)
2021-04-24 16:47:04 +0000minoru_shiraeesh(~shiraeesh@46.34.206.138)
2021-04-24 16:47:05 +0000is_null(~jpic@pdpc/supporter/professional/is-null)
2021-04-24 16:51:11 +0000Guest6509(~laudiacay@67.176.215.84) (Ping timeout: 240 seconds)
2021-04-24 16:51:18 +0000dxld(~dxld@rush.pub.dxld.at) (Remote host closed the connection)
2021-04-24 16:51:29 +0000roconnor(~roconnor@host-45-58-225-218.dyn.295.ca) (Ping timeout: 265 seconds)
2021-04-24 16:53:21 +0000roconnor(~roconnor@host-45-58-195-183.dyn.295.ca)
2021-04-24 16:54:42 +0000jemarch(~jemarch@185.204.1.185) (Remote host closed the connection)
2021-04-24 16:54:47 +0000Gurkenglas(~Gurkengla@unaffiliated/gurkenglas)
2021-04-24 16:56:02 +0000wonko7(~wonko7@62.115.229.50)
2021-04-24 16:59:31 +0000royal_screwup21(52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) (Quit: Connection closed)
2021-04-24 17:00:02 +0000Alleria(~textual@69.202.254.168)
2021-04-24 17:00:26 +0000AlleriaGuest51272
2021-04-24 17:00:32 +0000DTZUZU(~DTZUZO@205.ip-149-56-132.net)
2021-04-24 17:02:53 +0000DTZUZU_(~DTZUZO@207.81.119.43) (Ping timeout: 246 seconds)
2021-04-24 17:03:05 +0000Sgeo(~Sgeo@ool-18b9875e.dyn.optonline.net)
2021-04-24 17:06:29 +0000coot(~coot@37.30.50.130.nat.umts.dynamic.t-mobile.pl) (Quit: coot)
2021-04-24 17:07:59 +0000mav2(~mav@200116b800796100c8792d652148769e.dip.versatel-1u1.de)
2021-04-24 17:08:45 +0000mikoto-chan(~anass@gateway/tor-sasl/mikoto-chan)
2021-04-24 17:10:38 +0000elliott_(~elliott@pool-108-18-30-46.washdc.fios.verizon.net) (Quit: WeeChat 3.1)
2021-04-24 17:10:48 +0000dfreedm(~dfreedm@185.163.110.100)
2021-04-24 17:14:08 +0000Ariakenom(~Ariakenom@2001:9b1:efb:fc00:e89f:1e95:a362:ce44)
2021-04-24 17:18:00 +0000Guest6509(~laudiacay@67.176.215.84)
2021-04-24 17:23:20 +0000HarveyPwca(~HarveyPwc@c-98-220-98-201.hsd1.il.comcast.net) (Quit: Leaving)
2021-04-24 17:23:50 +0000kiweun(~kiweun@2607:fea8:2a62:9600:bc8e:6b02:6bdc:e788)
2021-04-24 17:23:59 +0000Sheilong(uid293653@gateway/web/irccloud.com/x-listalaenmlgtgtz)
2021-04-24 17:27:54 +0000kiweun(~kiweun@2607:fea8:2a62:9600:bc8e:6b02:6bdc:e788) (Ping timeout: 245 seconds)
2021-04-24 17:30:07 +0000federd8(5d2e77a4@93-46-119-164.ip107.fastwebnet.it)
2021-04-24 17:30:28 +0000 <federd8> hello
2021-04-24 17:31:29 +0000danvet(~Daniel@2a02:168:57f4:0:efd0:b9e5:5ae6:c2fa) (Remote host closed the connection)
2021-04-24 17:32:28 +0000nineonine(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07)
2021-04-24 17:34:19 +0000justanotheruser(~justanoth@unaffiliated/justanotheruser) (Ping timeout: 250 seconds)
2021-04-24 17:34:29 +0000 <ski> hello
2021-04-24 17:35:00 +0000 <federd8> i got here from learnyouahaskell tutorial.. I'm starting to learn now
2021-04-24 17:35:10 +0000 <ski> welcome
2021-04-24 17:35:13 +0000vulcan01(~Perpetual@c-73-254-191-149.hsd1.wa.comcast.net) (Quit: leaving)
2021-04-24 17:35:16 +0000 <federd8> ty
2021-04-24 17:35:27 +0000 <ski> feel free to ask, if you have any questions
2021-04-24 17:35:41 +0000 <federd8> I think I will at some point thanks :-)
2021-04-24 17:37:41 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net) (Read error: Connection reset by peer)
2021-04-24 17:38:06 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 240 seconds)
2021-04-24 17:39:08 +0000frozenErebus(~frozenEre@37.231.244.249) (Ping timeout: 252 seconds)
2021-04-24 17:39:26 +0000justanotheruser(~justanoth@unaffiliated/justanotheruser)
2021-04-24 17:39:42 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net)
2021-04-24 17:40:08 +0000bor0(~boro@unaffiliated/boro/x-000000001) (Quit: Leaving)
2021-04-24 17:41:38 +0000ADG1089(~aditya@171.76.29.233)
2021-04-24 17:43:57 +0000ania123(5e89ad7c@94.137.173.124)
2021-04-24 17:53:12 +0000Pickchea(~private@unaffiliated/pickchea)
2021-04-24 17:53:17 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 17:54:10 +0000kritzefitz(~kritzefit@212.86.56.80) (Remote host closed the connection)
2021-04-24 17:55:10 +0000nicholasbulka(~nicholasb@c-73-21-82-200.hsd1.ga.comcast.net)
2021-04-24 17:55:19 +0000 <lechner> Hi, for ZeroMQ should I use System.ZMQ4.Monadic or zeromq4-haskell? Why is the former better? I am not sure I like (or understand) those LiftIO's. Thanks! hwclient in Haskell here: https://zguide.zeromq.org/docs/chapter1/
2021-04-24 17:56:00 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 17:57:05 +0000 <falsifian> lechner: I am not familiar with ZeroMQ, but isn't System.ZMQ4.Monadic a module provided by zeromq4-haskell?
2021-04-24 17:58:32 +0000 <lechner> you are right! i have been having trouble reading because so many docs are broken on hackage
2021-04-24 17:59:08 +0000 <lechner> it's the same thing, isn't it?
2021-04-24 18:00:33 +0000 <lechner> am inside the monad because that module provides an event loop?
2021-04-24 18:00:48 +0000Kaiepi(~Kaiepi@47.54.252.148) (Read error: Connection reset by peer)
2021-04-24 18:01:06 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 18:03:45 +0000royal_screwup21(52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9)
2021-04-24 18:04:02 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 18:04:31 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-04-24 18:06:07 +0000xcmw(~textual@dyn-72-33-2-152.uwnet.wisc.edu)
2021-04-24 18:07:23 +0000begriffs(~begriffs@unaffiliated/begriffs)
2021-04-24 18:07:54 +0000jtojnar(jtojnarmat@gateway/shell/matrix.org/x-wixcztqkasbhacii) (Ping timeout: 245 seconds)
2021-04-24 18:08:13 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 18:09:41 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 240 seconds)
2021-04-24 18:10:05 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 246 seconds)
2021-04-24 18:10:57 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 18:16:30 +0000jtojnar(jtojnarmat@gateway/shell/matrix.org/x-gcdpdlgvumdjaoad)
2021-04-24 18:16:44 +0000stree(~stree@68.36.8.116) (Ping timeout: 246 seconds)
2021-04-24 18:16:46 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com) (Quit: WeeChat 3.1)
2021-04-24 18:17:08 +0000ania123(5e89ad7c@94.137.173.124) (Quit: Connection closed)
2021-04-24 18:19:11 +0000Kaiepi(~Kaiepi@47.54.252.148) (Ping timeout: 246 seconds)
2021-04-24 18:22:14 +0000vicfred(~vicfred@unaffiliated/vicfred) (Quit: Leaving)
2021-04-24 18:23:29 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 18:25:29 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 18:30:04 +0000stree(~stree@68.36.8.116)
2021-04-24 18:30:19 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 18:32:02 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net) (Read error: Connection reset by peer)
2021-04-24 18:33:19 +0000xff0x(~xff0x@2001:1a81:5345:1000:6c4e:76aa:9183:d81d) (Ping timeout: 260 seconds)
2021-04-24 18:33:37 +0000xff0x(xff0x@gateway/vpn/mullvad/xff0x)
2021-04-24 18:33:57 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net)
2021-04-24 18:34:17 +0000Kaeipi(~Kaiepi@47.54.252.148)
2021-04-24 18:34:19 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 18:34:36 +0000__monty__(~toonn@unaffiliated/toonn)
2021-04-24 18:35:15 +0000Kaiepi(~Kaiepi@47.54.252.148) (Remote host closed the connection)
2021-04-24 18:35:15 +0000knupfer(~Thunderbi@200116b82b743500c4eb8f5452e52d74.dip.versatel-1u1.de) (Quit: knupfer)
2021-04-24 18:35:43 +0000knupfer(~Thunderbi@200116b82b743500f8577e0c0d2a95b9.dip.versatel-1u1.de)
2021-04-24 18:38:41 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 18:43:34 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 18:45:10 +0000royal_screwup21(52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) (Quit: Connection closed)
2021-04-24 18:48:46 +0000 <minoru_shiraeesh> I feel that there is something fun that can be done with queues but I don't know what
2021-04-24 18:48:56 +0000 <minoru_shiraeesh> where do people get the ideas from?
2021-04-24 18:49:36 +0000 <minoru_shiraeesh> 3 queues I heard of: ZeroMQ, RabbitMQ, Kafka
2021-04-24 18:50:08 +0000mav1(~mav@200116b80079610035523288c3f29af4.dip.versatel-1u1.de) (Quit: WeeChat 2.3)
2021-04-24 18:50:08 +0000 <minoru_shiraeesh> which one provides better haskell intefration?
2021-04-24 18:51:00 +0000 <minoru_shiraeesh> *integration
2021-04-24 18:51:15 +0000 <shapr> I kinda want intefration to be a word intefraction?
2021-04-24 18:52:31 +0000ADG1089(~aditya@171.76.29.233) (Remote host closed the connection)
2021-04-24 18:53:46 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com)
2021-04-24 18:53:47 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 18:54:45 +0000jb55(~jb55@gateway/tor-sasl/jb55)
2021-04-24 18:55:56 +0000jb55(~jb55@gateway/tor-sasl/jb55) (Remote host closed the connection)
2021-04-24 18:56:15 +0000jb55(~jb55@gateway/tor-sasl/jb55)
2021-04-24 18:56:17 +0000jeet(~jeet@183.83.214.10)
2021-04-24 18:56:48 +0000Kaeipi(~Kaiepi@47.54.252.148) (Remote host closed the connection)
2021-04-24 18:57:01 +0000Kaeipi(~Kaiepi@47.54.252.148)
2021-04-24 18:57:09 +0000mav2(~mav@200116b800796100c8792d652148769e.dip.versatel-1u1.de) (Quit: WeeChat 3.1)
2021-04-24 18:57:27 +0000 <zzz> i am taking my first steps with nix and am getting a 'package marked as broken' error when running this: https://gist.github.com/jrvieira/c37c99c5aff13beafad1e1c20e5e342c
2021-04-24 18:57:57 +0000 <zzz> can anyone guide through this?
2021-04-24 18:59:06 +0000 <zzz> if i understand correctly the diagrams package is markes as broken under ghcWithPackages (?) what is the best way to solve it?
2021-04-24 18:59:41 +0000siers(~ij@raitis.veinbahs.lv)
2021-04-24 19:00:04 +0000 <__monty__> zzz: Overriding the version you're getting. Nixpkgs haskell infra isn't the greatest UX tbh.
2021-04-24 19:00:20 +0000siers(~ij@raitis.veinbahs.lv) (Changing host)
2021-04-24 19:00:20 +0000siers(~ij@NixOS/user/siers)
2021-04-24 19:00:54 +0000coot(~coot@37.30.50.130.nat.umts.dynamic.t-mobile.pl)
2021-04-24 19:01:20 +0000 <__monty__> minoru_shiraeesh: Afaiui, they're a great tool to make loosely coupled services.
2021-04-24 19:02:31 +0000royal_screwup21(52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9)
2021-04-24 19:02:44 +0000sayola1(~vekto@dslb-002-201-085-157.002.201.pools.vodafone-ip.de)
2021-04-24 19:02:55 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 19:03:11 +0000sayola(~vekto@dslb-002-201-085-157.002.201.pools.vodafone-ip.de) (Ping timeout: 240 seconds)
2021-04-24 19:04:09 +0000 <zzz> __monty__: are there better alternatives?
2021-04-24 19:06:10 +0000kiix(ashleyisnu@gateway/shell/matrix.org/x-cggkcfcswoqnyqyv)
2021-04-24 19:07:52 +0000kritzefitz(~kritzefit@212.86.56.80)
2021-04-24 19:08:20 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 19:08:52 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 240 seconds)
2021-04-24 19:09:00 +0000 <__monty__> zzz: haskell.nix is a better UX *but* it's more in flux and the knowledgeable people aren't always around.
2021-04-24 19:09:43 +0000begriffs(~begriffs@unaffiliated/begriffs) ("Leaving...")
2021-04-24 19:11:18 +0000 <zzz> ok thanks
2021-04-24 19:13:10 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 19:16:09 +0000jakalx(~jakalx@base.jakalx.net) ("Error from remote client")
2021-04-24 19:17:00 +0000juuandyy(~juuandyy@90.106.228.121) (Remote host closed the connection)
2021-04-24 19:17:45 +0000kiweun(~kiweun@2607:fea8:2a62:9600:7da7:60a9:aff:54f9)
2021-04-24 19:19:09 +0000mikoto-chan(~anass@gateway/tor-sasl/mikoto-chan) (Ping timeout: 240 seconds)
2021-04-24 19:19:55 +0000 <__monty__> zzz: If you want to stick with the nixpkgs infra for now, this is what I used to do: https://github.com/toonn/nix-config/blob/master/config.nix#L62
2021-04-24 19:20:56 +0000sw1nn(~sw1nn@host217-42-85-246.range217-42.btcentralplus.com) (Quit: WeeChat 2.9)
2021-04-24 19:20:58 +0000heavyk(x@2601:1c0:6800:7a50:242a:f090:f333:3919) (Quit: Quit)
2021-04-24 19:21:11 +0000jakalx(~jakalx@base.jakalx.net)
2021-04-24 19:23:40 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 19:25:49 +0000sw1nn(~sw1nn@2a00:23c7:622f:2c00:de5:2901:44ff:8c12)
2021-04-24 19:26:23 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 19:27:36 +0000royal_screwup21(52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) (Quit: Connection closed)
2021-04-24 19:29:54 +0000__minoru__shirae(~shiraeesh@77.94.25.113)
2021-04-24 19:30:16 +0000minoru_shiraeesh(~shiraeesh@46.34.206.138) (Ping timeout: 252 seconds)
2021-04-24 19:30:39 +0000CrazyPython(~crazypyth@98.122.164.118)
2021-04-24 19:31:44 +0000dpl_(~dpl@77-121-78-163.chn.volia.net)
2021-04-24 19:32:54 +0000sw1nn(~sw1nn@2a00:23c7:622f:2c00:de5:2901:44ff:8c12) (Ping timeout: 245 seconds)
2021-04-24 19:35:23 +0000v01d4lph4(~v01d4lph4@27.57.103.213)
2021-04-24 19:37:31 +0000Gurkenglas(~Gurkengla@unaffiliated/gurkenglas) (Read error: Connection reset by peer)
2021-04-24 19:39:37 +0000v01d4lph4(~v01d4lph4@27.57.103.213) (Ping timeout: 252 seconds)
2021-04-24 19:39:54 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 19:40:01 +0000howdoi(uid224@gateway/web/irccloud.com/x-fktcgjzgkphwzaij)
2021-04-24 19:41:35 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 19:41:39 +0000royal_screwup21(52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9)
2021-04-24 19:41:52 +0000pera(pera@gateway/vpn/mullvad/pera) (Ping timeout: 240 seconds)
2021-04-24 19:42:55 +0000ddellacosta(~ddellacos@86.106.143.131)
2021-04-24 19:42:56 +0000nut(~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr)
2021-04-24 19:43:58 +0000pera(~pera@unaffiliated/pera)
2021-04-24 19:45:37 +0000ddellaco_(ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-04-24 19:46:14 +0000sw1nn(~sw1nn@2a00:23c7:622f:2c00:5726:e59c:c228:d7ce)
2021-04-24 19:48:21 +0000tmciver(~tmciver@cpe-172-101-40-226.maine.res.rr.com) (Ping timeout: 268 seconds)
2021-04-24 19:49:31 +0000ddellacosta(~ddellacos@86.106.143.131) (Ping timeout: 252 seconds)
2021-04-24 19:52:26 +0000Guest72214(~alexander@2a02:587:dc0a:2700:dc6:16ac:a95:eabf) (Quit: Leaving)
2021-04-24 19:54:04 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 19:55:43 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 19:57:39 +0000machinedgod(~machinedg@24.105.81.50)
2021-04-24 19:58:05 +0000Sarcarean(4582bfd4@h69-130-191-212.bendor.broadband.dynamic.tds.net)
2021-04-24 20:01:13 +0000Lord_of_Life_(~Lord@unaffiliated/lord-of-life/x-0885362)
2021-04-24 20:01:24 +0000_ht(~quassel@82-169-194-8.biz.kpn.net) (Remote host closed the connection)
2021-04-24 20:02:11 +0000Lord_of_Life(~Lord@unaffiliated/lord-of-life/x-0885362) (Ping timeout: 240 seconds)
2021-04-24 20:04:18 +0000Lord_of_Life_Lord_of_Life
2021-04-24 20:05:01 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
2021-04-24 20:06:09 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 20:08:56 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 20:09:28 +0000nineonin_(~nineonine@50.216.62.2)
2021-04-24 20:10:33 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 20:11:39 +0000nineonine(~nineonine@2604:3d08:7785:9600:35c4:856c:8487:6e07) (Ping timeout: 245 seconds)
2021-04-24 20:11:46 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 240 seconds)
2021-04-24 20:14:03 +0000rekahsoft(~rekahsoft@cpe0008a20f982f-cm64777d666260.cpe.net.cable.rogers.com)
2021-04-24 20:14:55 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-04-24 20:17:27 +0000Kaeipi(~Kaiepi@47.54.252.148) (Remote host closed the connection)
2021-04-24 20:19:11 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 240 seconds)
2021-04-24 20:19:13 +0000alexander(~alexander@2a02:587:dc0a:2700:dc6:16ac:a95:eabf)
2021-04-24 20:19:42 +0000alexanderGuest38723
2021-04-24 20:19:48 +0000pera(~pera@unaffiliated/pera) (Ping timeout: 265 seconds)
2021-04-24 20:20:29 +0000royal_screwup21(52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) (Quit: Connection closed)
2021-04-24 20:20:50 +0000Narinas(~Narinas@187.178.93.112) (Read error: Connection reset by peer)
2021-04-24 20:20:58 +0000Narinas(~Narinas@187-178-93-112.dynamic.axtel.net)
2021-04-24 20:22:12 +0000Pickchea(~private@unaffiliated/pickchea) (Quit: Leaving)
2021-04-24 20:23:57 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 20:24:00 +0000jollygood2(~bc8134e3@217.29.117.252)
2021-04-24 20:24:29 +0000coot(~coot@37.30.50.130.nat.umts.dynamic.t-mobile.pl) (Quit: coot)
2021-04-24 20:25:48 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 20:26:05 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net) (Ping timeout: 265 seconds)
2021-04-24 20:27:27 +0000tmciver(~tmciver@cpe-172-101-40-226.maine.res.rr.com)
2021-04-24 20:28:13 +0000Varis(~Tadas@unaffiliated/varis) (Remote host closed the connection)
2021-04-24 20:33:24 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net)
2021-04-24 20:33:34 +0000aiken(~aiken@188.114.143.150.dyn.plus.net) (Disconnected by services)
2021-04-24 20:33:58 +0000aiken_(~aiken@188.114.143.150.dyn.plus.net)
2021-04-24 20:34:48 +0000rajivr(uid269651@gateway/web/irccloud.com/x-emjdgfahhcenqbut) (Quit: Connection closed for inactivity)
2021-04-24 20:36:17 +0000vicfred(vicfred@gateway/vpn/mullvad/vicfred)
2021-04-24 20:36:31 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-04-24 20:37:32 +0000xff0x(xff0x@gateway/vpn/mullvad/xff0x) (Ping timeout: 240 seconds)
2021-04-24 20:37:41 +0000nineonin_(~nineonine@50.216.62.2) (Ping timeout: 240 seconds)
2021-04-24 20:38:10 +0000stree(~stree@68.36.8.116) (Ping timeout: 265 seconds)
2021-04-24 20:39:24 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 20:39:51 +0000xff0x(~xff0x@2001:1a81:5345:1000:6c4e:76aa:9183:d81d)
2021-04-24 20:40:51 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 20:42:39 +0000aiken_(~aiken@188.114.143.150.dyn.plus.net) (Quit: Leaving)
2021-04-24 20:47:47 +0000tanner_(~tanner@216.106.138.184) (Quit: tanner_)
2021-04-24 20:47:52 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 20:50:15 +0000dynamo-patch(18064c47@24.6.76.71)
2021-04-24 20:50:19 +0000xcmw(~textual@dyn-72-33-2-152.uwnet.wisc.edu) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-04-24 20:51:20 +0000stree(~stree@68.36.8.116)
2021-04-24 20:52:00 +0000 <dynamo-patch> can haskell compiled into binary code? if so, any pointer how to
2021-04-24 20:52:19 +0000emetrusky(561e1a8f@cpc152439-cosh18-2-0-cust142.6-1.cable.virginm.net) (Quit: Connection closed)
2021-04-24 20:54:13 +0000nicholasbulka(~nicholasb@c-73-21-82-200.hsd1.ga.comcast.net) (Remote host closed the connection)
2021-04-24 20:54:19 +0000usr25(~usr25@unaffiliated/usr25)
2021-04-24 20:54:25 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 20:57:08 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net)
2021-04-24 20:57:24 +0000 <c_wraith> dynamo-patch: yes, that's the default mode
2021-04-24 21:00:03 +0000 <zzz> dynamo-patch: 'ghc yourfile.hs' compiles your source to binary
2021-04-24 21:00:30 +0000 <zzz> see 'man ghc'
2021-04-24 21:01:30 +0000 <dynamo-patch> thank you all
2021-04-24 21:04:56 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 21:07:47 +0000dynamo-patch(18064c47@24.6.76.71) (Quit: Connection closed)
2021-04-24 21:09:35 +0000LKoen(~LKoen@92.163.9.109.rev.sfr.net) (Read error: Connection reset by peer)
2021-04-24 21:10:49 +0000kupi(uid212005@gateway/web/irccloud.com/x-pjgdlrtcxolqutly)
2021-04-24 21:13:10 +0000pavonia(~user@unaffiliated/siracusa)
2021-04-24 21:13:50 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net) (Ping timeout: 246 seconds)
2021-04-24 21:14:21 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net)
2021-04-24 21:15:19 +0000Mrbuck(~Mrbuck@gateway/tor-sasl/mrbuck)
2021-04-24 21:15:50 +0000dfreedm(~dfreedm@185.163.110.100) (Remote host closed the connection)
2021-04-24 21:16:09 +0000CrazyPython(~crazypyth@98.122.164.118) (*.net *.split)
2021-04-24 21:16:09 +0000raym(~ray@45.64.220.116) (*.net *.split)
2021-04-24 21:16:09 +0000dsrt^(dsrt@ip98-184-89-2.mc.at.cox.net) (*.net *.split)
2021-04-24 21:16:09 +0000zva(~zava@ip5f5bdf0f.dynamic.kabel-deutschland.de) (*.net *.split)
2021-04-24 21:16:09 +0000MidAutumnHotaru(~MidAutumn@unaffiliated/midautumnhotaru) (*.net *.split)
2021-04-24 21:16:10 +0000jonathanx(~jonathan@h-176-109.A357.priv.bahnhof.se) (*.net *.split)
2021-04-24 21:16:10 +0000malthe_(~mborch@46.101.103.63) (*.net *.split)
2021-04-24 21:16:10 +0000charukiewicz_(~quassel@irouteince04.i.subnet.rcn.com) (*.net *.split)
2021-04-24 21:16:10 +0000amosbird_(~amosbird@13.75.119.182) (*.net *.split)
2021-04-24 21:16:10 +0000dcoutts(~duncan@94.186.125.91.dyn.plus.net) (*.net *.split)
2021-04-24 21:16:10 +0000texasmynsted(~texasmyns@99.96.221.112) (*.net *.split)
2021-04-24 21:16:10 +0000L1Cafe(~L1Cafe@kydara.com) (*.net *.split)
2021-04-24 21:16:11 +0000tomboy64(~tomboy64@unaffiliated/tomboy64) (*.net *.split)
2021-04-24 21:16:11 +0000carldd(~carldd@90-224-49-113-no56.tbcn.telia.com) (*.net *.split)
2021-04-24 21:16:11 +0000kmein(~weechat@static.173.83.99.88.clients.your-server.de) (*.net *.split)
2021-04-24 21:16:11 +0000Logio(em@kapsi.fi) (*.net *.split)
2021-04-24 21:16:11 +0000dave_uy(~david@108.61.193.26) (*.net *.split)
2021-04-24 21:16:12 +0000Techcable(~Techcable@168.235.93.147) (*.net *.split)
2021-04-24 21:16:12 +0000p3n(~p3n@217.198.124.246) (*.net *.split)
2021-04-24 21:16:12 +0000wrunt(~ajc@vmx14030.hosting24.com.au) (*.net *.split)
2021-04-24 21:16:12 +0000concept2(~concept2@unaffiliated/tubo) (*.net *.split)
2021-04-24 21:16:12 +0000dumptruckman(~dumptruck@li1287-148.members.linode.com) (*.net *.split)
2021-04-24 21:16:12 +0000proteusguy(~proteusgu@cm-58-10-209-239.revip7.asianet.co.th) (*.net *.split)
2021-04-24 21:16:13 +0000anderson(~ande@159.65.95.130) (*.net *.split)
2021-04-24 21:16:13 +0000outerpassage(~outerpass@li1196-30.members.linode.com) (*.net *.split)
2021-04-24 21:16:13 +0000brettgilio(~brettgili@brettgilio.com) (*.net *.split)
2021-04-24 21:16:14 +0000mniip(mniip@freenode/staff/mniip) (*.net *.split)
2021-04-24 21:16:14 +0000msgctl(~msgctl@ometochtli.centzontotochtin.org) (*.net *.split)
2021-04-24 21:16:14 +0000Squarism(~someone@unaffiliated/squarism) (*.net *.split)
2021-04-24 21:16:14 +0000djanatyn(~djanatyn@vps-7f49a6b0.vps.ovh.ca) (*.net *.split)
2021-04-24 21:16:14 +0000jtcs_(~jtcs@vmi359854.contaboserver.net) (*.net *.split)
2021-04-24 21:16:15 +0000sepples_(~sepples@sepples.xyz) (*.net *.split)
2021-04-24 21:16:15 +0000styledash(~styledash@157.230.173.136) (*.net *.split)
2021-04-24 21:16:15 +0000mjrosenb(~mrosenbe@nyc.schrodinger.com) (*.net *.split)
2021-04-24 21:16:16 +0000arw(~arw@impulse.informatik.uni-erlangen.de) (*.net *.split)
2021-04-24 21:16:16 +0000xerox_(~xerox@unaffiliated/xerox) (*.net *.split)
2021-04-24 21:16:16 +0000ashnur(~rak@unaffiliated/ashnur) (*.net *.split)
2021-04-24 21:16:16 +0000mjacob(~mjacob@unaffiliated/mjacob) (*.net *.split)
2021-04-24 21:16:17 +0000Cathy(~Cathy@unaffiliated/cathy) (*.net *.split)
2021-04-24 21:16:17 +0000mmaruseacph2(~mihai@198.199.100.72) (*.net *.split)
2021-04-24 21:16:17 +0000ft(~ft@shell.chaostreff-dortmund.de) (*.net *.split)
2021-04-24 21:16:17 +0000chrisosaurus(chris@segfault.net.nz) (*.net *.split)
2021-04-24 21:16:17 +0000sshine(~simon@hubris.eta.solutions) (*.net *.split)
2021-04-24 21:16:17 +0000noctux(~noctux@unaffiliated/noctux) (*.net *.split)
2021-04-24 21:16:17 +0000jtojnar(jtojnarmat@gateway/shell/matrix.org/x-gcdpdlgvumdjaoad) (*.net *.split)
2021-04-24 21:16:17 +0000my_name_is_not_j(mynameisno@gateway/shell/matrix.org/x-ooxznpdftgbscqkq) (*.net *.split)
2021-04-24 21:16:17 +0000thc202(~thc202@unaffiliated/thc202) (*.net *.split)
2021-04-24 21:16:17 +0000mjlbach(atriusmatr@gateway/shell/matrix.org/x-pmoozefxefawidpk) (*.net *.split)
2021-04-24 21:16:18 +0000pqwy[m](pqwymatrix@gateway/shell/matrix.org/x-owkvliodtdhnzlyi) (*.net *.split)
2021-04-24 21:16:18 +0000dyniec[m](dyniecmatr@gateway/shell/matrix.org/x-uodwhoydkwsqekam) (*.net *.split)
2021-04-24 21:16:18 +0000etrepum(sid763@gateway/web/irccloud.com/x-kbeiueugazaifuth) (*.net *.split)
2021-04-24 21:16:18 +0000aristid(sid1599@gateway/web/irccloud.com/x-iysthznfdzhconze) (*.net *.split)
2021-04-24 21:16:18 +0000ryjm(sid383513@gateway/web/irccloud.com/x-mfvpahefkuhsmhxj) (*.net *.split)
2021-04-24 21:16:18 +0000cemerick(sid54985@gateway/web/irccloud.com/x-dmosxtcpbaaxlpbx) (*.net *.split)
2021-04-24 21:16:18 +0000joshmeredith(sid387798@gateway/web/irccloud.com/x-puyeogwrdolrmxnl) (*.net *.split)
2021-04-24 21:16:18 +0000systemfault(sid267009@gateway/web/irccloud.com/x-weqjiwsrsizmsttb) (*.net *.split)
2021-04-24 21:16:18 +0000ebutleriv(sid217783@gateway/web/irccloud.com/x-kdwwbglqjsasvtqj) (*.net *.split)
2021-04-24 21:16:18 +0000beaky(~beaky@2a03:b0c0:0:1010::17cf:7003) (*.net *.split)
2021-04-24 21:16:18 +0000jo[m]3(josefmat1@gateway/shell/matrix.org/x-qfhlavfxfkadmzvi) (*.net *.split)
2021-04-24 21:16:19 +0000Lurkki[m](lurkkifene@gateway/shell/matrix.org/x-nrwgmnbvosqqhpnr) (*.net *.split)
2021-04-24 21:16:19 +0000kini(~kini@unaffiliated/kini) (*.net *.split)
2021-04-24 21:16:19 +0000EmanuelLoos[m](emanuel-lo@gateway/shell/matrix.org/x-xedchorwdbepbzbx) (*.net *.split)
2021-04-24 21:16:19 +0000l8star__(~l8star@business-90-187-113-149.pool2.vodafone-ip.de) (*.net *.split)
2021-04-24 21:16:19 +0000mly(mlydisenco@gateway/shell/matrix.org/x-hffzasvjgrikcwzr) (*.net *.split)
2021-04-24 21:16:19 +0000pnotequalnp[m](pnotequaln@gateway/shell/matrix.org/x-ilonrmhzsbjadrsm) (*.net *.split)
2021-04-24 21:16:20 +0000DevTurks[m](turkdevops@gateway/shell/matrix.org/x-ijvxwxyebgqvrzsn) (*.net *.split)
2021-04-24 21:16:21 +0000samthecoy[m](samthecoym@gateway/shell/matrix.org/x-qaqujubkonygneyt) (*.net *.split)
2021-04-24 21:16:21 +0000johnnyv[m](badwolf256@gateway/shell/matrix.org/x-yxpkxdztlttkpjgg) (*.net *.split)
2021-04-24 21:16:21 +0000themsay[m](themsaymat@gateway/shell/matrix.org/x-hpjgawiyzuenumyt) (*.net *.split)
2021-04-24 21:16:21 +0000loyon(loyonmatri@gateway/shell/matrix.org/x-wopkgivyetfmwccv) (*.net *.split)
2021-04-24 21:16:21 +0000supersven[m](supersvenm@gateway/shell/matrix.org/x-vtyvtzkqhlabrowo) (*.net *.split)
2021-04-24 21:16:22 +0000Ericson2314(ericson231@gateway/shell/matrix.org/x-ksbmrykeuszgsyik) (*.net *.split)
2021-04-24 21:16:22 +0000domenkozar[m](domenkozar@NixOS/user/domenkozar) (*.net *.split)
2021-04-24 21:16:23 +0000krjt(~krjst@2604:a880:800:c1::16b:8001) (*.net *.split)
2021-04-24 21:16:23 +0000whez(sid470288@gateway/web/irccloud.com/x-vlnxuepdpthnqbhd) (*.net *.split)
2021-04-24 21:16:23 +0000adamse(sid72084@gateway/web/irccloud.com/x-pqgjxyvnyjkpejpe) (*.net *.split)
2021-04-24 21:16:23 +0000parseval(sid239098@gateway/web/irccloud.com/x-mgyjqkcnbnnprosw) (*.net *.split)
2021-04-24 21:16:24 +0000dysfigured(dysfigured@2600:3c00::f03c:92ff:feb4:be75) (*.net *.split)
2021-04-24 21:16:24 +0000MasseR(~MasseR@51.15.143.128) (*.net *.split)
2021-04-24 21:16:24 +0000atomi(~atomi@3.184.203.35.bc.googleusercontent.com) (*.net *.split)
2021-04-24 21:16:24 +0000madog(~madog@163.ip-51-254-203.eu) (*.net *.split)
2021-04-24 21:16:24 +0000aldum(~vishera@aldum.pw) (*.net *.split)
2021-04-24 21:16:24 +0000matijja(~matijja@193.77.181.208) (*.net *.split)
2021-04-24 21:16:24 +0000Rembane(~Rembane@li346-36.members.linode.com) (*.net *.split)
2021-04-24 21:16:25 +0000enikar(~enikar@2001:41d0:2:8673::42) (*.net *.split)
2021-04-24 21:16:25 +0000komasa(~komasa@2a03:b0c0:3:d0::2097:6001) (*.net *.split)
2021-04-24 21:16:25 +0000magog(~wee@unaffiliated/magog) (*.net *.split)
2021-04-24 21:16:25 +0000entropygain(levitate@unaffiliated/entropygain) (*.net *.split)
2021-04-24 21:16:25 +0000dale(dale@unaffiliated/dale) (*.net *.split)
2021-04-24 21:16:25 +0000saidinwot1(~saidinwot@2604:a880:2:d0::50:8001) (*.net *.split)
2021-04-24 21:16:25 +0000ajmcmiddlin(sid284402@gateway/web/irccloud.com/x-haiyfskefbbtaisd) (*.net *.split)
2021-04-24 21:16:25 +0000FMJz_____(sid279245@gateway/web/irccloud.com/x-gdvcqgmmbdaqujfv) (*.net *.split)
2021-04-24 21:16:25 +0000chessai(sid225296@gateway/web/irccloud.com/x-byrazhpexotqswfh) (*.net *.split)
2021-04-24 21:16:25 +0000grfn(sid449115@gateway/web/irccloud.com/x-bdqnujcrokkpscfq) (*.net *.split)
2021-04-24 21:16:25 +0000xnyhps(~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) (*.net *.split)
2021-04-24 21:16:26 +0000chrpape(~user@2a01:4f9:c010:632d::1) (*.net *.split)
2021-04-24 21:16:26 +0000idupree(~quassel@2604:a880:400:d0::9bb:2001) (*.net *.split)
2021-04-24 21:16:26 +0000lightandlight(sid135476@gateway/web/irccloud.com/x-gwfowomroynsvzco) (*.net *.split)
2021-04-24 21:16:26 +0000Orbstheorem(~roosember@hellendaal.orbstheorem.ch) (*.net *.split)
2021-04-24 21:16:26 +0000zgrep(~zgrep@ircpuzzles/2015/april-fools/sixth/zgrep) (*.net *.split)
2021-04-24 21:16:26 +0000bsima(~bsima@simatime.com) (*.net *.split)
2021-04-24 21:16:27 +0000ski(~ski@ed-3358-10.studat.chalmers.se) (*.net *.split)
2021-04-24 21:16:27 +0000shadowdaemon(~user@unaffiliated/shadowdaemon) (*.net *.split)
2021-04-24 21:16:27 +0000bspar(~bspar@2604:a880:0:1010::776:e001) (*.net *.split)
2021-04-24 21:16:27 +0000catern(~sbaugh@2604:2000:8fc0:b:a9c7:866a:bf36:3407) (*.net *.split)
2021-04-24 21:16:27 +0000atk(~Arch-TK@ircpuzzles/staff/Arch-TK) (*.net *.split)
2021-04-24 21:16:27 +0000jamestmartin(james@jtmar.me) (*.net *.split)
2021-04-24 21:16:27 +0000mat[m]1(matmatrixo@gateway/shell/matrix.org/x-uwjgvmzxszuovuwu) (*.net *.split)
2021-04-24 21:16:28 +0000vnz(~vnz@unaffiliated/vnz) (*.net *.split)
2021-04-24 21:16:28 +0000zyeri(zyeri@tilde.team/users/zyeri) (*.net *.split)
2021-04-24 21:16:28 +0000gluegadget(sid22336@gateway/web/irccloud.com/x-yvyuuucqiikbdiwr) (*.net *.split)
2021-04-24 21:16:29 +0000mpickering(sid78412@gateway/web/irccloud.com/x-uuuhuurfuxahsslu) (*.net *.split)
2021-04-24 21:16:29 +0000Tritlo(sid58727@gateway/web/irccloud.com/x-aozswbintmywimnv) (*.net *.split)
2021-04-24 21:16:29 +0000noexcept(~noexcept@2a03:b0c0:3:d0::33:9001) (*.net *.split)
2021-04-24 21:16:29 +0000rom1504(rom1504@rom1504.fr) (*.net *.split)
2021-04-24 21:16:29 +0000Klumben(Nsaiswatch@gateway/shell/panicbnc/x-igfvivsmqpanwyqa) (*.net *.split)
2021-04-24 21:16:29 +0000scav(sid309693@gateway/web/irccloud.com/x-zpwaikoxdaqjtkjd) (*.net *.split)
2021-04-24 21:16:29 +0000amatecha____(sid10006@gateway/web/irccloud.com/x-gvwvasnyguqtijeo) (*.net *.split)
2021-04-24 21:16:29 +0000PatrickRobotham_(sid18270@gateway/web/irccloud.com/x-dsytamzyvqvdenoe) (*.net *.split)
2021-04-24 21:16:30 +0000cheers(user@unaffiliated/cheers) (*.net *.split)
2021-04-24 21:16:30 +0000joe[m]1(joemonoida@gateway/shell/matrix.org/x-dyuqcnyqoeqswuzr) (*.net *.split)
2021-04-24 21:16:31 +0000debugloop(~danieln@unaffiliated/debugloop) (*.net *.split)
2021-04-24 21:16:31 +0000mstruebing(~mstruebin@2001:41d0:8:93c7::1) (*.net *.split)
2021-04-24 21:16:31 +0000sphalerite(~sphalerit@NixOS/user/lheckemann) (*.net *.split)
2021-04-24 21:16:31 +0000oats(~hurr@durr/im/a/sheep) (*.net *.split)
2021-04-24 21:16:31 +0000martin02(silas@hund.fs.lmu.de) (*.net *.split)
2021-04-24 21:16:31 +0000zzz(~zzz@2a03:b0c0:3:d0::3095:3001) (*.net *.split)
2021-04-24 21:16:31 +0000fredcy(fredcy@2600:3c00::f03c:91ff:feae:15ae) (*.net *.split)
2021-04-24 21:16:32 +0000Bigcheese(~quassel@unaffiliated/bigcheese) (*.net *.split)
2021-04-24 21:16:32 +0000xacktm(xacktm@gateway/shell/panicbnc/x-cckreqhvgmeuulfv) (*.net *.split)
2021-04-24 21:16:32 +0000integral(sid296274@p3m/member/integral) (*.net *.split)
2021-04-24 21:16:33 +0000hendi(sid489601@gateway/web/irccloud.com/x-tofwispyijhkkmkf) (*.net *.split)
2021-04-24 21:16:33 +0000sis7_(~user@2001:15e8:110:473e::1) (*.net *.split)
2021-04-24 21:16:33 +0000operand(~operand@is.altijd.moe) (*.net *.split)
2021-04-24 21:16:33 +0000vqrs(~vqrs@learnprogramming/regular/vqrs) (*.net *.split)
2021-04-24 21:16:33 +0000Ferdirand(~max@2001:4c78:2012:5000::2) (*.net *.split)
2021-04-24 21:16:33 +0000bjobjo(~bjobjo@2a01:79c:cebf:d688::9e6) (*.net *.split)
2021-04-24 21:16:34 +0000a3f(~a3f@chimeria.ext.pengutronix.de) (*.net *.split)
2021-04-24 21:16:34 +0000billstclair(sid77830@gateway/web/irccloud.com/x-ouhlhzompordlszs) (*.net *.split)
2021-04-24 21:16:34 +0000agrif(~agrif@overviewer/dev/agrif) (*.net *.split)
2021-04-24 21:16:34 +0000ego_(~ego@2604:a880:800:a1::1b:b001) (*.net *.split)
2021-04-24 21:16:34 +0000cynick(~worm@ec2-52-206-86-1.compute-1.amazonaws.com) (*.net *.split)
2021-04-24 21:16:35 +0000jeet(~jeet@183.83.214.10) (*.net *.split)
2021-04-24 21:16:35 +0000gnumonic(~gnumonic@c-73-170-91-210.hsd1.ca.comcast.net) (*.net *.split)
2021-04-24 21:16:35 +0000carlomagno(~cararell@148.87.23.7) (*.net *.split)
2021-04-24 21:16:35 +0000forell(~forell@unaffiliated/forell) (*.net *.split)
2021-04-24 21:16:36 +0000malumore(~malumore@151.62.120.175) (*.net *.split)
2021-04-24 21:16:36 +0000Cale(~cale@cpef48e38ee8583-cm0c473de9d680.cpe.net.cable.rogers.com) (*.net *.split)
2021-04-24 21:16:36 +0000erisco(~erisco@d24-57-249-233.home.cgocable.net) (*.net *.split)
2021-04-24 21:16:36 +0000s00pcan(~chris@075-133-056-178.res.spectrum.com) (*.net *.split)
2021-04-24 21:16:36 +0000tlgl^nix(~damien@S0106008ef25e98fb.su.shawcable.net) (*.net *.split)
2021-04-24 21:16:38 +0000exarkun(~exarkun@14.79.69.34.bc.googleusercontent.com) (*.net *.split)
2021-04-24 21:16:38 +0000tapas(sid467876@gateway/web/irccloud.com/x-bsjadohtpruxmywx) (*.net *.split)
2021-04-24 21:16:38 +0000piele(~piele@tbonesteak.creativeserver.net) (*.net *.split)
2021-04-24 21:16:38 +0000yaroot(~yaroot@138.102.13.160.dy.iij4u.or.jp) (*.net *.split)
2021-04-24 21:16:38 +0000thaumavorio(~thaumavor@thaumavor.io) (*.net *.split)
2021-04-24 21:16:38 +0000Geekingfrog(~geekingfr@li2156-64.members.linode.com) (*.net *.split)
2021-04-24 21:16:38 +0000MrMobius(~MrMobius@208.58.206.154) (*.net *.split)
2021-04-24 21:16:38 +0000dcoutts_(~dcoutts@unaffiliated/dcoutts) (*.net *.split)
2021-04-24 21:16:39 +0000ridcully(~ridcully@pd951f269.dip0.t-ipconnect.de) (*.net *.split)
2021-04-24 21:16:39 +0000hiredman(~hiredman@138.68.1.198) (*.net *.split)
2021-04-24 21:16:39 +0000cyphase(~cyphase@unaffiliated/cyphase) (*.net *.split)
2021-04-24 21:16:39 +0000NieDzejkob(~quassel@195.149.98.3) (*.net *.split)
2021-04-24 21:16:39 +0000fryguybob(~fryguybob@cpe-74-65-31-113.rochester.res.rr.com) (*.net *.split)
2021-04-24 21:16:39 +0000rdd(~rdd@c-407ce255.012-81-73746f39.cust.ownit.se) (*.net *.split)
2021-04-24 21:16:39 +0000monochrom(trebla@216.138.220.146) (*.net *.split)
2021-04-24 21:16:40 +0000lewky(~lewky@159.65.37.240) (*.net *.split)
2021-04-24 21:16:40 +0000mupf(~micha@v22017094964653601.ultrasrv.de) (*.net *.split)
2021-04-24 21:16:40 +0000DustyDingo(~nonamen@v2202001112302107134.ultrasrv.de) (*.net *.split)
2021-04-24 21:16:40 +0000infinisil(~infinisil@NixOS/user/infinisil) (*.net *.split)
2021-04-24 21:16:40 +0000Benzi-Junior(~BenziJuni@dsl-149-64-251.hive.is) (*.net *.split)
2021-04-24 21:16:40 +0000jathan(~jathan@69.61.93.38) (*.net *.split)
2021-04-24 21:16:40 +0000quaestor(~quaestor@griffith.christophrauch.de) (*.net *.split)
2021-04-24 21:16:41 +0000edwtjo(~edwtjo@fsf/member/edwtjo) (*.net *.split)
2021-04-24 21:16:41 +0000sudden(~lax@unaffiliated/laxask) (*.net *.split)
2021-04-24 21:16:41 +0000beka(~beka@gothdyke.mom) (*.net *.split)
2021-04-24 21:16:42 +0000lambdabot(~lambdabot@haskell/bot/lambdabot) (*.net *.split)
2021-04-24 21:16:42 +0000grrandi(mlp@kapsi.fi) (*.net *.split)
2021-04-24 21:16:42 +0000eldritch(~eldritch@unaffiliated/eldritch) (*.net *.split)
2021-04-24 21:16:42 +0000avp(~avp@unaffiliated/avp) (*.net *.split)
2021-04-24 21:16:42 +0000runawayfive(~nope@unaffiliated/runawayfive) (*.net *.split)
2021-04-24 21:16:43 +0000Dykam(Dykam@dykam.nl) (*.net *.split)
2021-04-24 21:16:43 +0000canta(~canta@cvm0.d5k.one) (*.net *.split)
2021-04-24 21:16:43 +0000kjak(~kjak@pool-108-45-56-21.washdc.fios.verizon.net) (*.net *.split)
2021-04-24 21:16:43 +0000yushyin(QWFouZJprr@karif.server-speed.net) (*.net *.split)
2021-04-24 21:16:43 +0000orzo(joe@lasker.childrenofmay.org) (*.net *.split)
2021-04-24 21:16:43 +0000terrorjack(~terrorjac@ec2-54-95-39-30.ap-northeast-1.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:16:43 +0000quintasan(~quassel@ubuntu/member/quintasan) (*.net *.split)
2021-04-24 21:16:43 +0000lyxia(~lyxia@poisson.chat) (*.net *.split)
2021-04-24 21:16:44 +0000coddinkn(~coddinkn@octayn.net) (*.net *.split)
2021-04-24 21:16:44 +0000Sparadox(~etienne@ns3123347.ip-51-68-152.eu) (*.net *.split)
2021-04-24 21:16:44 +0000sssb54(~ssssb56@vps-b2931db6.vps.ovh.ca) (*.net *.split)
2021-04-24 21:16:45 +0000pharaun(~pharaun@static.88-198-62-245.clients.your-server.de) (*.net *.split)
2021-04-24 21:16:45 +0000bobbytables(~bobbytabl@ec2-44-224-191-138.us-west-2.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:16:45 +0000hrdl(~ef24a0e6@unaffiliated/hrdl) (*.net *.split)
2021-04-24 21:16:45 +0000[exa](exa@unaffiliated/exa/x-5381537) (*.net *.split)
2021-04-24 21:16:45 +0000hwabyong(~hwabyong@ec2-3-221-194-167.compute-1.amazonaws.com) (*.net *.split)
2021-04-24 21:16:45 +0000zceejkr(~wintermut@cpe-92-37-88-51.dynamic.amis.net) (*.net *.split)
2021-04-24 21:16:45 +0000interruptinuse(~interrupt@girl.mrtheplague.net) (*.net *.split)
2021-04-24 21:16:46 +0000hackage(mniip@haskell/bot/hackage) (*.net *.split)
2021-04-24 21:16:46 +0000absence(torgeihe@hildring.pvv.ntnu.no) (*.net *.split)
2021-04-24 21:16:46 +0000fre(~freusque@104.238.190.229) (*.net *.split)
2021-04-24 21:16:46 +0000xe4(~xe4@unaffiliated/xe4) (*.net *.split)
2021-04-24 21:16:46 +0000c-rog(~c-rog@traffic.simst.im) (*.net *.split)
2021-04-24 21:16:46 +0000pavonia(~user@unaffiliated/siracusa) (*.net *.split)
2021-04-24 21:16:46 +0000kupi(uid212005@gateway/web/irccloud.com/x-pjgdlrtcxolqutly) (*.net *.split)
2021-04-24 21:16:46 +0000usr25(~usr25@unaffiliated/usr25) (*.net *.split)
2021-04-24 21:16:46 +0000xff0x(~xff0x@2001:1a81:5345:1000:6c4e:76aa:9183:d81d) (*.net *.split)
2021-04-24 21:16:46 +0000Narinas(~Narinas@187-178-93-112.dynamic.axtel.net) (*.net *.split)
2021-04-24 21:16:46 +0000rekahsoft(~rekahsoft@cpe0008a20f982f-cm64777d666260.cpe.net.cable.rogers.com) (*.net *.split)
2021-04-24 21:16:47 +0000dpl_(~dpl@77-121-78-163.chn.volia.net) (*.net *.split)
2021-04-24 21:16:47 +0000kiweun(~kiweun@2607:fea8:2a62:9600:7da7:60a9:aff:54f9) (*.net *.split)
2021-04-24 21:16:47 +0000kiix(ashleyisnu@gateway/shell/matrix.org/x-cggkcfcswoqnyqyv) (*.net *.split)
2021-04-24 21:16:47 +0000sayola1(~vekto@dslb-002-201-085-157.002.201.pools.vodafone-ip.de) (*.net *.split)
2021-04-24 21:16:49 +0000rslima_____(sid26145@gateway/web/irccloud.com/x-uuewewvxxbofrynk) (*.net *.split)
2021-04-24 21:16:49 +0000kyagrd__(sid102627@gateway/web/irccloud.com/x-rctrsarckkdvtebu) (*.net *.split)
2021-04-24 21:16:49 +0000whataday(~xxx@2400:8902::f03c:92ff:fe60:98d8) (*.net *.split)
2021-04-24 21:16:50 +0000teej(uid154177@gateway/web/irccloud.com/x-aqljzrvlwnvlpfor) (*.net *.split)
2021-04-24 21:16:50 +0000SanchayanMaity(sid478177@gateway/web/irccloud.com/x-ldcvmlbmuzzjfwoa) (*.net *.split)
2021-04-24 21:16:50 +0000feepo(sid28508@gateway/web/irccloud.com/x-cjsxflpucqedrqas) (*.net *.split)
2021-04-24 21:16:50 +0000Nascha(sid212230@gateway/web/irccloud.com/x-dvgxunvqabbbhujn) (*.net *.split)
2021-04-24 21:16:50 +0000bjs(sid190364@gateway/web/irccloud.com/x-rysacrenfdxsmjyu) (*.net *.split)
2021-04-24 21:16:50 +0000cstrahan(sid36118@gateway/web/irccloud.com/x-hhcxapzgwlqibukd) (*.net *.split)
2021-04-24 21:16:50 +0000NemesisD(sid24071@gateway/web/irccloud.com/x-jbscorkbghkikoec) (*.net *.split)
2021-04-24 21:16:50 +0000joel135(sid136450@gateway/web/irccloud.com/x-ucqckdoiizhcvkmw) (*.net *.split)
2021-04-24 21:16:50 +0000blackriversoftwa(sid364914@gateway/web/irccloud.com/x-nqkjcymscowwdvxo) (*.net *.split)
2021-04-24 21:16:50 +0000melkor(~melkor@2a02:2b88:2:1::5b34:1) (*.net *.split)
2021-04-24 21:16:50 +0000DigitalKiwi(~kiwi@unaffiliated/digitalkiwi) (*.net *.split)
2021-04-24 21:16:51 +0000dexterfoo(dexter@2a01:7e00::f03c:91ff:fe86:59ec) (*.net *.split)
2021-04-24 21:16:51 +0000fiQ-(~fiQ@2a06:82c2:0:12bc::1) (*.net *.split)
2021-04-24 21:16:51 +0000noecho-(~noecho@2a01:4f8:1c0c:80ee::4223) (*.net *.split)
2021-04-24 21:16:51 +0000jokester(~mono@unaffiliated/jokester) (*.net *.split)
2021-04-24 21:16:51 +0000raid(macbookpro@irc-1.coding4.coffee) (*.net *.split)
2021-04-24 21:16:51 +0000uwap_(~uwap@mail.uwap.name) (*.net *.split)
2021-04-24 21:16:52 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com) (*.net *.split)
2021-04-24 21:16:52 +0000knupfer(~Thunderbi@200116b82b743500f8577e0c0d2a95b9.dip.versatel-1u1.de) (*.net *.split)
2021-04-24 21:16:52 +0000Sheilong(uid293653@gateway/web/irccloud.com/x-listalaenmlgtgtz) (*.net *.split)
2021-04-24 21:16:52 +0000Ariakenom(~Ariakenom@2001:9b1:efb:fc00:e89f:1e95:a362:ce44) (*.net *.split)
2021-04-24 21:16:52 +0000ericsagn1(~ericsagne@2405:6580:0:5100:9e02:7bf3:beb9:eefe) (*.net *.split)
2021-04-24 21:16:52 +0000robotmay(~beepboop@2001:8b0:7af0:2580:94a2:bb95:e8d4:22af) (*.net *.split)
2021-04-24 21:16:52 +0000teddyc(theodorc@cassarossa.samfundet.no) (*.net *.split)
2021-04-24 21:16:53 +0000jess(jess@freenode/staff/jess) (*.net *.split)
2021-04-24 21:16:53 +0000HiRE(~HiRE@2602:ffc5:20::1:512e) (*.net *.split)
2021-04-24 21:16:54 +0000jared-w(uid405292@gateway/web/irccloud.com/x-qitlcehrrgjsxmby) (*.net *.split)
2021-04-24 21:16:54 +0000wpcarro_(sid397589@gateway/web/irccloud.com/x-ahewuhnoiijbwpmc) (*.net *.split)
2021-04-24 21:16:54 +0000davetapley(sid666@gateway/web/irccloud.com/x-zjajcgkktmcxzflu) (*.net *.split)
2021-04-24 21:16:54 +0000ReinH(sid179972@gateway/web/irccloud.com/x-yupwkseagmcsclao) (*.net *.split)
2021-04-24 21:16:54 +0000SrPx(sid108780@gateway/web/irccloud.com/x-yhksykcahzlylxhe) (*.net *.split)
2021-04-24 21:16:54 +0000eruditass(uid248673@gateway/web/irccloud.com/x-xevwmrtrjszgvhcb) (*.net *.split)
2021-04-24 21:16:54 +0000liquorice(sid267884@gateway/web/irccloud.com/x-nzkqxgdtfgechhzd) (*.net *.split)
2021-04-24 21:16:54 +0000lally(sid388228@gateway/web/irccloud.com/x-ilucbequfappbwaf) (*.net *.split)
2021-04-24 21:16:54 +0000AndreasK(sid320732@gateway/web/irccloud.com/x-spqgtdrtcwqozgos) (*.net *.split)
2021-04-24 21:16:54 +0000dmj`(sid72307@gateway/web/irccloud.com/x-hiydzdvhdibdbilo) (*.net *.split)
2021-04-24 21:16:55 +0000dgpratt(sid193493@gateway/web/irccloud.com/x-yujexlmxhvpapqdm) (*.net *.split)
2021-04-24 21:16:55 +0000alunduil(alunduil@gateway/web/irccloud.com/x-lfjncrqckqiqjrhx) (*.net *.split)
2021-04-24 21:16:55 +0000aizen_s(sid462968@gateway/web/irccloud.com/x-cimltabwsuoipsqn) (*.net *.split)
2021-04-24 21:16:55 +0000stylewarning(stylewarni@gateway/web/irccloud.com/x-hfenrszoagpafasl) (*.net *.split)
2021-04-24 21:16:56 +0000pony(sid257727@gateway/web/irccloud.com/x-sdyjzzvtmmdtnyry) (*.net *.split)
2021-04-24 21:16:56 +0000nh2(sid309956@gateway/web/irccloud.com/x-sfwmjcpeywrfgggs) (*.net *.split)
2021-04-24 21:16:56 +0000nshepperd(nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split)
2021-04-24 21:16:56 +0000jackhill(~jackhill@marsh.hcoop.net) (*.net *.split)
2021-04-24 21:16:56 +0000edwardk(sid47016@haskell/developer/edwardk) (*.net *.split)
2021-04-24 21:16:56 +0000_bin_(~bin@2600:1700:10a1:38d0:219a:3dd:429e:7909) (*.net *.split)
2021-04-24 21:16:56 +0000jonrh(sid5185@gateway/web/irccloud.com/x-wzkchmmanupyucfa) (*.net *.split)
2021-04-24 21:16:56 +0000affinespaces(sid327561@gateway/web/irccloud.com/x-zprmbywljksowyax) (*.net *.split)
2021-04-24 21:16:56 +0000simony(sid226116@gateway/web/irccloud.com/x-uimvkkhkkjmffmgk) (*.net *.split)
2021-04-24 21:16:56 +0000verlet64_(sid261276@gateway/web/irccloud.com/x-pbadcyendmqwahig) (*.net *.split)
2021-04-24 21:16:56 +0000moobar(sid171730@gateway/web/irccloud.com/x-mfdnwzlgpjfftngj) (*.net *.split)
2021-04-24 21:16:56 +0000mcfilib(sid302703@gateway/web/irccloud.com/x-qgurzruyjowxqkfb) (*.net *.split)
2021-04-24 21:16:56 +0000yogani(sid42623@gateway/web/irccloud.com/x-diwllcjriwggxbhg) (*.net *.split)
2021-04-24 21:16:57 +0000entel(uid256215@botters/entel) (*.net *.split)
2021-04-24 21:16:57 +0000drupol(sid117588@gateway/web/irccloud.com/x-gsnwinbjioyhnadu) (*.net *.split)
2021-04-24 21:16:57 +0000conjunctive(sid433686@gateway/web/irccloud.com/x-veifezvsdidztgvo) (*.net *.split)
2021-04-24 21:16:57 +0000carter(sid14827@gateway/web/irccloud.com/x-velgelprbzzboucb) (*.net *.split)
2021-04-24 21:16:57 +0000wildsebastian(sid324688@gateway/web/irccloud.com/x-huuoejtmpgsbomho) (*.net *.split)
2021-04-24 21:16:57 +0000heyj(sid171370@gateway/web/irccloud.com/x-wookyduvyhmgjxsv) (*.net *.split)
2021-04-24 21:16:57 +0000iphy(sid67735@gateway/web/irccloud.com/x-svcckheboicsfdfm) (*.net *.split)
2021-04-24 21:16:57 +0000Adeon(sid418992@gateway/web/irccloud.com/x-gymdfseqxtsglqmg) (*.net *.split)
2021-04-24 21:16:57 +0000enemeth79(sid309041@gateway/web/irccloud.com/x-vaiujncapfeaexzk) (*.net *.split)
2021-04-24 21:16:57 +0000rodlogic__(sid214676@gateway/web/irccloud.com/x-jsfobhdzpplfsdpe) (*.net *.split)
2021-04-24 21:16:57 +0000alinab(sid468903@gateway/web/irccloud.com/x-kxduedlnkmrjymym) (*.net *.split)
2021-04-24 21:16:57 +0000mudri(sid317655@gateway/web/irccloud.com/x-tkftihyrhfadzkvn) (*.net *.split)
2021-04-24 21:16:57 +0000newhoggy(sid198874@gateway/web/irccloud.com/x-odbcefoglogukgog) (*.net *.split)
2021-04-24 21:16:57 +0000trevorriles(sid469656@gateway/web/irccloud.com/x-xdsdtxtxrbrxnitq) (*.net *.split)
2021-04-24 21:16:58 +0000coeus(~coeus@p200300d0274dc6000de71f4ee41c5fb3.dip0.t-ipconnect.de) (*.net *.split)
2021-04-24 21:16:58 +0000tinwood(~tinwood@general.default.akavanagh.uk0.bigv.io) (*.net *.split)
2021-04-24 21:16:58 +0000Raito_Bezarius(~Raito@unaffiliated/raito-bezarius/x-8764578) (*.net *.split)
2021-04-24 21:16:58 +0000sim642(~simmo@unaffiliated/sim642) (*.net *.split)
2021-04-24 21:16:58 +0000bwe(~bwe@unaffiliated/bwe) (*.net *.split)
2021-04-24 21:16:58 +0000i7c(Rmit7A5pyb@unaffiliated/i7c) (*.net *.split)
2021-04-24 21:16:59 +0000dsturnbull(sid347899@gateway/web/irccloud.com/x-rwwelyrmjwhraekh) (*.net *.split)
2021-04-24 21:16:59 +0000hamishmack(sid389057@gateway/web/irccloud.com/x-pnmcssvibehjvusv) (*.net *.split)
2021-04-24 21:17:00 +0000SolarAquarion(SolarAquar@gateway/shell/panicbnc/x-sxxrzckrtiulpjwg) (*.net *.split)
2021-04-24 21:17:00 +0000recon_-(~quassel@2602:febc:0:b6::6ca2) (*.net *.split)
2021-04-24 21:17:00 +0000ArsenArsen(~arsen@managarm/dev/ArsenArsen) (*.net *.split)
2021-04-24 21:17:00 +0000hugo(znc@verdigris.lysator.liu.se) (*.net *.split)
2021-04-24 21:17:00 +0000andi-(~andi-@NixOS/user/andi-) (*.net *.split)
2021-04-24 21:17:00 +0000PlasmaStar(plasma@unaffiliated/plasmastar) (*.net *.split)
2021-04-24 21:17:00 +0000bonz060(~quassel@2001:bc8:47a4:a23::1) (*.net *.split)
2021-04-24 21:17:01 +0000tiru(tiru@gateway/web/irccloud.com/x-mnvdiojttnfqdzkx) (*.net *.split)
2021-04-24 21:17:01 +0000noan(~noan@2604:a880:400:d0::12fc:5001) (*.net *.split)
2021-04-24 21:17:01 +0000kawzeg(unknown@2a01:7e01::f03c:92ff:fee2:ec34) (*.net *.split)
2021-04-24 21:17:01 +0000nf(~n@monade.li) (*.net *.split)
2021-04-24 21:17:01 +0000fl0_id(~fl0_id@2a01:4f8:171:4de::40:2) (*.net *.split)
2021-04-24 21:17:01 +0000ixian(~mgold@terra.bitplane.org) (*.net *.split)
2021-04-24 21:17:01 +0000gaze__(sid387101@gateway/web/irccloud.com/x-jyfzdgulluqjzdzf) (*.net *.split)
2021-04-24 21:17:02 +0000taktoa[c](sid282096@gateway/web/irccloud.com/x-njxvjnpthhvfgqfo) (*.net *.split)
2021-04-24 21:17:02 +0000glowcoil(sid3405@gateway/web/irccloud.com/x-kqfefvcmbgehneab) (*.net *.split)
2021-04-24 21:17:02 +0000srhb(sid400352@NixOS/user/srhb) (*.net *.split)
2021-04-24 21:17:02 +0000gregberns_(sid315709@gateway/web/irccloud.com/x-skjetjsgahxqvatt) (*.net *.split)
2021-04-24 21:17:03 +0000tjbp(~tom@2001:19f0:7400:8d4c:5400:2ff:fe2c:5662) (*.net *.split)
2021-04-24 21:17:03 +0000kaychaks(sid236345@gateway/web/irccloud.com/x-vvdrivxruwhittji) (*.net *.split)
2021-04-24 21:17:03 +0000weechat_4(~mingc@2400:8902::f03c:91ff:feb7:8e82) (*.net *.split)
2021-04-24 21:17:03 +0000hongminhee(sid31517@gateway/web/irccloud.com/x-trpfnifbgxghvffk) (*.net *.split)
2021-04-24 21:17:03 +0000m-renaud(sid333785@gateway/web/irccloud.com/x-mchkmhpqmiujvtxp) (*.net *.split)
2021-04-24 21:17:04 +0000SegFaultAX(SegFaultAX@unaffiliated/segfaultax) (*.net *.split)
2021-04-24 21:17:04 +0000cocreature(~cocreatur@eirene.uberspace.de) (*.net *.split)
2021-04-24 21:17:04 +0000vjoki(vjoki@2a00:d880:3:1::fea1:9ae) (*.net *.split)
2021-04-24 21:17:04 +0000ggVGc(~ggVGc@2400:8901::f03c:91ff:fef2:bed8) (*.net *.split)
2021-04-24 21:17:04 +0000PHO(~pho@akari.cielonegro.org) (*.net *.split)
2021-04-24 21:17:04 +0000lieven(~mal@unaffiliated/lieven) (*.net *.split)
2021-04-24 21:17:04 +0000riatre(~quassel@2001:310:6000:f::5198:1) (*.net *.split)
2021-04-24 21:17:05 +0000Zemyla(~zemyla@ec2-54-196-11-2.compute-1.amazonaws.com) (*.net *.split)
2021-04-24 21:17:05 +0000davl(~davl@207.154.228.18) (*.net *.split)
2021-04-24 21:17:05 +0000fiddlerwoaroof(~fiddlerwo@unaffiliated/fiddlerwoaroof) (*.net *.split)
2021-04-24 21:17:05 +0000c_wraith(~c_wraith@adjoint.us) (*.net *.split)
2021-04-24 21:17:05 +0000reactormonk1(~reactormo@mehl.schokokeks.org) (*.net *.split)
2021-04-24 21:17:05 +0000Cthalupa(~cthulhu@47.186.47.75) (*.net *.split)
2021-04-24 21:17:06 +0000acowley(~acowley@c-68-83-22-43.hsd1.nj.comcast.net) (*.net *.split)
2021-04-24 21:17:06 +0000EvanR(~evan@unaffiliated/evanr) (*.net *.split)
2021-04-24 21:17:06 +0000lukelau_(~lukelau@2a03:b0c0:1:d0::1bc:b001) (*.net *.split)
2021-04-24 21:17:06 +0000ManiacTwister(~Twister@claudia.s7t.de) (*.net *.split)
2021-04-24 21:17:06 +0000copypasteque(~copypaste@2001:41d0:8:b325::1) (*.net *.split)
2021-04-24 21:17:06 +0000yorick(~yorick@oftn/oswg-member/yorick) (*.net *.split)
2021-04-24 21:17:06 +0000TimWolla(~timwolla@2a01:4f8:150:6153:beef::6667) (*.net *.split)
2021-04-24 21:17:06 +0000mht(~mht@2a03:b0c0:3:e0::1e2:c001) (*.net *.split)
2021-04-24 21:17:07 +0000bbhoss(sid18216@gateway/web/irccloud.com/x-tshhrdxhsikqotro) (*.net *.split)
2021-04-24 21:17:07 +0000jlpeters(sid25606@gateway/web/irccloud.com/x-dbifrnxtcwhelvgl) (*.net *.split)
2021-04-24 21:17:07 +0000tnks(sid412124@gateway/web/irccloud.com/x-imptgchkzowofvdx) (*.net *.split)
2021-04-24 21:17:07 +0000rotaerk(rotaerk@2600:3c02::f03c:91ff:fe70:4a45) (*.net *.split)
2021-04-24 21:17:07 +0000suzu(~scaleuser@2001:bc8:1824:43f::1) (*.net *.split)
2021-04-24 21:17:07 +0000rlsph(~mads@2a03:b0c0:2:f0::324:5001) (*.net *.split)
2021-04-24 21:17:07 +0000LittleFox(~littlefox@2a03:4000:13:34f::2) (*.net *.split)
2021-04-24 21:17:07 +0000jackdk(sid373013@gateway/web/irccloud.com/x-uqhqekzhmwwtnnpj) (*.net *.split)
2021-04-24 21:17:08 +0000t36s(~t36s@2a03:b0c0:3:d0::1c23:5001) (*.net *.split)
2021-04-24 21:17:08 +0000johnstein(~johnstein@192.73.239.18) (*.net *.split)
2021-04-24 21:17:08 +0000Guest97066(~tristan@luna.whatbox.ca) (*.net *.split)
2021-04-24 21:17:08 +0000stree(~stree@68.36.8.116) (*.net *.split)
2021-04-24 21:17:08 +0000Flonk(~Flonk@ec2-52-40-29-25.us-west-2.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:17:08 +0000cheater1(~user@unaffiliated/cheater) (*.net *.split)
2021-04-24 21:17:10 +0000DavidEichmann(~david@147.136.46.217.dyn.plus.net) (*.net *.split)
2021-04-24 21:17:10 +0000Ishutin(~ishutin@94-21-174-90.pool.digikabel.hu) (*.net *.split)
2021-04-24 21:17:10 +0000{abby}(~{abby}@unaffiliated/demhydraz) (*.net *.split)
2021-04-24 21:17:10 +0000curiousgay(~gay@178.217.208.8) (*.net *.split)
2021-04-24 21:17:10 +0000tsandstr(~user@nat-130-132-173-221.central.yale.edu) (*.net *.split)
2021-04-24 21:17:10 +0000apoc(~apoc@49.12.13.193) (*.net *.split)
2021-04-24 21:17:10 +0000Khisanth(~Khisanth@11.sub-174-244-147.myvzw.com) (*.net *.split)
2021-04-24 21:17:11 +0000wraithm(~wraithm@unaffiliated/wraithm) (*.net *.split)
2021-04-24 21:17:11 +0000Tene(~tene@poipu/supporter/slacker/tene) (*.net *.split)
2021-04-24 21:17:11 +0000m0rphism(~m0rphism@HSI-KBW-085-216-104-059.hsi.kabelbw.de) (*.net *.split)
2021-04-24 21:17:11 +0000blankhart(~blankhart@pool-72-88-174-206.nwrknj.fios.verizon.net) (*.net *.split)
2021-04-24 21:17:12 +0000ystael(~ystael@209.6.50.55) (*.net *.split)
2021-04-24 21:17:12 +0000jluttine(~jluttine@85-23-66-6.bb.dnainternet.fi) (*.net *.split)
2021-04-24 21:17:13 +0000jcarpenter2(~rofl@96.78.87.197) (*.net *.split)
2021-04-24 21:17:13 +0000stefan-_(~cri@42dots.de) (*.net *.split)
2021-04-24 21:17:13 +0000Ranhir(~Ranhir@157.97.53.139) (*.net *.split)
2021-04-24 21:17:13 +0000puffnfresh1(~puffnfres@119-17-138-164.77118a.mel.static.aussiebb.net) (*.net *.split)
2021-04-24 21:17:14 +0000AWizzArd(~code@unaffiliated/awizzard) (*.net *.split)
2021-04-24 21:17:14 +0000epta(~m@nuda.space) (*.net *.split)
2021-04-24 21:17:14 +0000turq(~electro@unaffiliated/turq) (*.net *.split)
2021-04-24 21:17:15 +0000Mzg(Mzg@s1.ct8.pl) (*.net *.split)
2021-04-24 21:17:15 +0000Graypup_(Graypup@lfcode.ca) (*.net *.split)
2021-04-24 21:17:15 +0000tureba(~tureba@tureba.org) (*.net *.split)
2021-04-24 21:17:16 +0000vent(~vent@185.62.190.213) (*.net *.split)
2021-04-24 21:17:16 +0000turnA7(~turnA@103.120.19.44) (*.net *.split)
2021-04-24 21:17:16 +0000comboy(~quassel@tesuji.pl) (*.net *.split)
2021-04-24 21:17:16 +0000jakalx(~jakalx@base.jakalx.net) (*.net *.split)
2021-04-24 21:17:16 +0000ammar2(admin@i.diddled.with.the.opers.so.they.klined.me) (*.net *.split)
2021-04-24 21:17:17 +0000Twey(~twey@unaffiliated/twey) (*.net *.split)
2021-04-24 21:17:17 +0000irclogger_com(~irclogger@li659-42.members.linode.com) (*.net *.split)
2021-04-24 21:17:17 +0000opqdonut(opqdonut@pseudo.fixme.fi) (*.net *.split)
2021-04-24 21:17:17 +0000noctux``(1KWNv9FtDb@unaffiliated/noctux) (*.net *.split)
2021-04-24 21:17:17 +0000hrnz(~hrnz@unaffiliated/hrnz) (*.net *.split)
2021-04-24 21:17:17 +0000madnight(~madnight@static.59.103.201.195.clients.your-server.de) (*.net *.split)
2021-04-24 21:17:17 +0000Ankhers(~Ankhers@unaffiliated/ankhers) (*.net *.split)
2021-04-24 21:17:18 +0000rprospero(~adam@186.75.232.35.bc.googleusercontent.com) (*.net *.split)
2021-04-24 21:17:18 +0000Jonno_FTW(~come@api.carswap.me) (*.net *.split)
2021-04-24 21:17:18 +0000electrocat(~michiel@revan.derhaeg.be) (*.net *.split)
2021-04-24 21:17:18 +0000kaol(~kaol@178.62.241.234) (*.net *.split)
2021-04-24 21:17:19 +0000aforemny(~aforemny@static.248.158.34.188.clients.your-server.de) (*.net *.split)
2021-04-24 21:17:19 +0000tv-(~tv@unaffiliated/tv-) (*.net *.split)
2021-04-24 21:17:19 +0000vicfred(vicfred@gateway/vpn/mullvad/vicfred) (*.net *.split)
2021-04-24 21:17:19 +0000tmciver(~tmciver@cpe-172-101-40-226.maine.res.rr.com) (*.net *.split)
2021-04-24 21:17:19 +0000nut(~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr) (*.net *.split)
2021-04-24 21:17:19 +0000__monty__(~toonn@unaffiliated/toonn) (*.net *.split)
2021-04-24 21:17:19 +0000cole-h(~cole-h@c-73-48-197-220.hsd1.ca.comcast.net) (*.net *.split)
2021-04-24 21:17:19 +0000tzh(~tzh@c-24-21-73-154.hsd1.wa.comcast.net) (*.net *.split)
2021-04-24 21:17:19 +0000Deide(~Deide@217.155.19.23) (*.net *.split)
2021-04-24 21:17:19 +0000nek0(~nek0@mail.nek0.eu) (*.net *.split)
2021-04-24 21:17:19 +0000urodna(~urodna@unaffiliated/urodna) (*.net *.split)
2021-04-24 21:17:20 +0000RusAlex(~Chel@unaffiliated/rusalex) (*.net *.split)
2021-04-24 21:17:20 +0000tomsmeding(~tomsmedin@tomsmeding.com) (*.net *.split)
2021-04-24 21:17:20 +0000Bergle_3(~Bergle_4@101.165.90.119) (*.net *.split)
2021-04-24 21:17:20 +0000Katarushisu(~Katarushi@cpc152083-finc20-2-0-cust170.4-2.cable.virginm.net) (*.net *.split)
2021-04-24 21:17:20 +0000clynamen(~clynamen@net-93-66-1-11.cust.vodafonedsl.it) (*.net *.split)
2021-04-24 21:17:20 +0000vchlup(~vchlup@nat.brnet.cz) (*.net *.split)
2021-04-24 21:17:20 +0000jonatan(~nate@h77-53-70-163.cust.a3fiber.se) (*.net *.split)
2021-04-24 21:17:20 +0000johnw(~johnw@haskell/developer/johnw) (*.net *.split)
2021-04-24 21:17:21 +0000falsifian(~falsifian@exoco.falsifian.org) (*.net *.split)
2021-04-24 21:17:21 +0000davros(~davros@host86-185-126-190.range86-185.btcentralplus.com) (*.net *.split)
2021-04-24 21:17:21 +0000wavemode_(~wavemode@097-070-075-143.res.spectrum.com) (*.net *.split)
2021-04-24 21:17:21 +0000totte(~totte@chakra/totte) (*.net *.split)
2021-04-24 21:17:23 +0000acarrico(~acarrico@dhcp-68-142-39-249.greenmountainaccess.net) (*.net *.split)
2021-04-24 21:17:23 +0000tv(~tv@unaffiliated/tv) (*.net *.split)
2021-04-24 21:17:23 +0000SquidDev(~SquidDev@autoclave.squiddev.cc) (*.net *.split)
2021-04-24 21:17:23 +0000byorgey(~byorgey@155.138.238.211) (*.net *.split)
2021-04-24 21:17:24 +0000kilolympus(~kilolympu@5.151.5.180) (*.net *.split)
2021-04-24 21:17:24 +0000pierrot(~pi@unaffiliated/pierrot) (*.net *.split)
2021-04-24 21:17:24 +0000jules_(~jules@ip201.ip-135-125-227.eu) (*.net *.split)
2021-04-24 21:17:25 +0000hpc(~juzz@ip98-169-35-13.dc.dc.cox.net) (*.net *.split)
2021-04-24 21:17:25 +0000Adluc(~Adluc@83.167.228.130) (*.net *.split)
2021-04-24 21:17:25 +0000xintron(~xintron@unaffiliated/xintron) (*.net *.split)
2021-04-24 21:17:26 +0000stampirl(~stampirl@195-154-112-77.rev.poneytelecom.eu) (*.net *.split)
2021-04-24 21:17:26 +0000abrar(~abrar@static-108-30-103-121.nycmny.fios.verizon.net) (*.net *.split)
2021-04-24 21:17:26 +0000reda(~niemand@unaffiliated/reda) (*.net *.split)
2021-04-24 21:17:26 +0000samebchase(~samebchas@51.15.68.182) (*.net *.split)
2021-04-24 21:17:26 +0000dustinm(~dustinm@static.38.6.217.95.clients.your-server.de) (*.net *.split)
2021-04-24 21:17:26 +0000adamCS(~adamCS@ec2-34-207-160-255.compute-1.amazonaws.com) (*.net *.split)
2021-04-24 21:17:27 +0000mrus(~mrus@149.28.61.155) (*.net *.split)
2021-04-24 21:17:27 +0000tilaiti(~tilaiti@static.144.156.216.95.clients.your-server.de) (*.net *.split)
2021-04-24 21:17:27 +0000caubert(~caubert@136.244.111.235) (*.net *.split)
2021-04-24 21:17:27 +0000energizer(~energizer@unaffiliated/energizer) (*.net *.split)
2021-04-24 21:17:27 +0000shapr(~shapr@haskell/developer/shapr) (*.net *.split)
2021-04-24 21:17:28 +0000icebreak1r(michalc@freeshell.de) (*.net *.split)
2021-04-24 21:17:28 +0000arianvp(~weechat@arianvp.me) (*.net *.split)
2021-04-24 21:17:28 +0000mceier(~mceier@89-68-132-187.dynamic.chello.pl) (*.net *.split)
2021-04-24 21:17:28 +0000Majoo(~Majiir@pool-96-237-149-35.bstnma.fios.verizon.net) (*.net *.split)
2021-04-24 21:17:28 +0000xhlr(~xhlr@static.144.156.216.95.clients.your-server.de) (*.net *.split)
2021-04-24 21:17:28 +0000rkrishnan_(~rkrishnan@rkrishnan.org) (*.net *.split)
2021-04-24 21:17:28 +0000Philonous(~Philonous@unaffiliated/philonous) (*.net *.split)
2021-04-24 21:17:28 +0000Jon(~jon@redmars.org) (*.net *.split)
2021-04-24 21:17:29 +0000machinedgod(~machinedg@24.105.81.50) (*.net *.split)
2021-04-24 21:17:29 +0000__minoru__shirae(~shiraeesh@77.94.25.113) (*.net *.split)
2021-04-24 21:17:29 +0000kritzefitz(~kritzefit@212.86.56.80) (*.net *.split)
2021-04-24 21:17:29 +0000Sgeo(~Sgeo@ool-18b9875e.dyn.optonline.net) (*.net *.split)
2021-04-24 21:17:29 +0000DTZUZU(~DTZUZO@205.ip-149-56-132.net) (*.net *.split)
2021-04-24 21:17:30 +0000son0p(~ff@181.136.122.143) (*.net *.split)
2021-04-24 21:17:30 +0000mmfood(~mmfood@185.176.246.69) (*.net *.split)
2021-04-24 21:17:30 +0000perrier-jouet(~perrier-j@modemcable012.251-130-66.mc.videotron.ca) (*.net *.split)
2021-04-24 21:17:30 +0000unyu(~pyon@unaffiliated/pyon) (*.net *.split)
2021-04-24 21:17:31 +0000dastomaten(~dastomate@0543f40b.skybroadband.com) (*.net *.split)
2021-04-24 21:17:31 +0000theDon(~td@94.134.91.143) (*.net *.split)
2021-04-24 21:17:31 +0000tabemann(~travisb@172-13-49-137.lightspeed.milwwi.sbcglobal.net) (*.net *.split)
2021-04-24 21:17:31 +0000werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (*.net *.split)
2021-04-24 21:17:31 +0000DirefulSalt(DirefulSal@gateway/vpn/privateinternetaccess/direfulsalt) (*.net *.split)
2021-04-24 21:17:31 +0000L29Ah(~L29Ah@unaffiliated/l29ah) (*.net *.split)
2021-04-24 21:17:32 +0000ukari(~ukari@unaffiliated/ukari) (*.net *.split)
2021-04-24 21:17:32 +0000notzmv(~zmv@unaffiliated/zmv) (*.net *.split)
2021-04-24 21:17:32 +0000pfurla(~pfurla@ool-182ed2e2.dyn.optonline.net) (*.net *.split)
2021-04-24 21:17:32 +0000evanjs(~evanjs@075-129-098-007.res.spectrum.com) (*.net *.split)
2021-04-24 21:17:33 +0000luite(sid387799@gateway/web/irccloud.com/x-jstlojjciwjquony) (*.net *.split)
2021-04-24 21:17:33 +0000mcglk(~textual@131.191.49.120) (*.net *.split)
2021-04-24 21:17:33 +0000johnnyboy[m](gifumatrix@gateway/shell/matrix.org/x-werjqffkoelbdsvc) (*.net *.split)
2021-04-24 21:17:33 +0000Irenes(~irenes@NixOS/user/irenes) (*.net *.split)
2021-04-24 21:17:33 +0000seveg(~gabriel@2a02-ab04-0249-8d00-dea6-32ff-fe17-0993.dynamic.v6.chello.sk) (*.net *.split)
2021-04-24 21:17:33 +0000aidecoe(~aidecoe@unaffiliated/aidecoe) (*.net *.split)
2021-04-24 21:17:33 +0000dilinger(~dilinger@spindle.queued.net) (*.net *.split)
2021-04-24 21:17:34 +0000codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split)
2021-04-24 21:17:34 +0000juri_(~juri@178.63.35.222) (*.net *.split)
2021-04-24 21:17:34 +0000sdrodge_(~sdrodge@unaffiliated/sdrodge) (*.net *.split)
2021-04-24 21:17:35 +0000Forlorn_(~Forlorn@unaffiliated/forlorn) (*.net *.split)
2021-04-24 21:17:35 +0000caasih(sid13241@gateway/web/irccloud.com/x-ywhvuyflycmojjfa) (*.net *.split)
2021-04-24 21:17:35 +0000ibloom(sid350277@gateway/web/irccloud.com/x-yhokoaaxqmoudodu) (*.net *.split)
2021-04-24 21:17:35 +0000alexknvl(sid259568@gateway/web/irccloud.com/x-wdxobfzstmpkvclf) (*.net *.split)
2021-04-24 21:17:36 +0000kaletaa(~kaletaa@188.34.177.83) (*.net *.split)
2021-04-24 21:17:36 +0000kloeri(~kloeri@freenode/staff/exherbo.kloeri) (*.net *.split)
2021-04-24 21:17:36 +0000joeytwiddle(~joeytwidd@162.243.115.31) (*.net *.split)
2021-04-24 21:17:36 +0000lovesegfault(~bemeurer@37.219.94.34.bc.googleusercontent.com) (*.net *.split)
2021-04-24 21:17:36 +0000TMA(tma@twin.jikos.cz) (*.net *.split)
2021-04-24 21:17:36 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (*.net *.split)
2021-04-24 21:17:36 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (*.net *.split)
2021-04-24 21:17:36 +0000jollygood2(~bc8134e3@217.29.117.252) (*.net *.split)
2021-04-24 21:17:37 +0000wonko7(~wonko7@62.115.229.50) (*.net *.split)
2021-04-24 21:17:37 +0000conal_(~conal@64.71.133.70) (*.net *.split)
2021-04-24 21:17:37 +0000gitgood(~gitgood@80-44-9-246.dynamic.dsl.as9105.com) (*.net *.split)
2021-04-24 21:17:37 +0000fendor(~fendor@178.165.131.197.wireless.dyn.drei.com) (*.net *.split)
2021-04-24 21:17:38 +0000Codaraxis__(~Codaraxis@92.223.89.200) (*.net *.split)
2021-04-24 21:17:38 +0000honigkuchen(~honigkuch@ip5b429953.dynamic.kabel-deutschland.de) (*.net *.split)
2021-04-24 21:17:38 +0000quinn(~quinn@c-73-223-224-163.hsd1.ca.comcast.net) (*.net *.split)
2021-04-24 21:17:38 +0000zaquest(~notzaques@5.128.210.178) (*.net *.split)
2021-04-24 21:17:38 +0000mikolaj_(~mikolaj@purple.well-typed.com) (*.net *.split)
2021-04-24 21:17:39 +0000xlei(znc@unaffiliated/xlei) (*.net *.split)
2021-04-24 21:17:39 +0000cohn_(~noone@23.239.18.252) (*.net *.split)
2021-04-24 21:17:39 +0000SIben_(~SIben@ns3106586.ip-5-135-191.eu) (*.net *.split)
2021-04-24 21:17:39 +0000carbolymer(~carbolyme@dropacid.net) (*.net *.split)
2021-04-24 21:17:39 +0000dminuoso(~dminuoso@static.88-198-218-68.clients.your-server.de) (*.net *.split)
2021-04-24 21:17:40 +0000jassob(~jassob@korrob.vth.sgsnet.se) (*.net *.split)
2021-04-24 21:17:40 +0000_xor(~xor@74.215.46.133) (*.net *.split)
2021-04-24 21:17:41 +0000davean(~davean@davean.sciesnet.net) (*.net *.split)
2021-04-24 21:17:41 +0000SupaYoshi(~supayoshi@213-10-140-13.fixed.kpn.net) (*.net *.split)
2021-04-24 21:17:42 +0000st13g(~quassel@47.90.246.232) (*.net *.split)
2021-04-24 21:17:42 +0000liyang(~liyang@90.255.129.199) (*.net *.split)
2021-04-24 21:17:42 +0000marble_visions(~user@68.183.79.8) (*.net *.split)
2021-04-24 21:17:42 +0000mapperr(~mapperr@vmi389916.contaboserver.net) (*.net *.split)
2021-04-24 21:17:42 +0000_ashbreeze_(~mark@64.85.214.234.reverse.socket.net) (*.net *.split)
2021-04-24 21:17:42 +0000blissful(~blissful@unaffiliated/azuline) (*.net *.split)
2021-04-24 21:17:43 +0000bgamari(~bgamari@72.65.101.132) (*.net *.split)
2021-04-24 21:17:43 +0000conkker(~conkker@unaffiliated/conkker) (*.net *.split)
2021-04-24 21:17:43 +0000cods(~fred@82-65-232-44.subs.proxad.net) (*.net *.split)
2021-04-24 21:17:43 +0000Firedancer(sid336191@gateway/web/irccloud.com/x-xoleucehjmvybibw) (*.net *.split)
2021-04-24 21:17:43 +0000mud(~mud@unaffiliated/kadoban) (*.net *.split)
2021-04-24 21:17:43 +0000infinity0(~infinity0@freenet/developer/infinity0) (*.net *.split)
2021-04-24 21:17:43 +0000tristanC(~tristanC@unaffiliated/tristanc) (*.net *.split)
2021-04-24 21:17:43 +0000pieguy128_(~pieguy128@bas1-quebec14-67-70-101-46.dsl.bell.ca) (*.net *.split)
2021-04-24 21:17:44 +0000vancz(~vancz@unaffiliated/vancz) (*.net *.split)
2021-04-24 21:17:44 +0000pie_(~pie_bnc]@unaffiliated/pie-/x-0787662) (*.net *.split)
2021-04-24 21:17:44 +0000esph(~weechat@unaffiliated/esph) (*.net *.split)
2021-04-24 21:17:44 +0000mrd(~mrd@debian/developer/mrd) (*.net *.split)
2021-04-24 21:17:44 +0000Igloo(~igloo@matrix.chaos.earth.li) (*.net *.split)
2021-04-24 21:17:44 +0000jvanbure_(~jvanbure@159.65.233.183) (*.net *.split)
2021-04-24 21:17:44 +0000tstat(~tstat@104.131.113.212) (*.net *.split)
2021-04-24 21:17:44 +0000lockshaw_(~lockshaw@165.22.163.71) (*.net *.split)
2021-04-24 21:17:45 +0000nshepperd2(~nshepperd@li364-218.members.linode.com) (*.net *.split)
2021-04-24 21:17:45 +0000TommyC(~TommyC@unaffiliated/sepulchralbloom) (*.net *.split)
2021-04-24 21:17:45 +0000kqr(~kqr@vps.xkqr.org) (*.net *.split)
2021-04-24 21:17:45 +0000remedan(~remedan@balak.me) (*.net *.split)
2021-04-24 21:17:45 +0000zymurgy(~zymurgy@li607-220.members.linode.com) (*.net *.split)
2021-04-24 21:17:45 +0000acro(~acro@unaffiliated/acro) (*.net *.split)
2021-04-24 21:17:45 +0000loc(~loc@unaffiliated/loc) (*.net *.split)
2021-04-24 21:17:46 +0000Aleksejs(~Aleksejs@haskell.lv) (*.net *.split)
2021-04-24 21:17:46 +0000pounce(~pounce@ns379743.ip-5-196-70.eu) (*.net *.split)
2021-04-24 21:17:46 +0000djanatyn_(~djanatyn@ec2-18-209-155-56.compute-1.amazonaws.com) (*.net *.split)
2021-04-24 21:17:46 +0000pdxleif(~pdxleif@ec2-54-68-166-10.us-west-2.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:17:46 +0000fr33domlover(~fr33domlo@angeley.es) (*.net *.split)
2021-04-24 21:17:46 +0000shreyasminocha(~shreyasmi@unaffiliated/shreyasminocha) (*.net *.split)
2021-04-24 21:17:46 +0000bind2(~bind@md-dingen.tilaa.cloud) (*.net *.split)
2021-04-24 21:17:46 +0000remexre(~nathan@207-153-38-50.fttp.usinternet.com) (*.net *.split)
2021-04-24 21:17:46 +0000stvc(~stvc@192.241.166.39) (*.net *.split)
2021-04-24 21:17:46 +0000asm89(~asm89@unaffiliated/asm89) (*.net *.split)
2021-04-24 21:17:46 +0000tasuki(~tasuki@198.211.120.27) (*.net *.split)
2021-04-24 21:17:47 +0000dmwit(~dmwit@pool-173-66-86-32.washdc.fios.verizon.net) (*.net *.split)
2021-04-24 21:17:47 +0000tomku(~tomku@unaffiliated/tomku) (*.net *.split)
2021-04-24 21:17:47 +0000eagleflo(~aku@eagleflow.fi) (*.net *.split)
2021-04-24 21:17:47 +0000seliopou(seliopou@entropy.tmok.com) (*.net *.split)
2021-04-24 21:17:47 +0000gargawel(~gael@212.83.144.58) (*.net *.split)
2021-04-24 21:17:47 +0000heath(~heath@unaffiliated/ybit) (*.net *.split)
2021-04-24 21:17:47 +0000Kneiva_(kneiva@raah.fi) (*.net *.split)
2021-04-24 21:17:47 +0000relrod(~relrod@redhat/ansible.staff.relrod) (*.net *.split)
2021-04-24 21:17:47 +0000deni(~deni@unaffiliated/deni) (*.net *.split)
2021-04-24 21:17:47 +0000wayne(~wayne@unaffiliated/wayne) (*.net *.split)
2021-04-24 21:17:47 +0000dredozubov(~dredozubo@37.139.21.214) (*.net *.split)
2021-04-24 21:17:48 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (*.net *.split)
2021-04-24 21:17:48 +0000Rudd0(~Rudd0@185.189.115.108) (*.net *.split)
2021-04-24 21:17:48 +0000elfets(~elfets@ip-37-201-23-96.hsi13.unitymediagroup.de) (*.net *.split)
2021-04-24 21:17:48 +0000Nik05(~Nik05@unaffiliated/nik05) (*.net *.split)
2021-04-24 21:17:48 +0000HannaM(~quassel@p54849510.dip0.t-ipconnect.de) (*.net *.split)
2021-04-24 21:17:48 +0000Tuplanolla(~Tuplanoll@91-159-68-239.elisa-laajakaista.fi) (*.net *.split)
2021-04-24 21:17:49 +0000bradparker(sid262931@gateway/web/irccloud.com/x-ipktkzcrditobyzs) (*.net *.split)
2021-04-24 21:17:49 +0000gawen(~gawen@movzbl.root.sx) (*.net *.split)
2021-04-24 21:17:49 +0000ephemera__(~E@122.34.1.187) (*.net *.split)
2021-04-24 21:17:49 +0000glamas_(~glamas@107.182.17.237) (*.net *.split)
2021-04-24 21:17:49 +0000jrm(~jrm@freebsd/developer/jrm) (*.net *.split)
2021-04-24 21:17:50 +0000ahf(ahf@irssi/staff/ahf) (*.net *.split)
2021-04-24 21:17:50 +0000cyberlard(~cyberlard@unaffiliated/jludwig) (*.net *.split)
2021-04-24 21:17:50 +0000Neuromancer(~Neuromanc@unaffiliated/neuromancer) (*.net *.split)
2021-04-24 21:17:50 +0000landonf(landonf@mac68k.info) (*.net *.split)
2021-04-24 21:17:51 +0000tromp(~tromp@dhcp-077-249-230-040.chello.nl) (*.net *.split)
2021-04-24 21:17:51 +0000poljar1(~poljar@93-139-112-157.adsl.net.t-com.hr) (*.net *.split)
2021-04-24 21:17:51 +0000Tesseraction(~Tesseract@unaffiliated/tesseraction) (*.net *.split)
2021-04-24 21:17:51 +0000mudfog(~mudfog@ec2-54-152-211-54.compute-1.amazonaws.com) (*.net *.split)
2021-04-24 21:17:51 +0000tumdedum(~tumdedum@unaffiliated/espiral) (*.net *.split)
2021-04-24 21:17:51 +0000echoreply(~echoreply@unaffiliated/echoreply) (*.net *.split)
2021-04-24 21:17:51 +0000duckonomy_(~duckonomy@177.ip-144-217-84.net) (*.net *.split)
2021-04-24 21:17:52 +0000troydm(~troydm@unaffiliated/troydm) (*.net *.split)
2021-04-24 21:17:52 +0000Benett(~Benett@unaffiliated/benett) (*.net *.split)
2021-04-24 21:17:52 +0000lordyod(~lordyod@c-67-169-144-132.hsd1.ca.comcast.net) (*.net *.split)
2021-04-24 21:17:52 +0000swater(~swater@perso.iiens.net) (*.net *.split)
2021-04-24 21:17:52 +0000Moyst(~moyst@212-149-213-144.bb.dnainternet.fi) (*.net *.split)
2021-04-24 21:17:52 +0000connrs(~connrs@mail.connolley.uk) (*.net *.split)
2021-04-24 21:17:52 +0000nckx(~nckx@tobias.gr) (*.net *.split)
2021-04-24 21:17:52 +0000lep-delete(~lep@94.31.86.183) (*.net *.split)
2021-04-24 21:17:52 +0000SlashLife(~slashlife@stienen.name) (*.net *.split)
2021-04-24 21:17:52 +0000ent(entgod@kapsi.fi) (*.net *.split)
2021-04-24 21:17:52 +0000tdammers(~tdammers@unaffiliated/tdammers) (*.net *.split)
2021-04-24 21:17:53 +0000CitizenSnips(~CitizenSn@irc.refl.club) (*.net *.split)
2021-04-24 21:17:53 +0000ralu(~ralu@static.211.245.203.116.clients.your-server.de) (*.net *.split)
2021-04-24 21:17:53 +0000tessier(~treed@kernel-panic/copilotco) (*.net *.split)
2021-04-24 21:17:53 +0000adium(adium@unaffiliated/adium) (*.net *.split)
2021-04-24 21:17:54 +0000frobnicator(~frobnicat@185-227-75-147.dsl.cambrium.nl) (*.net *.split)
2021-04-24 21:17:54 +0000Deewiant(~deewiant@de1.ut.deewiant.iki.fi) (*.net *.split)
2021-04-24 21:17:54 +0000exferenceBot(~exference@hexagoxel.de) (*.net *.split)
2021-04-24 21:17:54 +0000tolt(~weechat-h@li219-154.members.linode.com) (*.net *.split)
2021-04-24 21:17:54 +0000ornxka(~ornxka@unaffiliated/ornx) (*.net *.split)
2021-04-24 21:17:54 +0000lazyshrk(~lazyshrk@128.199.58.13) (*.net *.split)
2021-04-24 21:17:54 +0000afx237(~afx237@107.170.10.178) (*.net *.split)
2021-04-24 21:17:55 +0000haskell_1(~twain@168.61.46.105) (*.net *.split)
2021-04-24 21:17:55 +0000rotty(rotty@ghost.xx.vu) (*.net *.split)
2021-04-24 21:17:55 +0000wz1000(~wz1000@static.11.113.47.78.clients.your-server.de) (*.net *.split)
2021-04-24 21:17:56 +0000Patternmaster(~georg@li1192-118.members.linode.com) (*.net *.split)
2021-04-24 21:17:56 +0000Iroha(~Dykomii@kyoto.mii.moe) (*.net *.split)
2021-04-24 21:17:56 +0000statusfailed(~statusfai@statusfailed.com) (*.net *.split)
2021-04-24 21:17:56 +0000hexagoxel(~hexagoxel@hexagoxel.de) (*.net *.split)
2021-04-24 21:17:56 +0000WarzoneCommand(~Frank@77-162-168-71.fixed.kpn.net) (*.net *.split)
2021-04-24 21:17:56 +0000dibblego(~dibblego@haskell/developer/dibblego) (*.net *.split)
2021-04-24 21:17:56 +0000maerwald(~maerwald@mail.hasufell.de) (*.net *.split)
2021-04-24 21:17:56 +0000drewolson(~drewolson@64.227.24.16) (*.net *.split)
2021-04-24 21:17:56 +0000thebnq(~bnq@herrokitty.com) (*.net *.split)
2021-04-24 21:17:57 +0000digia(~digia@unaffiliated/digia) (*.net *.split)
2021-04-24 21:17:57 +0000jmsx(~jordan@li1158-85.members.linode.com) (*.net *.split)
2021-04-24 21:17:57 +0000luigy(~luigy@104.236.106.229) (*.net *.split)
2021-04-24 21:17:57 +0000koala_man(~vidar@unaffiliated/koala-man/x-2491903) (*.net *.split)
2021-04-24 21:17:57 +0000magicman(~tchakkazu@static-47-180-28-65.lsan.ca.frontiernet.net) (*.net *.split)
2021-04-24 21:17:57 +0000johnyginthehouse(~johnygint@159.203.30.32) (*.net *.split)
2021-04-24 21:17:57 +0000dh(dh@bsd.ee) (*.net *.split)
2021-04-24 21:17:57 +0000Clint(~Clint@libre.fm/hacker/clint) (*.net *.split)
2021-04-24 21:17:57 +0000quicksil1er(~jules@roobarb.crazydogs.org) (*.net *.split)
2021-04-24 21:17:57 +0000EdwardIII(~edwardiii@unaffiliated/edward123) (*.net *.split)
2021-04-24 21:17:57 +0000Mrbuck(~Mrbuck@gateway/tor-sasl/mrbuck) (*.net *.split)
2021-04-24 21:17:58 +0000jb55(~jb55@gateway/tor-sasl/jb55) (*.net *.split)
2021-04-24 21:17:58 +0000hendursaga(~weechat@gateway/tor-sasl/hendursaga) (*.net *.split)
2021-04-24 21:17:58 +0000finn_elija(~finn_elij@gateway/tor-sasl/finnelija/x-67402716) (*.net *.split)
2021-04-24 21:17:58 +0000snowflake_(~snowflake@gateway/tor-sasl/snowflake) (*.net *.split)
2021-04-24 21:17:58 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) (*.net *.split)
2021-04-24 21:17:59 +0000cantstanya(~chatting@gateway/tor-sasl/cantstanya) (*.net *.split)
2021-04-24 21:17:59 +0000Unhammer(~Unhammer@gateway/tor-sasl/unhammer) (*.net *.split)
2021-04-24 21:17:59 +0000vgtw(~vgtw@gateway/tor-sasl/vgtw) (*.net *.split)
2021-04-24 21:17:59 +0000andreas303(~andreas@gateway/tor-sasl/andreas303) (*.net *.split)
2021-04-24 21:17:59 +0000Chai-T-Rex(~ChaiTRex@gateway/tor-sasl/chaitrex) (*.net *.split)
2021-04-24 21:17:59 +0000xelxebar(~xelxebar@gateway/tor-sasl/xelxebar) (*.net *.split)
2021-04-24 21:17:59 +0000jpds(~jpds@gateway/tor-sasl/jpds) (*.net *.split)
2021-04-24 21:18:00 +0000Sarcarean(4582bfd4@h69-130-191-212.bendor.broadband.dynamic.tds.net) (*.net *.split)
2021-04-24 21:18:00 +0000federd8(5d2e77a4@93-46-119-164.ip107.fastwebnet.it) (*.net *.split)
2021-04-24 21:18:00 +0000thunderrd(~thunderrd@183.182.114.233) (*.net *.split)
2021-04-24 21:18:00 +0000mith[m](mithmatrix@gateway/shell/matrix.org/x-lrdejlaijmmvhxim) (*.net *.split)
2021-04-24 21:18:00 +0000Guillaum(guiboumatr@gateway/shell/matrix.org/x-rnvdqawoouwzijnb) (*.net *.split)
2021-04-24 21:18:01 +0000berberman(~berberman@unaffiliated/berberman) (*.net *.split)
2021-04-24 21:18:01 +0000lemmih(~lemmih@2406:3003:2072:44:b750:bcd2:3182:6116) (*.net *.split)
2021-04-24 21:18:01 +0000tabaqui(~tabaqui@2604:a880:800:c1::21b:3001) (*.net *.split)
2021-04-24 21:18:01 +0000alanz(sid110616@gateway/web/irccloud.com/x-wrkjabizodqmlyrt) (*.net *.split)
2021-04-24 21:18:01 +0000cybai(~cybai@2400:4050:3122:900:f13a:fdb8:499e:2b92) (*.net *.split)
2021-04-24 21:18:01 +0000maralorn(maralornma@gateway/shell/matrix.org/x-effbgvlwiyjkbspr) (*.net *.split)
2021-04-24 21:18:02 +0000madjestic[m](madjesticm@gateway/shell/matrix.org/x-ktewxaguqqmdajwc) (*.net *.split)
2021-04-24 21:18:03 +0000anon1891[m](anon1891ma@gateway/shell/matrix.org/x-luqmyjielnldrpsd) (*.net *.split)
2021-04-24 21:18:03 +0000stevekrouse1[m](stevekrous@gateway/shell/matrix.org/x-vkuwqhpopicdwkjn) (*.net *.split)
2021-04-24 21:18:03 +0000alar[m](alarmxalat@gateway/shell/matrix.org/x-rxfmpjgktvgasqzm) (*.net *.split)
2021-04-24 21:18:03 +0000maerwald[m](maerwaldma@gateway/shell/matrix.org/x-xrjtspmgpqnkebab) (*.net *.split)
2021-04-24 21:18:04 +0000adziahel[m](adziahelma@gateway/shell/matrix.org/x-cyhjmrgvstvbsvar) (*.net *.split)
2021-04-24 21:18:04 +0000mrkajetanp(mrkajetanp@gateway/shell/matrix.org/x-hpxrawejyiafurts) (*.net *.split)
2021-04-24 21:18:04 +0000mrus[m](mrusmatrix@gateway/shell/matrix.org/x-uxnzjhojjgavftjp) (*.net *.split)
2021-04-24 21:18:05 +0000toasty_avocado[m(toastyavoc@gateway/shell/matrix.org/x-suvnnltfbgmbcmqp) (*.net *.split)
2021-04-24 21:18:05 +0000lambdaclan(lambdaclan@gateway/shell/matrix.org/x-amguadwuvvlssavp) (*.net *.split)
2021-04-24 21:18:05 +0000hsiktas[m](hsiktasmat@gateway/shell/matrix.org/x-rzbavalgomdzhhtt) (*.net *.split)
2021-04-24 21:18:05 +0000rednaZ[m](r3dnazmatr@gateway/shell/matrix.org/x-dhpmvcgpmsxtqfgs) (*.net *.split)
2021-04-24 21:18:05 +0000jeffcasavant[m](jeffcasava@gateway/shell/matrix.org/x-xswajewqaoguxzda) (*.net *.split)
2021-04-24 21:18:05 +0000ThaEwat(thaewraptm@gateway/shell/matrix.org/x-utrkwzmbsriqzljj) (*.net *.split)
2021-04-24 21:18:05 +0000fgaz(fgazmatrix@gateway/shell/matrix.org/x-cxxxnfuxyrjazthh) (*.net *.split)
2021-04-24 21:18:05 +0000PotatoHatsue(berbermanp@gateway/shell/matrix.org/x-nvqlvyzjmcadpsda) (*.net *.split)
2021-04-24 21:18:06 +0000anandprabhu-M(anandprabh@gateway/shell/kde/matrix/x-bzzbuurppcsxzllt) (*.net *.split)
2021-04-24 21:18:06 +0000spoonm(~spoonm@tokyo.spoonm.org) (*.net *.split)
2021-04-24 21:18:06 +0000mflux(flux@coffee.modeemi.fi) (*.net *.split)
2021-04-24 21:18:06 +0000towel(~towel@unaffiliated/towel) (*.net *.split)
2021-04-24 21:18:06 +0000oldsk00l(~znc@ec2-18-130-254-135.eu-west-2.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:18:07 +0000jameekim1(~jameekim@mx.nodaplife.me) (*.net *.split)
2021-04-24 21:18:07 +0000nlofaro(sid258233@gateway/web/irccloud.com/x-zceopsfcsjrtpvjo) (*.net *.split)
2021-04-24 21:18:07 +0000lemald(~eddie@capybara.lemald.org) (*.net *.split)
2021-04-24 21:18:07 +0000nemesit|znc(~nemesit@2a01:488:66:1000:2ea3:4eeb:0:1) (*.net *.split)
2021-04-24 21:18:07 +0000koankeeper(sid216950@gateway/web/irccloud.com/x-lympprcqrveoixtt) (*.net *.split)
2021-04-24 21:18:08 +0000rawles(~r@unaffiliated/rawles) (*.net *.split)
2021-04-24 21:18:08 +0000LambdaDu1k(~anka@ksit.fixme.fi) (*.net *.split)
2021-04-24 21:18:08 +0000blackdog(~blackdog@198.211.112.85) (*.net *.split)
2021-04-24 21:18:08 +0000sdressel(~sdressel@pwning.de) (*.net *.split)
2021-04-24 21:18:08 +0000sarahzrf(~sarahzrf_@2604:a880:400:d0::b4a:4001) (*.net *.split)
2021-04-24 21:18:09 +0000jesser[m](jessermatr@gateway/shell/matrix.org/x-aupqwvyiwubojerx) (*.net *.split)
2021-04-24 21:18:09 +0000Poyo[m](stikynotha@gateway/shell/matrix.org/x-xcbfkbcujzncipye) (*.net *.split)
2021-04-24 21:18:09 +0000lnxw37d4(lnxw37d4ma@gateway/shell/matrix.org/x-mzuaquuooftpadmi) (*.net *.split)
2021-04-24 21:18:10 +0000amerocu[m](amerocumat@gateway/shell/matrix.org/x-qzhlcptahjtnfoav) (*.net *.split)
2021-04-24 21:18:10 +0000fox[m]1(foxforestf@gateway/shell/matrix.org/x-hqbybhlwcrwvhxhe) (*.net *.split)
2021-04-24 21:18:10 +0000enya[m](enyaismatr@gateway/shell/matrix.org/x-sutipvvcssuynets) (*.net *.split)
2021-04-24 21:18:10 +0000ManofLetters[m](manoflette@gateway/shell/matrix.org/x-ovmdqtbnmvvsfsit) (*.net *.split)
2021-04-24 21:18:11 +0000JaakkoLuttinen[m(jluttinema@gateway/shell/matrix.org/x-lrgelkqzqyoiwyju) (*.net *.split)
2021-04-24 21:18:11 +0000DamienCassou(damiencass@gateway/shell/matrix.org/x-wraaqkgwwvejeluv) (*.net *.split)
2021-04-24 21:18:11 +0000bitonic(bitonicmat@gateway/shell/matrix.org/x-yisbdbwqrxbimepi) (*.net *.split)
2021-04-24 21:18:11 +0000sm[m](simonmicma@gateway/shell/matrix.org/x-fghdiqopefseaokb) (*.net *.split)
2021-04-24 21:18:12 +0000megaTherion(~therion@unix.io) (*.net *.split)
2021-04-24 21:18:12 +0000hyperfekt(end@bnc.hyperfekt.net) (*.net *.split)
2021-04-24 21:18:13 +0000statusbot(~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com) (*.net *.split)
2021-04-24 21:18:13 +0000gareth__(~gareth__@104.236.161.134) (*.net *.split)
2021-04-24 21:18:13 +0000chirpsalot(~Chirps@pool-98-115-239-235.phlapa.fios.verizon.net) (*.net *.split)
2021-04-24 21:18:13 +0000Guest36391(~iomonad@95.179.211.27) (*.net *.split)
2021-04-24 21:18:13 +0000mr_yogurt(~mr_yogurt@5.61.211.35.bc.googleusercontent.com) (*.net *.split)
2021-04-24 21:18:13 +0000xensky(~xensky@xengarden.xen.prgmr.com) (*.net *.split)
2021-04-24 21:18:14 +0000nrdmn98(~nrdmn@95.129.53.118) (*.net *.split)
2021-04-24 21:18:14 +0000bcmiller(~bm3719@66.42.95.185) (*.net *.split)
2021-04-24 21:18:14 +0000anoe(~anoe@51.15.174.146) (*.net *.split)
2021-04-24 21:18:14 +0000qz(~quetzal@li272-85.members.linode.com) (*.net *.split)
2021-04-24 21:18:14 +0000toppler`(~user@mtop.default.momentoftop.uk0.bigv.io) (*.net *.split)
2021-04-24 21:18:14 +0000marek(~mmahut@fedora/pyxel) (*.net *.split)
2021-04-24 21:18:15 +0000cross(~cross@spitfire.i.gajendra.net) (*.net *.split)
2021-04-24 21:18:15 +0000_janne(~janne@punainen.org) (*.net *.split)
2021-04-24 21:18:15 +0000nerdypepper(znc@152.67.162.71) (*.net *.split)
2021-04-24 21:18:15 +0000neobit_(~neobit@159.65.243.9) (*.net *.split)
2021-04-24 21:18:15 +0000Uniaika(~uniaika@163.172.211.189) (*.net *.split)
2021-04-24 21:18:15 +0000madnificent(~madnifice@static.210.74.63.178.clients.your-server.de) (*.net *.split)
2021-04-24 21:18:15 +0000Guest38723(~alexander@2a02:587:dc0a:2700:dc6:16ac:a95:eabf) (*.net *.split)
2021-04-24 21:18:15 +0000sw1nn(~sw1nn@2a00:23c7:622f:2c00:5726:e59c:c228:d7ce) (*.net *.split)
2021-04-24 21:18:15 +0000howdoi(uid224@gateway/web/irccloud.com/x-fktcgjzgkphwzaij) (*.net *.split)
2021-04-24 21:18:16 +0000justanotheruser(~justanoth@unaffiliated/justanotheruser) (*.net *.split)
2021-04-24 21:18:16 +0000twk-(~thewormki@unaffiliated/twk-) (*.net *.split)
2021-04-24 21:18:16 +0000renzhi(~renzhi@2607:fa49:6500:bc00::e7b) (*.net *.split)
2021-04-24 21:18:16 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-caupldtffelvoeqp) (*.net *.split)
2021-04-24 21:18:16 +0000stef204(~stef204@unaffiliated/stef-204/x-384198) (*.net *.split)
2021-04-24 21:18:16 +0000hiroaki(~hiroaki@2a02:8108:8c40:2bb8:6312:c8ad:fc31:201b) (*.net *.split)
2021-04-24 21:18:16 +0000dmytrish(~mitra@2a02:8084:a82:d900:6010:2869:d10:372c) (*.net *.split)
2021-04-24 21:18:17 +0000Feuermagier(~Feuermagi@2a02:2488:4211:3400:7285:c2ff:fe22:172e) (*.net *.split)
2021-04-24 21:18:17 +0000srk(~sorki@unaffiliated/srk) (*.net *.split)
2021-04-24 21:18:17 +0000graingert(sid128301@gateway/web/irccloud.com/x-hzpuckilkrvcdlsz) (*.net *.split)
2021-04-24 21:18:17 +0000shutdown_-h_now(~arjan@2001:1c06:2d0b:2312:41b7:a173:a0b0:162b) (*.net *.split)
2021-04-24 21:18:18 +0000haritz(~hrtz@unaffiliated/haritz) (*.net *.split)
2021-04-24 21:18:18 +0000b20n(sid115913@gateway/web/irccloud.com/x-wvurqfbcjkkidela) (*.net *.split)
2021-04-24 21:18:18 +0000d0liver(sid363046@gateway/web/irccloud.com/x-nemzonvlsnfdjkyk) (*.net *.split)
2021-04-24 21:18:19 +0000rann(sid175221@gateway/web/irccloud.com/x-htpbeywwyvgnitzj) (*.net *.split)
2021-04-24 21:18:19 +0000lawid(~quassel@2a02:8109:b5c0:5334:265e:beff:fe2a:dde8) (*.net *.split)
2021-04-24 21:18:19 +0000dexterlb(~dexterlb@2a01:9e40:2:2::2) (*.net *.split)
2021-04-24 21:18:19 +0000darthThorik(sid39589@gateway/web/irccloud.com/x-oqamjdqpvpmmnlft) (*.net *.split)
2021-04-24 21:18:19 +0000albethere(sid457088@gateway/web/irccloud.com/x-egqhysbcgqwwryxs) (*.net *.split)
2021-04-24 21:18:19 +0000dsal(sid13060@gateway/web/irccloud.com/x-qtgpxhcseaxflmxx) (*.net *.split)
2021-04-24 21:18:19 +0000NinjaTrappeur(~ninja@unaffiliated/ninjatrappeur) (*.net *.split)
2021-04-24 21:18:19 +0000PtxDK(~quassel@2a01:7c8:aac3:591:5054:ff:fe3d:cac6) (*.net *.split)
2021-04-24 21:18:19 +0000pepeiborra(sid443799@gateway/web/irccloud.com/x-wwhumdjiavtzqvnj) (*.net *.split)
2021-04-24 21:18:19 +0000thi(sid97277@gateway/web/irccloud.com/x-qecopghcofyuqahp) (*.net *.split)
2021-04-24 21:18:20 +0000PotatoGim(sid99505@gateway/web/irccloud.com/x-qrihjhvmnnmtnggm) (*.net *.split)
2021-04-24 21:18:20 +0000pent(sid313808@gateway/web/irccloud.com/x-oyldewujgosrhjtp) (*.net *.split)
2021-04-24 21:18:20 +0000sclv(sid39734@haskell/developer/sclv) (*.net *.split)
2021-04-24 21:18:20 +0000parisienne(sid383587@gateway/web/irccloud.com/x-vydbxjnkijiazrlk) (*.net *.split)
2021-04-24 21:18:20 +0000tekacs(tekacs@2a01:7e00::f03c:91ff:fe93:43aa) (*.net *.split)
2021-04-24 21:18:21 +0000pjb(~pjb@2a01cb04063ec500ad42b45c394adc0f.ipv6.abo.wanadoo.fr) (*.net *.split)
2021-04-24 21:18:21 +0000sqrt2(~ben@unaffiliated/sqrt2) (*.net *.split)
2021-04-24 21:18:21 +0000rizary(sid220347@gateway/web/irccloud.com/x-zmjqapjzsmflqwgm) (*.net *.split)
2021-04-24 21:18:21 +0000higherorder__(sid185221@gateway/web/irccloud.com/x-koiygmjzeszehzrt) (*.net *.split)
2021-04-24 21:18:21 +0000kip(sid71464@gateway/web/irccloud.com/x-urjbgtyvyzgxzumc) (*.net *.split)
2021-04-24 21:18:21 +0000idnar(sid12240@gateway/web/irccloud.com/x-pvawekuiulmnefkg) (*.net *.split)
2021-04-24 21:18:21 +0000liszt(sid336875@gateway/web/irccloud.com/x-aonselplhnbmouys) (*.net *.split)
2021-04-24 21:18:21 +0000travv0(sid293381@gateway/web/irccloud.com/x-hoivuatisyqixyit) (*.net *.split)
2021-04-24 21:18:22 +0000cbarrett(sid192934@adium/cbarrett) (*.net *.split)
2021-04-24 21:18:22 +0000edmundnoble(sid229620@gateway/web/irccloud.com/x-emmrpthgulpebvrs) (*.net *.split)
2021-04-24 21:18:22 +0000PoliticsII______(sid193551@gateway/web/irccloud.com/x-yxyceemvbzkrgcna) (*.net *.split)
2021-04-24 21:18:22 +0000teehemkay(sid14792@gateway/web/irccloud.com/x-aozhbjqwwkaxnioe) (*.net *.split)
2021-04-24 21:18:22 +0000simplegauss(~simplegau@2001:19f0:ac01:247:5400:ff:fe5c:689f) (*.net *.split)
2021-04-24 21:18:22 +0000lawt(~lawt@2601:200:8101:f140:dea6:32ff:fea1:adfa) (*.net *.split)
2021-04-24 21:18:22 +0000lechner(~lechner@letbox-vps.us-core.com) (*.net *.split)
2021-04-24 21:18:23 +0000flow(~none@salem.informatik.uni-erlangen.de) (*.net *.split)
2021-04-24 21:18:23 +0000Blkt(~Blkt@2a01:4f8:200:2425::adda) (*.net *.split)
2021-04-24 21:18:23 +0000tionos-(~tionos@2a0b:b7c4:1:731::1) (*.net *.split)
2021-04-24 21:18:23 +0000PyroLagus(PyroLagus@i.have.ipv6.on.coding4coffee.org) (*.net *.split)
2021-04-24 21:18:23 +0000nick_h(sid319833@gateway/web/irccloud.com/x-rpjxyycebsudwryk) (*.net *.split)
2021-04-24 21:18:24 +0000lexi-lambda(sid92601@gateway/web/irccloud.com/x-lbtagjjufznxxeun) (*.net *.split)
2021-04-24 21:18:25 +0000cawfee(chiya@2406:3003:2077:2341::babe) (*.net *.split)
2021-04-24 21:18:25 +0000jiribenes(~jiribenes@rosa.jiribenes.com) (*.net *.split)
2021-04-24 21:18:25 +0000betawaffle(sid2730@gateway/web/irccloud.com/x-mgkyhxjwrxbfnjrt) (*.net *.split)
2021-04-24 21:18:25 +0000npgm(sid42623@gateway/web/irccloud.com/x-hdudxwjvxbrygqyi) (*.net *.split)
2021-04-24 21:18:25 +0000elvishjerricco(sid237756@NixOS/user/ElvishJerricco) (*.net *.split)
2021-04-24 21:18:25 +0000JSharp(sid4580@wikia/JSharp) (*.net *.split)
2021-04-24 21:18:25 +0000thecoffemaker(~thecoffem@unaffiliated/thecoffemaker) (*.net *.split)
2021-04-24 21:18:25 +0000m1dnight_(~m1dnight@188.ip-51-91-158.eu) (*.net *.split)
2021-04-24 21:18:26 +0000Kamuela(sid111576@gateway/web/irccloud.com/x-ichknpgshtclrsay) (*.net *.split)
2021-04-24 21:18:26 +0000lolmac(sid171216@gateway/web/irccloud.com/x-dfzmqyyhzzvhceve) (*.net *.split)
2021-04-24 21:18:26 +0000nurupo(~nurupo.ga@unaffiliated/nurupo) (*.net *.split)
2021-04-24 21:18:26 +0000typetetris(uid275937@gateway/web/irccloud.com/x-mjjfisuvtdksxyob) (*.net *.split)
2021-04-24 21:18:26 +0000bollu(~bollu@139.59.46.74) (*.net *.split)
2021-04-24 21:18:26 +0000puffnfresh(~puffnfres@45.76.124.5) (*.net *.split)
2021-04-24 21:18:26 +0000dwt(~dwt@c-98-200-58-177.hsd1.tx.comcast.net) (*.net *.split)
2021-04-24 21:18:27 +0000nikola1(~nikola@2a03:b0c0:2:d0::dc2:c001) (*.net *.split)
2021-04-24 21:18:27 +0000rzmt(~rzmt@87-92-180-112.rev.dnainternet.fi) (*.net *.split)
2021-04-24 21:18:27 +0000mp___(mp@hell.cx) (*.net *.split)
2021-04-24 21:18:27 +0000kum0(~kumo@139.180.144.166) (*.net *.split)
2021-04-24 21:18:28 +0000Inoperable(~PLAYER_1@fancydata.science) (*.net *.split)
2021-04-24 21:18:29 +0000russruss40(~russruss@my.russellmcc.com) (*.net *.split)
2021-04-24 21:18:29 +0000Lowl3v3l(~Lowl3v3l@dslb-002-207-103-026.002.207.pools.vodafone-ip.de) (*.net *.split)
2021-04-24 21:18:29 +0000tms_(thomaav@cassarossa.samfundet.no) (*.net *.split)
2021-04-24 21:18:29 +0000mrchampion(~mrchampio@38.18.109.23) (*.net *.split)
2021-04-24 21:18:29 +0000shailangsa(~shailangs@host86-185-58-137.range86-185.btcentralplus.com) (*.net *.split)
2021-04-24 21:18:29 +0000MarcelineVQ(~anja@198.254.208.159) (*.net *.split)
2021-04-24 21:18:29 +0000zmijunkie(~Adium@87.122.222.145) (*.net *.split)
2021-04-24 21:18:29 +0000bennofs__(~quassel@dynamic-089-012-022-232.89.12.pool.telefonica.de) (*.net *.split)
2021-04-24 21:18:29 +0000hyiltiz(~quassel@unaffiliated/hyiltiz) (*.net *.split)
2021-04-24 21:18:30 +0000mikolaj(~mikon@duch.mimuw.edu.pl) (*.net *.split)
2021-04-24 21:18:30 +0000star_cloud(~star_clou@ec2-34-220-44-120.us-west-2.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:18:30 +0000puke(~vroom@217.138.252.196) (*.net *.split)
2021-04-24 21:18:30 +0000grumble(~Thunderbi@freenode/staff/grumble) (*.net *.split)
2021-04-24 21:18:30 +0000smerdyakov8(~dan@5.146.195.164) (*.net *.split)
2021-04-24 21:18:31 +0000benwr____(sid372383@gateway/web/irccloud.com/x-mijbqpsjqwboudpc) (*.net *.split)
2021-04-24 21:18:31 +0000totbwf(sid402332@gateway/web/irccloud.com/x-evcibzlipwnkayzd) (*.net *.split)
2021-04-24 21:18:31 +0000darjeeling_(~darjeelin@122.245.216.145) (*.net *.split)
2021-04-24 21:18:32 +0000xsperry(~as@unaffiliated/xsperry) (*.net *.split)
2021-04-24 21:18:32 +0000nisstyre(~wes@python-zero/conduct-committee/nisstyre) (*.net *.split)
2021-04-24 21:18:32 +0000lassulus(~lassulus@NixOS/user/lassulus) (*.net *.split)
2021-04-24 21:18:32 +0000And1(~And1@brewington.uberspace.de) (*.net *.split)
2021-04-24 21:18:32 +0000dolio(~dolio@haskell/developer/dolio) (*.net *.split)
2021-04-24 21:18:33 +0000cpape(~user@static.180.18.203.116.clients.your-server.de) (*.net *.split)
2021-04-24 21:18:33 +0000datajerk(~datajerk@sense.net) (*.net *.split)
2021-04-24 21:18:34 +0000electrostat(~dag@unaffiliated/electrostat) (*.net *.split)
2021-04-24 21:18:34 +0000acertain(sid470584@gateway/web/irccloud.com/x-udpocathjkijcvpk) (*.net *.split)
2021-04-24 21:18:34 +0000obiiwahn(~obiwahn@pdpc/supporter/student/obiwahn) (*.net *.split)
2021-04-24 21:18:34 +0000Cerise(~jerry@unaffiliated/cerise) (*.net *.split)
2021-04-24 21:18:35 +0000dan64(~dan64@dannyadam.com) (*.net *.split)
2021-04-24 21:18:35 +0000bobey88(~bobey@72-172-218-188.fidnet.com) (*.net *.split)
2021-04-24 21:18:35 +0000p8m(p8m@gateway/vpn/protonvpn/p8m) (*.net *.split)
2021-04-24 21:18:35 +0000kav(~kari@dsl-hkibng42-56733f-225.dhcp.inet.fi) (*.net *.split)
2021-04-24 21:18:36 +0000Chousuke(oranenj@coffee.modeemi.fi) (*.net *.split)
2021-04-24 21:18:36 +0000ekleog(~ii@prologin/ekleog) (*.net *.split)
2021-04-24 21:18:37 +0000micro(~micro@unaffiliated/micro) (*.net *.split)
2021-04-24 21:18:37 +0000brown121407(~brown1214@fsf/member/brown121407) (*.net *.split)
2021-04-24 21:18:37 +0000raoul(~raoulhida@nomnomnomnom.co.uk) (*.net *.split)
2021-04-24 21:18:37 +0000zfnmxt(~zfnmxt@unaffiliated/zfnmxt) (*.net *.split)
2021-04-24 21:18:37 +0000lnx(~irssi@167.71.7.27) (*.net *.split)
2021-04-24 21:18:37 +0000so_(~so@unaffiliated/so) (*.net *.split)
2021-04-24 21:18:38 +0000amx(amx@percival.namespace.at) (*.net *.split)
2021-04-24 21:18:39 +0000aplainzetakind(~johndoe@captainludd.powered.by.lunarbnc.net) (*.net *.split)
2021-04-24 21:18:39 +0000psydruid[m](psydruidma@gateway/shell/matrix.org/x-dvmwnhqcosgmszks) (*.net *.split)
2021-04-24 21:18:39 +0000siraben(sirabenmat@gateway/shell/matrix.org/x-cfikpjmyftuncdpf) (*.net *.split)
2021-04-24 21:18:39 +0000jchia[m](jchiamatri@gateway/shell/matrix.org/x-tmjpbywqkunnmwlp) (*.net *.split)
2021-04-24 21:18:39 +0000fakubish[m](fakubishne@gateway/shell/matrix.org/x-gkdgoaumokeroxkj) (*.net *.split)
2021-04-24 21:18:39 +0000ProofTechnique(sid79547@gateway/web/irccloud.com/x-uvtkxtknhyjkpohz) (*.net *.split)
2021-04-24 21:18:39 +0000angerman(sid209936@gateway/web/irccloud.com/x-vkbiyhlbxhfghaep) (*.net *.split)
2021-04-24 21:18:39 +0000Hanma[m](hanmamatri@gateway/shell/matrix.org/x-ktsmcyuxlppyzjzb) (*.net *.split)
2021-04-24 21:18:40 +0000thonkpod(~thonkpod@2001:19f0:ac01:b46:5400:1ff:fec7:d73d) (*.net *.split)
2021-04-24 21:18:40 +0000dominicusin[m](dominicusi@gateway/shell/matrix.org/x-cjngkratdjygajhy) (*.net *.split)
2021-04-24 21:18:40 +0000Vq(~vq@90-227-195-41-no77.tbcn.telia.com) (*.net *.split)
2021-04-24 21:18:41 +0000viktorstrate[m](viktorstra@gateway/shell/matrix.org/x-nrjjnqkdtfbtkeet) (*.net *.split)
2021-04-24 21:18:41 +0000speakerspivakeem(speakerdea@gateway/shell/matrix.org/x-wcklxxqsduyzhunq) (*.net *.split)
2021-04-24 21:18:41 +0000TheWizardTower[m(thewizardt@gateway/shell/matrix.org/x-qjoroerupruqagtt) (*.net *.split)
2021-04-24 21:18:41 +0000slycelote[m](slycelotem@gateway/shell/matrix.org/x-yxhtximmpenozqzr) (*.net *.split)
2021-04-24 21:18:41 +0000berberman[T](berberma4@gateway/shell/matrix.org/x-tzjvckdqlgqermfr) (*.net *.split)
2021-04-24 21:18:42 +0000immae(immaematri@gateway/shell/matrix.org/x-yvvixibszngfldow) (*.net *.split)
2021-04-24 21:18:42 +0000jjhoo(jahakala@dsl-trebng21-b048b5-171.dhcp.inet.fi) (*.net *.split)
2021-04-24 21:18:43 +0000noCheese(~nocheese@unaffiliated/nocheese) (*.net *.split)
2021-04-24 21:18:43 +0000kiltzman(~k1ltzman@5.206.224.243) (*.net *.split)
2021-04-24 21:18:43 +0000Axman6(~Axman6@pdpc/supporter/student/Axman6) (*.net *.split)
2021-04-24 21:18:43 +0000Nikotiini(~ubuntu@ec2-52-213-118-142.eu-west-1.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:18:43 +0000lpsmith(~lpsmith@unaffiliated/lpsmith) (*.net *.split)
2021-04-24 21:18:44 +0000xarian(~xarian@104.236.81.162) (*.net *.split)
2021-04-24 21:18:44 +0000dequbed(~dequbed@yanduxian.paranoidlabs.org) (*.net *.split)
2021-04-24 21:18:44 +0000orcus(~orcus@unaffiliated/orcus) (*.net *.split)
2021-04-24 21:18:44 +0000vk3wtf(~doc@115-64-102-158.tpgi.com.au) (*.net *.split)
2021-04-24 21:18:44 +0000sigmundv(~sigmundv@178.62.72.87) (*.net *.split)
2021-04-24 21:18:44 +0000rookie101(~rookie@207.154.204.166) (*.net *.split)
2021-04-24 21:18:44 +0000andjjj23_(~irc@107.170.228.47) (*.net *.split)
2021-04-24 21:18:44 +0000[df](~ben@51.15.198.140) (*.net *.split)
2021-04-24 21:18:44 +0000filwisher(~filwisher@78.141.201.45) (*.net *.split)
2021-04-24 21:18:44 +0000otulp(~otulp@ti0187q162-6639.bb.online.no) (*.net *.split)
2021-04-24 21:18:44 +0000alp(~alp@163.172.83.213) (*.net *.split)
2021-04-24 21:18:44 +0000kosmikus(~kosmikus@haskell/developer/kosmikus) (*.net *.split)
2021-04-24 21:18:44 +0000bendo(~bendo@130.61.122.121) (*.net *.split)
2021-04-24 21:18:44 +0000emergence(~emergence@vm0.max-p.me) (*.net *.split)
2021-04-24 21:18:45 +0000polux2001(~polux@51.15.169.172) (*.net *.split)
2021-04-24 21:18:45 +0000duairc(~shane@ana.rch.ist) (*.net *.split)
2021-04-24 21:18:45 +0000peutri(~peutri@ns317027.ip-94-23-46.eu) (*.net *.split)
2021-04-24 21:18:45 +0000haveo(~haveo@sl35.iuwt.fr) (*.net *.split)
2021-04-24 21:18:45 +0000le_jonge(jonge@kofferbomber.org) (*.net *.split)
2021-04-24 21:18:45 +0000voidcontext(~pgee@178.62.100.221) (*.net *.split)
2021-04-24 21:18:45 +0000Kaiepi(~Kaiepi@47.54.252.148) (*.net *.split)
2021-04-24 21:18:45 +0000ddellaco_(ddellacost@gateway/vpn/mullvad/ddellacosta) (*.net *.split)
2021-04-24 21:18:46 +0000alx741(~alx741@181.196.69.117) (*.net *.split)
2021-04-24 21:18:46 +0000Tario(~Tario@201.192.165.173) (*.net *.split)
2021-04-24 21:18:47 +0000mnrmnaugh(~mnrmnaugh@unaffiliated/mnrmnaugh) (*.net *.split)
2021-04-24 21:18:47 +0000Kaivo(~Kaivo@172-97-54-87.mc.derytele.com) (*.net *.split)
2021-04-24 21:18:47 +0000natim87(sid286962@gateway/web/irccloud.com/x-ozyrmmcfkllsqxsu) (*.net *.split)
2021-04-24 21:18:47 +0000oleks_(~oleks@188.166.34.97) (*.net *.split)
2021-04-24 21:18:47 +0000bob_twinkles_(~quassel@ec2-52-37-66-13.us-west-2.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:18:48 +0000haasn(~nand@mpv/developer/haasn) (*.net *.split)
2021-04-24 21:18:48 +0000haya(~haya@ec2-18-231-117-140.sa-east-1.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:18:48 +0000electricityZZZZ(~electrici@135-180-3-82.static.sonic.net) (*.net *.split)
2021-04-24 21:18:48 +0000limbo(ar@45.63.9.236) (*.net *.split)
2021-04-24 21:18:50 +0000wagle(~wagle@quassel.wagle.io) (*.net *.split)
2021-04-24 21:18:51 +0000jhuizy(~jhuizy@static.241.188.216.95.clients.your-server.de) (*.net *.split)
2021-04-24 21:18:51 +0000Jesin(~Jesin@pool-72-66-101-18.washdc.fios.verizon.net) (*.net *.split)
2021-04-24 21:18:51 +0000Maxdamantus(~Maxdamant@unaffiliated/maxdamantus) (*.net *.split)
2021-04-24 21:18:51 +0000seanparsons(~sean@cpc145088-gill21-2-0-cust281.20-1.cable.virginm.net) (*.net *.split)
2021-04-24 21:18:52 +0000nojster(~noj@vmd62096.contaboserver.net) (*.net *.split)
2021-04-24 21:18:52 +0000amiri(~amiri@cpe-76-91-154-9.socal.res.rr.com) (*.net *.split)
2021-04-24 21:18:52 +0000cgfbee(~bot@oc1.itim-cj.ro) (*.net *.split)
2021-04-24 21:18:52 +0000gambpang(~gambpang@unaffiliated/gambpang) (*.net *.split)
2021-04-24 21:18:52 +0000hiptobecubic(~john@unaffiliated/hiptobecubic) (*.net *.split)
2021-04-24 21:18:52 +0000e2(e2@sponsored.by.bnc4you.xyz) (*.net *.split)
2021-04-24 21:18:53 +0000Eliel(~jojkaart@163.172.153.251) (*.net *.split)
2021-04-24 21:18:53 +0000BIG_JIMMY_D(~jim@108.61.185.76) (*.net *.split)
2021-04-24 21:18:53 +0000RoguePointer(~jigen@unaffiliated/roguepointer) (*.net *.split)
2021-04-24 21:18:53 +0000shachaf(~shachaf@unaffiliated/shachaf) (*.net *.split)
2021-04-24 21:18:53 +0000hive-mind(~hivemind@rrcs-67-53-148-69.west.biz.rr.com) (*.net *.split)
2021-04-24 21:18:53 +0000Unode(~Unode@unaffiliated/unode) (*.net *.split)
2021-04-24 21:18:53 +0000gekh(~gkh@thor.kevinhill.nl) (*.net *.split)
2021-04-24 21:18:53 +0000abuss(~abuss@cryptarch.net) (*.net *.split)
2021-04-24 21:18:53 +0000vodkaInf1rno(~wormphleg@104.131.156.184) (*.net *.split)
2021-04-24 21:18:54 +0000Paks(~paks@c-69-136-183-189.hsd1.il.comcast.net) (*.net *.split)
2021-04-24 21:18:54 +0000xwvvvvwx(xwvvvvwx@gateway/vpn/mullvad/xwvvvvwx) (*.net *.split)
2021-04-24 21:18:54 +0000Wamanuz(~wamanuz@78-70-34-81-no84.tbcn.telia.com) (*.net *.split)
2021-04-24 21:18:54 +0000natechan(~natechan@108-233-125-227.lightspeed.sntcca.sbcglobal.net) (*.net *.split)
2021-04-24 21:18:54 +0000int-e(~noone@int-e.eu) (*.net *.split)
2021-04-24 21:18:55 +0000ps-auxw(~arneb@p548d5577.dip0.t-ipconnect.de) (*.net *.split)
2021-04-24 21:18:55 +0000dqd(id@wikipedia/dqd) (*.net *.split)
2021-04-24 21:18:55 +0000w1gz(~do@159.89.11.133) (*.net *.split)
2021-04-24 21:18:55 +0000geal(~geal@195-154-200-217.rev.poneytelecom.eu) (*.net *.split)
2021-04-24 21:18:55 +0000kiprasz(~kipras@re199n846.sritis.lt) (*.net *.split)
2021-04-24 21:18:55 +0000xcin(~x@159.203.132.140) (*.net *.split)
2021-04-24 21:18:55 +0000srid(sridmatrix@gateway/shell/matrix.org/x-qplbjwlmsmpxtvvc) (*.net *.split)
2021-04-24 21:18:55 +0000M9ndres[m](m9ndresmat@gateway/shell/matrix.org/x-seocxulfsqrbeznw) (*.net *.split)
2021-04-24 21:18:56 +0000leah2(~leah@vuxu.org) (*.net *.split)
2021-04-24 21:18:56 +0000miklcct(quasselcor@2001:19f0:7402:d31:5400:3ff:fe51:a0cd) (*.net *.split)
2021-04-24 21:18:56 +0000chrisbloecker[m](chrisbloec@gateway/shell/matrix.org/x-ocvqnqycybxbaszr) (*.net *.split)
2021-04-24 21:18:56 +0000hyiltiz-M(hyiltizkde@gateway/shell/kde/matrix/x-htrnwcwmekebkeel) (*.net *.split)
2021-04-24 21:18:56 +0000heck-to-the-gnom(heck-to-th@gateway/shell/matrix.org/x-bjzlaxrwotuujapr) (*.net *.split)
2021-04-24 21:18:56 +0000beardhatcode(robbertbea@gateway/shell/matrix.org/x-lsjnjwfsaaqmayss) (*.net *.split)
2021-04-24 21:18:57 +0000Lurkki[m]1(lurkkipriv@gateway/shell/matrix.org/x-qkyndrlwwbcdfprx) (*.net *.split)
2021-04-24 21:18:57 +0000michaelpj(michaelpjm@gateway/shell/matrix.org/x-utrdbjjavwpdczxi) (*.net *.split)
2021-04-24 21:18:57 +0000arcontethegreat[(arcontethe@gateway/shell/matrix.org/x-htiwddqvyzfqikyg) (*.net *.split)
2021-04-24 21:18:57 +0000alexfmpe(alexfmpema@gateway/shell/matrix.org/x-imekgdrdrodzrfgy) (*.net *.split)
2021-04-24 21:18:57 +0000Noughtmare[m](naughtmare@gateway/shell/matrix.org/x-hglfphyajylwppku) (*.net *.split)
2021-04-24 21:18:57 +0000CrabMan(phi-matrix@gateway/shell/matrix.org/x-xdtvjrfhqsljsdjb) (*.net *.split)
2021-04-24 21:18:58 +0000mikeplus64(~mike@unaffiliated/mikeplus64) (*.net *.split)
2021-04-24 21:18:58 +0000^[(sid43445@ircpuzzles/2015/april-fools/sixth/zgrep) (*.net *.split)
2021-04-24 21:18:58 +0000lisq(~quassel@lis.moe) (*.net *.split)
2021-04-24 21:18:58 +0000`slikts(~nelabs@wikipedia/reinis) (*.net *.split)
2021-04-24 21:18:58 +0000solarus(~solarus@2a03:b0c0:2:d0::48:7001) (*.net *.split)
2021-04-24 21:18:58 +0000joeyh(joeyh@kitenet.net) (*.net *.split)
2021-04-24 21:18:59 +0000winny(~winny@fsf/member/winstonw) (*.net *.split)
2021-04-24 21:18:59 +0000dani-(sid341953@gateway/web/irccloud.com/x-enxplehsvwdxnwfi) (*.net *.split)
2021-04-24 21:18:59 +0000agander_m(sid407952@gateway/web/irccloud.com/x-olfvvsvzckwflxmz) (*.net *.split)
2021-04-24 21:18:59 +0000ocharles(sid30093@musicbrainz/user/ocharles) (*.net *.split)
2021-04-24 21:18:59 +0000runeks(sid21167@gateway/web/irccloud.com/x-hasdkvyrirwackgz) (*.net *.split)
2021-04-24 21:18:59 +0000zopsi(zopsi@2600:3c00::f03c:91ff:fe14:551f) (*.net *.split)
2021-04-24 21:19:00 +0000lortabac(~lortabac@51.158.65.124) (*.net *.split)
2021-04-24 21:19:00 +0000newsham(~ubuntu@ec2-18-218-216-88.us-east-2.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:19:00 +0000orhan89(~orhan89@151.91.188.35.bc.googleusercontent.com) (*.net *.split)
2021-04-24 21:19:00 +0000greymalkin(~greymalki@199.180.249.79) (*.net *.split)
2021-04-24 21:19:00 +0000sud0(~Death@hackspaceuy/member/sud0) (*.net *.split)
2021-04-24 21:19:00 +0000crtschin(~crtschin@2604:a880:800:10::3126:f001) (*.net *.split)
2021-04-24 21:19:00 +0000Ekho(~Ekho@unaffiliated/ekho) (*.net *.split)
2021-04-24 21:19:00 +0000Uma_(~uma@umazalakain.info) (*.net *.split)
2021-04-24 21:19:00 +0000xts_(~ts@46.101.20.9) (*.net *.split)
2021-04-24 21:19:02 +0000ahri(~ahri@178.209.40.84) (*.net *.split)
2021-04-24 21:19:02 +0000hexo-(~hexo@2a01:430:17:1::ffff:328) (*.net *.split)
2021-04-24 21:19:02 +0000TheScoop(~TheScoop@unaffiliated/tryte) (*.net *.split)
2021-04-24 21:19:02 +0000urdh(~urdh@unaffiliated/urdh) (*.net *.split)
2021-04-24 21:19:02 +0000myme(~myme@li1406-121.members.linode.com) (*.net *.split)
2021-04-24 21:19:02 +0000gienah(~mwright@gentoo/developer/gienah) (*.net *.split)
2021-04-24 21:19:02 +0000bcoppens(~bartcopp@kde/coppens) (*.net *.split)
2021-04-24 21:19:02 +0000freeside(~ubuntu@ec2-52-58-69-57.eu-central-1.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:19:02 +0000ring0`(~ringo@unaffiliated/ring0/x-8667941) (*.net *.split)
2021-04-24 21:19:04 +0000aib42(~aib@unaffiliated/aib42) (*.net *.split)
2021-04-24 21:19:04 +0000yahb(xsbot@haskell/bot/yahb) (*.net *.split)
2021-04-24 21:19:04 +0000clog(~nef@bespin.org) (*.net *.split)
2021-04-24 21:19:04 +0000lurkless(~ll@unaffiliated/lurkless) (*.net *.split)
2021-04-24 21:19:04 +0000brkscnce_(~obaum@37.120.31.251) (*.net *.split)
2021-04-24 21:19:05 +0000deu(de@uio.re) (*.net *.split)
2021-04-24 21:19:05 +0000samebchase-(~samebchas@51.15.68.182) (*.net *.split)
2021-04-24 21:19:05 +0000incertia(~incertia@d4-50-26-103.nap.wideopenwest.com) (*.net *.split)
2021-04-24 21:19:05 +0000leafiest(~leafiest@165.227.53.12) (*.net *.split)
2021-04-24 21:19:05 +0000averell(~averell@unaffiliated/averell) (*.net *.split)
2021-04-24 21:19:05 +0000mantovani(~mantovani@104.131.207.121) (*.net *.split)
2021-04-24 21:19:05 +0000okad(~okad@ec2-18-135-78-237.eu-west-2.compute.amazonaws.com) (*.net *.split)
2021-04-24 21:19:05 +0000iptq(~michael@142.93.75.170) (*.net *.split)
2021-04-24 21:19:05 +0000tomjaguarpaw(~tom@li367-225.members.linode.com) (*.net *.split)
2021-04-24 21:19:05 +0000M2tias(m2@seri.fi) (*.net *.split)
2021-04-24 21:19:06 +0000stilgart(~Christoph@chezlefab.net) (*.net *.split)
2021-04-24 21:19:06 +0000Chobbes_(~Chobbes@pool-98-115-239-235.phlapa.fios.verizon.net) (*.net *.split)
2021-04-24 21:19:06 +0000sajith(~sajith@fsf/member/nonzen) (*.net *.split)
2021-04-24 21:19:06 +0000veverak(~veverak@ip-89-102-98-161.net.upcbroadband.cz) (*.net *.split)
2021-04-24 21:19:06 +0000chindy_(~quassel@51.15.63.78) (*.net *.split)
2021-04-24 21:19:06 +0000a3Dman_(~3Dman@ns334323.ip-5-196-65.eu) (*.net *.split)
2021-04-24 21:19:07 +0000bbear_(~znc@21212.s.t4vps.eu) (*.net *.split)
2021-04-24 21:19:07 +0000thblt(~thblt@unaffiliated/thblt) (*.net *.split)
2021-04-24 21:19:07 +0000uberj_(~uberj@107.170.237.156) (*.net *.split)
2021-04-24 21:19:07 +0000Xnuk(~xnuk@45.76.202.58) (*.net *.split)
2021-04-24 21:19:07 +0000jtobin_(~jtobin@li1555-212.members.linode.com) (*.net *.split)
2021-04-24 21:19:07 +0000niklasb(~niklasb@unaffiliated/codeslay0r) (*.net *.split)
2021-04-24 21:19:08 +0000Putonlalla(~sapekiis@it-cyan.it.jyu.fi) (*.net *.split)
2021-04-24 21:19:08 +0000Solarion(~solarion@fsf/member/solarion) (*.net *.split)
2021-04-24 21:19:08 +0000Athas(athas@sigkill.dk) (*.net *.split)
2021-04-24 21:19:08 +0000SoF(~SoF@unaffiliated/skillyonfire) (*.net *.split)
2021-04-24 21:19:08 +0000ChanServ(ChanServ@services.) (*.net *.split)
2021-04-24 21:19:09 +0000stux|RC(stux2@grid9.quadspeedi.net) (Excess Flood)
2021-04-24 21:19:11 +0000Lord_of_Life(~Lord@unaffiliated/lord-of-life/x-0885362) (Excess Flood)
2021-04-24 21:19:12 +0000sm2n(~sm2n@bras-base-hmtnon143hw-grc-13-70-54-76-62.dsl.bell.ca) (Remote host closed the connection)
2021-04-24 21:19:12 +0000mozzarella(~sam@unaffiliated/sam113101) (Write error: Connection reset by peer)
2021-04-24 21:19:12 +0000kristijonas(~kristijon@78-56-32-39.static.zebra.lt) (Remote host closed the connection)
2021-04-24 21:20:15 +0000sarahzrf(~sarahzrf_@2604:a880:400:d0::b4a:4001)
2021-04-24 21:20:15 +0000sdressel(~sdressel@pwning.de)
2021-04-24 21:20:15 +0000LambdaDu1k(~anka@ksit.fixme.fi)
2021-04-24 21:20:15 +0000blackdog(~blackdog@198.211.112.85)
2021-04-24 21:20:15 +0000koankeeper(sid216950@gateway/web/irccloud.com/x-lympprcqrveoixtt)
2021-04-24 21:20:15 +0000nemesit|znc(~nemesit@2a01:488:66:1000:2ea3:4eeb:0:1)
2021-04-24 21:20:15 +0000rawles(~r@unaffiliated/rawles)
2021-04-24 21:20:15 +0000lemald(~eddie@capybara.lemald.org)
2021-04-24 21:20:15 +0000nlofaro(sid258233@gateway/web/irccloud.com/x-zceopsfcsjrtpvjo)
2021-04-24 21:20:15 +0000jameekim1(~jameekim@mx.nodaplife.me)
2021-04-24 21:20:15 +0000oldsk00l(~znc@ec2-18-130-254-135.eu-west-2.compute.amazonaws.com)
2021-04-24 21:20:15 +0000towel(~towel@unaffiliated/towel)
2021-04-24 21:20:15 +0000mflux(flux@coffee.modeemi.fi)
2021-04-24 21:20:15 +0000spoonm(~spoonm@tokyo.spoonm.org)
2021-04-24 21:20:15 +0000anandprabhu-M(anandprabh@gateway/shell/kde/matrix/x-bzzbuurppcsxzllt)
2021-04-24 21:20:15 +0000fgaz(fgazmatrix@gateway/shell/matrix.org/x-cxxxnfuxyrjazthh)
2021-04-24 21:20:15 +0000PotatoHatsue(berbermanp@gateway/shell/matrix.org/x-nvqlvyzjmcadpsda)
2021-04-24 21:20:15 +0000lambdaclan(lambdaclan@gateway/shell/matrix.org/x-amguadwuvvlssavp)
2021-04-24 21:20:15 +0000rednaZ[m](r3dnazmatr@gateway/shell/matrix.org/x-dhpmvcgpmsxtqfgs)
2021-04-24 21:20:15 +0000mrus[m](mrusmatrix@gateway/shell/matrix.org/x-uxnzjhojjgavftjp)
2021-04-24 21:20:15 +0000maerwald[m](maerwaldma@gateway/shell/matrix.org/x-xrjtspmgpqnkebab)
2021-04-24 21:20:15 +0000adziahel[m](adziahelma@gateway/shell/matrix.org/x-cyhjmrgvstvbsvar)
2021-04-24 21:20:15 +0000toasty_avocado[m(toastyavoc@gateway/shell/matrix.org/x-suvnnltfbgmbcmqp)
2021-04-24 21:20:15 +0000jeffcasavant[m](jeffcasava@gateway/shell/matrix.org/x-xswajewqaoguxzda)
2021-04-24 21:20:15 +0000stevekrouse1[m](stevekrous@gateway/shell/matrix.org/x-vkuwqhpopicdwkjn)
2021-04-24 21:20:15 +0000alar[m](alarmxalat@gateway/shell/matrix.org/x-rxfmpjgktvgasqzm)
2021-04-24 21:20:15 +0000anon1891[m](anon1891ma@gateway/shell/matrix.org/x-luqmyjielnldrpsd)
2021-04-24 21:20:15 +0000madjestic[m](madjesticm@gateway/shell/matrix.org/x-ktewxaguqqmdajwc)
2021-04-24 21:20:15 +0000maralorn(maralornma@gateway/shell/matrix.org/x-effbgvlwiyjkbspr)
2021-04-24 21:20:15 +0000cybai(~cybai@2400:4050:3122:900:f13a:fdb8:499e:2b92)
2021-04-24 21:20:15 +0000alanz(sid110616@gateway/web/irccloud.com/x-wrkjabizodqmlyrt)
2021-04-24 21:20:15 +0000tabaqui(~tabaqui@2604:a880:800:c1::21b:3001)
2021-04-24 21:20:15 +0000lemmih(~lemmih@2406:3003:2072:44:b750:bcd2:3182:6116)
2021-04-24 21:20:15 +0000berberman(~berberman@unaffiliated/berberman)
2021-04-24 21:20:15 +0000Guillaum(guiboumatr@gateway/shell/matrix.org/x-rnvdqawoouwzijnb)
2021-04-24 21:20:15 +0000mith[m](mithmatrix@gateway/shell/matrix.org/x-lrdejlaijmmvhxim)
2021-04-24 21:20:15 +0000abrar(~abrar@static-108-30-103-121.nycmny.fios.verizon.net)
2021-04-24 21:20:15 +0000reda(~niemand@unaffiliated/reda)
2021-04-24 21:20:15 +0000samebchase(~samebchas@51.15.68.182)
2021-04-24 21:20:15 +0000xhlr(~xhlr@static.144.156.216.95.clients.your-server.de)
2021-04-24 21:20:15 +0000dustinm(~dustinm@static.38.6.217.95.clients.your-server.de)
2021-04-24 21:20:15 +0000adamCS(~adamCS@ec2-34-207-160-255.compute-1.amazonaws.com)
2021-04-24 21:20:15 +0000mrus(~mrus@149.28.61.155)
2021-04-24 21:20:15 +0000tilaiti(~tilaiti@static.144.156.216.95.clients.your-server.de)
2021-04-24 21:20:15 +0000caubert(~caubert@136.244.111.235)
2021-04-24 21:20:15 +0000energizer(~energizer@unaffiliated/energizer)
2021-04-24 21:20:15 +0000shapr(~shapr@haskell/developer/shapr)
2021-04-24 21:20:15 +0000icebreak1r(michalc@freeshell.de)
2021-04-24 21:20:15 +0000mceier(~mceier@89-68-132-187.dynamic.chello.pl)
2021-04-24 21:20:15 +0000arianvp(~weechat@arianvp.me)
2021-04-24 21:20:15 +0000Majoo(~Majiir@pool-96-237-149-35.bstnma.fios.verizon.net)
2021-04-24 21:20:15 +0000rkrishnan_(~rkrishnan@rkrishnan.org)
2021-04-24 21:20:15 +0000Philonous(~Philonous@unaffiliated/philonous)
2021-04-24 21:20:15 +0000Jon(~jon@redmars.org)
2021-04-24 21:20:15 +0000turq(~electro@unaffiliated/turq)
2021-04-24 21:20:15 +0000Mzg(Mzg@s1.ct8.pl)
2021-04-24 21:20:15 +0000Graypup_(Graypup@lfcode.ca)
2021-04-24 21:20:15 +0000tureba(~tureba@tureba.org)
2021-04-24 21:20:15 +0000vent(~vent@185.62.190.213)
2021-04-24 21:20:15 +0000turnA7(~turnA@103.120.19.44)
2021-04-24 21:20:15 +0000comboy(~quassel@tesuji.pl)
2021-04-24 21:20:15 +0000irclogger_com(~irclogger@li659-42.members.linode.com)
2021-04-24 21:20:15 +0000ammar2(admin@i.diddled.with.the.opers.so.they.klined.me)
2021-04-24 21:20:15 +0000Twey(~twey@unaffiliated/twey)
2021-04-24 21:20:15 +0000opqdonut(opqdonut@pseudo.fixme.fi)
2021-04-24 21:20:15 +0000noctux``(1KWNv9FtDb@unaffiliated/noctux)
2021-04-24 21:20:15 +0000madnight(~madnight@static.59.103.201.195.clients.your-server.de)
2021-04-24 21:20:15 +0000Ankhers(~Ankhers@unaffiliated/ankhers)
2021-04-24 21:20:15 +0000rprospero(~adam@186.75.232.35.bc.googleusercontent.com)
2021-04-24 21:20:15 +0000Jonno_FTW(~come@api.carswap.me)
2021-04-24 21:20:15 +0000kaol(~kaol@178.62.241.234)
2021-04-24 21:20:15 +0000electrocat(~michiel@revan.derhaeg.be)
2021-04-24 21:20:15 +0000aforemny(~aforemny@static.248.158.34.188.clients.your-server.de)
2021-04-24 21:20:15 +0000tv-(~tv@unaffiliated/tv-)
2021-04-24 21:20:15 +0000bonz060(~quassel@2001:bc8:47a4:a23::1)
2021-04-24 21:20:15 +0000tiru(tiru@gateway/web/irccloud.com/x-mnvdiojttnfqdzkx)
2021-04-24 21:20:15 +0000noan(~noan@2604:a880:400:d0::12fc:5001)
2021-04-24 21:20:15 +0000kawzeg(unknown@2a01:7e01::f03c:92ff:fee2:ec34)
2021-04-24 21:20:15 +0000nf(~n@monade.li)
2021-04-24 21:20:15 +0000fl0_id(~fl0_id@2a01:4f8:171:4de::40:2)
2021-04-24 21:20:15 +0000ixian(~mgold@terra.bitplane.org)
2021-04-24 21:20:15 +0000gaze__(sid387101@gateway/web/irccloud.com/x-jyfzdgulluqjzdzf)
2021-04-24 21:20:15 +0000glowcoil(sid3405@gateway/web/irccloud.com/x-kqfefvcmbgehneab)
2021-04-24 21:20:15 +0000taktoa[c](sid282096@gateway/web/irccloud.com/x-njxvjnpthhvfgqfo)
2021-04-24 21:20:15 +0000srhb(sid400352@NixOS/user/srhb)
2021-04-24 21:20:15 +0000gregberns_(sid315709@gateway/web/irccloud.com/x-skjetjsgahxqvatt)
2021-04-24 21:20:15 +0000tjbp(~tom@2001:19f0:7400:8d4c:5400:2ff:fe2c:5662)
2021-04-24 21:20:15 +0000vjoki(vjoki@2a00:d880:3:1::fea1:9ae)
2021-04-24 21:20:15 +0000kaychaks(sid236345@gateway/web/irccloud.com/x-vvdrivxruwhittji)
2021-04-24 21:20:15 +0000SegFaultAX(SegFaultAX@unaffiliated/segfaultax)
2021-04-24 21:20:15 +0000weechat_4(~mingc@2400:8902::f03c:91ff:feb7:8e82)
2021-04-24 21:20:15 +0000hongminhee(sid31517@gateway/web/irccloud.com/x-trpfnifbgxghvffk)
2021-04-24 21:20:15 +0000m-renaud(sid333785@gateway/web/irccloud.com/x-mchkmhpqmiujvtxp)
2021-04-24 21:20:15 +0000cocreature(~cocreatur@eirene.uberspace.de)
2021-04-24 21:20:15 +0000ggVGc(~ggVGc@2400:8901::f03c:91ff:fef2:bed8)
2021-04-24 21:20:15 +0000PHO(~pho@akari.cielonegro.org)
2021-04-24 21:20:15 +0000lieven(~mal@unaffiliated/lieven)
2021-04-24 21:20:15 +0000riatre(~quassel@2001:310:6000:f::5198:1)
2021-04-24 21:20:15 +0000Zemyla(~zemyla@ec2-54-196-11-2.compute-1.amazonaws.com)
2021-04-24 21:20:15 +0000davl(~davl@207.154.228.18)
2021-04-24 21:20:15 +0000reactormonk1(~reactormo@mehl.schokokeks.org)
2021-04-24 21:20:15 +0000fiddlerwoaroof(~fiddlerwo@unaffiliated/fiddlerwoaroof)
2021-04-24 21:20:15 +0000c_wraith(~c_wraith@adjoint.us)
2021-04-24 21:20:16 +0000Cthalupa(~cthulhu@47.186.47.75)
2021-04-24 21:20:16 +0000lukelau_(~lukelau@2a03:b0c0:1:d0::1bc:b001)
2021-04-24 21:20:16 +0000EvanR(~evan@unaffiliated/evanr)
2021-04-24 21:20:16 +0000acowley(~acowley@c-68-83-22-43.hsd1.nj.comcast.net)
2021-04-24 21:20:16 +0000copypasteque(~copypaste@2001:41d0:8:b325::1)
2021-04-24 21:20:16 +0000ManiacTwister(~Twister@claudia.s7t.de)
2021-04-24 21:20:16 +0000yorick(~yorick@oftn/oswg-member/yorick)
2021-04-24 21:20:16 +0000mht(~mht@2a03:b0c0:3:e0::1e2:c001)
2021-04-24 21:20:16 +0000tnks(sid412124@gateway/web/irccloud.com/x-imptgchkzowofvdx)
2021-04-24 21:20:16 +0000jlpeters(sid25606@gateway/web/irccloud.com/x-dbifrnxtcwhelvgl)
2021-04-24 21:20:16 +0000bbhoss(sid18216@gateway/web/irccloud.com/x-tshhrdxhsikqotro)
2021-04-24 21:20:16 +0000rotaerk(rotaerk@2600:3c02::f03c:91ff:fe70:4a45)
2021-04-24 21:20:16 +0000TimWolla(~timwolla@2a01:4f8:150:6153:beef::6667)
2021-04-24 21:20:16 +0000rlsph(~mads@2a03:b0c0:2:f0::324:5001)
2021-04-24 21:20:16 +0000suzu(~scaleuser@2001:bc8:1824:43f::1)
2021-04-24 21:20:16 +0000LittleFox(~littlefox@2a03:4000:13:34f::2)
2021-04-24 21:20:16 +0000jackdk(sid373013@gateway/web/irccloud.com/x-uqhqekzhmwwtnnpj)
2021-04-24 21:20:16 +0000t36s(~t36s@2a03:b0c0:3:d0::1c23:5001)
2021-04-24 21:20:16 +0000johnstein(~johnstein@192.73.239.18)
2021-04-24 21:20:16 +0000Guest97066(~tristan@luna.whatbox.ca)
2021-04-24 21:20:16 +0000blackriversoftwa(sid364914@gateway/web/irccloud.com/x-nqkjcymscowwdvxo)
2021-04-24 21:20:16 +0000melkor(~melkor@2a02:2b88:2:1::5b34:1)
2021-04-24 21:20:16 +0000DigitalKiwi(~kiwi@unaffiliated/digitalkiwi)
2021-04-24 21:20:16 +0000dexterfoo(dexter@2a01:7e00::f03c:91ff:fe86:59ec)
2021-04-24 21:20:16 +0000fiQ-(~fiQ@2a06:82c2:0:12bc::1)
2021-04-24 21:20:16 +0000noecho-(~noecho@2a01:4f8:1c0c:80ee::4223)
2021-04-24 21:20:16 +0000jokester(~mono@unaffiliated/jokester)
2021-04-24 21:20:16 +0000raid(macbookpro@irc-1.coding4.coffee)
2021-04-24 21:20:16 +0000uwap_(~uwap@mail.uwap.name)
2021-04-24 21:20:16 +0000edwtjo(~edwtjo@fsf/member/edwtjo)
2021-04-24 21:20:16 +0000sudden(~lax@unaffiliated/laxask)
2021-04-24 21:20:16 +0000beka(~beka@gothdyke.mom)
2021-04-24 21:20:16 +0000lambdabot(~lambdabot@haskell/bot/lambdabot)
2021-04-24 21:20:16 +0000grrandi(mlp@kapsi.fi)
2021-04-24 21:20:16 +0000eldritch(~eldritch@unaffiliated/eldritch)
2021-04-24 21:20:16 +0000avp(~avp@unaffiliated/avp)
2021-04-24 21:20:16 +0000runawayfive(~nope@unaffiliated/runawayfive)
2021-04-24 21:20:16 +0000Dykam(Dykam@dykam.nl)
2021-04-24 21:20:16 +0000canta(~canta@cvm0.d5k.one)
2021-04-24 21:20:16 +0000kjak(~kjak@pool-108-45-56-21.washdc.fios.verizon.net)
2021-04-24 21:20:16 +0000yushyin(QWFouZJprr@karif.server-speed.net)
2021-04-24 21:20:16 +0000orzo(joe@lasker.childrenofmay.org)
2021-04-24 21:20:16 +0000terrorjack(~terrorjac@ec2-54-95-39-30.ap-northeast-1.compute.amazonaws.com)
2021-04-24 21:20:16 +0000quintasan(~quassel@ubuntu/member/quintasan)
2021-04-24 21:20:16 +0000lyxia(~lyxia@poisson.chat)
2021-04-24 21:20:16 +0000sssb54(~ssssb56@vps-b2931db6.vps.ovh.ca)
2021-04-24 21:20:16 +0000coddinkn(~coddinkn@octayn.net)
2021-04-24 21:20:16 +0000Sparadox(~etienne@ns3123347.ip-51-68-152.eu)
2021-04-24 21:20:16 +0000bobbytables(~bobbytabl@ec2-44-224-191-138.us-west-2.compute.amazonaws.com)
2021-04-24 21:20:16 +0000hrdl(~ef24a0e6@unaffiliated/hrdl)
2021-04-24 21:20:16 +0000pharaun(~pharaun@static.88-198-62-245.clients.your-server.de)
2021-04-24 21:20:16 +0000[exa](exa@unaffiliated/exa/x-5381537)
2021-04-24 21:20:16 +0000hwabyong(~hwabyong@ec2-3-221-194-167.compute-1.amazonaws.com)
2021-04-24 21:20:16 +0000zceejkr(~wintermut@cpe-92-37-88-51.dynamic.amis.net)
2021-04-24 21:20:16 +0000interruptinuse(~interrupt@girl.mrtheplague.net)
2021-04-24 21:20:16 +0000hackage(mniip@haskell/bot/hackage)
2021-04-24 21:20:16 +0000fre(~freusque@104.238.190.229)
2021-04-24 21:20:16 +0000absence(torgeihe@hildring.pvv.ntnu.no)
2021-04-24 21:20:16 +0000xe4(~xe4@unaffiliated/xe4)
2021-04-24 21:20:16 +0000c-rog(~c-rog@traffic.simst.im)
2021-04-24 21:20:16 +0000krjt(~krjst@2604:a880:800:c1::16b:8001)
2021-04-24 21:20:16 +0000adamse(sid72084@gateway/web/irccloud.com/x-pqgjxyvnyjkpejpe)
2021-04-24 21:20:16 +0000whez(sid470288@gateway/web/irccloud.com/x-vlnxuepdpthnqbhd)
2021-04-24 21:20:16 +0000dysfigured(dysfigured@2600:3c00::f03c:92ff:feb4:be75)
2021-04-24 21:20:16 +0000parseval(sid239098@gateway/web/irccloud.com/x-mgyjqkcnbnnprosw)
2021-04-24 21:20:16 +0000MasseR(~MasseR@51.15.143.128)
2021-04-24 21:20:16 +0000atomi(~atomi@3.184.203.35.bc.googleusercontent.com)
2021-04-24 21:20:16 +0000entropygain(levitate@unaffiliated/entropygain)
2021-04-24 21:20:16 +0000aldum(~vishera@aldum.pw)
2021-04-24 21:20:16 +0000madog(~madog@163.ip-51-254-203.eu)
2021-04-24 21:20:16 +0000Rembane(~Rembane@li346-36.members.linode.com)
2021-04-24 21:20:16 +0000magog(~wee@unaffiliated/magog)
2021-04-24 21:20:16 +0000komasa(~komasa@2a03:b0c0:3:d0::2097:6001)
2021-04-24 21:20:16 +0000enikar(~enikar@2001:41d0:2:8673::42)
2021-04-24 21:20:16 +0000dale(dale@unaffiliated/dale)
2021-04-24 21:20:16 +0000shadowdaemon(~user@unaffiliated/shadowdaemon)
2021-04-24 21:20:16 +0000ajmcmiddlin(sid284402@gateway/web/irccloud.com/x-haiyfskefbbtaisd)
2021-04-24 21:20:16 +0000grfn(sid449115@gateway/web/irccloud.com/x-bdqnujcrokkpscfq)
2021-04-24 21:20:16 +0000saidinwot1(~saidinwot@2604:a880:2:d0::50:8001)
2021-04-24 21:20:16 +0000chessai(sid225296@gateway/web/irccloud.com/x-byrazhpexotqswfh)
2021-04-24 21:20:16 +0000FMJz_____(sid279245@gateway/web/irccloud.com/x-gdvcqgmmbdaqujfv)
2021-04-24 21:20:16 +0000xnyhps(~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288)
2021-04-24 21:20:16 +0000chrpape(~user@2a01:4f9:c010:632d::1)
2021-04-24 21:20:16 +0000idupree(~quassel@2604:a880:400:d0::9bb:2001)
2021-04-24 21:20:16 +0000lightandlight(sid135476@gateway/web/irccloud.com/x-gwfowomroynsvzco)
2021-04-24 21:20:16 +0000Orbstheorem(~roosember@hellendaal.orbstheorem.ch)
2021-04-24 21:20:16 +0000bsima(~bsima@simatime.com)
2021-04-24 21:20:16 +0000zgrep(~zgrep@ircpuzzles/2015/april-fools/sixth/zgrep)
2021-04-24 21:20:16 +0000ski(~ski@ed-3358-10.studat.chalmers.se)
2021-04-24 21:20:16 +0000bspar(~bspar@2604:a880:0:1010::776:e001)
2021-04-24 21:20:16 +0000debugloop(~danieln@unaffiliated/debugloop)
2021-04-24 21:20:16 +0000sphalerite(~sphalerit@NixOS/user/lheckemann)
2021-04-24 21:20:16 +0000mstruebing(~mstruebin@2001:41d0:8:93c7::1)
2021-04-24 21:20:16 +0000oats(~hurr@durr/im/a/sheep)
2021-04-24 21:20:16 +0000martin02(silas@hund.fs.lmu.de)
2021-04-24 21:20:16 +0000zzz(~zzz@2a03:b0c0:3:d0::3095:3001)
2021-04-24 21:20:16 +0000fredcy(fredcy@2600:3c00::f03c:91ff:feae:15ae)
2021-04-24 21:20:16 +0000Bigcheese(~quassel@unaffiliated/bigcheese)
2021-04-24 21:20:16 +0000xacktm(xacktm@gateway/shell/panicbnc/x-cckreqhvgmeuulfv)
2021-04-24 21:20:16 +0000integral(sid296274@p3m/member/integral)
2021-04-24 21:20:16 +0000hendi(sid489601@gateway/web/irccloud.com/x-tofwispyijhkkmkf)
2021-04-24 21:20:16 +0000sis7_(~user@2001:15e8:110:473e::1)
2021-04-24 21:20:16 +0000operand(~operand@is.altijd.moe)
2021-04-24 21:20:16 +0000vqrs(~vqrs@learnprogramming/regular/vqrs)
2021-04-24 21:20:16 +0000bjobjo(~bjobjo@2a01:79c:cebf:d688::9e6)
2021-04-24 21:20:16 +0000Ferdirand(~max@2001:4c78:2012:5000::2)
2021-04-24 21:20:16 +0000a3f(~a3f@chimeria.ext.pengutronix.de)
2021-04-24 21:20:16 +0000billstclair(sid77830@gateway/web/irccloud.com/x-ouhlhzompordlszs)
2021-04-24 21:20:16 +0000ego_(~ego@2604:a880:800:a1::1b:b001)
2021-04-24 21:20:16 +0000agrif(~agrif@overviewer/dev/agrif)
2021-04-24 21:20:16 +0000cynick(~worm@ec2-52-206-86-1.compute-1.amazonaws.com)
2021-04-24 21:20:16 +0000brettgilio(~brettgili@brettgilio.com)
2021-04-24 21:20:16 +0000mniip(mniip@freenode/staff/mniip)
2021-04-24 21:20:16 +0000msgctl(~msgctl@ometochtli.centzontotochtin.org)
2021-04-24 21:20:16 +0000Squarism(~someone@unaffiliated/squarism)
2021-04-24 21:20:16 +0000djanatyn(~djanatyn@vps-7f49a6b0.vps.ovh.ca)
2021-04-24 21:20:16 +0000jtcs_(~jtcs@vmi359854.contaboserver.net)
2021-04-24 21:20:16 +0000styledash(~styledash@157.230.173.136)
2021-04-24 21:20:16 +0000mjrosenb(~mrosenbe@nyc.schrodinger.com)
2021-04-24 21:20:16 +0000arw(~arw@impulse.informatik.uni-erlangen.de)
2021-04-24 21:20:16 +0000mjacob(~mjacob@unaffiliated/mjacob)
2021-04-24 21:20:16 +0000xerox_(~xerox@unaffiliated/xerox)
2021-04-24 21:20:16 +0000ashnur(~rak@unaffiliated/ashnur)
2021-04-24 21:20:16 +0000Cathy(~Cathy@unaffiliated/cathy)
2021-04-24 21:20:16 +0000mmaruseacph2(~mihai@198.199.100.72)
2021-04-24 21:20:16 +0000ft(~ft@shell.chaostreff-dortmund.de)
2021-04-24 21:20:16 +0000sshine(~simon@hubris.eta.solutions)
2021-04-24 21:20:16 +0000chrisosaurus(chris@segfault.net.nz)
2021-04-24 21:20:16 +0000noctux(~noctux@unaffiliated/noctux)
2021-04-24 21:20:16 +0000PlasmaStar(plasma@unaffiliated/plasmastar)
2021-04-24 21:20:16 +0000joel135(sid136450@gateway/web/irccloud.com/x-ucqckdoiizhcvkmw)
2021-04-24 21:20:16 +0000xintron(~xintron@unaffiliated/xintron)
2021-04-24 21:20:16 +0000andi-(~andi-@NixOS/user/andi-)
2021-04-24 21:20:16 +0000hugo(znc@verdigris.lysator.liu.se)
2021-04-24 21:20:16 +0000ArsenArsen(~arsen@managarm/dev/ArsenArsen)
2021-04-24 21:20:16 +0000recon_-(~quassel@2602:febc:0:b6::6ca2)
2021-04-24 21:20:16 +0000NemesisD(sid24071@gateway/web/irccloud.com/x-jbscorkbghkikoec)
2021-04-24 21:20:16 +0000cstrahan(sid36118@gateway/web/irccloud.com/x-hhcxapzgwlqibukd)
2021-04-24 21:20:16 +0000bjs(sid190364@gateway/web/irccloud.com/x-rysacrenfdxsmjyu)
2021-04-24 21:20:16 +0000Nascha(sid212230@gateway/web/irccloud.com/x-dvgxunvqabbbhujn)
2021-04-24 21:20:16 +0000SanchayanMaity(sid478177@gateway/web/irccloud.com/x-ldcvmlbmuzzjfwoa)
2021-04-24 21:20:16 +0000feepo(sid28508@gateway/web/irccloud.com/x-cjsxflpucqedrqas)
2021-04-24 21:20:16 +0000teej(uid154177@gateway/web/irccloud.com/x-aqljzrvlwnvlpfor)
2021-04-24 21:20:16 +0000supersven[m](supersvenm@gateway/shell/matrix.org/x-vtyvtzkqhlabrowo)
2021-04-24 21:20:16 +0000joe[m]1(joemonoida@gateway/shell/matrix.org/x-dyuqcnyqoeqswuzr)
2021-04-24 21:20:16 +0000johnnyv[m](badwolf256@gateway/shell/matrix.org/x-yxpkxdztlttkpjgg)
2021-04-24 21:20:16 +0000Ericson2314(ericson231@gateway/shell/matrix.org/x-ksbmrykeuszgsyik)
2021-04-24 21:20:16 +0000domenkozar[m](domenkozar@NixOS/user/domenkozar)
2021-04-24 21:20:16 +0000themsay[m](themsaymat@gateway/shell/matrix.org/x-hpjgawiyzuenumyt)
2021-04-24 21:20:16 +0000samthecoy[m](samthecoym@gateway/shell/matrix.org/x-qaqujubkonygneyt)
2021-04-24 21:20:16 +0000loyon(loyonmatri@gateway/shell/matrix.org/x-wopkgivyetfmwccv)
2021-04-24 21:20:16 +0000cheers(user@unaffiliated/cheers)
2021-04-24 21:20:16 +0000stampirl(~stampirl@195-154-112-77.rev.poneytelecom.eu)
2021-04-24 21:20:16 +0000epta(~m@nuda.space)
2021-04-24 21:20:16 +0000Adluc(~Adluc@83.167.228.130)
2021-04-24 21:20:16 +0000hpc(~juzz@ip98-169-35-13.dc.dc.cox.net)
2021-04-24 21:20:16 +0000AWizzArd(~code@unaffiliated/awizzard)
2021-04-24 21:20:16 +0000outerpassage(~outerpass@li1196-30.members.linode.com)
2021-04-24 21:20:16 +0000anderson(~ande@159.65.95.130)
2021-04-24 21:20:16 +0000PatrickRobotham_(sid18270@gateway/web/irccloud.com/x-dsytamzyvqvdenoe)
2021-04-24 21:20:16 +0000scav(sid309693@gateway/web/irccloud.com/x-zpwaikoxdaqjtkjd)
2021-04-24 21:20:16 +0000amatecha____(sid10006@gateway/web/irccloud.com/x-gvwvasnyguqtijeo)
2021-04-24 21:20:16 +0000pnotequalnp[m](pnotequaln@gateway/shell/matrix.org/x-ilonrmhzsbjadrsm)
2021-04-24 21:20:16 +0000mly(mlydisenco@gateway/shell/matrix.org/x-hffzasvjgrikcwzr)
2021-04-24 21:20:16 +0000SolarAquarion(SolarAquar@gateway/shell/panicbnc/x-sxxrzckrtiulpjwg)
2021-04-24 21:20:16 +0000Klumben(Nsaiswatch@gateway/shell/panicbnc/x-igfvivsmqpanwyqa)
2021-04-24 21:20:16 +0000quaestor(~quaestor@griffith.christophrauch.de)
2021-04-24 21:20:16 +0000jathan(~jathan@69.61.93.38)
2021-04-24 21:20:16 +0000jules_(~jules@ip201.ip-135-125-227.eu)
2021-04-24 21:20:16 +0000Benzi-Junior(~BenziJuni@dsl-149-64-251.hive.is)
2021-04-24 21:20:16 +0000rom1504(rom1504@rom1504.fr)
2021-04-24 21:20:16 +0000pierrot(~pi@unaffiliated/pierrot)
2021-04-24 21:20:16 +0000infinisil(~infinisil@NixOS/user/infinisil)
2021-04-24 21:20:16 +0000DustyDingo(~nonamen@v2202001112302107134.ultrasrv.de)
2021-04-24 21:20:16 +0000noexcept(~noexcept@2a03:b0c0:3:d0::33:9001)
2021-04-24 21:20:16 +0000mupf(~micha@v22017094964653601.ultrasrv.de)
2021-04-24 21:20:16 +0000mpickering(sid78412@gateway/web/irccloud.com/x-uuuhuurfuxahsslu)
2021-04-24 21:20:16 +0000Tritlo(sid58727@gateway/web/irccloud.com/x-aozswbintmywimnv)
2021-04-24 21:20:16 +0000hamishmack(sid389057@gateway/web/irccloud.com/x-pnmcssvibehjvusv)
2021-04-24 21:20:16 +0000dsturnbull(sid347899@gateway/web/irccloud.com/x-rwwelyrmjwhraekh)
2021-04-24 21:20:16 +0000gluegadget(sid22336@gateway/web/irccloud.com/x-yvyuuucqiikbdiwr)
2021-04-24 21:20:16 +0000proteusguy(~proteusgu@cm-58-10-209-239.revip7.asianet.co.th)
2021-04-24 21:20:16 +0000matijja(~matijja@193.77.181.208)
2021-04-24 21:20:16 +0000kilolympus(~kilolympu@5.151.5.180)
2021-04-24 21:20:16 +0000zyeri(zyeri@tilde.team/users/zyeri)
2021-04-24 21:20:16 +0000i7c(Rmit7A5pyb@unaffiliated/i7c)
2021-04-24 21:20:16 +0000bwe(~bwe@unaffiliated/bwe)
2021-04-24 21:20:16 +0000sim642(~simmo@unaffiliated/sim642)
2021-04-24 21:20:16 +0000dumptruckman(~dumptruck@li1287-148.members.linode.com)
2021-04-24 21:20:16 +0000lewky(~lewky@159.65.37.240)
2021-04-24 21:20:16 +0000Raito_Bezarius(~Raito@unaffiliated/raito-bezarius/x-8764578)
2021-04-24 21:20:16 +0000l8star__(~l8star@business-90-187-113-149.pool2.vodafone-ip.de)
2021-04-24 21:20:16 +0000puffnfresh1(~puffnfres@119-17-138-164.77118a.mel.static.aussiebb.net)
2021-04-24 21:20:16 +0000monochrom(trebla@216.138.220.146)
2021-04-24 21:20:16 +0000tinwood(~tinwood@general.default.akavanagh.uk0.bigv.io)
2021-04-24 21:20:16 +0000rdd(~rdd@c-407ce255.012-81-73746f39.cust.ownit.se)
2021-04-24 21:20:16 +0000Ranhir(~Ranhir@157.97.53.139)
2021-04-24 21:20:16 +0000byorgey(~byorgey@155.138.238.211)
2021-04-24 21:20:16 +0000concept2(~concept2@unaffiliated/tubo)
2021-04-24 21:20:16 +0000wrunt(~ajc@vmx14030.hosting24.com.au)
2021-04-24 21:20:16 +0000fryguybob(~fryguybob@cpe-74-65-31-113.rochester.res.rr.com)
2021-04-24 21:20:16 +0000NieDzejkob(~quassel@195.149.98.3)
2021-04-24 21:20:16 +0000vnz(~vnz@unaffiliated/vnz)
2021-04-24 21:20:16 +0000coeus(~coeus@p200300d0274dc6000de71f4ee41c5fb3.dip0.t-ipconnect.de)
2021-04-24 21:20:16 +0000cyphase(~cyphase@unaffiliated/cyphase)
2021-04-24 21:20:16 +0000stefan-_(~cri@42dots.de)
2021-04-24 21:20:16 +0000hiredman(~hiredman@138.68.1.198)
2021-04-24 21:20:16 +0000jcarpenter2(~rofl@96.78.87.197)
2021-04-24 21:20:16 +0000SquidDev(~SquidDev@autoclave.squiddev.cc)
2021-04-24 21:20:16 +0000ridcully(~ridcully@pd951f269.dip0.t-ipconnect.de)
2021-04-24 21:20:16 +0000mat[m]1(matmatrixo@gateway/shell/matrix.org/x-uwjgvmzxszuovuwu)
2021-04-24 21:20:16 +0000sepples_(~sepples@sepples.xyz)
2021-04-24 21:20:16 +0000hrnz(~hrnz@unaffiliated/hrnz)
2021-04-24 21:20:16 +0000jamestmartin(james@jtmar.me)
2021-04-24 21:20:16 +0000jluttine(~jluttine@85-23-66-6.bb.dnainternet.fi)
2021-04-24 21:20:16 +0000EmanuelLoos[m](emanuel-lo@gateway/shell/matrix.org/x-xedchorwdbepbzbx)
2021-04-24 21:20:16 +0000dcoutts_(~dcoutts@unaffiliated/dcoutts)
2021-04-24 21:20:16 +0000atk(~Arch-TK@ircpuzzles/staff/Arch-TK)
2021-04-24 21:20:16 +0000MrMobius(~MrMobius@208.58.206.154)
2021-04-24 21:20:16 +0000p3n(~p3n@217.198.124.246)
2021-04-24 21:20:16 +0000acarrico(~acarrico@dhcp-68-142-39-249.greenmountainaccess.net)
2021-04-24 21:20:16 +0000Techcable(~Techcable@168.235.93.147)
2021-04-24 21:20:16 +0000Geekingfrog(~geekingfr@li2156-64.members.linode.com)
2021-04-24 21:20:16 +0000trevorriles(sid469656@gateway/web/irccloud.com/x-xdsdtxtxrbrxnitq)
2021-04-24 21:20:16 +0000alinab(sid468903@gateway/web/irccloud.com/x-kxduedlnkmrjymym)
2021-04-24 21:20:16 +0000mudri(sid317655@gateway/web/irccloud.com/x-tkftihyrhfadzkvn)
2021-04-24 21:20:16 +0000newhoggy(sid198874@gateway/web/irccloud.com/x-odbcefoglogukgog)
2021-04-24 21:20:16 +0000iphy(sid67735@gateway/web/irccloud.com/x-svcckheboicsfdfm)
2021-04-24 21:20:16 +0000rodlogic__(sid214676@gateway/web/irccloud.com/x-jsfobhdzpplfsdpe)
2021-04-24 21:20:16 +0000enemeth79(sid309041@gateway/web/irccloud.com/x-vaiujncapfeaexzk)
2021-04-24 21:20:16 +0000Adeon(sid418992@gateway/web/irccloud.com/x-gymdfseqxtsglqmg)
2021-04-24 21:20:16 +0000heyj(sid171370@gateway/web/irccloud.com/x-wookyduvyhmgjxsv)
2021-04-24 21:20:16 +0000wildsebastian(sid324688@gateway/web/irccloud.com/x-huuoejtmpgsbomho)
2021-04-24 21:20:16 +0000conjunctive(sid433686@gateway/web/irccloud.com/x-veifezvsdidztgvo)
2021-04-24 21:20:16 +0000drupol(sid117588@gateway/web/irccloud.com/x-gsnwinbjioyhnadu)
2021-04-24 21:20:16 +0000carter(sid14827@gateway/web/irccloud.com/x-velgelprbzzboucb)
2021-04-24 21:20:16 +0000entel(uid256215@botters/entel)
2021-04-24 21:20:16 +0000yogani(sid42623@gateway/web/irccloud.com/x-diwllcjriwggxbhg)
2021-04-24 21:20:16 +0000mcfilib(sid302703@gateway/web/irccloud.com/x-qgurzruyjowxqkfb)
2021-04-24 21:20:16 +0000moobar(sid171730@gateway/web/irccloud.com/x-mfdnwzlgpjfftngj)
2021-04-24 21:20:16 +0000simony(sid226116@gateway/web/irccloud.com/x-uimvkkhkkjmffmgk)
2021-04-24 21:20:16 +0000jonrh(sid5185@gateway/web/irccloud.com/x-wzkchmmanupyucfa)
2021-04-24 21:20:16 +0000verlet64_(sid261276@gateway/web/irccloud.com/x-pbadcyendmqwahig)
2021-04-24 21:20:16 +0000affinespaces(sid327561@gateway/web/irccloud.com/x-zprmbywljksowyax)
2021-04-24 21:20:16 +0000kini(~kini@unaffiliated/kini)
2021-04-24 21:20:16 +0000thaumavorio(~thaumavor@thaumavor.io)
2021-04-24 21:20:16 +0000ystael(~ystael@209.6.50.55)
2021-04-24 21:20:16 +0000yaroot(~yaroot@138.102.13.160.dy.iij4u.or.jp)
2021-04-24 21:20:16 +0000_bin_(~bin@2600:1700:10a1:38d0:219a:3dd:429e:7909)
2021-04-24 21:20:16 +0000Lurkki[m](lurkkifene@gateway/shell/matrix.org/x-nrwgmnbvosqqhpnr)
2021-04-24 21:20:16 +0000jo[m]3(josefmat1@gateway/shell/matrix.org/x-qfhlavfxfkadmzvi)
2021-04-24 21:20:16 +0000piele(~piele@tbonesteak.creativeserver.net)
2021-04-24 21:20:16 +0000edwardk(sid47016@haskell/developer/edwardk)
2021-04-24 21:20:16 +0000tapas(sid467876@gateway/web/irccloud.com/x-bsjadohtpruxmywx)
2021-04-24 21:20:16 +0000exarkun(~exarkun@14.79.69.34.bc.googleusercontent.com)
2021-04-24 21:20:16 +0000jackhill(~jackhill@marsh.hcoop.net)
2021-04-24 21:20:16 +0000nshepperd(nshepperd@2600:3c03::f03c:92ff:fe28:92c9)
2021-04-24 21:20:16 +0000nh2(sid309956@gateway/web/irccloud.com/x-sfwmjcpeywrfgggs)
2021-04-24 21:20:16 +0000dave_uy(~david@108.61.193.26)
2021-04-24 21:20:16 +0000stylewarning(stylewarni@gateway/web/irccloud.com/x-hfenrszoagpafasl)
2021-04-24 21:20:16 +0000Logio(em@kapsi.fi)
2021-04-24 21:20:16 +0000aizen_s(sid462968@gateway/web/irccloud.com/x-cimltabwsuoipsqn)
2021-04-24 21:20:16 +0000alunduil(alunduil@gateway/web/irccloud.com/x-lfjncrqckqiqjrhx)
2021-04-24 21:20:16 +0000dgpratt(sid193493@gateway/web/irccloud.com/x-yujexlmxhvpapqdm)
2021-04-24 21:20:16 +0000kmein(~weechat@static.173.83.99.88.clients.your-server.de)
2021-04-24 21:20:16 +0000blankhart(~blankhart@pool-72-88-174-206.nwrknj.fios.verizon.net)
2021-04-24 21:20:16 +0000carldd(~carldd@90-224-49-113-no56.tbcn.telia.com)
2021-04-24 21:20:16 +0000m0rphism(~m0rphism@HSI-KBW-085-216-104-059.hsi.kabelbw.de)
2021-04-24 21:20:16 +0000Tene(~tene@poipu/supporter/slacker/tene)
2021-04-24 21:20:16 +0000totte(~totte@chakra/totte)
2021-04-24 21:20:16 +0000wavemode_(~wavemode@097-070-075-143.res.spectrum.com)
2021-04-24 21:20:16 +0000beaky(~beaky@2a03:b0c0:0:1010::17cf:7003)
2021-04-24 21:20:16 +0000tomboy64(~tomboy64@unaffiliated/tomboy64)
2021-04-24 21:20:16 +0000texasmynsted(~texasmyns@99.96.221.112)
2021-04-24 21:20:16 +0000L1Cafe(~L1Cafe@kydara.com)
2021-04-24 21:20:16 +0000dcoutts(~duncan@94.186.125.91.dyn.plus.net)
2021-04-24 21:20:16 +0000amosbird_(~amosbird@13.75.119.182)
2021-04-24 21:20:16 +0000dmj`(sid72307@gateway/web/irccloud.com/x-hiydzdvhdibdbilo)
2021-04-24 21:20:16 +0000charukiewicz_(~quassel@irouteince04.i.subnet.rcn.com)
2021-04-24 21:20:16 +0000malthe_(~mborch@46.101.103.63)
2021-04-24 21:20:16 +0000wraithm(~wraithm@unaffiliated/wraithm)
2021-04-24 21:20:16 +0000Khisanth(~Khisanth@11.sub-174-244-147.myvzw.com)
2021-04-24 21:20:16 +0000davros(~davros@host86-185-126-190.range86-185.btcentralplus.com)
2021-04-24 21:20:16 +0000apoc(~apoc@49.12.13.193)
2021-04-24 21:20:16 +0000falsifian(~falsifian@exoco.falsifian.org)
2021-04-24 21:20:16 +0000AndreasK(sid320732@gateway/web/irccloud.com/x-spqgtdrtcwqozgos)
2021-04-24 21:20:16 +0000lally(sid388228@gateway/web/irccloud.com/x-ilucbequfappbwaf)
2021-04-24 21:20:16 +0000liquorice(sid267884@gateway/web/irccloud.com/x-nzkqxgdtfgechhzd)
2021-04-24 21:20:16 +0000joshmeredith(sid387798@gateway/web/irccloud.com/x-puyeogwrdolrmxnl)
2021-04-24 21:20:16 +0000systemfault(sid267009@gateway/web/irccloud.com/x-weqjiwsrsizmsttb)
2021-04-24 21:20:16 +0000ebutleriv(sid217783@gateway/web/irccloud.com/x-kdwwbglqjsasvtqj)
2021-04-24 21:20:16 +0000cemerick(sid54985@gateway/web/irccloud.com/x-dmosxtcpbaaxlpbx)
2021-04-24 21:20:16 +0000ryjm(sid383513@gateway/web/irccloud.com/x-mfvpahefkuhsmhxj)
2021-04-24 21:20:16 +0000aristid(sid1599@gateway/web/irccloud.com/x-iysthznfdzhconze)
2021-04-24 21:20:16 +0000davetapley(sid666@gateway/web/irccloud.com/x-zjajcgkktmcxzflu)
2021-04-24 21:20:16 +0000ReinH(sid179972@gateway/web/irccloud.com/x-yupwkseagmcsclao)
2021-04-24 21:20:16 +0000jared-w(uid405292@gateway/web/irccloud.com/x-qitlcehrrgjsxmby)
2021-04-24 21:20:16 +0000wpcarro_(sid397589@gateway/web/irccloud.com/x-ahewuhnoiijbwpmc)
2021-04-24 21:20:16 +0000etrepum(sid763@gateway/web/irccloud.com/x-kbeiueugazaifuth)
2021-04-24 21:20:16 +0000SrPx(sid108780@gateway/web/irccloud.com/x-yhksykcahzlylxhe)
2021-04-24 21:20:16 +0000eruditass(uid248673@gateway/web/irccloud.com/x-xevwmrtrjszgvhcb)
2021-04-24 21:20:16 +0000curiousgay(~gay@178.217.208.8)
2021-04-24 21:20:16 +0000{abby}(~{abby}@unaffiliated/demhydraz)
2021-04-24 21:20:16 +0000johnw(~johnw@haskell/developer/johnw)
2021-04-24 21:20:16 +0000whataday(~xxx@2400:8902::f03c:92ff:fe60:98d8)
2021-04-24 21:20:16 +0000tsandstr(~user@nat-130-132-173-221.central.yale.edu)
2021-04-24 21:20:16 +0000Ishutin(~ishutin@94-21-174-90.pool.digikabel.hu)
2021-04-24 21:20:16 +0000jonatan(~nate@h77-53-70-163.cust.a3fiber.se)
2021-04-24 21:20:16 +0000tlgl^nix(~damien@S0106008ef25e98fb.su.shawcable.net)
2021-04-24 21:20:16 +0000DavidEichmann(~david@147.136.46.217.dyn.plus.net)
2021-04-24 21:20:16 +0000vchlup(~vchlup@nat.brnet.cz)
2021-04-24 21:20:16 +0000rslima_____(sid26145@gateway/web/irccloud.com/x-uuewewvxxbofrynk)
2021-04-24 21:20:16 +0000kyagrd__(sid102627@gateway/web/irccloud.com/x-rctrsarckkdvtebu)
2021-04-24 21:20:16 +0000jonathanx(~jonathan@h-176-109.A357.priv.bahnhof.se)
2021-04-24 21:20:16 +0000HiRE(~HiRE@2602:ffc5:20::1:512e)
2021-04-24 21:20:16 +0000clynamen(~clynamen@net-93-66-1-11.cust.vodafonedsl.it)
2021-04-24 21:20:16 +0000s00pcan(~chris@075-133-056-178.res.spectrum.com)
2021-04-24 21:20:16 +0000erisco(~erisco@d24-57-249-233.home.cgocable.net)
2021-04-24 21:20:16 +0000jess(jess@freenode/staff/jess)
2021-04-24 21:20:16 +0000Katarushisu(~Katarushi@cpc152083-finc20-2-0-cust170.4-2.cable.virginm.net)
2021-04-24 21:20:16 +0000Bergle_3(~Bergle_4@101.165.90.119)
2021-04-24 21:20:16 +0000Cale(~cale@cpef48e38ee8583-cm0c473de9d680.cpe.net.cable.rogers.com)
2021-04-24 21:20:16 +0000MidAutumnHotaru(~MidAutumn@unaffiliated/midautumnhotaru)
2021-04-24 21:20:16 +0000malumore(~malumore@151.62.120.175)
2021-04-24 21:20:16 +0000tomsmeding(~tomsmedin@tomsmeding.com)
2021-04-24 21:20:16 +0000RusAlex(~Chel@unaffiliated/rusalex)
2021-04-24 21:20:16 +0000pony(sid257727@gateway/web/irccloud.com/x-sdyjzzvtmmdtnyry)
2021-04-24 21:20:16 +0000dyniec[m](dyniecmatr@gateway/shell/matrix.org/x-uodwhoydkwsqekam)
2021-04-24 21:20:16 +0000pqwy[m](pqwymatrix@gateway/shell/matrix.org/x-owkvliodtdhnzlyi)
2021-04-24 21:20:16 +0000mjlbach(atriusmatr@gateway/shell/matrix.org/x-pmoozefxefawidpk)
2021-04-24 21:20:16 +0000zva(~zava@ip5f5bdf0f.dynamic.kabel-deutschland.de)
2021-04-24 21:20:16 +0000forell(~forell@unaffiliated/forell)
2021-04-24 21:20:16 +0000cheater1(~user@unaffiliated/cheater)
2021-04-24 21:20:16 +0000raym(~ray@45.64.220.116)
2021-04-24 21:20:16 +0000urodna(~urodna@unaffiliated/urodna)
2021-04-24 21:20:16 +0000thc202(~thc202@unaffiliated/thc202)
2021-04-24 21:20:16 +0000catern(~sbaugh@2604:2000:8fc0:b:a9c7:866a:bf36:3407)
2021-04-24 21:20:16 +0000nek0(~nek0@mail.nek0.eu)
2021-04-24 21:20:16 +0000teddyc(theodorc@cassarossa.samfundet.no)
2021-04-24 21:20:16 +0000Deide(~Deide@217.155.19.23)
2021-04-24 21:20:16 +0000carlomagno(~cararell@148.87.23.7)
2021-04-24 21:20:16 +0000robotmay(~beepboop@2001:8b0:7af0:2580:94a2:bb95:e8d4:22af)
2021-04-24 21:20:16 +0000gnumonic(~gnumonic@c-73-170-91-210.hsd1.ca.comcast.net)
2021-04-24 21:20:16 +0000Flonk(~Flonk@ec2-52-40-29-25.us-west-2.compute.amazonaws.com)
2021-04-24 21:20:16 +0000my_name_is_not_j(mynameisno@gateway/shell/matrix.org/x-ooxznpdftgbscqkq)
2021-04-24 21:20:16 +0000tzh(~tzh@c-24-21-73-154.hsd1.wa.comcast.net)
2021-04-24 21:20:16 +0000cole-h(~cole-h@c-73-48-197-220.hsd1.ca.comcast.net)
2021-04-24 21:20:16 +0000ericsagn1(~ericsagne@2405:6580:0:5100:9e02:7bf3:beb9:eefe)
2021-04-24 21:20:16 +0000Ariakenom(~Ariakenom@2001:9b1:efb:fc00:e89f:1e95:a362:ce44)
2021-04-24 21:20:16 +0000Sheilong(uid293653@gateway/web/irccloud.com/x-listalaenmlgtgtz)
2021-04-24 21:20:16 +0000jtojnar(jtojnarmat@gateway/shell/matrix.org/x-gcdpdlgvumdjaoad)
2021-04-24 21:20:16 +0000__monty__(~toonn@unaffiliated/toonn)
2021-04-24 21:20:16 +0000knupfer(~Thunderbi@200116b82b743500f8577e0c0d2a95b9.dip.versatel-1u1.de)
2021-04-24 21:20:16 +0000hypercube(~hypercube@2603-6011-f901-9e5b-0000-0000-0000-08cf.res6.spectrum.com)
2021-04-24 21:20:16 +0000jeet(~jeet@183.83.214.10)
2021-04-24 21:20:16 +0000sayola1(~vekto@dslb-002-201-085-157.002.201.pools.vodafone-ip.de)
2021-04-24 21:20:16 +0000kiix(ashleyisnu@gateway/shell/matrix.org/x-cggkcfcswoqnyqyv)
2021-04-24 21:20:16 +0000kiweun(~kiweun@2607:fea8:2a62:9600:7da7:60a9:aff:54f9)
2021-04-24 21:20:16 +0000jakalx(~jakalx@base.jakalx.net)
2021-04-24 21:20:16 +0000CrazyPython(~crazypyth@98.122.164.118)
2021-04-24 21:20:16 +0000dpl_(~dpl@77-121-78-163.chn.volia.net)
2021-04-24 21:20:16 +0000nut(~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr)
2021-04-24 21:20:16 +0000rekahsoft(~rekahsoft@cpe0008a20f982f-cm64777d666260.cpe.net.cable.rogers.com)
2021-04-24 21:20:16 +0000Narinas(~Narinas@187-178-93-112.dynamic.axtel.net)
2021-04-24 21:20:16 +0000tmciver(~tmciver@cpe-172-101-40-226.maine.res.rr.com)
2021-04-24 21:20:16 +0000vicfred(vicfred@gateway/vpn/mullvad/vicfred)
2021-04-24 21:20:16 +0000xff0x(~xff0x@2001:1a81:5345:1000:6c4e:76aa:9183:d81d)
2021-04-24 21:20:16 +0000stree(~stree@68.36.8.116)
2021-04-24 21:20:16 +0000usr25(~usr25@unaffiliated/usr25)
2021-04-24 21:20:16 +0000kupi(uid212005@gateway/web/irccloud.com/x-pjgdlrtcxolqutly)
2021-04-24 21:20:16 +0000pavonia(~user@unaffiliated/siracusa)
2021-04-24 21:20:16 +0000amx(amx@percival.namespace.at)
2021-04-24 21:20:16 +0000so_(~so@unaffiliated/so)
2021-04-24 21:20:16 +0000lnx(~irssi@167.71.7.27)
2021-04-24 21:20:16 +0000zfnmxt(~zfnmxt@unaffiliated/zfnmxt)
2021-04-24 21:20:16 +0000raoul(~raoulhida@nomnomnomnom.co.uk)
2021-04-24 21:20:16 +0000micro(~micro@unaffiliated/micro)
2021-04-24 21:20:16 +0000ekleog(~ii@prologin/ekleog)
2021-04-24 21:20:16 +0000Chousuke(oranenj@coffee.modeemi.fi)
2021-04-24 21:20:16 +0000kav(~kari@dsl-hkibng42-56733f-225.dhcp.inet.fi)
2021-04-24 21:20:16 +0000p8m(p8m@gateway/vpn/protonvpn/p8m)
2021-04-24 21:20:16 +0000bobey88(~bobey@72-172-218-188.fidnet.com)
2021-04-24 21:20:16 +0000obiiwahn(~obiwahn@pdpc/supporter/student/obiwahn)
2021-04-24 21:20:16 +0000acertain(sid470584@gateway/web/irccloud.com/x-udpocathjkijcvpk)
2021-04-24 21:20:16 +0000cpape(~user@static.180.18.203.116.clients.your-server.de)
2021-04-24 21:20:16 +0000dolio(~dolio@haskell/developer/dolio)
2021-04-24 21:20:16 +0000brown121407(~brown1214@fsf/member/brown121407)
2021-04-24 21:20:16 +0000And1(~And1@brewington.uberspace.de)
2021-04-24 21:20:16 +0000lassulus(~lassulus@NixOS/user/lassulus)
2021-04-24 21:20:16 +0000nisstyre(~wes@python-zero/conduct-committee/nisstyre)
2021-04-24 21:20:16 +0000darjeeling_(~darjeelin@122.245.216.145)
2021-04-24 21:20:16 +0000totbwf(sid402332@gateway/web/irccloud.com/x-evcibzlipwnkayzd)
2021-04-24 21:20:16 +0000benwr____(sid372383@gateway/web/irccloud.com/x-mijbqpsjqwboudpc)
2021-04-24 21:20:16 +0000smerdyakov8(~dan@5.146.195.164)
2021-04-24 21:20:16 +0000grumble(~Thunderbi@freenode/staff/grumble)
2021-04-24 21:20:16 +0000puke(~vroom@217.138.252.196)
2021-04-24 21:20:16 +0000mikolaj(~mikon@duch.mimuw.edu.pl)
2021-04-24 21:20:16 +0000hyiltiz(~quassel@unaffiliated/hyiltiz)
2021-04-24 21:20:16 +0000bennofs__(~quassel@dynamic-089-012-022-232.89.12.pool.telefonica.de)
2021-04-24 21:20:16 +0000zmijunkie(~Adium@87.122.222.145)
2021-04-24 21:20:16 +0000MarcelineVQ(~anja@198.254.208.159)
2021-04-24 21:20:16 +0000mrchampion(~mrchampio@38.18.109.23)
2021-04-24 21:20:16 +0000tms_(thomaav@cassarossa.samfundet.no)
2021-04-24 21:20:16 +0000Lowl3v3l(~Lowl3v3l@dslb-002-207-103-026.002.207.pools.vodafone-ip.de)
2021-04-24 21:20:16 +0000russruss40(~russruss@my.russellmcc.com)
2021-04-24 21:20:16 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net)
2021-04-24 21:20:16 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 21:20:16 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-04-24 21:20:16 +0000jollygood2(~bc8134e3@217.29.117.252)
2021-04-24 21:20:16 +0000machinedgod(~machinedg@24.105.81.50)
2021-04-24 21:20:16 +0000__minoru__shirae(~shiraeesh@77.94.25.113)
2021-04-24 21:20:16 +0000kritzefitz(~kritzefit@212.86.56.80)
2021-04-24 21:20:16 +0000Sgeo(~Sgeo@ool-18b9875e.dyn.optonline.net)
2021-04-24 21:20:16 +0000DTZUZU(~DTZUZO@205.ip-149-56-132.net)
2021-04-24 21:20:16 +0000wonko7(~wonko7@62.115.229.50)
2021-04-24 21:20:16 +0000Rudd0(~Rudd0@185.189.115.108)
2021-04-24 21:20:16 +0000elfets(~elfets@ip-37-201-23-96.hsi13.unitymediagroup.de)
2021-04-24 21:20:16 +0000son0p(~ff@181.136.122.143)
2021-04-24 21:20:16 +0000mmfood(~mmfood@185.176.246.69)
2021-04-24 21:20:16 +0000conal_(~conal@64.71.133.70)
2021-04-24 21:20:16 +0000Nik05(~Nik05@unaffiliated/nik05)
2021-04-24 21:20:16 +0000HannaM(~quassel@p54849510.dip0.t-ipconnect.de)
2021-04-24 21:20:16 +0000unyu(~pyon@unaffiliated/pyon)
2021-04-24 21:20:16 +0000perrier-jouet(~perrier-j@modemcable012.251-130-66.mc.videotron.ca)
2021-04-24 21:20:16 +0000gitgood(~gitgood@80-44-9-246.dynamic.dsl.as9105.com)
2021-04-24 21:20:16 +0000Tuplanolla(~Tuplanoll@91-159-68-239.elisa-laajakaista.fi)
2021-04-24 21:20:16 +0000fendor(~fendor@178.165.131.197.wireless.dyn.drei.com)
2021-04-24 21:20:16 +0000dastomaten(~dastomate@0543f40b.skybroadband.com)
2021-04-24 21:20:16 +0000honigkuchen(~honigkuch@ip5b429953.dynamic.kabel-deutschland.de)
2021-04-24 21:20:16 +0000johnnyboy[m](gifumatrix@gateway/shell/matrix.org/x-werjqffkoelbdsvc)
2021-04-24 21:20:17 +0000theDon(~td@94.134.91.143)
2021-04-24 21:20:17 +0000tabemann(~travisb@172-13-49-137.lightspeed.milwwi.sbcglobal.net)
2021-04-24 21:20:17 +0000werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net)
2021-04-24 21:20:17 +0000quinn(~quinn@c-73-223-224-163.hsd1.ca.comcast.net)
2021-04-24 21:20:17 +0000DirefulSalt(DirefulSal@gateway/vpn/privateinternetaccess/direfulsalt)
2021-04-24 21:20:17 +0000L29Ah(~L29Ah@unaffiliated/l29ah)
2021-04-24 21:20:17 +0000zaquest(~notzaques@5.128.210.178)
2021-04-24 21:20:17 +0000ukari(~ukari@unaffiliated/ukari)
2021-04-24 21:20:17 +0000mikolaj_(~mikolaj@purple.well-typed.com)
2021-04-24 21:20:17 +0000notzmv(~zmv@unaffiliated/zmv)
2021-04-24 21:20:17 +0000pfurla(~pfurla@ool-182ed2e2.dyn.optonline.net)
2021-04-24 21:20:17 +0000evanjs(~evanjs@075-129-098-007.res.spectrum.com)
2021-04-24 21:20:17 +0000bradparker(sid262931@gateway/web/irccloud.com/x-ipktkzcrditobyzs)
2021-04-24 21:20:17 +0000luite(sid387799@gateway/web/irccloud.com/x-jstlojjciwjquony)
2021-04-24 21:20:17 +0000mcglk(~textual@131.191.49.120)
2021-04-24 21:20:17 +0000gawen(~gawen@movzbl.root.sx)
2021-04-24 21:20:17 +0000xlei(znc@unaffiliated/xlei)
2021-04-24 21:20:17 +0000cohn_(~noone@23.239.18.252)
2021-04-24 21:20:17 +0000SIben_(~SIben@ns3106586.ip-5-135-191.eu)
2021-04-24 21:20:17 +0000ephemera__(~E@122.34.1.187)
2021-04-24 21:20:17 +0000glamas_(~glamas@107.182.17.237)
2021-04-24 21:20:17 +0000carbolymer(~carbolyme@dropacid.net)
2021-04-24 21:20:17 +0000dminuoso(~dminuoso@static.88-198-218-68.clients.your-server.de)
2021-04-24 21:20:17 +0000jrm(~jrm@freebsd/developer/jrm)
2021-04-24 21:20:17 +0000ahf(ahf@irssi/staff/ahf)
2021-04-24 21:20:17 +0000TMA(tma@twin.jikos.cz)
2021-04-24 21:20:17 +0000joeytwiddle(~joeytwidd@162.243.115.31)
2021-04-24 21:20:17 +0000kaletaa(~kaletaa@188.34.177.83)
2021-04-24 21:20:17 +0000kloeri(~kloeri@freenode/staff/exherbo.kloeri)
2021-04-24 21:20:17 +0000alexknvl(sid259568@gateway/web/irccloud.com/x-wdxobfzstmpkvclf)
2021-04-24 21:20:17 +0000ibloom(sid350277@gateway/web/irccloud.com/x-yhokoaaxqmoudodu)
2021-04-24 21:20:17 +0000lovesegfault(~bemeurer@37.219.94.34.bc.googleusercontent.com)
2021-04-24 21:20:17 +0000caasih(sid13241@gateway/web/irccloud.com/x-ywhvuyflycmojjfa)
2021-04-24 21:20:17 +0000Forlorn_(~Forlorn@unaffiliated/forlorn)
2021-04-24 21:20:17 +0000sdrodge_(~sdrodge@unaffiliated/sdrodge)
2021-04-24 21:20:17 +0000juri_(~juri@178.63.35.222)
2021-04-24 21:20:17 +0000codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511)
2021-04-24 21:20:17 +0000dilinger(~dilinger@spindle.queued.net)
2021-04-24 21:20:17 +0000aidecoe(~aidecoe@unaffiliated/aidecoe)
2021-04-24 21:20:17 +0000seveg(~gabriel@2a02-ab04-0249-8d00-dea6-32ff-fe17-0993.dynamic.v6.chello.sk)
2021-04-24 21:20:17 +0000Irenes(~irenes@NixOS/user/irenes)
2021-04-24 21:20:17 +0000jassob(~jassob@korrob.vth.sgsnet.se)
2021-04-24 21:20:17 +0000_xor(~xor@74.215.46.133)
2021-04-24 21:20:17 +0000davean(~davean@davean.sciesnet.net)
2021-04-24 21:20:17 +0000cyberlard(~cyberlard@unaffiliated/jludwig)
2021-04-24 21:20:17 +0000Neuromancer(~Neuromanc@unaffiliated/neuromancer)
2021-04-24 21:20:17 +0000landonf(landonf@mac68k.info)
2021-04-24 21:20:17 +0000tromp(~tromp@dhcp-077-249-230-040.chello.nl)
2021-04-24 21:20:17 +0000poljar1(~poljar@93-139-112-157.adsl.net.t-com.hr)
2021-04-24 21:20:17 +0000SupaYoshi(~supayoshi@213-10-140-13.fixed.kpn.net)
2021-04-24 21:20:17 +0000st13g(~quassel@47.90.246.232)
2021-04-24 21:20:17 +0000Tesseraction(~Tesseract@unaffiliated/tesseraction)
2021-04-24 21:20:17 +0000mudfog(~mudfog@ec2-54-152-211-54.compute-1.amazonaws.com)
2021-04-24 21:20:17 +0000liyang(~liyang@90.255.129.199)
2021-04-24 21:20:17 +0000marble_visions(~user@68.183.79.8)
2021-04-24 21:20:17 +0000tumdedum(~tumdedum@unaffiliated/espiral)
2021-04-24 21:20:17 +0000mapperr(~mapperr@vmi389916.contaboserver.net)
2021-04-24 21:20:17 +0000_ashbreeze_(~mark@64.85.214.234.reverse.socket.net)
2021-04-24 21:20:17 +0000blissful(~blissful@unaffiliated/azuline)
2021-04-24 21:20:17 +0000echoreply(~echoreply@unaffiliated/echoreply)
2021-04-24 21:20:17 +0000bgamari(~bgamari@72.65.101.132)
2021-04-24 21:20:17 +0000conkker(~conkker@unaffiliated/conkker)
2021-04-24 21:20:17 +0000cods(~fred@82-65-232-44.subs.proxad.net)
2021-04-24 21:20:17 +0000duckonomy_(~duckonomy@177.ip-144-217-84.net)
2021-04-24 21:20:17 +0000troydm(~troydm@unaffiliated/troydm)
2021-04-24 21:20:17 +0000Firedancer(sid336191@gateway/web/irccloud.com/x-xoleucehjmvybibw)
2021-04-24 21:20:17 +0000Benett(~Benett@unaffiliated/benett)
2021-04-24 21:20:17 +0000mud(~mud@unaffiliated/kadoban)
2021-04-24 21:20:17 +0000infinity0(~infinity0@freenet/developer/infinity0)
2021-04-24 21:20:17 +0000lordyod(~lordyod@c-67-169-144-132.hsd1.ca.comcast.net)
2021-04-24 21:20:17 +0000swater(~swater@perso.iiens.net)
2021-04-24 21:20:17 +0000Moyst(~moyst@212-149-213-144.bb.dnainternet.fi)
2021-04-24 21:20:17 +0000tristanC(~tristanC@unaffiliated/tristanc)
2021-04-24 21:20:17 +0000pieguy128_(~pieguy128@bas1-quebec14-67-70-101-46.dsl.bell.ca)
2021-04-24 21:20:17 +0000connrs(~connrs@mail.connolley.uk)
2021-04-24 21:20:17 +0000gargawel(~gael@212.83.144.58)
2021-04-24 21:20:17 +0000Kneiva_(kneiva@raah.fi)
2021-04-24 21:20:17 +0000wayne(~wayne@unaffiliated/wayne)
2021-04-24 21:20:17 +0000dredozubov(~dredozubo@37.139.21.214)
2021-04-24 21:20:17 +0000tomku(~tomku@unaffiliated/tomku)
2021-04-24 21:20:17 +0000heath(~heath@unaffiliated/ybit)
2021-04-24 21:20:17 +0000relrod(~relrod@redhat/ansible.staff.relrod)
2021-04-24 21:20:17 +0000deni(~deni@unaffiliated/deni)
2021-04-24 21:20:17 +0000dmwit(~dmwit@pool-173-66-86-32.washdc.fios.verizon.net)
2021-04-24 21:20:17 +0000asm89(~asm89@unaffiliated/asm89)
2021-04-24 21:20:17 +0000stvc(~stvc@192.241.166.39)
2021-04-24 21:20:17 +0000tasuki(~tasuki@198.211.120.27)
2021-04-24 21:20:17 +0000remexre(~nathan@207-153-38-50.fttp.usinternet.com)
2021-04-24 21:20:17 +0000eagleflo(~aku@eagleflow.fi)
2021-04-24 21:20:17 +0000bind2(~bind@md-dingen.tilaa.cloud)
2021-04-24 21:20:17 +0000shreyasminocha(~shreyasmi@unaffiliated/shreyasminocha)
2021-04-24 21:20:17 +0000fr33domlover(~fr33domlo@angeley.es)
2021-04-24 21:20:17 +0000pounce(~pounce@ns379743.ip-5-196-70.eu)
2021-04-24 21:20:17 +0000pdxleif(~pdxleif@ec2-54-68-166-10.us-west-2.compute.amazonaws.com)
2021-04-24 21:20:17 +0000djanatyn_(~djanatyn@ec2-18-209-155-56.compute-1.amazonaws.com)
2021-04-24 21:20:17 +0000Aleksejs(~Aleksejs@haskell.lv)
2021-04-24 21:20:17 +0000loc(~loc@unaffiliated/loc)
2021-04-24 21:20:17 +0000acro(~acro@unaffiliated/acro)
2021-04-24 21:20:17 +0000zymurgy(~zymurgy@li607-220.members.linode.com)
2021-04-24 21:20:17 +0000remedan(~remedan@balak.me)
2021-04-24 21:20:17 +0000kqr(~kqr@vps.xkqr.org)
2021-04-24 21:20:17 +0000TommyC(~TommyC@unaffiliated/sepulchralbloom)
2021-04-24 21:20:17 +0000seliopou(seliopou@entropy.tmok.com)
2021-04-24 21:20:17 +0000nshepperd2(~nshepperd@li364-218.members.linode.com)
2021-04-24 21:20:17 +0000lockshaw_(~lockshaw@165.22.163.71)
2021-04-24 21:20:17 +0000tstat(~tstat@104.131.113.212)
2021-04-24 21:20:17 +0000jvanbure_(~jvanbure@159.65.233.183)
2021-04-24 21:20:17 +0000Igloo(~igloo@matrix.chaos.earth.li)
2021-04-24 21:20:17 +0000mrd(~mrd@debian/developer/mrd)
2021-04-24 21:20:17 +0000esph(~weechat@unaffiliated/esph)
2021-04-24 21:20:17 +0000pie_(~pie_bnc]@unaffiliated/pie-/x-0787662)
2021-04-24 21:20:17 +0000vancz(~vancz@unaffiliated/vancz)
2021-04-24 21:20:17 +0000nckx(~nckx@tobias.gr)
2021-04-24 21:20:17 +0000lep-delete(~lep@94.31.86.183)
2021-04-24 21:20:17 +0000johnyginthehouse(~johnygint@159.203.30.32)
2021-04-24 21:20:17 +0000quicksil1er(~jules@roobarb.crazydogs.org)
2021-04-24 21:20:17 +0000magicman(~tchakkazu@static-47-180-28-65.lsan.ca.frontiernet.net)
2021-04-24 21:20:17 +0000koala_man(~vidar@unaffiliated/koala-man/x-2491903)
2021-04-24 21:20:17 +0000luigy(~luigy@104.236.106.229)
2021-04-24 21:20:17 +0000dh(dh@bsd.ee)
2021-04-24 21:20:17 +0000Clint(~Clint@libre.fm/hacker/clint)
2021-04-24 21:20:17 +0000thebnq(~bnq@herrokitty.com)
2021-04-24 21:20:17 +0000jmsx(~jordan@li1158-85.members.linode.com)
2021-04-24 21:20:17 +0000EdwardIII(~edwardiii@unaffiliated/edward123)
2021-04-24 21:20:17 +0000drewolson(~drewolson@64.227.24.16)
2021-04-24 21:20:17 +0000Patternmaster(~georg@li1192-118.members.linode.com)
2021-04-24 21:20:17 +0000WarzoneCommand(~Frank@77-162-168-71.fixed.kpn.net)
2021-04-24 21:20:17 +0000statusfailed(~statusfai@statusfailed.com)
2021-04-24 21:20:17 +0000dibblego(~dibblego@haskell/developer/dibblego)
2021-04-24 21:20:17 +0000Iroha(~Dykomii@kyoto.mii.moe)
2021-04-24 21:20:17 +0000hexagoxel(~hexagoxel@hexagoxel.de)
2021-04-24 21:20:17 +0000digia(~digia@unaffiliated/digia)
2021-04-24 21:20:17 +0000maerwald(~maerwald@mail.hasufell.de)
2021-04-24 21:20:17 +0000wz1000(~wz1000@static.11.113.47.78.clients.your-server.de)
2021-04-24 21:20:17 +0000rotty(rotty@ghost.xx.vu)
2021-04-24 21:20:17 +0000haskell_1(~twain@168.61.46.105)
2021-04-24 21:20:17 +0000afx237(~afx237@107.170.10.178)
2021-04-24 21:20:17 +0000ornxka(~ornxka@unaffiliated/ornx)
2021-04-24 21:20:17 +0000lazyshrk(~lazyshrk@128.199.58.13)
2021-04-24 21:20:17 +0000tolt(~weechat-h@li219-154.members.linode.com)
2021-04-24 21:20:17 +0000Deewiant(~deewiant@de1.ut.deewiant.iki.fi)
2021-04-24 21:20:17 +0000exferenceBot(~exference@hexagoxel.de)
2021-04-24 21:20:17 +0000frobnicator(~frobnicat@185-227-75-147.dsl.cambrium.nl)
2021-04-24 21:20:17 +0000adium(adium@unaffiliated/adium)
2021-04-24 21:20:17 +0000tessier(~treed@kernel-panic/copilotco)
2021-04-24 21:20:17 +0000ralu(~ralu@static.211.245.203.116.clients.your-server.de)
2021-04-24 21:20:17 +0000CitizenSnips(~CitizenSn@irc.refl.club)
2021-04-24 21:20:17 +0000tdammers(~tdammers@unaffiliated/tdammers)
2021-04-24 21:20:17 +0000ent(entgod@kapsi.fi)
2021-04-24 21:20:17 +0000SlashLife(~slashlife@stienen.name)
2021-04-24 21:20:17 +0000dsrt^(dsrt@ip98-184-89-2.mc.at.cox.net)
2021-04-24 21:20:17 +0000Sarcarean(4582bfd4@h69-130-191-212.bendor.broadband.dynamic.tds.net)
2021-04-24 21:20:17 +0000federd8(5d2e77a4@93-46-119-164.ip107.fastwebnet.it)
2021-04-24 21:20:17 +0000Mrbuck(~Mrbuck@gateway/tor-sasl/mrbuck)
2021-04-24 21:20:17 +0000jb55(~jb55@gateway/tor-sasl/jb55)
2021-04-24 21:20:17 +0000hendursaga(~weechat@gateway/tor-sasl/hendursaga)
2021-04-24 21:20:17 +0000finn_elija(~finn_elij@gateway/tor-sasl/finnelija/x-67402716)
2021-04-24 21:20:17 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex)
2021-04-24 21:20:17 +0000Unhammer(~Unhammer@gateway/tor-sasl/unhammer)
2021-04-24 21:20:17 +0000vgtw(~vgtw@gateway/tor-sasl/vgtw)
2021-04-24 21:20:17 +0000Chai-T-Rex(~ChaiTRex@gateway/tor-sasl/chaitrex)
2021-04-24 21:20:17 +0000jpds(~jpds@gateway/tor-sasl/jpds)
2021-04-24 21:20:17 +0000aplainzetakind(~johndoe@captainludd.powered.by.lunarbnc.net)
2021-04-24 21:20:17 +0000siraben(sirabenmat@gateway/shell/matrix.org/x-cfikpjmyftuncdpf)
2021-04-24 21:20:17 +0000jchia[m](jchiamatri@gateway/shell/matrix.org/x-tmjpbywqkunnmwlp)
2021-04-24 21:20:17 +0000fakubish[m](fakubishne@gateway/shell/matrix.org/x-gkdgoaumokeroxkj)
2021-04-24 21:20:17 +0000ProofTechnique(sid79547@gateway/web/irccloud.com/x-uvtkxtknhyjkpohz)
2021-04-24 21:20:17 +0000angerman(sid209936@gateway/web/irccloud.com/x-vkbiyhlbxhfghaep)
2021-04-24 21:20:17 +0000Hanma[m](hanmamatri@gateway/shell/matrix.org/x-ktsmcyuxlppyzjzb)
2021-04-24 21:20:17 +0000thonkpod(~thonkpod@2001:19f0:ac01:b46:5400:1ff:fec7:d73d)
2021-04-24 21:20:17 +0000dominicusin[m](dominicusi@gateway/shell/matrix.org/x-cjngkratdjygajhy)
2021-04-24 21:20:17 +0000Vq(~vq@90-227-195-41-no77.tbcn.telia.com)
2021-04-24 21:20:17 +0000viktorstrate[m](viktorstra@gateway/shell/matrix.org/x-nrjjnqkdtfbtkeet)
2021-04-24 21:20:17 +0000slycelote[m](slycelotem@gateway/shell/matrix.org/x-yxhtximmpenozqzr)
2021-04-24 21:20:17 +0000speakerspivakeem(speakerdea@gateway/shell/matrix.org/x-wcklxxqsduyzhunq)
2021-04-24 21:20:17 +0000berberman[T](berberma4@gateway/shell/matrix.org/x-tzjvckdqlgqermfr)
2021-04-24 21:20:17 +0000immae(immaematri@gateway/shell/matrix.org/x-yvvixibszngfldow)
2021-04-24 21:20:17 +0000TheWizardTower[m(thewizardt@gateway/shell/matrix.org/x-qjoroerupruqagtt)
2021-04-24 21:20:17 +0000jjhoo(jahakala@dsl-trebng21-b048b5-171.dhcp.inet.fi)
2021-04-24 21:20:17 +0000noCheese(~nocheese@unaffiliated/nocheese)
2021-04-24 21:20:17 +0000kiltzman(~k1ltzman@5.206.224.243)
2021-04-24 21:20:17 +0000Axman6(~Axman6@pdpc/supporter/student/Axman6)
2021-04-24 21:20:17 +0000Nikotiini(~ubuntu@ec2-52-213-118-142.eu-west-1.compute.amazonaws.com)
2021-04-24 21:20:17 +0000lpsmith(~lpsmith@unaffiliated/lpsmith)
2021-04-24 21:20:17 +0000dequbed(~dequbed@yanduxian.paranoidlabs.org)
2021-04-24 21:20:17 +0000xarian(~xarian@104.236.81.162)
2021-04-24 21:20:17 +0000orcus(~orcus@unaffiliated/orcus)
2021-04-24 21:20:17 +0000vk3wtf(~doc@115-64-102-158.tpgi.com.au)
2021-04-24 21:20:17 +0000sigmundv(~sigmundv@178.62.72.87)
2021-04-24 21:20:17 +0000rookie101(~rookie@207.154.204.166)
2021-04-24 21:20:17 +0000alp(~alp@163.172.83.213)
2021-04-24 21:20:17 +0000filwisher(~filwisher@78.141.201.45)
2021-04-24 21:20:17 +0000emergence(~emergence@vm0.max-p.me)
2021-04-24 21:20:17 +0000otulp(~otulp@ti0187q162-6639.bb.online.no)
2021-04-24 21:20:17 +0000bendo(~bendo@130.61.122.121)
2021-04-24 21:20:17 +0000duairc(~shane@ana.rch.ist)
2021-04-24 21:20:17 +0000haveo(~haveo@sl35.iuwt.fr)
2021-04-24 21:20:17 +0000peutri(~peutri@ns317027.ip-94-23-46.eu)
2021-04-24 21:20:17 +0000polux2001(~polux@51.15.169.172)
2021-04-24 21:20:17 +0000[df](~ben@51.15.198.140)
2021-04-24 21:20:17 +0000andjjj23_(~irc@107.170.228.47)
2021-04-24 21:20:17 +0000voidcontext(~pgee@178.62.100.221)
2021-04-24 21:20:17 +0000kosmikus(~kosmikus@haskell/developer/kosmikus)
2021-04-24 21:20:17 +0000le_jonge(jonge@kofferbomber.org)
2021-04-24 21:20:17 +0000datajerk(~datajerk@sense.net)
2021-04-24 21:20:17 +0000xcin(~x@159.203.132.140)
2021-04-24 21:20:17 +0000kiprasz(~kipras@re199n846.sritis.lt)
2021-04-24 21:20:17 +0000geal(~geal@195-154-200-217.rev.poneytelecom.eu)
2021-04-24 21:20:17 +0000w1gz(~do@159.89.11.133)
2021-04-24 21:20:17 +0000dqd(id@wikipedia/dqd)
2021-04-24 21:20:17 +0000ps-auxw(~arneb@p548d5577.dip0.t-ipconnect.de)
2021-04-24 21:20:17 +0000int-e(~noone@int-e.eu)
2021-04-24 21:20:17 +0000natechan(~natechan@108-233-125-227.lightspeed.sntcca.sbcglobal.net)
2021-04-24 21:20:17 +0000Wamanuz(~wamanuz@78-70-34-81-no84.tbcn.telia.com)
2021-04-24 21:20:17 +0000xwvvvvwx(xwvvvvwx@gateway/vpn/mullvad/xwvvvvwx)
2021-04-24 21:20:17 +0000Paks(~paks@c-69-136-183-189.hsd1.il.comcast.net)
2021-04-24 21:20:17 +0000vodkaInf1rno(~wormphleg@104.131.156.184)
2021-04-24 21:20:17 +0000abuss(~abuss@cryptarch.net)
2021-04-24 21:20:17 +0000gekh(~gkh@thor.kevinhill.nl)
2021-04-24 21:20:17 +0000Unode(~Unode@unaffiliated/unode)
2021-04-24 21:20:17 +0000hive-mind(~hivemind@rrcs-67-53-148-69.west.biz.rr.com)
2021-04-24 21:20:17 +0000shachaf(~shachaf@unaffiliated/shachaf)
2021-04-24 21:20:17 +0000RoguePointer(~jigen@unaffiliated/roguepointer)
2021-04-24 21:20:17 +0000BIG_JIMMY_D(~jim@108.61.185.76)
2021-04-24 21:20:17 +0000Eliel(~jojkaart@163.172.153.251)
2021-04-24 21:20:17 +0000hiptobecubic(~john@unaffiliated/hiptobecubic)
2021-04-24 21:20:17 +0000gambpang(~gambpang@unaffiliated/gambpang)
2021-04-24 21:20:17 +0000cgfbee(~bot@oc1.itim-cj.ro)
2021-04-24 21:20:17 +0000amiri(~amiri@cpe-76-91-154-9.socal.res.rr.com)
2021-04-24 21:20:17 +0000nojster(~noj@vmd62096.contaboserver.net)
2021-04-24 21:20:17 +0000seanparsons(~sean@cpc145088-gill21-2-0-cust281.20-1.cable.virginm.net)
2021-04-24 21:20:17 +0000Maxdamantus(~Maxdamant@unaffiliated/maxdamantus)
2021-04-24 21:20:17 +0000jhuizy(~jhuizy@static.241.188.216.95.clients.your-server.de)
2021-04-24 21:20:17 +0000wagle(~wagle@quassel.wagle.io)
2021-04-24 21:20:17 +0000haya(~haya@ec2-18-231-117-140.sa-east-1.compute.amazonaws.com)
2021-04-24 21:20:17 +0000haasn(~nand@mpv/developer/haasn)
2021-04-24 21:20:17 +0000bob_twinkles_(~quassel@ec2-52-37-66-13.us-west-2.compute.amazonaws.com)
2021-04-24 21:20:17 +0000oleks_(~oleks@188.166.34.97)
2021-04-24 21:20:17 +0000electricityZZZZ(~electrici@135-180-3-82.static.sonic.net)
2021-04-24 21:20:17 +0000Kaivo(~Kaivo@172-97-54-87.mc.derytele.com)
2021-04-24 21:20:17 +0000mnrmnaugh(~mnrmnaugh@unaffiliated/mnrmnaugh)
2021-04-24 21:20:17 +0000Tario(~Tario@201.192.165.173)
2021-04-24 21:20:17 +0000alx741(~alx741@181.196.69.117)
2021-04-24 21:20:17 +0000ddellaco_(ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-04-24 21:20:17 +0000Kaiepi(~Kaiepi@47.54.252.148)
2021-04-24 21:20:17 +0000TheScoop(~TheScoop@unaffiliated/tryte)
2021-04-24 21:20:17 +0000hexo-(~hexo@2a01:430:17:1::ffff:328)
2021-04-24 21:20:17 +0000ahri(~ahri@178.209.40.84)
2021-04-24 21:20:17 +0000xts_(~ts@46.101.20.9)
2021-04-24 21:20:17 +0000Uma_(~uma@umazalakain.info)
2021-04-24 21:20:17 +0000crtschin(~crtschin@2604:a880:800:10::3126:f001)
2021-04-24 21:20:17 +0000sud0(~Death@hackspaceuy/member/sud0)
2021-04-24 21:20:17 +0000greymalkin(~greymalki@199.180.249.79)
2021-04-24 21:20:17 +0000orhan89(~orhan89@151.91.188.35.bc.googleusercontent.com)
2021-04-24 21:20:17 +0000newsham(~ubuntu@ec2-18-218-216-88.us-east-2.compute.amazonaws.com)
2021-04-24 21:20:17 +0000lortabac(~lortabac@51.158.65.124)
2021-04-24 21:20:17 +0000Ekho(~Ekho@unaffiliated/ekho)
2021-04-24 21:20:17 +0000zopsi(zopsi@2600:3c00::f03c:91ff:fe14:551f)
2021-04-24 21:20:17 +0000runeks(sid21167@gateway/web/irccloud.com/x-hasdkvyrirwackgz)
2021-04-24 21:20:17 +0000ocharles(sid30093@musicbrainz/user/ocharles)
2021-04-24 21:20:17 +0000agander_m(sid407952@gateway/web/irccloud.com/x-olfvvsvzckwflxmz)
2021-04-24 21:20:17 +0000dani-(sid341953@gateway/web/irccloud.com/x-enxplehsvwdxnwfi)
2021-04-24 21:20:17 +0000winny(~winny@fsf/member/winstonw)
2021-04-24 21:20:17 +0000joeyh(joeyh@kitenet.net)
2021-04-24 21:20:17 +0000solarus(~solarus@2a03:b0c0:2:d0::48:7001)
2021-04-24 21:20:17 +0000`slikts(~nelabs@wikipedia/reinis)
2021-04-24 21:20:17 +0000lisq(~quassel@lis.moe)
2021-04-24 21:20:17 +0000^[(sid43445@ircpuzzles/2015/april-fools/sixth/zgrep)
2021-04-24 21:20:17 +0000mikeplus64(~mike@unaffiliated/mikeplus64)
2021-04-24 21:20:17 +0000CrabMan(phi-matrix@gateway/shell/matrix.org/x-xdtvjrfhqsljsdjb)
2021-04-24 21:20:17 +0000arcontethegreat[(arcontethe@gateway/shell/matrix.org/x-htiwddqvyzfqikyg)
2021-04-24 21:20:17 +0000Lurkki[m]1(lurkkipriv@gateway/shell/matrix.org/x-qkyndrlwwbcdfprx)
2021-04-24 21:20:17 +0000alexfmpe(alexfmpema@gateway/shell/matrix.org/x-imekgdrdrodzrfgy)
2021-04-24 21:20:17 +0000michaelpj(michaelpjm@gateway/shell/matrix.org/x-utrdbjjavwpdczxi)
2021-04-24 21:20:17 +0000Noughtmare[m](naughtmare@gateway/shell/matrix.org/x-hglfphyajylwppku)
2021-04-24 21:20:17 +0000beardhatcode(robbertbea@gateway/shell/matrix.org/x-lsjnjwfsaaqmayss)
2021-04-24 21:20:17 +0000heck-to-the-gnom(heck-to-th@gateway/shell/matrix.org/x-bjzlaxrwotuujapr)
2021-04-24 21:20:17 +0000hyiltiz-M(hyiltizkde@gateway/shell/kde/matrix/x-htrnwcwmekebkeel)
2021-04-24 21:20:17 +0000chrisbloecker[m](chrisbloec@gateway/shell/matrix.org/x-ocvqnqycybxbaszr)
2021-04-24 21:20:17 +0000miklcct(quasselcor@2001:19f0:7402:d31:5400:3ff:fe51:a0cd)
2021-04-24 21:20:17 +0000leah2(~leah@vuxu.org)
2021-04-24 21:20:17 +0000M9ndres[m](m9ndresmat@gateway/shell/matrix.org/x-seocxulfsqrbeznw)
2021-04-24 21:20:17 +0000thblt(~thblt@unaffiliated/thblt)
2021-04-24 21:20:17 +0000urdh(~urdh@unaffiliated/urdh)
2021-04-24 21:20:17 +0000myme(~myme@li1406-121.members.linode.com)
2021-04-24 21:20:17 +0000gienah(~mwright@gentoo/developer/gienah)
2021-04-24 21:20:17 +0000ring0`(~ringo@unaffiliated/ring0/x-8667941)
2021-04-24 21:20:17 +0000bcoppens(~bartcopp@kde/coppens)
2021-04-24 21:20:17 +0000freeside(~ubuntu@ec2-52-58-69-57.eu-central-1.compute.amazonaws.com)
2021-04-24 21:20:17 +0000veverak(~veverak@ip-89-102-98-161.net.upcbroadband.cz)
2021-04-24 21:20:17 +0000aib42(~aib@unaffiliated/aib42)
2021-04-24 21:20:17 +0000yahb(xsbot@haskell/bot/yahb)
2021-04-24 21:20:17 +0000clog(~nef@bespin.org)
2021-04-24 21:20:17 +0000brkscnce_(~obaum@37.120.31.251)
2021-04-24 21:20:17 +0000deu(de@uio.re)
2021-04-24 21:20:17 +0000samebchase-(~samebchas@51.15.68.182)
2021-04-24 21:20:17 +0000incertia(~incertia@d4-50-26-103.nap.wideopenwest.com)
2021-04-24 21:20:17 +0000leafiest(~leafiest@165.227.53.12)
2021-04-24 21:20:17 +0000averell(~averell@unaffiliated/averell)
2021-04-24 21:20:17 +0000mantovani(~mantovani@104.131.207.121)
2021-04-24 21:20:17 +0000iptq(~michael@142.93.75.170)
2021-04-24 21:20:17 +0000okad(~okad@ec2-18-135-78-237.eu-west-2.compute.amazonaws.com)
2021-04-24 21:20:17 +0000tomjaguarpaw(~tom@li367-225.members.linode.com)
2021-04-24 21:20:17 +0000M2tias(m2@seri.fi)
2021-04-24 21:20:17 +0000stilgart(~Christoph@chezlefab.net)
2021-04-24 21:20:17 +0000a3Dman_(~3Dman@ns334323.ip-5-196-65.eu)
2021-04-24 21:20:17 +0000Chobbes_(~Chobbes@pool-98-115-239-235.phlapa.fios.verizon.net)
2021-04-24 21:20:17 +0000sajith(~sajith@fsf/member/nonzen)
2021-04-24 21:20:17 +0000chindy_(~quassel@51.15.63.78)
2021-04-24 21:20:17 +0000bbear_(~znc@21212.s.t4vps.eu)
2021-04-24 21:20:17 +0000uberj_(~uberj@107.170.237.156)
2021-04-24 21:20:17 +0000Xnuk(~xnuk@45.76.202.58)
2021-04-24 21:20:17 +0000jtobin_(~jtobin@li1555-212.members.linode.com)
2021-04-24 21:20:17 +0000niklasb(~niklasb@unaffiliated/codeslay0r)
2021-04-24 21:20:17 +0000Putonlalla(~sapekiis@it-cyan.it.jyu.fi)
2021-04-24 21:20:17 +0000Solarion(~solarion@fsf/member/solarion)
2021-04-24 21:20:17 +0000Athas(athas@sigkill.dk)
2021-04-24 21:21:54 +0000siraben(sirabenmat@gateway/shell/matrix.org/x-cfikpjmyftuncdpf) (Max SendQ exceeded)
2021-04-24 21:21:55 +0000teej(uid154177@gateway/web/irccloud.com/x-aqljzrvlwnvlpfor) (Ping timeout: 245 seconds)
2021-04-24 21:21:55 +0000dmj`(sid72307@gateway/web/irccloud.com/x-hiydzdvhdibdbilo) (Ping timeout: 250 seconds)
2021-04-24 21:21:55 +0000aizen_s(sid462968@gateway/web/irccloud.com/x-cimltabwsuoipsqn) (Ping timeout: 250 seconds)
2021-04-24 21:21:55 +0000entel(uid256215@botters/entel) (Ping timeout: 261 seconds)
2021-04-24 21:21:55 +0000Tesseraction(~Tesseract@unaffiliated/tesseraction) (Ping timeout: 260 seconds)
2021-04-24 21:21:55 +0000dan64(~dan64@dannyadam.com)
2021-04-24 21:21:55 +0000Cerise(~jerry@2a02:c207:3004:3544::1)
2021-04-24 21:21:55 +0000wonko7(~wonko7@62.115.229.50) (Max SendQ exceeded)
2021-04-24 21:21:59 +0000mozzarella(~sam@modemcable229.128-202-24.mc.videotron.ca)
2021-04-24 21:21:59 +0000benwr____(sid372383@gateway/web/irccloud.com/x-mijbqpsjqwboudpc) (Ping timeout: 269 seconds)
2021-04-24 21:21:59 +0000Sheilong(uid293653@gateway/web/irccloud.com/x-listalaenmlgtgtz) (Ping timeout: 250 seconds)
2021-04-24 21:22:00 +0000Ericson2314(ericson231@gateway/shell/matrix.org/x-ksbmrykeuszgsyik) (Max SendQ exceeded)
2021-04-24 21:22:00 +0000themsay[m](themsaymat@gateway/shell/matrix.org/x-hpjgawiyzuenumyt) (Max SendQ exceeded)
2021-04-24 21:22:00 +0000dsrt^(dsrt@ip98-184-89-2.mc.at.cox.net) (Max SendQ exceeded)
2021-04-24 21:22:02 +0000jtojnar(jtojnarmat@gateway/shell/matrix.org/x-gcdpdlgvumdjaoad) (Ping timeout: 258 seconds)
2021-04-24 21:22:02 +0000johnnyboy[m](gifumatrix@gateway/shell/matrix.org/x-werjqffkoelbdsvc) (Ping timeout: 245 seconds)
2021-04-24 21:22:03 +0000elusive(~Jeanne-Ka@199.116.118.216)
2021-04-24 21:22:03 +0000SrPx(sid108780@gateway/web/irccloud.com/x-yhksykcahzlylxhe) (Ping timeout: 250 seconds)
2021-04-24 21:22:03 +0000drupol(sid117588@gateway/web/irccloud.com/x-gsnwinbjioyhnadu) (Ping timeout: 250 seconds)
2021-04-24 21:22:03 +0000mat[m]1(matmatrixo@gateway/shell/matrix.org/x-uwjgvmzxszuovuwu) (Ping timeout: 258 seconds)
2021-04-24 21:22:03 +0000joe[m]1(joemonoida@gateway/shell/matrix.org/x-dyuqcnyqoeqswuzr) (Ping timeout: 258 seconds)
2021-04-24 21:22:04 +0000miklcct(quasselcor@2001:19f0:7402:d31:5400:3ff:fe51:a0cd) (Max SendQ exceeded)
2021-04-24 21:22:04 +0000Ekho(~Ekho@unaffiliated/ekho) (Max SendQ exceeded)
2021-04-24 21:22:05 +0000arcontethegreat[(arcontethe@gateway/shell/matrix.org/x-htiwddqvyzfqikyg) (Max SendQ exceeded)
2021-04-24 21:22:05 +0000cgfbee(~bot@oc1.itim-cj.ro) (Max SendQ exceeded)
2021-04-24 21:22:05 +0000M9ndres[m](m9ndresmat@gateway/shell/matrix.org/x-seocxulfsqrbeznw) (Ping timeout: 246 seconds)
2021-04-24 21:22:05 +0000chrisbloecker[m](chrisbloec@gateway/shell/matrix.org/x-ocvqnqycybxbaszr) (Ping timeout: 267 seconds)
2021-04-24 21:22:06 +0000heck-to-the-gnom(heck-to-th@gateway/shell/matrix.org/x-bjzlaxrwotuujapr) (Ping timeout: 267 seconds)
2021-04-24 21:22:06 +0000Lurkki[m]1(lurkkipriv@gateway/shell/matrix.org/x-qkyndrlwwbcdfprx) (Ping timeout: 267 seconds)
2021-04-24 21:22:08 +0000michaelpj(michaelpjm@gateway/shell/matrix.org/x-utrdbjjavwpdczxi) (Ping timeout: 267 seconds)
2021-04-24 21:22:08 +0000alexfmpe(alexfmpema@gateway/shell/matrix.org/x-imekgdrdrodzrfgy) (Ping timeout: 246 seconds)
2021-04-24 21:22:08 +0000Noughtmare[m](naughtmare@gateway/shell/matrix.org/x-hglfphyajylwppku) (Ping timeout: 246 seconds)
2021-04-24 21:22:08 +0000CrabMan(phi-matrix@gateway/shell/matrix.org/x-xdtvjrfhqsljsdjb) (Ping timeout: 246 seconds)
2021-04-24 21:22:08 +0000jchia[m](jchiamatri@gateway/shell/matrix.org/x-tmjpbywqkunnmwlp) (Ping timeout: 248 seconds)
2021-04-24 21:22:08 +0000fakubish[m](fakubishne@gateway/shell/matrix.org/x-gkdgoaumokeroxkj) (Ping timeout: 248 seconds)
2021-04-24 21:22:08 +0000Hanma[m](hanmamatri@gateway/shell/matrix.org/x-ktsmcyuxlppyzjzb) (Ping timeout: 248 seconds)
2021-04-24 21:22:08 +0000dominicusin[m](dominicusi@gateway/shell/matrix.org/x-cjngkratdjygajhy) (Ping timeout: 248 seconds)
2021-04-24 21:22:09 +0000viktorstrate[m](viktorstra@gateway/shell/matrix.org/x-nrjjnqkdtfbtkeet) (Ping timeout: 248 seconds)
2021-04-24 21:22:09 +0000speakerspivakeem(speakerdea@gateway/shell/matrix.org/x-wcklxxqsduyzhunq) (Ping timeout: 248 seconds)
2021-04-24 21:22:09 +0000TheWizardTower[m(thewizardt@gateway/shell/matrix.org/x-qjoroerupruqagtt) (Ping timeout: 248 seconds)
2021-04-24 21:22:09 +0000slycelote[m](slycelotem@gateway/shell/matrix.org/x-yxhtximmpenozqzr) (Ping timeout: 248 seconds)
2021-04-24 21:22:10 +0000berberman[T](berberma4@gateway/shell/matrix.org/x-tzjvckdqlgqermfr) (Ping timeout: 248 seconds)
2021-04-24 21:22:10 +0000immae(immaematri@gateway/shell/matrix.org/x-yvvixibszngfldow) (Ping timeout: 248 seconds)
2021-04-24 21:22:10 +0000mjlbach(atriusmatr@gateway/shell/matrix.org/x-pmoozefxefawidpk) (Ping timeout: 258 seconds)
2021-04-24 21:22:10 +0000pqwy[m](pqwymatrix@gateway/shell/matrix.org/x-owkvliodtdhnzlyi) (Ping timeout: 258 seconds)
2021-04-24 21:22:10 +0000dyniec[m](dyniecmatr@gateway/shell/matrix.org/x-uodwhoydkwsqekam) (Ping timeout: 258 seconds)
2021-04-24 21:22:10 +0000jo[m]3(josefmat1@gateway/shell/matrix.org/x-qfhlavfxfkadmzvi) (Ping timeout: 258 seconds)
2021-04-24 21:22:11 +0000Lurkki[m](lurkkifene@gateway/shell/matrix.org/x-nrwgmnbvosqqhpnr) (Ping timeout: 258 seconds)
2021-04-24 21:22:11 +0000EmanuelLoos[m](emanuel-lo@gateway/shell/matrix.org/x-xedchorwdbepbzbx) (Ping timeout: 258 seconds)
2021-04-24 21:22:11 +0000pnotequalnp[m](pnotequaln@gateway/shell/matrix.org/x-ilonrmhzsbjadrsm) (Ping timeout: 258 seconds)
2021-04-24 21:22:12 +0000samthecoy[m](samthecoym@gateway/shell/matrix.org/x-qaqujubkonygneyt) (Ping timeout: 258 seconds)
2021-04-24 21:22:12 +0000johnnyv[m](badwolf256@gateway/shell/matrix.org/x-yxpkxdztlttkpjgg) (Ping timeout: 258 seconds)
2021-04-24 21:22:12 +0000loyon(loyonmatri@gateway/shell/matrix.org/x-wopkgivyetfmwccv) (Ping timeout: 258 seconds)
2021-04-24 21:22:12 +0000supersven[m](supersvenm@gateway/shell/matrix.org/x-vtyvtzkqhlabrowo) (Ping timeout: 258 seconds)
2021-04-24 21:22:13 +0000domenkozar[m](domenkozar@NixOS/user/domenkozar) (Ping timeout: 258 seconds)
2021-04-24 21:22:13 +0000lambdaclan(lambdaclan@gateway/shell/matrix.org/x-amguadwuvvlssavp) (Max SendQ exceeded)
2021-04-24 21:22:13 +0000jesser[m](jessermatr@gateway/shell/matrix.org/x-aupqwvyiwubojerx)
2021-04-24 21:22:13 +0000Poyo[m](stikynotha@gateway/shell/matrix.org/x-xcbfkbcujzncipye)
2021-04-24 21:22:13 +0000lnxw37d4(lnxw37d4ma@gateway/shell/matrix.org/x-mzuaquuooftpadmi)
2021-04-24 21:22:13 +0000amerocu[m](amerocumat@gateway/shell/matrix.org/x-qzhlcptahjtnfoav)
2021-04-24 21:22:13 +0000fox[m]1(foxforestf@gateway/shell/matrix.org/x-hqbybhlwcrwvhxhe)
2021-04-24 21:22:13 +0000ManofLetters[m](manoflette@gateway/shell/matrix.org/x-ovmdqtbnmvvsfsit)
2021-04-24 21:22:13 +0000enya[m](enyaismatr@gateway/shell/matrix.org/x-sutipvvcssuynets)
2021-04-24 21:22:13 +0000bitonic(bitonicmat@gateway/shell/matrix.org/x-yisbdbwqrxbimepi)
2021-04-24 21:22:13 +0000JaakkoLuttinen[m(jluttinema@gateway/shell/matrix.org/x-lrgelkqzqyoiwyju)
2021-04-24 21:22:13 +0000DamienCassou(damiencass@gateway/shell/matrix.org/x-wraaqkgwwvejeluv)
2021-04-24 21:22:13 +0000megaTherion(~therion@unix.io)
2021-04-24 21:22:13 +0000chirpsalot(~Chirps@pool-98-115-239-235.phlapa.fios.verizon.net)
2021-04-24 21:22:13 +0000hyperfekt(end@bnc.hyperfekt.net)
2021-04-24 21:22:13 +0000statusbot(~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com)
2021-04-24 21:22:13 +0000gareth__(~gareth__@104.236.161.134)
2021-04-24 21:22:13 +0000Guest36391(~iomonad@95.179.211.27)
2021-04-24 21:22:13 +0000mr_yogurt(~mr_yogurt@5.61.211.35.bc.googleusercontent.com)
2021-04-24 21:22:13 +0000xensky(~xensky@xengarden.xen.prgmr.com)
2021-04-24 21:22:13 +0000cross(~cross@spitfire.i.gajendra.net)
2021-04-24 21:22:13 +0000nrdmn98(~nrdmn@95.129.53.118)
2021-04-24 21:22:13 +0000anoe(~anoe@51.15.174.146)
2021-04-24 21:22:13 +0000bcmiller(~bm3719@66.42.95.185)
2021-04-24 21:22:13 +0000nerdypepper(znc@152.67.162.71)
2021-04-24 21:22:13 +0000qz(~quetzal@li272-85.members.linode.com)
2021-04-24 21:22:13 +0000madnificent(~madnifice@static.210.74.63.178.clients.your-server.de)
2021-04-24 21:22:13 +0000Uniaika(~uniaika@163.172.211.189)
2021-04-24 21:22:13 +0000toppler`(~user@mtop.default.momentoftop.uk0.bigv.io)
2021-04-24 21:22:13 +0000marek(~mmahut@fedora/pyxel)
2021-04-24 21:22:13 +0000_janne(~janne@punainen.org)
2021-04-24 21:22:13 +0000neobit_(~neobit@159.65.243.9)
2021-04-24 21:22:14 +0000SanchayanMaity(sid478177@gateway/web/irccloud.com/x-ldcvmlbmuzzjfwoa) (Ping timeout: 245 seconds)
2021-04-24 21:22:14 +0000feepo(sid28508@gateway/web/irccloud.com/x-cjsxflpucqedrqas) (Ping timeout: 245 seconds)
2021-04-24 21:22:15 +0000DamienCassou(damiencass@gateway/shell/matrix.org/x-wraaqkgwwvejeluv) (Max SendQ exceeded)
2021-04-24 21:22:16 +0000jesser[m](jessermatr@gateway/shell/matrix.org/x-aupqwvyiwubojerx) (Ping timeout: 272 seconds)
2021-04-24 21:22:16 +0000Poyo[m](stikynotha@gateway/shell/matrix.org/x-xcbfkbcujzncipye) (Ping timeout: 272 seconds)
2021-04-24 21:22:16 +0000lnxw37d4(lnxw37d4ma@gateway/shell/matrix.org/x-mzuaquuooftpadmi) (Ping timeout: 247 seconds)
2021-04-24 21:22:16 +0000amerocu[m](amerocumat@gateway/shell/matrix.org/x-qzhlcptahjtnfoav) (Ping timeout: 272 seconds)
2021-04-24 21:22:16 +0000fox[m]1(foxforestf@gateway/shell/matrix.org/x-hqbybhlwcrwvhxhe) (Ping timeout: 272 seconds)
2021-04-24 21:22:16 +0000enya[m](enyaismatr@gateway/shell/matrix.org/x-sutipvvcssuynets) (Ping timeout: 272 seconds)
2021-04-24 21:22:16 +0000ManofLetters[m](manoflette@gateway/shell/matrix.org/x-ovmdqtbnmvvsfsit) (Ping timeout: 272 seconds)
2021-04-24 21:22:17 +0000JaakkoLuttinen[m(jluttinema@gateway/shell/matrix.org/x-lrgelkqzqyoiwyju) (Ping timeout: 272 seconds)
2021-04-24 21:22:17 +0000bitonic(bitonicmat@gateway/shell/matrix.org/x-yisbdbwqrxbimepi) (Ping timeout: 272 seconds)
2021-04-24 21:22:18 +0000eruditass(uid248673@gateway/web/irccloud.com/x-xevwmrtrjszgvhcb) (Ping timeout: 250 seconds)
2021-04-24 21:22:18 +0000pony(sid257727@gateway/web/irccloud.com/x-sdyjzzvtmmdtnyry) (Ping timeout: 250 seconds)
2021-04-24 21:22:18 +0000beardhatcode(robbertbea@gateway/shell/matrix.org/x-lsjnjwfsaaqmayss) (Ping timeout: 246 seconds)
2021-04-24 21:22:18 +0000pent(sid313808@gateway/web/irccloud.com/x-kxizvjpikxcxwtml)
2021-04-24 21:22:19 +0000totbwf(sid402332@gateway/web/irccloud.com/x-evcibzlipwnkayzd) (Ping timeout: 265 seconds)
2021-04-24 21:22:19 +0000acertain(sid470584@gateway/web/irccloud.com/x-udpocathjkijcvpk) (Ping timeout: 265 seconds)
2021-04-24 21:22:19 +0000my_name_is_not_j(mynameisno@gateway/shell/matrix.org/x-ooxznpdftgbscqkq) (Ping timeout: 258 seconds)
2021-04-24 21:22:19 +0000mly(mlydisenco@gateway/shell/matrix.org/x-hffzasvjgrikcwzr) (Ping timeout: 258 seconds)
2021-04-24 21:22:19 +0000lurkless(~ll@kiwi.pr0.tips)
2021-04-24 21:22:26 +0000Guest38723(~alexander@2a02:587:dc0a:2700:dc6:16ac:a95:eabf)
2021-04-24 21:22:26 +0000sw1nn(~sw1nn@2a00:23c7:622f:2c00:5726:e59c:c228:d7ce)
2021-04-24 21:22:26 +0000howdoi(uid224@gateway/web/irccloud.com/x-fktcgjzgkphwzaij)
2021-04-24 21:22:26 +0000justanotheruser(~justanoth@unaffiliated/justanotheruser)
2021-04-24 21:22:26 +0000twk-(~thewormki@unaffiliated/twk-)
2021-04-24 21:22:26 +0000renzhi(~renzhi@2607:fa49:6500:bc00::e7b)
2021-04-24 21:22:26 +0000stef204(~stef204@unaffiliated/stef-204/x-384198)
2021-04-24 21:22:26 +0000hiroaki(~hiroaki@2a02:8108:8c40:2bb8:6312:c8ad:fc31:201b)
2021-04-24 21:22:26 +0000dmytrish(~mitra@2a02:8084:a82:d900:6010:2869:d10:372c)
2021-04-24 21:22:26 +0000Feuermagier(~Feuermagi@2a02:2488:4211:3400:7285:c2ff:fe22:172e)
2021-04-24 21:22:26 +0000srk(~sorki@unaffiliated/srk)
2021-04-24 21:22:26 +0000graingert(sid128301@gateway/web/irccloud.com/x-hzpuckilkrvcdlsz)
2021-04-24 21:22:26 +0000shutdown_-h_now(~arjan@2001:1c06:2d0b:2312:41b7:a173:a0b0:162b)
2021-04-24 21:22:26 +0000haritz(~hrtz@unaffiliated/haritz)
2021-04-24 21:22:26 +0000b20n(sid115913@gateway/web/irccloud.com/x-wvurqfbcjkkidela)
2021-04-24 21:22:26 +0000d0liver(sid363046@gateway/web/irccloud.com/x-nemzonvlsnfdjkyk)
2021-04-24 21:22:26 +0000lawid(~quassel@2a02:8109:b5c0:5334:265e:beff:fe2a:dde8)
2021-04-24 21:22:26 +0000dexterlb(~dexterlb@2a01:9e40:2:2::2)
2021-04-24 21:22:26 +0000darthThorik(sid39589@gateway/web/irccloud.com/x-oqamjdqpvpmmnlft)
2021-04-24 21:22:26 +0000albethere(sid457088@gateway/web/irccloud.com/x-egqhysbcgqwwryxs)
2021-04-24 21:22:26 +0000dsal(sid13060@gateway/web/irccloud.com/x-qtgpxhcseaxflmxx)
2021-04-24 21:22:26 +0000NinjaTrappeur(~ninja@unaffiliated/ninjatrappeur)
2021-04-24 21:22:26 +0000PtxDK(~quassel@2a01:7c8:aac3:591:5054:ff:fe3d:cac6)
2021-04-24 21:22:26 +0000pepeiborra(sid443799@gateway/web/irccloud.com/x-wwhumdjiavtzqvnj)
2021-04-24 21:22:26 +0000thi(sid97277@gateway/web/irccloud.com/x-qecopghcofyuqahp)
2021-04-24 21:22:26 +0000sclv(sid39734@haskell/developer/sclv)
2021-04-24 21:22:26 +0000tekacs(tekacs@2a01:7e00::f03c:91ff:fe93:43aa)
2021-04-24 21:22:26 +0000pjb(~pjb@2a01cb04063ec500ad42b45c394adc0f.ipv6.abo.wanadoo.fr)
2021-04-24 21:22:26 +0000sqrt2(~ben@unaffiliated/sqrt2)
2021-04-24 21:22:26 +0000higherorder__(sid185221@gateway/web/irccloud.com/x-koiygmjzeszehzrt)
2021-04-24 21:22:26 +0000kip(sid71464@gateway/web/irccloud.com/x-urjbgtyvyzgxzumc)
2021-04-24 21:22:26 +0000idnar(sid12240@gateway/web/irccloud.com/x-pvawekuiulmnefkg)
2021-04-24 21:22:26 +0000travv0(sid293381@gateway/web/irccloud.com/x-hoivuatisyqixyit)
2021-04-24 21:22:26 +0000cbarrett(sid192934@adium/cbarrett)
2021-04-24 21:22:26 +0000edmundnoble(sid229620@gateway/web/irccloud.com/x-emmrpthgulpebvrs)
2021-04-24 21:22:26 +0000PoliticsII______(sid193551@gateway/web/irccloud.com/x-yxyceemvbzkrgcna)
2021-04-24 21:22:26 +0000teehemkay(sid14792@gateway/web/irccloud.com/x-aozhbjqwwkaxnioe)
2021-04-24 21:22:26 +0000simplegauss(~simplegau@2001:19f0:ac01:247:5400:ff:fe5c:689f)
2021-04-24 21:22:26 +0000lechner(~lechner@letbox-vps.us-core.com)
2021-04-24 21:22:26 +0000lawt(~lawt@2601:200:8101:f140:dea6:32ff:fea1:adfa)
2021-04-24 21:22:26 +0000flow(~none@salem.informatik.uni-erlangen.de)
2021-04-24 21:22:26 +0000Blkt(~Blkt@2a01:4f8:200:2425::adda)
2021-04-24 21:22:26 +0000tionos-(~tionos@2a0b:b7c4:1:731::1)
2021-04-24 21:22:26 +0000PyroLagus(PyroLagus@i.have.ipv6.on.coding4coffee.org)
2021-04-24 21:22:26 +0000nick_h(sid319833@gateway/web/irccloud.com/x-rpjxyycebsudwryk)
2021-04-24 21:22:26 +0000lexi-lambda(sid92601@gateway/web/irccloud.com/x-lbtagjjufznxxeun)
2021-04-24 21:22:26 +0000cawfee(chiya@2406:3003:2077:2341::babe)
2021-04-24 21:22:26 +0000jiribenes(~jiribenes@rosa.jiribenes.com)
2021-04-24 21:22:26 +0000elvishjerricco(sid237756@NixOS/user/ElvishJerricco)
2021-04-24 21:22:26 +0000thecoffemaker(~thecoffem@unaffiliated/thecoffemaker)
2021-04-24 21:22:26 +0000m1dnight_(~m1dnight@188.ip-51-91-158.eu)
2021-04-24 21:22:26 +0000Kamuela(sid111576@gateway/web/irccloud.com/x-ichknpgshtclrsay)
2021-04-24 21:22:26 +0000lolmac(sid171216@gateway/web/irccloud.com/x-dfzmqyyhzzvhceve)
2021-04-24 21:22:26 +0000nurupo(~nurupo.ga@unaffiliated/nurupo)
2021-04-24 21:22:26 +0000typetetris(uid275937@gateway/web/irccloud.com/x-mjjfisuvtdksxyob)
2021-04-24 21:22:26 +0000bollu(~bollu@139.59.46.74)
2021-04-24 21:22:26 +0000puffnfresh(~puffnfres@45.76.124.5)
2021-04-24 21:22:26 +0000dwt(~dwt@c-98-200-58-177.hsd1.tx.comcast.net)
2021-04-24 21:22:26 +0000nikola1(~nikola@2a03:b0c0:2:d0::dc2:c001)
2021-04-24 21:22:26 +0000rzmt(~rzmt@87-92-180-112.rev.dnainternet.fi)
2021-04-24 21:22:26 +0000mp___(mp@hell.cx)
2021-04-24 21:22:26 +0000kum0(~kumo@139.180.144.166)
2021-04-24 21:22:26 +0000Inoperable(~PLAYER_1@fancydata.science)
2021-04-24 21:22:28 +0000Guillaum(guiboumatr@gateway/shell/matrix.org/x-rnvdqawoouwzijnb) (Ping timeout: 276 seconds)
2021-04-24 21:22:29 +0000madjestic[m](madjesticm@gateway/shell/matrix.org/x-ktewxaguqqmdajwc) (Ping timeout: 276 seconds)
2021-04-24 21:22:29 +0000anon1891[m](anon1891ma@gateway/shell/matrix.org/x-luqmyjielnldrpsd) (Ping timeout: 276 seconds)
2021-04-24 21:22:29 +0000stevekrouse1[m](stevekrous@gateway/shell/matrix.org/x-vkuwqhpopicdwkjn) (Ping timeout: 276 seconds)
2021-04-24 21:22:29 +0000alar[m](alarmxalat@gateway/shell/matrix.org/x-rxfmpjgktvgasqzm) (Ping timeout: 276 seconds)
2021-04-24 21:22:29 +0000maerwald[m](maerwaldma@gateway/shell/matrix.org/x-xrjtspmgpqnkebab) (Ping timeout: 276 seconds)
2021-04-24 21:22:30 +0000adziahel[m](adziahelma@gateway/shell/matrix.org/x-cyhjmrgvstvbsvar) (Ping timeout: 276 seconds)
2021-04-24 21:22:30 +0000mrus[m](mrusmatrix@gateway/shell/matrix.org/x-uxnzjhojjgavftjp) (Ping timeout: 276 seconds)
2021-04-24 21:22:30 +0000toasty_avocado[m(toastyavoc@gateway/shell/matrix.org/x-suvnnltfbgmbcmqp) (Ping timeout: 276 seconds)
2021-04-24 21:22:30 +0000rednaZ[m](r3dnazmatr@gateway/shell/matrix.org/x-dhpmvcgpmsxtqfgs) (Ping timeout: 276 seconds)
2021-04-24 21:22:30 +0000jeffcasavant[m](jeffcasava@gateway/shell/matrix.org/x-xswajewqaoguxzda) (Ping timeout: 276 seconds)
2021-04-24 21:22:30 +0000fgaz(fgazmatrix@gateway/shell/matrix.org/x-cxxxnfuxyrjazthh) (Ping timeout: 276 seconds)
2021-04-24 21:22:30 +0000PotatoHatsue(berbermanp@gateway/shell/matrix.org/x-nvqlvyzjmcadpsda) (Ping timeout: 276 seconds)
2021-04-24 21:22:33 +0000howdoi(uid224@gateway/web/irccloud.com/x-fktcgjzgkphwzaij) (Ping timeout: 255 seconds)
2021-04-24 21:22:33 +0000albethere(sid457088@gateway/web/irccloud.com/x-egqhysbcgqwwryxs) (Ping timeout: 255 seconds)
2021-04-24 21:22:33 +0000dsal(sid13060@gateway/web/irccloud.com/x-qtgpxhcseaxflmxx) (Ping timeout: 255 seconds)
2021-04-24 21:22:33 +0000higherorder__(sid185221@gateway/web/irccloud.com/x-koiygmjzeszehzrt) (Ping timeout: 283 seconds)
2021-04-24 21:22:33 +0000elvishjerricco(sid237756@NixOS/user/ElvishJerricco) (Ping timeout: 255 seconds)
2021-04-24 21:22:33 +0000Guest38723(~alexander@2a02:587:dc0a:2700:dc6:16ac:a95:eabf) (Max SendQ exceeded)
2021-04-24 21:22:34 +0000twk-(~thewormki@unaffiliated/twk-) (Quit: WeeChat 2.9)
2021-04-24 21:22:34 +0000kiix(ashleyisnu@gateway/shell/matrix.org/x-cggkcfcswoqnyqyv) (Ping timeout: 245 seconds)
2021-04-24 21:22:34 +0000liszt(sid336875@gateway/web/irccloud.com/x-kdtramimtrepsyqt)
2021-04-24 21:22:34 +0000twk-(~thewormki@2001:19f0:5001:3191:5400:2ff:fe0c:6be1)
2021-04-24 21:22:34 +0000Tario(~Tario@201.192.165.173) (Ping timeout: 265 seconds)
2021-04-24 21:22:35 +0000dsrt^(dsrt@ip98-184-89-2.mc.at.cox.net)
2021-04-24 21:22:35 +0000alexander(~alexander@2a02:587:dc0a:2700:dc6:16ac:a95:eabf)
2021-04-24 21:22:35 +0000mith[m](mithmatrix@gateway/shell/matrix.org/x-lrdejlaijmmvhxim) (Ping timeout: 276 seconds)
2021-04-24 21:22:35 +0000maralorn(maralornma@gateway/shell/matrix.org/x-effbgvlwiyjkbspr) (Ping timeout: 276 seconds)
2021-04-24 21:22:36 +0000And1(~And1@brewington.uberspace.de) (Ping timeout: 240 seconds)
2021-04-24 21:22:36 +0000ahf(ahf@irssi/staff/ahf) (Ping timeout: 260 seconds)
2021-04-24 21:22:36 +0000stux|RC(stux2@grid9.quadspeedi.net)
2021-04-24 21:22:36 +0000kupi(uid212005@gateway/web/irccloud.com/x-pjgdlrtcxolqutly) (Ping timeout: 245 seconds)
2021-04-24 21:22:36 +0000bjs(sid190364@gateway/web/irccloud.com/x-rysacrenfdxsmjyu) (Ping timeout: 245 seconds)
2021-04-24 21:22:36 +0000And1(~And1@brewington.uberspace.de)
2021-04-24 21:22:36 +0000wpcarro_(sid397589@gateway/web/irccloud.com/x-ahewuhnoiijbwpmc) (Ping timeout: 250 seconds)
2021-04-24 21:22:36 +0000lally(sid388228@gateway/web/irccloud.com/x-ilucbequfappbwaf) (Ping timeout: 250 seconds)
2021-04-24 21:22:37 +0000cemerick(sid54985@gateway/web/irccloud.com/x-dmosxtcpbaaxlpbx) (Ping timeout: 258 seconds)
2021-04-24 21:22:37 +0000Sheilong(uid293653@gateway/web/irccloud.com/x-ecdalnlqquyhquxx)
2021-04-24 21:22:37 +0000NemesisD(sid24071@gateway/web/irccloud.com/x-jbscorkbghkikoec) (Ping timeout: 245 seconds)
2021-04-24 21:22:37 +0000joshmeredith(sid387798@gateway/web/irccloud.com/x-puyeogwrdolrmxnl) (Ping timeout: 258 seconds)
2021-04-24 21:22:37 +0000Sheilong(uid293653@gateway/web/irccloud.com/x-ecdalnlqquyhquxx) (Excess Flood)
2021-04-24 21:22:38 +0000natim87(sid286962@gateway/web/irccloud.com/x-prbhcwqvabbymouf)
2021-04-24 21:22:38 +0000cstrahan(sid36118@gateway/web/irccloud.com/x-hhcxapzgwlqibukd) (Ping timeout: 245 seconds)
2021-04-24 21:22:41 +0000AndreasK(sid320732@gateway/web/irccloud.com/x-spqgtdrtcwqozgos) (Ping timeout: 250 seconds)
2021-04-24 21:22:43 +0000b20n(sid115913@gateway/web/irccloud.com/x-wvurqfbcjkkidela) (Ping timeout: 265 seconds)
2021-04-24 21:22:43 +0000d0liver(sid363046@gateway/web/irccloud.com/x-nemzonvlsnfdjkyk) (Ping timeout: 265 seconds)
2021-04-24 21:22:43 +0000thi(sid97277@gateway/web/irccloud.com/x-qecopghcofyuqahp) (Ping timeout: 265 seconds)
2021-04-24 21:22:43 +0000sclv(sid39734@haskell/developer/sclv) (Ping timeout: 265 seconds)
2021-04-24 21:22:43 +0000idnar(sid12240@gateway/web/irccloud.com/x-pvawekuiulmnefkg) (Ping timeout: 265 seconds)
2021-04-24 21:22:43 +0000travv0(sid293381@gateway/web/irccloud.com/x-hoivuatisyqixyit) (Ping timeout: 265 seconds)
2021-04-24 21:22:43 +0000teehemkay(sid14792@gateway/web/irccloud.com/x-aozhbjqwwkaxnioe) (Ping timeout: 265 seconds)
2021-04-24 21:22:44 +0000parisienne(sid383587@gateway/web/irccloud.com/x-nwydpoxjajroybbx)
2021-04-24 21:22:49 +0000rizary(sid220347@gateway/web/irccloud.com/x-fdmmbtrvbseviuro)
2021-04-24 21:22:51 +0000SanchayanMaity(sid478177@gateway/web/irccloud.com/x-iknoupunjrgfpxlk)
2021-04-24 21:22:52 +0000Tario(~Tario@201.192.165.173)
2021-04-24 21:22:58 +0000alanz(sid110616@gateway/web/irccloud.com/x-wrkjabizodqmlyrt) (Ping timeout: 276 seconds)
2021-04-24 21:23:01 +0000aizen_s(sid462968@gateway/web/irccloud.com/x-nmgeupgtnhzagvmo)
2021-04-24 21:23:04 +0000betawaffle(sid2730@gateway/web/irccloud.com/x-vuapykwwajysrsxt)
2021-04-24 21:23:05 +0000Sheilong(uid293653@gateway/web/irccloud.com/x-hxduuckhynlbsgsf)
2021-04-24 21:23:06 +0000entel(uid256215@gateway/web/irccloud.com/x-faybeeyqfufhejcm)
2021-04-24 21:23:07 +0000dgpratt(sid193493@gateway/web/irccloud.com/x-yujexlmxhvpapqdm) (Ping timeout: 250 seconds)
2021-04-24 21:23:07 +0000nh2(sid309956@gateway/web/irccloud.com/x-sfwmjcpeywrfgggs) (Ping timeout: 250 seconds)
2021-04-24 21:23:07 +0000gekh(~gkh@thor.kevinhill.nl) (Ping timeout: 265 seconds)
2021-04-24 21:23:11 +0000kip(sid71464@gateway/web/irccloud.com/x-urjbgtyvyzgxzumc) (Ping timeout: 260 seconds)
2021-04-24 21:23:11 +0000Kamuela(sid111576@gateway/web/irccloud.com/x-ichknpgshtclrsay) (Ping timeout: 260 seconds)
2021-04-24 21:23:12 +0000rann(sid175221@gateway/web/irccloud.com/x-nsujrihzxxbdnxuk)
2021-04-24 21:23:14 +0000ahf(ahf@anubis.0x90.dk)
2021-04-24 21:23:25 +0000acertain(sid470584@gateway/web/irccloud.com/x-ogravonvfzuqdrmh)
2021-04-24 21:23:25 +0000dmj`(sid72307@gateway/web/irccloud.com/x-apketcevmbwpajcv)
2021-04-24 21:23:32 +0000cemerick(sid54985@gateway/web/irccloud.com/x-egkglgovrlmgnbit)
2021-04-24 21:23:33 +0000alunduil(alunduil@gateway/web/irccloud.com/x-lfjncrqckqiqjrhx) (Ping timeout: 250 seconds)
2021-04-24 21:23:35 +0000AndreasK(sid320732@gateway/web/irccloud.com/x-zihhiadtvsrfgmeq)
2021-04-24 21:23:37 +0000nlofaro(sid258233@gateway/web/irccloud.com/x-zceopsfcsjrtpvjo) (Ping timeout: 276 seconds)
2021-04-24 21:23:38 +0000joshmeredith(sid387798@gateway/web/irccloud.com/x-qsbwyymsmrfcuksb)
2021-04-24 21:23:39 +0000graingert(sid128301@gateway/web/irccloud.com/x-hzpuckilkrvcdlsz) (Ping timeout: 260 seconds)
2021-04-24 21:23:39 +0000cbarrett(sid192934@adium/cbarrett) (Ping timeout: 260 seconds)
2021-04-24 21:23:39 +0000lolmac(sid171216@gateway/web/irccloud.com/x-dfzmqyyhzzvhceve) (Ping timeout: 260 seconds)
2021-04-24 21:23:39 +0000lally(sid388228@gateway/web/irccloud.com/x-mustwksujnqlrayq)
2021-04-24 21:23:44 +0000Nascha(sid212230@gateway/web/irccloud.com/x-dvgxunvqabbbhujn) (Ping timeout: 245 seconds)
2021-04-24 21:23:44 +0000higherorder__(sid185221@gateway/web/irccloud.com/x-wtimblnxvtqrrlzx)
2021-04-24 21:23:49 +0000thunderrd(~thunderrd@183.182.114.233)
2021-04-24 21:23:52 +0000Mrbuck(~Mrbuck@gateway/tor-sasl/mrbuck) (Quit: WeeChat 2.8)
2021-04-24 21:23:53 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-nguykonvxhkpdqnv)
2021-04-24 21:23:54 +0000drupol(sid117588@gateway/web/irccloud.com/x-mvxmjrjztnobaxja)
2021-04-24 21:23:57 +0000^[(sid43445@ircpuzzles/2015/april-fools/sixth/zgrep) (Ping timeout: 246 seconds)
2021-04-24 21:23:59 +0000carter(sid14827@gateway/web/irccloud.com/x-velgelprbzzboucb) (Ping timeout: 250 seconds)
2021-04-24 21:24:00 +0000b20n(sid115913@gateway/web/irccloud.com/x-cchyjwwvmcgmcjcg)
2021-04-24 21:24:00 +0000wpcarro_(sid397589@gateway/web/irccloud.com/x-oqezoawcccpelrna)
2021-04-24 21:24:21 +0000Kamuela(sid111576@gateway/web/irccloud.com/x-exfzzytdnrdihnuk)
2021-04-24 21:24:25 +0000NemesisD(sid24071@gateway/web/irccloud.com/x-ycovkwiujmamhcns)
2021-04-24 21:24:38 +0000alanz(sid110616@gateway/web/irccloud.com/x-ncrnigbstdtdkqie)
2021-04-24 21:24:40 +0000npgm(sid42623@gateway/web/irccloud.com/x-fhkrdsmpgobnqrhj)
2021-04-24 21:24:43 +0000PotatoGim(sid99505@gateway/web/irccloud.com/x-stkdlziizvdtczpk)
2021-04-24 21:24:44 +0000travv0(sid293381@gateway/web/irccloud.com/x-ibennfphzbqxqksd)
2021-04-24 21:24:48 +0000nh2(sid309956@gateway/web/irccloud.com/x-ijoedzrmmabuizls)
2021-04-24 21:24:52 +0000kupi(uid212005@gateway/web/irccloud.com/x-litwvghnkldddtab)
2021-04-24 21:24:53 +0000alunduil(alunduil@gateway/web/irccloud.com/x-qgdrlegiweaqkffo)
2021-04-24 21:25:21 +0000idnar(sid12240@gateway/web/irccloud.com/x-keevbfwrcfohgwht)
2021-04-24 21:25:26 +0000totbwf(sid402332@gateway/web/irccloud.com/x-rxfcdyoogtewbrat)
2021-04-24 21:25:31 +0000JSharp(sid4580@gateway/web/irccloud.com/x-nfhedyalqvihxsau)
2021-04-24 21:25:31 +0000d0liver(sid363046@gateway/web/irccloud.com/x-exedhhwbfaneiogy)
2021-04-24 21:25:33 +0000cstrahan(sid36118@gateway/web/irccloud.com/x-hpizenqsuhtlubbn)
2021-04-24 21:25:35 +0000teehemkay(sid14792@gateway/web/irccloud.com/x-vrzhbkfkvvlqpciw)
2021-04-24 21:25:38 +0000SrPx(sid108780@gateway/web/irccloud.com/x-hvitdvhqpzdufslz)
2021-04-24 21:25:39 +0000lolmac(sid171216@gateway/web/irccloud.com/x-pmkagfcsycujpuet)
2021-04-24 21:25:41 +0000sclv(sid39734@gateway/web/irccloud.com/x-wtovbcwumwbvxdup)
2021-04-24 21:25:45 +0000kip(sid71464@gateway/web/irccloud.com/x-webckzlcagezilts)
2021-04-24 21:25:47 +0000benwr____(sid372383@gateway/web/irccloud.com/x-xfdqoomnehumnzni)
2021-04-24 21:25:52 +0000graingert(sid128301@gateway/web/irccloud.com/x-xoqbygpcvszggkhq)
2021-04-24 21:26:08 +0000nlofaro(sid258233@gateway/web/irccloud.com/x-usnfghvzaavehzve)
2021-04-24 21:26:15 +0000dgpratt(sid193493@gateway/web/irccloud.com/x-ovlxokqacfliraro)
2021-04-24 21:26:15 +0000teej(uid154177@gateway/web/irccloud.com/x-cqwrlftjlffnofnc)
2021-04-24 21:26:22 +0000thi(sid97277@gateway/web/irccloud.com/x-oifnjcxoqwnxxowb)
2021-04-24 21:26:22 +0000Nascha(sid212230@gateway/web/irccloud.com/x-isfxwpevxpkghjql)
2021-04-24 21:26:32 +0000pony(sid257727@gateway/web/irccloud.com/x-jyhuuhwowyhbtbjx)
2021-04-24 21:26:33 +0000cgfbee(~bot@oc1.itim-cj.ro)
2021-04-24 21:26:50 +0000dsal(sid13060@gateway/web/irccloud.com/x-rekuaujdfzsbqruq)
2021-04-24 21:26:51 +0000elvishjerricco(sid237756@gateway/web/irccloud.com/x-coigkgkipdyddgrh)
2021-04-24 21:26:54 +0000JSharp(sid4580@gateway/web/irccloud.com/x-nfhedyalqvihxsau) (Client Quit)
2021-04-24 21:27:06 +0000carter(sid14827@gateway/web/irccloud.com/x-vsudvvlzpntyavur)
2021-04-24 21:27:15 +0000^[(sid43445@gateway/web/irccloud.com/x-ugyfoxhbynrgoqzp)
2021-04-24 21:27:19 +0000feepo(sid28508@gateway/web/irccloud.com/x-scbvwvhfmythcfru)
2021-04-24 21:27:21 +0000eruditass(uid248673@gateway/web/irccloud.com/x-cnlrhpzwvwyuplws)
2021-04-24 21:27:24 +0000bjs(sid190364@gateway/web/irccloud.com/x-qkboxvptydjijwec)
2021-04-24 21:27:28 +0000JSharp(sid4580@gateway/web/irccloud.com/x-dwcuofjltlsfqbsg)
2021-04-24 21:27:44 +0000cbarrett(sid192934@gateway/web/irccloud.com/x-pcpsnnndmmzgqjie)
2021-04-24 21:27:45 +0000carter(sid14827@gateway/web/irccloud.com/x-vsudvvlzpntyavur) (Excess Flood)
2021-04-24 21:28:18 +0000howdoi(uid224@gateway/web/irccloud.com/x-ecwsnchldyvjqgyy)
2021-04-24 21:28:31 +0000carter(sid14827@gateway/web/irccloud.com/x-wclemwdyhmqdbmht)
2021-04-24 21:28:45 +0000knupfer(~Thunderbi@200116b82b743500f8577e0c0d2a95b9.dip.versatel-1u1.de) (Ping timeout: 250 seconds)
2021-04-24 21:29:08 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-nguykonvxhkpdqnv) ()
2021-04-24 21:29:25 +0000elvishjerricco(sid237756@gateway/web/irccloud.com/x-coigkgkipdyddgrh) (Client Quit)
2021-04-24 21:29:50 +0000elvishjerricco(sid237756@gateway/web/irccloud.com/x-qoffvnmzuitwbrld)
2021-04-24 21:29:53 +0000albethere(sid457088@gateway/web/irccloud.com/x-ajnbmzmsakddueby)
2021-04-24 21:30:12 +0000refusenick(~user@2601:644:8502:d700::94c9)
2021-04-24 21:31:56 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-xgptubuojnmkgaoj)
2021-04-24 21:33:09 +0000refusenick(~user@2601:644:8502:d700::94c9) (Client Quit)
2021-04-24 21:33:32 +0000refusenick(~user@2601:644:8502:d700::94c9)
2021-04-24 21:34:49 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-xgptubuojnmkgaoj) (Client Quit)
2021-04-24 21:39:16 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 260 seconds)
2021-04-24 21:41:23 +0000federd8(5d2e77a4@93-46-119-164.ip107.fastwebnet.it) (Ping timeout: 240 seconds)
2021-04-24 21:42:38 +0000shailangsa(~shailangs@host86-185-58-137.range86-185.btcentralplus.com)
2021-04-24 21:44:07 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-nwmpyzscvcchxtty)
2021-04-24 21:44:08 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-nwmpyzscvcchxtty) (Client Quit)
2021-04-24 21:51:44 +0000heck-to-the-gnom(heck-to-th@gateway/shell/matrix.org/x-zwzqldggqcawgcbk)
2021-04-24 21:52:57 +0000kritzefitz(~kritzefit@212.86.56.80) (Remote host closed the connection)
2021-04-24 21:57:21 +0000aditya(~aditya@171.76.29.233)
2021-04-24 21:57:41 +0000 <aditya> Hi guys, can anyone help me with non-rendering issue as can be seen here: https://imgur.com/a/ag44pcL
2021-04-24 21:58:23 +0000 <aditya> it says "cannot render display math formula" :(
2021-04-24 21:59:06 +0000resolve(~resolve@185.204.1.185)
2021-04-24 21:59:08 +0000 <c_wraith> If my googling isn't misleading me horribly, "display math" is a MathJax thing. You probably need to install a tool for rendering MathJax locally
2021-04-24 21:59:39 +0000 <c_wraith> Or maybe just the mathjax library? looks like it's just a javascript library
2021-04-24 22:00:39 +0000 <aditya> ❯ paru -Qn mathjax
2021-04-24 22:00:41 +0000 <aditya> mathjax 3.1.4-1
2021-04-24 22:00:46 +0000 <aditya> I already have it installed
2021-04-24 22:00:50 +0000ddellaco_(ddellacost@gateway/vpn/mullvad/ddellacosta) (Remote host closed the connection)
2021-04-24 22:00:51 +0000__monty__(~toonn@unaffiliated/toonn) (Quit: leaving)
2021-04-24 22:00:57 +0000 <c_wraith> might be a path issue?
2021-04-24 22:02:04 +0000 <aditya> the warning is coming from ghcide, i think as i can see here : https://hackage.haskell.org/package/ghcide-0.7.2.0/docs/src/Development.IDE.Spans.Common.html#hadd…
2021-04-24 22:03:31 +0000federd8(5d2e77a4@93-46-119-164.ip107.fastwebnet.it)
2021-04-24 22:04:19 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-aszvauytsypzjzxi)
2021-04-24 22:05:36 +0000federd8(5d2e77a4@93-46-119-164.ip107.fastwebnet.it) (Client Quit)
2021-04-24 22:06:10 +0000bob_twinkles_bob_twinkles
2021-04-24 22:07:15 +0000 <lechner> Hi, is Yesod with Warp still the best web framework for Haskell, please?
2021-04-24 22:08:18 +0000ddellaco_(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 22:09:14 +0000howdoi(uid224@gateway/web/irccloud.com/x-ecwsnchldyvjqgyy) (Quit: Connection closed for inactivity)
2021-04-24 22:09:45 +0000 <aditya> seems like i found relevant issue: https://github.com/haskell/haskell-language-server/issues/201
2021-04-24 22:10:48 +0000nut(~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr) (Ping timeout: 268 seconds)
2021-04-24 22:12:54 +0000ddellaco_(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 265 seconds)
2021-04-24 22:13:35 +0000Tario(~Tario@201.192.165.173) (Ping timeout: 260 seconds)
2021-04-24 22:14:06 +0000Tario(~Tario@200.119.186.31)
2021-04-24 22:17:45 +0000aditya(~aditya@171.76.29.233) (Quit: leaving)
2021-04-24 22:18:45 +0000nf(~n@monade.li) ("Fairfarren.")
2021-04-24 22:19:02 +0000nut(~gtk@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr)
2021-04-24 22:25:24 +0000elusive(~Jeanne-Ka@199.116.118.216) (Ping timeout: 245 seconds)
2021-04-24 22:27:22 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 246 seconds)
2021-04-24 22:27:22 +0000fendor(~fendor@178.165.131.197.wireless.dyn.drei.com) (Ping timeout: 246 seconds)
2021-04-24 22:27:22 +0000Tario(~Tario@200.119.186.31) (Read error: Connection reset by peer)
2021-04-24 22:27:23 +0000ahf(ahf@anubis.0x90.dk) (Changing host)
2021-04-24 22:27:23 +0000ahf(ahf@irssi/staff/ahf)
2021-04-24 22:27:49 +0000Tario(~Tario@201.192.165.173)
2021-04-24 22:28:43 +0000ChanServ(ChanServ@services.)
2021-04-24 22:28:43 +0000hitchcock.freenode.net+o ChanServ
2021-04-24 22:29:02 +0000CeriseGuest16082
2021-04-24 22:29:02 +0000rannGuest45273
2021-04-24 22:29:02 +0000nh2Guest86361
2021-04-24 22:29:02 +0000graingertGuest42533
2021-04-24 22:29:03 +0000ponyGuest12937
2021-04-24 22:29:04 +0000dsalGuest36338
2021-04-24 22:29:04 +0000alexanderGuest36168
2021-04-24 22:29:04 +0000mozzarellaGuest1810
2021-04-24 22:29:04 +0000dan64Guest19992
2021-04-24 22:29:04 +0000teejGuest59707
2021-04-24 22:29:04 +0000bjsGuest30130
2021-04-24 22:29:04 +0000JSharpGuest98452
2021-04-24 22:29:04 +0000Guest16082(~jerry@2a02:c207:3004:3544::1) (Changing host)
2021-04-24 22:29:04 +0000Guest16082(~jerry@unaffiliated/cerise)
2021-04-24 22:29:11 +0000acidjnk_new(~acidjnk@p200300d0c72b958148671e179a62db06.dip0.t-ipconnect.de)
2021-04-24 22:29:11 +0000fendor(~fendor@178.115.128.12.wireless.dyn.drei.com)
2021-04-24 22:29:11 +0000sm2n(~sm2n@bras-base-hmtnon143hw-grc-13-70-54-76-62.dsl.bell.ca)
2021-04-24 22:29:11 +0000electrostat(~dag@unaffiliated/electrostat)
2021-04-24 22:29:12 +0000snowflake(~snowflake@gateway/tor-sasl/snowflake)
2021-04-24 22:29:12 +0000e2(e2@sponsored.by.bnc4you.xyz)
2021-04-24 22:29:12 +0000Lord_of_Life(~Lord@unaffiliated/lord-of-life/x-0885362)
2021-04-24 22:29:13 +0000xelxebar(~xelxebar@gateway/tor-sasl/xelxebar)
2021-04-24 22:29:13 +0000Jesin(~Jesin@pool-72-66-101-18.washdc.fios.verizon.net)
2021-04-24 22:29:13 +0000Tesseraction(~Tesseract@unaffiliated/tesseraction)
2021-04-24 22:29:24 +0000xcmw(~textual@dyn-72-33-2-152.uwnet.wisc.edu)
2021-04-24 22:29:44 +0000Guest98452(sid4580@gateway/web/irccloud.com/x-dwcuofjltlsfqbsg) ()
2021-04-24 22:29:44 +0000xsperry(~as@unaffiliated/xsperry)
2021-04-24 22:29:55 +0000mikoto-chan(~anass@gateway/tor-sasl/mikoto-chan)
2021-04-24 22:30:09 +0000JSharp(sid4580@wikia/JSharp)
2021-04-24 22:30:46 +0000 <lechner> actually, Happstack looks better
2021-04-24 22:30:48 +0000rekahsoft(~rekahsoft@cpe0008a20f982f-cm64777d666260.cpe.net.cable.rogers.com) (Remote host closed the connection)
2021-04-24 22:31:08 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net)
2021-04-24 22:31:11 +0000rekahsoft(~rekahsoft@cpe0008a20f982f-cm64777d666260.cpe.net.cable.rogers.com)
2021-04-24 22:31:16 +0000haya(~haya@ec2-18-231-117-140.sa-east-1.compute.amazonaws.com) (Ping timeout: 265 seconds)
2021-04-24 22:31:53 +0000tv(~tv@unaffiliated/tv)
2021-04-24 22:32:51 +0000nineonine(~nineonine@50.216.62.2)
2021-04-24 22:33:31 +0000limbo(ar@45.63.9.236)
2021-04-24 22:34:01 +0000Guest30130bjs
2021-04-24 22:34:29 +0000cantstanya(~chatting@gateway/tor-sasl/cantstanya)
2021-04-24 22:34:52 +0000bennofs__(~quassel@dynamic-089-012-022-232.89.12.pool.telefonica.de) (Read error: Connection reset by peer)
2021-04-24 22:35:03 +0000Guest36168(~alexander@2a02:587:dc0a:2700:dc6:16ac:a95:eabf) (Ping timeout: 260 seconds)
2021-04-24 22:35:03 +0000bennofs_(~quassel@dynamic-089-012-022-232.89.12.pool.telefonica.de)
2021-04-24 22:35:31 +0000andreas303(~andreas@gateway/tor-sasl/andreas303)
2021-04-24 22:38:07 +0000elvishjerricco(sid237756@gateway/web/irccloud.com/x-qoffvnmzuitwbrld) (Changing host)
2021-04-24 22:38:07 +0000elvishjerricco(sid237756@NixOS/user/ElvishJerricco)
2021-04-24 22:38:45 +0000Ekho(~Ekho@unaffiliated/ekho)
2021-04-24 22:38:56 +0000elvishjerricco(sid237756@NixOS/user/ElvishJerricco) ()
2021-04-24 22:38:57 +0000sepples_(~sepples@sepples.xyz) ()
2021-04-24 22:39:08 +0000elvishjerricco(sid237756@NixOS/user/ElvishJerricco)
2021-04-24 22:40:13 +0000psydruid[m](psydruidma@gateway/shell/matrix.org/x-ijjtojxooyvwelme)
2021-04-24 22:40:13 +0000mrkajetanp(mrkajetanp@gateway/shell/matrix.org/x-lggypjkcuznbawfu)
2021-04-24 22:40:13 +0000Guest14320(bitonicmat@gateway/shell/matrix.org/x-ahzjoopovnugnfrk)
2021-04-24 22:40:14 +0000slycelote[m](slycelotem@gateway/shell/matrix.org/x-qxwtofvhhmvbqmln)
2021-04-24 22:40:14 +0000hsiktas[m](hsiktasmat@gateway/shell/matrix.org/x-gsjrwkdnojwlhccb)
2021-04-24 22:40:14 +0000fakubish[m](fakubishne@gateway/shell/matrix.org/x-ejucjpmdhmelyjcq)
2021-04-24 22:40:14 +0000joe[m](joemonoida@gateway/shell/matrix.org/x-jfvswnrdjcctvmmo)
2021-04-24 22:40:14 +0000ThaEwat(thaewraptm@gateway/shell/matrix.org/x-zrjvdaqjldoozbwe)
2021-04-24 22:40:14 +0000maralorn(maralornma@gateway/shell/matrix.org/x-fpczaqijffcnrkpc)
2021-04-24 22:40:14 +0000loyon(loyonmatri@gateway/shell/matrix.org/x-dbuybsdaqolfjfvf)
2021-04-24 22:40:14 +0000speakerspivakeem(speakerdea@gateway/shell/matrix.org/x-tgmavgvztutdkfda)
2021-04-24 22:40:14 +0000pqwy[m](pqwymatrix@gateway/shell/matrix.org/x-oheqkealrnytrlhs)
2021-04-24 22:40:14 +0000DamienCassou(damiencass@gateway/shell/matrix.org/x-vlmkjpanpcvlnzsw)
2021-04-24 22:40:14 +0000adziahel[m](adziahelma@gateway/shell/matrix.org/x-fxgpfuulectknwtl)
2021-04-24 22:40:14 +0000arcontethegreat[(arcontethe@gateway/shell/matrix.org/x-utbxuwqpnhgrncfm)
2021-04-24 22:40:14 +0000PotatoHatsue(berbermanp@gateway/shell/matrix.org/x-cdgorrungfkvrlgk)
2021-04-24 22:40:15 +0000mrus[m](mrusmatrix@gateway/shell/matrix.org/x-bnwtzopjealuvtun)
2021-04-24 22:40:15 +0000domenkozar[m](domenkozar@gateway/shell/matrix.org/x-rrfutzikoxlnrwmv)
2021-04-24 22:40:15 +0000JaakkoLuttinen[m(jluttinema@gateway/shell/matrix.org/x-iaezgisjxqykbikb)
2021-04-24 22:40:15 +0000my_name_is_not_j(mynameisno@gateway/shell/matrix.org/x-quxbbosdnjtwvvrg)
2021-04-24 22:40:15 +0000jeffcasavant[m](jeffcasava@gateway/shell/matrix.org/x-implyphghwvbpqxc)
2021-04-24 22:40:15 +0000rednaZ[m](r3dnazmatr@gateway/shell/matrix.org/x-izngtnrymamsdgyp)
2021-04-24 22:40:15 +0000anon1891[m](anon1891ma@gateway/shell/matrix.org/x-jglqskikldhsarfq)
2021-04-24 22:40:15 +0000beardhatcode(robbertbea@gateway/shell/matrix.org/x-gemukjcqeyxgqoqq)
2021-04-24 22:40:15 +0000johnnyboy[m](gifumatrix@gateway/shell/matrix.org/x-hshpzcnkjnouscdq)
2021-04-24 22:40:15 +0000themsay[m](themsaymat@gateway/shell/matrix.org/x-saboiqqcrhmykypn)
2021-04-24 22:40:15 +0000mly(mlydisenco@gateway/shell/matrix.org/x-ewdvmylmgyrkkarp)
2021-04-24 22:40:15 +0000samthecoy[m](samthecoym@gateway/shell/matrix.org/x-hruxclzacznfvtzj)
2021-04-24 22:40:15 +0000michaelpj(michaelpjm@gateway/shell/matrix.org/x-ykfbtoxpdeppeukm)
2021-04-24 22:40:15 +0000mjlbach(atriusmatr@gateway/shell/matrix.org/x-tnqtrbonstnpvbip)
2021-04-24 22:40:15 +0000Guest70260(simonmicma@gateway/shell/matrix.org/x-ebojkellpovkslxj)
2021-04-24 22:40:16 +0000srid(sridmatrix@gateway/shell/matrix.org/x-lhoqaotzxhrdesxm)
2021-04-24 22:40:16 +0000berberman[T](berberma4@gateway/shell/matrix.org/x-hqhnddntnfwsknwk)
2021-04-24 22:40:16 +0000Lurkki[m](lurkkifene@gateway/shell/matrix.org/x-fxqiqerlwwhbnecd)
2021-04-24 22:40:16 +0000johnnyv[m](badwolf256@gateway/shell/matrix.org/x-bcoxopkiysbcffjg)
2021-04-24 22:40:16 +0000Guest973(fgazmatrix@gateway/shell/matrix.org/x-rybmlciotqdjbwga)
2021-04-24 22:40:16 +0000immae(immaematri@gateway/shell/matrix.org/x-dzpquvhgzhzvsdfa)
2021-04-24 22:40:16 +0000siraben(sirabenmat@gateway/shell/matrix.org/x-vprvjmvshzjzwaie)
2021-04-24 22:40:16 +0000DevTurks[m](turkdevops@gateway/shell/matrix.org/x-ahccmidzsdwdyhlh)
2021-04-24 22:40:16 +0000Guillaum(guiboumatr@gateway/shell/matrix.org/x-kecnvcmuhfwgrytn)
2021-04-24 22:40:16 +0000TheWizardTower[m(thewizardt@gateway/shell/matrix.org/x-nzblrcahztnbfben)
2021-04-24 22:40:16 +0000alexfmpe(alexfmpema@gateway/shell/matrix.org/x-trjxzqvsyvzjueef)
2021-04-24 22:40:16 +0000CrabMan(phi-matrix@gateway/shell/matrix.org/x-ivwszzyccqpifjnv)
2021-04-24 22:40:16 +0000Noughtmare[m](naughtmare@gateway/shell/matrix.org/x-dvljatkbrkzyoabl)
2021-04-24 22:40:17 +0000Hanma[m](hanmamatri@gateway/shell/matrix.org/x-bxrewprkpipuxfei)
2021-04-24 22:40:17 +0000EmanuelLoos[m](emanuel-lo@gateway/shell/matrix.org/x-dngsojtdjzplctfx)
2021-04-24 22:40:17 +0000pnotequalnp[m](pnotequaln@gateway/shell/matrix.org/x-xqilkgqxymngrblq)
2021-04-24 22:40:17 +0000Lurkki[m]1(lurkkipriv@gateway/shell/matrix.org/x-bsasosynetchiqwr)
2021-04-24 22:40:17 +0000dominicusin[m](dominicusi@gateway/shell/matrix.org/x-aykukrinfrererxn)
2021-04-24 22:40:17 +0000Ericson2314(ericson231@gateway/shell/matrix.org/x-gyqfnzilutspeelu)
2021-04-24 22:40:17 +0000jtojnar(jtojnarmat@gateway/shell/matrix.org/x-uzcjomjncllflthl)
2021-04-24 22:40:17 +0000maerwald[m](maerwaldma@gateway/shell/matrix.org/x-lijqlqbtomkmtbox)
2021-04-24 22:40:17 +0000supersven[m](supersvenm@gateway/shell/matrix.org/x-tolchtmzdorrudlv)
2021-04-24 22:40:17 +0000mith[m](mithmatrix@gateway/shell/matrix.org/x-erwosganmezqhoit)
2021-04-24 22:40:17 +0000jesser[m](jessermatr@gateway/shell/matrix.org/x-qghuwolfosrgphni)
2021-04-24 22:40:17 +0000lnxw37d4(lnxw37d4ma@gateway/shell/matrix.org/x-cwgevrqfkxmhutaj)
2021-04-24 22:40:17 +0000toasty_avocado[m(toastyavoc@gateway/shell/matrix.org/x-qoakdccnmkyqwgan)
2021-04-24 22:40:17 +0000lambdaclan(lambdaclan@gateway/shell/matrix.org/x-srvssvttdughpnin)
2021-04-24 22:40:20 +0000dyniec[m](dyniecmatr@gateway/shell/matrix.org/x-hoqjjhwbtyzqxvrq)
2021-04-24 22:40:20 +0000enya[m](enyaismatr@gateway/shell/matrix.org/x-tiqrdgjeclxgzeks)
2021-04-24 22:40:20 +0000chrisbloecker[m](chrisbloec@gateway/shell/matrix.org/x-euopytpqbubrcmee)
2021-04-24 22:40:20 +0000madjestic[m](madjesticm@gateway/shell/matrix.org/x-ehkjptotgnzgtmaa)
2021-04-24 22:40:21 +0000amerocu[m](amerocumat@gateway/shell/matrix.org/x-lgzdzpwicyowkqyo)
2021-04-24 22:40:21 +0000M9ndres[m](m9ndresmat@gateway/shell/matrix.org/x-jiakppfxdqdpuzei)
2021-04-24 22:40:21 +0000mat[m]1(matmatrixo@gateway/shell/matrix.org/x-csjmbfnvgoldjcwp)
2021-04-24 22:40:22 +0000stevekrouse1[m](stevekrous@gateway/shell/matrix.org/x-diqtyyqdotuluztd)
2021-04-24 22:40:22 +0000jo[m]4(josefmat1@gateway/shell/matrix.org/x-cemxneuvlpmikuqo)
2021-04-24 22:40:22 +0000Poyo[m](stikynotha@gateway/shell/matrix.org/x-haknbvkyasqevnme)
2021-04-24 22:40:22 +0000jchia[m](jchiamatri@gateway/shell/matrix.org/x-fgjdezivvdirebvi)
2021-04-24 22:40:22 +0000kiix(ashleyisnu@gateway/shell/matrix.org/x-hdlishqxfgvrxtgg)
2021-04-24 22:40:22 +0000ManofLetters[m](manoflette@gateway/shell/matrix.org/x-hjfwnbryqgidayrf)
2021-04-24 22:40:23 +0000viktorstrate[m](viktorstra@gateway/shell/matrix.org/x-czyyskmsfdtcncgz)
2021-04-24 22:40:23 +0000alar[m](alarmxalat@gateway/shell/matrix.org/x-wsbjvskmyurbviic)
2021-04-24 22:40:23 +0000ddellacosta(ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-04-24 22:40:24 +0000fox[m]1(foxforestf@gateway/shell/matrix.org/x-ktrnqcmqwewsriyn)
2021-04-24 22:42:46 +0000bitmagie(~Thunderbi@200116b806e24c00585f6c775438f3bb.dip.versatel-1u1.de)
2021-04-24 22:44:17 +0000son0p(~ff@181.136.122.143) (Quit: Using Circe, the loveliest of all IRC clients)
2021-04-24 22:44:23 +0000tsaka_(~torstein@athedsl-4519432.home.otenet.gr)
2021-04-24 22:44:28 +0000seven_three(~user@pool-96-233-64-53.bstnma.fios.verizon.net)
2021-04-24 22:44:50 +0000ddellacosta(ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 246 seconds)
2021-04-24 22:48:16 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
2021-04-24 22:50:00 +0000xcmw(~textual@dyn-72-33-2-152.uwnet.wisc.edu) (Quit: Textual IRC Client: www.textualapp.com)
2021-04-24 22:52:00 +0000 <seven_three> say I have a datatype like: `data foo = Foo String`. Is it possible to put a constraint on the constructor `Foo` so that it will only accept Strings of say length 2. I would like my constructor to give me some sort of guarantee about what type of values it was constructed with so I don't need to deal with erroneous special cases in all my functions.
2021-04-24 22:54:28 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net)
2021-04-24 22:55:02 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-aszvauytsypzjzxi) ()
2021-04-24 22:57:58 +0000falafel(~falafel@pool-96-255-70-50.washdc.fios.verizon.net)
2021-04-24 22:59:03 +0000 <jollygood2> seven_three, sort of.. don't export Foo constructor, and create your own constructor mkFoo :: Char -> Char -> Foo, or maybe mkChar :: [Char] -> Maybe Foo
2021-04-24 22:59:11 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net)
2021-04-24 22:59:15 +0000stree(~stree@68.36.8.116) (Ping timeout: 252 seconds)
2021-04-24 22:59:31 +0000wroathe(~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 268 seconds)
2021-04-24 22:59:47 +0000elfets(~elfets@ip-37-201-23-96.hsi13.unitymediagroup.de) (Ping timeout: 260 seconds)
2021-04-24 23:01:40 +0000 <seven_three> jollygood2: oh ok this will work in my case.
2021-04-24 23:02:22 +0000waleee-cl(uid373333@gateway/web/irccloud.com/x-xxnfubjbiyrpdold)
2021-04-24 23:04:13 +0000__minoru__shirae(~shiraeesh@77.94.25.113) (Ping timeout: 252 seconds)
2021-04-24 23:04:43 +0000ep1ctetus(~epictetus@ip72-194-54-201.sb.sd.cox.net)
2021-04-24 23:05:04 +0000ddellacosta(~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 268 seconds)
2021-04-24 23:05:05 +0000 <gnumonic> seven three: depending on how important it is that Foo have a certain length, you can use singletons to enforce the constraint (but it's somewhat complicated)
2021-04-24 23:08:30 +0000DTZUZU_(~DTZUZO@207.81.119.43)
2021-04-24 23:09:26 +0000Guest1810(~sam@modemcable229.128-202-24.mc.videotron.ca) (Quit: WeeChat 2.8)
2021-04-24 23:09:44 +0000mozzarella(~sam@unaffiliated/sam113101)
2021-04-24 23:10:49 +0000DTZUZU(~DTZUZO@205.ip-149-56-132.net) (Ping timeout: 252 seconds)
2021-04-24 23:11:12 +0000nicholasbulka(~nicholasb@2601:900:4301:da0:5440:6bb8:f181:7832)
2021-04-24 23:11:42 +0000 <seven_three> gnumonic: it is very important. If there were ever a Foo with a string length other than 2 then the whole program explodes. Would a singleton enforce that a Foo with String length 3 could never exist?
2021-04-24 23:11:56 +0000stree(~stree@68.36.8.116)
2021-04-24 23:13:10 +0000Guest12937(sid257727@gateway/web/irccloud.com/x-jyhuuhwowyhbtbjx) ()
2021-04-24 23:13:30 +0000Guest12937(sid257727@gateway/web/irccloud.com/x-stehltcudmdullfn)
2021-04-24 23:13:36 +0000Guest12937(sid257727@gateway/web/irccloud.com/x-stehltcudmdullfn) (Client Quit)
2021-04-24 23:14:18 +0000pony(sid257727@gateway/web/irccloud.com/x-sasxvsyktodjxrrs)
2021-04-24 23:14:33 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
2021-04-24 23:14:54 +0000 <gnumonic> yeah, you bake the length of the list into the type system so that it's impossible for the program to compile at all if the condition can be violated. but it uses a lot of obscure type level magic.
2021-04-24 23:15:26 +0000 <gnumonic> i am trying to copy and paste a link to a guide but for some reason my clipboard is broken on fedora -_-
2021-04-24 23:16:38 +0000 <gnumonic> https://blog.jle.im/entry/fixed-length-vector-types-in-haskell.html hopefully i typed that right
2021-04-24 23:17:03 +0000 <seven_three> you typed it right. I will read this.
2021-04-24 23:20:10 +0000ddellacosta(~ddellacos@86.106.143.100)
2021-04-24 23:23:26 +0000heatsink(~heatsink@108-201-191-115.lightspeed.sntcca.sbcglobal.net)
2021-04-24 23:23:34 +0000falafel(~falafel@pool-96-255-70-50.washdc.fios.verizon.net) (Ping timeout: 268 seconds)
2021-04-24 23:25:13 +0000elvishjerricco(sid237756@NixOS/user/ElvishJerricco) ()
2021-04-24 23:25:40 +0000ddellacosta(~ddellacos@86.106.143.100) (Ping timeout: 252 seconds)
2021-04-24 23:28:51 +0000P1RATEZ(piratez@unaffiliated/p1ratez) ()
2021-04-24 23:31:30 +0000usr25_tm(~usr25@unaffiliated/usr25)
2021-04-24 23:31:40 +0000shailangsa(~shailangs@host86-185-58-137.range86-185.btcentralplus.com) ()
2021-04-24 23:34:47 +0000dmytrish(~mitra@2a02:8084:a82:d900:6010:2869:d10:372c) (Ping timeout: 260 seconds)
2021-04-24 23:34:59 +0000usr25(~usr25@unaffiliated/usr25) (Ping timeout: 245 seconds)
2021-04-24 23:35:04 +0000 <shapr> Is this a place I can ask for Haskell code review? I'm okay with what I have in https://github.com/shapr/takedouble/ but I'd like to hear any suggestions for improvement?
2021-04-24 23:35:33 +0000merijn(~merijn@83-160-49-249.ip.xs4all.nl)
2021-04-24 23:36:53 +0000HannaM(~quassel@p54849510.dip0.t-ipconnect.de) (Quit: https://www.oglaf.com/vorpalblade/)
2021-04-24 23:39:11 +0000DTZUZU(~DTZUZO@205.ip-149-56-132.net)
2021-04-24 23:39:57 +0000zva(~zava@ip5f5bdf0f.dynamic.kabel-deutschland.de) (Ping timeout: 260 seconds)
2021-04-24 23:40:02 +0000jollygood2(~bc8134e3@217.29.117.252) (Quit: http://www.okay.uz/)
2021-04-24 23:41:41 +0000DTZUZU_(~DTZUZO@207.81.119.43) (Ping timeout: 240 seconds)
2021-04-24 23:45:14 +0000geowiesnot(~user@i15-les02-ix2-87-89-181-157.sfr.lns.abo.bbox.fr)
2021-04-24 23:46:19 +0000haya(~haya@ec2-18-230-78-122.sa-east-1.compute.amazonaws.com)
2021-04-24 23:47:22 +0000Ariakenom(~Ariakenom@2001:9b1:efb:fc00:e89f:1e95:a362:ce44) (Quit: Leaving)
2021-04-24 23:47:26 +0000jb55(~jb55@gateway/tor-sasl/jb55) (Remote host closed the connection)
2021-04-24 23:47:49 +0000jb55(~jb55@gateway/tor-sasl/jb55)
2021-04-24 23:53:55 +0000jollygood2(~bc8134e3@217.29.117.252)
2021-04-24 23:53:59 +0000ddellacosta(ddellacost@gateway/vpn/mullvad/ddellacosta)
2021-04-24 23:55:55 +0000geowiesnot(~user@i15-les02-ix2-87-89-181-157.sfr.lns.abo.bbox.fr) (Ping timeout: 252 seconds)
2021-04-24 23:56:06 +0000shailangsa(~shailangs@host86-185-58-137.range86-185.btcentralplus.com)
2021-04-24 23:56:40 +0000tzlil(~tzlil@unaffiliated/tzlil)
2021-04-24 23:57:45 +0000Narinas(~Narinas@187-178-93-112.dynamic.axtel.net) (Read error: Connection reset by peer)
2021-04-24 23:57:45 +0000jollygood2(~bc8134e3@217.29.117.252) (Disconnected by services)
2021-04-24 23:58:01 +0000jollygood2(~bc8134e3@217.29.117.252)
2021-04-24 23:58:22 +0000Narinas(~Narinas@187-178-93-112.dynamic.axtel.net)
2021-04-24 23:58:45 +0000ddellacosta(ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 265 seconds)