2024-08-31 00:02:23 +0200 | regev | (~dararam@147.236.228.71) (Ping timeout: 265 seconds) |
2024-08-31 00:10:14 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 260 seconds) |
2024-08-31 00:30:04 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) |
2024-08-31 00:42:27 +0200 | neuroevolutus | (~neuroevol@37.19.200.161) |
2024-08-31 00:45:36 +0200 | __monty__ | (~toonn@user/toonn) (Quit: leaving) |
2024-08-31 01:02:05 +0200 | gmg | (~user@user/gehmehgeh) (Quit: Leaving) |
2024-08-31 01:04:40 +0200 | Tuplanolla | (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (Quit: Leaving.) |
2024-08-31 01:07:31 +0200 | neuroevolutus | (~neuroevol@37.19.200.161) (Ping timeout: 256 seconds) |
2024-08-31 01:16:05 +0200 | sawilagar | (~sawilagar@user/sawilagar) (Ping timeout: 248 seconds) |
2024-08-31 01:22:10 +0200 | Square | (~Square@user/square) (Ping timeout: 260 seconds) |
2024-08-31 01:25:51 +0200 | AlexZenon | (~alzenon@178.34.150.250) (Ping timeout: 246 seconds) |
2024-08-31 01:30:51 +0200 | AlexZenon | (~alzenon@178.34.150.250) |
2024-08-31 01:32:30 +0200 | machinedgod | (~machinedg@d50-99-47-73.abhsia.telus.net) (Ping timeout: 246 seconds) |
2024-08-31 01:36:00 +0200 | acidjnk_new | (~acidjnk@p200300d6e72cfb704920adbe3bc2fb8d.dip0.t-ipconnect.de) (Ping timeout: 246 seconds) |
2024-08-31 01:42:42 +0200 | masterbuilder | (~quassel@user/masterbuilder) (Remote host closed the connection) |
2024-08-31 01:43:55 +0200 | masterbuilder | (~quassel@user/masterbuilder) |
2024-08-31 01:44:41 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 01:49:09 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 01:49:23 +0200 | emmanuelux | (~emmanuelu@user/emmanuelux) |
2024-08-31 01:57:27 +0200 | Guest|9 | (~Guest|9@181.165.251.187) |
2024-08-31 01:57:36 +0200 | <Guest|9> | hola! |
2024-08-31 01:58:01 +0200 | Guest|9 | (~Guest|9@181.165.251.187) (Client Quit) |
2024-08-31 01:58:11 +0200 | ski | blinks |
2024-08-31 02:00:39 +0200 | <geekosaur> | …and you miss them 🙂 |
2024-08-31 02:01:24 +0200 | <ski> | was just about to reply, when they headed back out into the void |
2024-08-31 02:16:10 +0200 | neuroevolutus | (~neuroevol@37.19.200.161) |
2024-08-31 02:32:09 +0200 | califax | (~califax@user/califx) (Remote host closed the connection) |
2024-08-31 02:35:53 +0200 | califax | (~califax@user/califx) |
2024-08-31 02:38:07 +0200 | JuanDaugherty | (~juan@user/JuanDaugherty) (Quit: JuanDaugherty) |
2024-08-31 02:42:59 +0200 | <d34df00d> | I've asked about optimizing a not-TCO'd-function that does NFA matching with backtracking a few days ago. |
2024-08-31 02:43:05 +0200 | athan | (~athan@syn-098-153-145-140.biz.spectrum.com) (Quit: Konversation terminated!) |
2024-08-31 02:43:30 +0200 | <d34df00d> | So turns out having an explicit mutable vector with a stack of things to visit cuts the run time down from ~ 400 ms to ~ 230 ms. |
2024-08-31 02:44:18 +0200 | <d34df00d> | That is, these two versions: https://bpa.st/G3XA |
2024-08-31 02:44:48 +0200 | <d34df00d> | (sure, I'll need a proper vector with a not-hardcoded capacity, but as a PoC that's good enough). |
2024-08-31 02:50:05 +0200 | neuroevolutus | (~neuroevol@37.19.200.161) (Ping timeout: 256 seconds) |
2024-08-31 02:59:53 +0200 | dolio | (~dolio@130.44.140.168) (Quit: ZNC 1.8.2 - https://znc.in) |
2024-08-31 03:03:08 +0200 | dolio | (~dolio@130.44.140.168) |
2024-08-31 03:12:26 +0200 | <haskellbridge> | <Bowuigi> d34df00d : Does detecting DFAs and PEGs cut the run time? Those have more efficient execution AFAIK |
2024-08-31 03:15:38 +0200 | <mauke> | how do I do fmod() in Haskell? |
2024-08-31 03:16:05 +0200 | <mauke> | (floating-point modulo) |
2024-08-31 03:17:18 +0200 | <d34df00d> | Bowuigi: DFAs might suffer exponential state explosion, so I'm not even trying those. |
2024-08-31 03:17:45 +0200 | <haskellbridge> | <Bowuigi> Well, what about PEGs? |
2024-08-31 03:18:08 +0200 | <d34df00d> | Although lazy DFA construction, where you basically keep a set of states reachable at each point in the string as you scan the string, have AFAIR the same asympthotics as DFAs, but without the explosion. |
2024-08-31 03:18:28 +0200 | <d34df00d> | Although you lose exact backtracking, which is important for some of the features I'm planning to implement later (like lookahead and atomic grouping). |
2024-08-31 03:19:02 +0200 | <d34df00d> | Haven't looked at PEGs :) My aim is to implement https://arxiv.org/abs/2401.12639 in haskell. |
2024-08-31 03:21:38 +0200 | aforemny_ | (~aforemny@2001:9e8:6cc8:4500:8afd:cf35:f7f8:813a) (Ping timeout: 245 seconds) |
2024-08-31 03:22:18 +0200 | aforemny | (~aforemny@2001:9e8:6ce2:6c00:9ee7:8194:4522:87ac) |
2024-08-31 03:23:02 +0200 | <geekosaur> | mauke: it's hidden in Data.Fixed for some reason (https://downloads.haskell.org/ghc/latest/docs/libraries/base-4.20.0.0-1f57/Data-Fixed.html#v:mod-39-) |
2024-08-31 03:24:20 +0200 | <mauke> | geekosaur: thanks |
2024-08-31 03:28:20 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 255 seconds) |
2024-08-31 03:30:41 +0200 | benjaminl_ | (~benjaminl@c-76-144-12-233.hsd1.or.comcast.net) |
2024-08-31 03:31:47 +0200 | <mauke> | basic parser skeleton is working: https://paste.tomsmeding.com/foU0kJNk |
2024-08-31 03:31:51 +0200 | benjaminl | (~benjaminl@user/benjaminl) (Ping timeout: 276 seconds) |
2024-08-31 03:32:14 +0200 | <mauke> | associativity isn't working yet, though |
2024-08-31 03:32:18 +0200 | <mauke> | and unary operators are missing |
2024-08-31 03:40:59 +0200 | <Leary> | [exa], tomsmeding: `\p f g xs -> join . getCompose $ for xs \x -> Compose $ if p x then pure <$> f x else pure (g x)`? |
2024-08-31 03:43:04 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 03:47:33 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 03:48:20 +0200 | yin | (~z@user/zero) (Quit: quit) |
2024-08-31 03:49:59 +0200 | zero | (~z@user/zero) |
2024-08-31 03:58:31 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 04:02:32 +0200 | zero | (~z@user/zero) (Quit: quit) |
2024-08-31 04:03:21 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2024-08-31 04:05:14 +0200 | zero | (~z@user/zero) |
2024-08-31 04:14:27 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 04:18:46 +0200 | ZharMeny | (~ZharMeny@user/ZharMeny) (Quit: '`) |
2024-08-31 04:18:57 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 04:29:42 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) |
2024-08-31 04:29:51 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 04:34:29 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 04:35:58 +0200 | Jeanne-Kamikaze | (~Jeanne-Ka@static-198-54-134-109.cust.tzulo.com) |
2024-08-31 04:38:07 +0200 | Jeanne-Kamikaze | (~Jeanne-Ka@static-198-54-134-109.cust.tzulo.com) (Client Quit) |
2024-08-31 04:45:22 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 04:45:36 +0200 | nitrix | (~nitrix@user/meow/nitrix) (Quit: ZNC 1.8.2 - https://znc.in) |
2024-08-31 04:47:21 +0200 | nitrix | (~nitrix@user/meow/nitrix) |
2024-08-31 04:49:50 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 04:59:33 +0200 | td_ | (~td@i5387090B.versanet.de) (Ping timeout: 248 seconds) |
2024-08-31 05:00:49 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 05:01:35 +0200 | td_ | (~td@i53870912.versanet.de) |
2024-08-31 05:05:18 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2024-08-31 05:10:30 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 05:14:46 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 05:24:17 +0200 | Lord_of_Life_ | (~Lord@user/lord-of-life/x-2819915) |
2024-08-31 05:24:18 +0200 | Lord_of_Life | (~Lord@user/lord-of-life/x-2819915) (Ping timeout: 276 seconds) |
2024-08-31 05:24:31 +0200 | hgolden_ | (~hgolden@146.70.173.229) |
2024-08-31 05:25:37 +0200 | Lord_of_Life_ | Lord_of_Life |
2024-08-31 05:25:51 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 05:26:06 +0200 | zero | yin |
2024-08-31 05:26:51 +0200 | hgolden__ | (~hgolden@23.162.40.69) (Ping timeout: 252 seconds) |
2024-08-31 05:28:26 +0200 | youthlic | (~Thunderbi@user/youthlic) |
2024-08-31 05:28:51 +0200 | youthlic | (~Thunderbi@user/youthlic) (Client Quit) |
2024-08-31 05:30:26 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 05:31:21 +0200 | youthlic | (~Thunderbi@user/youthlic) |
2024-08-31 05:32:50 +0200 | EvanR | (~EvanR@user/evanr) (Quit: Leaving) |
2024-08-31 05:41:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 05:45:57 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 05:56:41 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 05:57:50 +0200 | aforemny_ | (~aforemny@2001:9e8:6cf1:7a00:ddbb:e255:c0ea:74ea) |
2024-08-31 05:59:14 +0200 | aforemny | (~aforemny@2001:9e8:6ce2:6c00:9ee7:8194:4522:87ac) (Ping timeout: 260 seconds) |
2024-08-31 06:01:20 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 06:12:08 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 06:16:17 +0200 | youthlic | (~Thunderbi@user/youthlic) (Ping timeout: 248 seconds) |
2024-08-31 06:16:53 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 06:18:13 +0200 | troojg | (~troojg@user/troojg) |
2024-08-31 06:18:57 +0200 | weary-traveler | (~user@user/user363627) (Remote host closed the connection) |
2024-08-31 06:26:00 +0200 | youthlic | (~Thunderbi@user/youthlic) |
2024-08-31 06:26:29 +0200 | xff0x | (~xff0x@2405:6580:b080:900:15aa:6ce:9db7:891e) (Ping timeout: 248 seconds) |
2024-08-31 06:27:33 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 06:28:04 +0200 | xff0x | (~xff0x@2405:6580:b080:900:15aa:6ce:9db7:891e) |
2024-08-31 06:32:08 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 06:35:58 +0200 | troojg | (~troojg@user/troojg) (Ping timeout: 272 seconds) |
2024-08-31 06:42:58 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 06:47:54 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds) |
2024-08-31 06:48:50 +0200 | takuan | (~takuan@178-116-218-225.access.telenet.be) |
2024-08-31 06:58:21 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 07:03:24 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 07:08:47 +0200 | rosco | (~rosco@175.136.158.234) |
2024-08-31 07:11:26 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 07:16:08 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 07:16:37 +0200 | euphores | (~SASL_euph@user/euphores) (Ping timeout: 248 seconds) |
2024-08-31 07:19:02 +0200 | machinedgod | (~machinedg@d50-99-47-73.abhsia.telus.net) |
2024-08-31 07:24:01 +0200 | euphores | (~SASL_euph@user/euphores) |
2024-08-31 07:25:05 +0200 | youthlic | (~Thunderbi@user/youthlic) (Ping timeout: 248 seconds) |
2024-08-31 07:26:13 +0200 | athan | (~athan@syn-098-153-145-140.biz.spectrum.com) |
2024-08-31 07:26:51 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 07:31:49 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 07:32:20 +0200 | rosco | (~rosco@175.136.158.234) (Quit: Lost terminal) |
2024-08-31 07:41:45 +0200 | euphores | (~SASL_euph@user/euphores) (Quit: Leaving.) |
2024-08-31 07:42:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 07:46:56 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 07:48:09 +0200 | ddellacosta | (~ddellacos@ool-44c73c8f.dyn.optonline.net) |
2024-08-31 07:48:38 +0200 | euphores | (~SASL_euph@user/euphores) |
2024-08-31 07:57:43 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 07:58:47 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 255 seconds) |
2024-08-31 08:02:23 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds) |
2024-08-31 08:11:01 +0200 | hgolden__ | (~hgolden@146.70.173.37) |
2024-08-31 08:12:26 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 08:12:36 +0200 | machinedgod | (~machinedg@d50-99-47-73.abhsia.telus.net) (Ping timeout: 252 seconds) |
2024-08-31 08:13:15 +0200 | hgolden_ | (~hgolden@146.70.173.229) (Ping timeout: 246 seconds) |
2024-08-31 08:16:59 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 08:17:52 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 08:27:51 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 08:32:20 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds) |
2024-08-31 08:43:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 08:48:24 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds) |
2024-08-31 08:58:43 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 09:03:32 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 272 seconds) |
2024-08-31 09:04:19 +0200 | CrunchyFlakes | (~CrunchyFl@ip-109-42-115-64.web.vodafone.de) |
2024-08-31 09:13:26 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 09:16:34 +0200 | rvalue | (~rvalue@user/rvalue) (Read error: Connection reset by peer) |
2024-08-31 09:17:03 +0200 | rvalue | (~rvalue@user/rvalue) |
2024-08-31 09:17:52 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 09:23:38 +0200 | acidjnk_new | (~acidjnk@p200300d6e72cfb6904e5b367ab9b2182.dip0.t-ipconnect.de) |
2024-08-31 09:25:16 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2024-08-31 09:28:52 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 09:33:09 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 09:36:23 +0200 | misterfish | (~misterfis@84.53.85.146) |
2024-08-31 09:44:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 09:44:17 +0200 | xff0x | (~xff0x@2405:6580:b080:900:15aa:6ce:9db7:891e) (Ping timeout: 248 seconds) |
2024-08-31 09:49:09 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds) |
2024-08-31 09:49:24 +0200 | sourcetarius | (~sourcetar@user/sourcetarius) |
2024-08-31 09:56:38 +0200 | gmg | (~user@user/gehmehgeh) |
2024-08-31 09:58:44 +0200 | srazkvt | (~sarah_@2a01:e0a:483:6900:b6d5:d9cd:2f20:2e49) |
2024-08-31 09:59:42 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 10:04:10 +0200 | srazkvt | (~sarah_@2a01:e0a:483:6900:b6d5:d9cd:2f20:2e49) (Quit: Leaving) |
2024-08-31 10:04:27 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds) |
2024-08-31 10:04:35 +0200 | tzh | (~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz) |
2024-08-31 10:07:52 +0200 | <tomsmeding> | Leary: does not quite conform to the original type: in your version, f and g are invoked for each element in the two partitions in turn, whereas [exa]'s original type required f and g to be invoked _once_ on the full partition |
2024-08-31 10:08:43 +0200 | <tomsmeding> | but it's definitely a clever construction that I _almost_ understand :p |
2024-08-31 10:11:32 +0200 | <Leary> | Yeah, it's hard to know how much of that type is X and how much is Y. I'm guessing that access to each partition as a whole isn't actually necessary. |
2024-08-31 10:11:49 +0200 | <tomsmeding> | fair |
2024-08-31 10:12:34 +0200 | oo_miguel | (~Thunderbi@78.10.207.45) |
2024-08-31 10:14:25 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 10:16:18 +0200 | oneeyedalien | (~oneeyedal@user/oneeyedalien) |
2024-08-31 10:16:47 +0200 | <Leary> | Re understanding, a moderate fleshing-out would look like `type TwoPhase f = Compose f f; runTwoPhase = join . getCompose; now = Compose . fmap pure; later = Compose . pure`. Then it's `\p f g -> runTwoPhase . traverse \x -> if p x then now (f x) else later (g x)`. |
2024-08-31 10:17:51 +0200 | <tomsmeding> | yes I got that far, essentially |
2024-08-31 10:18:08 +0200 | <tomsmeding> | I kind of understand the data flow, but it's not quite intuitive enough that I'd easily be able to come up with it |
2024-08-31 10:18:34 +0200 | <tomsmeding> | thanks :) |
2024-08-31 10:19:22 +0200 | <tomsmeding> | it's starting to make more sense already |
2024-08-31 10:19:24 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 10:20:56 +0200 | xff0x | (~xff0x@2405:6580:b080:900:482e:12f2:d9e4:60fe) |
2024-08-31 10:26:31 +0200 | ctrl | (~ctrl@syn-098-151-160-141.res.spectrum.com) |
2024-08-31 10:29:51 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 10:31:04 +0200 | ctrl | (~ctrl@syn-098-151-160-141.res.spectrum.com) (Ping timeout: 260 seconds) |
2024-08-31 10:33:51 +0200 | Tuplanolla | (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) |
2024-08-31 10:34:18 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2024-08-31 10:45:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 10:49:53 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 10:53:19 +0200 | rvalue- | (~rvalue@user/rvalue) |
2024-08-31 10:53:54 +0200 | rvalue | (~rvalue@user/rvalue) (Ping timeout: 246 seconds) |
2024-08-31 10:57:27 +0200 | rvalue- | rvalue |
2024-08-31 11:00:42 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 11:05:05 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds) |
2024-08-31 11:13:39 +0200 | oneeyedalien | (~oneeyedal@user/oneeyedalien) (Ping timeout: 260 seconds) |
2024-08-31 11:15:25 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 11:19:58 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 11:22:30 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 11:26:55 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 11:28:45 +0200 | oneeyedalien | (~oneeyedal@user/oneeyedalien) |
2024-08-31 11:33:16 +0200 | sawilagar | (~sawilagar@user/sawilagar) |
2024-08-31 11:37:55 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 11:43:08 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 272 seconds) |
2024-08-31 11:46:11 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 11:53:21 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 11:56:17 +0200 | __monty__ | (~toonn@user/toonn) |
2024-08-31 11:57:47 +0200 | youthlic | (~Thunderbi@user/youthlic) |
2024-08-31 11:57:58 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds) |
2024-08-31 11:58:30 +0200 | ctrlcrshr | (~ctrlcrshr@syn-098-151-160-141.res.spectrum.com) |
2024-08-31 12:00:03 +0200 | ctrlcrshr | (~ctrlcrshr@syn-098-151-160-141.res.spectrum.com) (Client Quit) |
2024-08-31 12:00:22 +0200 | ctrlcrshr | (~ctrlcrshr@syn-098-151-160-141.res.spectrum.com) |
2024-08-31 12:02:08 +0200 | youthlic | (~Thunderbi@user/youthlic) (Ping timeout: 252 seconds) |
2024-08-31 12:05:04 +0200 | ctrlcrshr | (~ctrlcrshr@syn-098-151-160-141.res.spectrum.com) (Ping timeout: 252 seconds) |
2024-08-31 12:08:06 +0200 | nyc | (~nyc@user/nyc) (Ping timeout: 252 seconds) |
2024-08-31 12:08:46 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 12:09:26 +0200 | sroso | (~sroso@user/SrOso) |
2024-08-31 12:09:53 +0200 | sroso | (~sroso@user/SrOso) (Max SendQ exceeded) |
2024-08-31 12:11:52 +0200 | youthlic | (~Thunderbi@user/youthlic) |
2024-08-31 12:13:18 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 245 seconds) |
2024-08-31 12:15:41 +0200 | sroso | (~sroso@user/SrOso) |
2024-08-31 12:16:31 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 12:21:54 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 12:25:17 +0200 | Square | (~Square@user/square) |
2024-08-31 12:32:45 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 12:37:15 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 12:40:57 +0200 | Sgeo | (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
2024-08-31 12:42:22 +0200 | ZharMeny | (~ZharMeny@user/ZharMeny) |
2024-08-31 12:48:10 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 12:53:49 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 13:04:39 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 13:09:14 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 13:13:38 +0200 | oneeyedalien | (~oneeyedal@user/oneeyedalien) (Ping timeout: 252 seconds) |
2024-08-31 13:17:26 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 13:23:12 +0200 | sroso | (~sroso@user/SrOso) (Quit: Leaving :)) |
2024-08-31 13:24:17 +0200 | nnm- | (nnm-@user/nnm-) (Quit: ZNC 1.9.x-git-165-6f28db4a - https://znc.in) |
2024-08-31 13:26:36 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds) |
2024-08-31 13:31:39 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2024-08-31 13:33:36 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 13:35:44 +0200 | Inst | (~Inst@user/Inst) (Read error: Connection reset by peer) |
2024-08-31 13:36:48 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 13:41:30 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 13:43:06 +0200 | youthlic | (~Thunderbi@user/youthlic) (Quit: youthlic) |
2024-08-31 13:52:13 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 13:56:24 +0200 | sprout | (~sprout@84-80-106-227.fixed.kpn.net) (Ping timeout: 260 seconds) |
2024-08-31 13:58:20 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds) |
2024-08-31 14:09:25 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 14:13:45 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2024-08-31 14:18:25 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 14:21:29 +0200 | m1dnight | (~christoph@78-20-63-126.access.telenet.be) (Ping timeout: 260 seconds) |
2024-08-31 14:22:46 +0200 | <[exa]> | Leary: wow cool |
2024-08-31 14:22:56 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 14:22:59 +0200 | <[exa]> | not quite the thing but I'm putting this aside for later :D |
2024-08-31 14:33:51 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 14:38:31 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds) |
2024-08-31 14:49:15 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 14:50:06 +0200 | m1dnight | (~christoph@78-20-63-126.access.telenet.be) |
2024-08-31 14:53:41 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 14:59:48 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2024-08-31 15:01:08 +0200 | divya | (~user@202.170.201.40) |
2024-08-31 15:04:43 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 15:06:52 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 15:09:05 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 15:12:08 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2024-08-31 15:12:29 +0200 | oneeyedalien | (~oneeyedal@user/oneeyedalien) |
2024-08-31 15:15:51 +0200 | target_i | (~target_i@user/target-i/x-6023099) |
2024-08-31 15:19:19 +0200 | oneeyedalien | (~oneeyedal@user/oneeyedalien) (Quit: Leaving) |
2024-08-31 15:19:24 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 15:24:29 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 15:32:08 +0200 | CrunchyFlakes | (~CrunchyFl@ip-109-42-115-64.web.vodafone.de) (Read error: Connection reset by peer) |
2024-08-31 15:34:52 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 15:37:41 +0200 | ChaiTRex | (~ChaiTRex@user/chaitrex) (Ping timeout: 260 seconds) |
2024-08-31 15:38:37 +0200 | <[exa]> | hoogle is down? :'( |
2024-08-31 15:38:52 +0200 | <haskellbridge> | <Jade> yup |
2024-08-31 15:39:33 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 15:41:01 +0200 | <yin> | i feel like hoogle should have a couple of mirrors |
2024-08-31 15:41:56 +0200 | ChaiTRex | (~ChaiTRex@user/chaitrex) |
2024-08-31 15:43:08 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 15:44:19 +0200 | xff0x | (~xff0x@2405:6580:b080:900:482e:12f2:d9e4:60fe) (Ping timeout: 260 seconds) |
2024-08-31 15:45:02 +0200 | xff0x | (~xff0x@2405:6580:b080:900:482e:12f2:d9e4:60fe) |
2024-08-31 15:45:09 +0200 | <[exa]> | +1 yin |
2024-08-31 15:45:38 +0200 | <haskellbridge> | <Jade> https://hoogle.mangoiv.com/ |
2024-08-31 15:50:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 15:51:35 +0200 | sprout | (~sprout@84-80-106-227.fixed.kpn.net) |
2024-08-31 15:53:27 +0200 | <yin> | Jade: nice. it would be worth to consider configuring DNS fallover |
2024-08-31 15:54:36 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds) |
2024-08-31 15:54:40 +0200 | <haskellbridge> | <Jade> that's not my instance ^^ |
2024-08-31 15:54:53 +0200 | <haskellbridge> | <Jade> or do you mean in general |
2024-08-31 16:05:42 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 16:10:24 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 16:15:59 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 16:24:09 +0200 | CrunchyFlakes | (~CrunchyFl@ip-109-42-115-64.web.vodafone.de) |
2024-08-31 16:24:16 +0200 | <yin> | in general. a lot of stuff depends on hoogle |
2024-08-31 16:24:35 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds) |
2024-08-31 16:24:56 +0200 | <yin> | i noticed because duckduckgo has the `h!` shortcut i use all the time |
2024-08-31 16:26:40 +0200 | <yin> | i had no idea there were mirrors. DNS fallover across all official(?)/known mirrors would be nice |
2024-08-31 16:26:55 +0200 | machinedgod | (~machinedg@d50-99-47-73.abhsia.telus.net) |
2024-08-31 16:30:54 +0200 | <Maxdamantus> | that can't just be done with DNS because the different mirrors would need to provide suitable certificates. |
2024-08-31 16:35:36 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 16:40:18 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 16:41:12 +0200 | spew | (~spew@201.141.99.170) |
2024-08-31 16:46:25 +0200 | CiaoSen | (~Jura@2a05:5800:251:3f00:ca4b:d6ff:fec1:99da) |
2024-08-31 16:50:25 +0200 | m1dnight | (~christoph@78-20-63-126.access.telenet.be) (Ping timeout: 248 seconds) |
2024-08-31 16:51:00 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 16:55:27 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 17:01:44 +0200 | ubert | (~Thunderbi@178.165.175.79.wireless.dyn.drei.com) (Ping timeout: 265 seconds) |
2024-08-31 17:02:32 +0200 | youthlic | (~Thunderbi@user/youthlic) |
2024-08-31 17:05:32 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Read error: Connection reset by peer) |
2024-08-31 17:06:24 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 17:08:02 +0200 | esnos | (~user@176.106.34.161) |
2024-08-31 17:11:09 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 17:11:13 +0200 | CiaoSen | (~Jura@2a05:5800:251:3f00:ca4b:d6ff:fec1:99da) (Ping timeout: 252 seconds) |
2024-08-31 17:18:48 +0200 | ddellacosta | (~ddellacos@ool-44c73c8f.dyn.optonline.net) (Ping timeout: 272 seconds) |
2024-08-31 17:21:25 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 17:25:54 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 17:36:52 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 17:41:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 17:43:51 +0200 | tzh | (~tzh@c-76-115-131-146.hsd1.or.comcast.net) |
2024-08-31 17:45:42 +0200 | Inst | (~Inst@user/Inst) |
2024-08-31 17:50:04 +0200 | <haskellbridge> | <sm> hoogle.haskell.org is down again |
2024-08-31 17:50:24 +0200 | <haskellbridge> | <sm> oops, already noted |
2024-08-31 17:51:15 +0200 | <haskellbridge> | <sm> alternative: https://stackage.org |
2024-08-31 17:52:16 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 17:57:39 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds) |
2024-08-31 18:00:43 +0200 | ZharMeny | (~ZharMeny@user/ZharMeny) (Ping timeout: 252 seconds) |
2024-08-31 18:01:05 +0200 | justsomeguy | (~justsomeg@user/justsomeguy) |
2024-08-31 18:07:42 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 18:11:23 +0200 | econo_ | (uid147250@id-147250.tinside.irccloud.com) |
2024-08-31 18:12:06 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 18:22:25 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 18:27:01 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds) |
2024-08-31 18:32:28 +0200 | DragonMaus | (~dragonmau@user/dragonmaus) (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.) |
2024-08-31 18:33:16 +0200 | DragonMaus | (~dragonmau@user/dragonmaus) |
2024-08-31 18:36:28 +0200 | m1dnight | (~christoph@d8D861908.access.telenet.be) |
2024-08-31 18:37:52 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 18:42:45 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds) |
2024-08-31 18:48:24 +0200 | justsomeguy | (~justsomeg@user/justsomeguy) (Ping timeout: 252 seconds) |
2024-08-31 18:52:27 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 18:53:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 18:57:56 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 19:00:35 +0200 | CrunchyFlakes | (~CrunchyFl@ip-109-42-115-64.web.vodafone.de) (Read error: Connection reset by peer) |
2024-08-31 19:01:01 +0200 | CrunchyFlakes | (~CrunchyFl@ip-109-42-115-64.web.vodafone.de) |
2024-08-31 19:03:57 +0200 | justsomeguy | (~justsomeg@user/justsomeguy) |
2024-08-31 19:04:58 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) |
2024-08-31 19:08:43 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 19:13:41 +0200 | sawilagar | (~sawilagar@user/sawilagar) (Ping timeout: 265 seconds) |
2024-08-31 19:14:41 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds) |
2024-08-31 19:16:44 +0200 | raehik | (~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net) |
2024-08-31 19:23:26 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 19:23:31 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2024-08-31 19:25:45 +0200 | azlaan | (~azlaan@user/azlaan) |
2024-08-31 19:27:07 +0200 | pavonia | (~user@user/siracusa) (Quit: Bye!) |
2024-08-31 19:27:49 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 19:28:34 +0200 | JuanDaugherty | (~juan@user/JuanDaugherty) |
2024-08-31 19:30:21 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 19:31:01 +0200 | azlaan | (~azlaan@user/azlaan) (Quit: WeeChat 4.4.1) |
2024-08-31 19:31:18 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 252 seconds) |
2024-08-31 19:32:38 +0200 | youthlic | (~Thunderbi@user/youthlic) (Quit: youthlic) |
2024-08-31 19:35:30 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 19:40:05 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 19:40:37 +0200 | VictorHugenay | (~VictorHug@user/VictorHugenay) (Quit: Konversation terminated!) |
2024-08-31 19:43:02 +0200 | Inst | (~Inst@user/Inst) (Ping timeout: 252 seconds) |
2024-08-31 19:47:33 +0200 | Jeanne-Kamikaze | (~Jeanne-Ka@79.127.217.39) |
2024-08-31 19:56:10 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 19:59:36 +0200 | gmg | (~user@user/gehmehgeh) (Ping timeout: 260 seconds) |
2024-08-31 20:00:33 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 20:01:54 +0200 | gmg | (~user@user/gehmehgeh) |
2024-08-31 20:03:06 +0200 | euandreh | (~Thunderbi@189.6.105.228) |
2024-08-31 20:11:37 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 20:12:33 +0200 | euandreh | (~Thunderbi@189.6.105.228) (Quit: euandreh) |
2024-08-31 20:15:04 +0200 | pieguy128 | (~pieguy128@bras-base-mtrlpq5031w-grc-50-65-93-192-80.dsl.bell.ca) (Quit: ZNC 1.8.2 - https://znc.in) |
2024-08-31 20:16:17 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 20:20:39 +0200 | raehik | (~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net) (Ping timeout: 276 seconds) |
2024-08-31 20:24:26 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 20:28:57 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2024-08-31 20:35:46 +0200 | JuanDaugherty | (~juan@user/JuanDaugherty) (Quit: JuanDaugherty) |
2024-08-31 20:39:07 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) |
2024-08-31 20:39:52 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 20:47:39 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 20:50:25 +0200 | divya` | (~user@202.170.201.214) |
2024-08-31 20:50:29 +0200 | AlexZenon | (~alzenon@178.34.150.250) (Ping timeout: 252 seconds) |
2024-08-31 20:51:09 +0200 | AlexNoo | (~AlexNoo@178.34.150.250) (Ping timeout: 260 seconds) |
2024-08-31 20:52:02 +0200 | divya | (~user@202.170.201.40) (Ping timeout: 248 seconds) |
2024-08-31 20:58:53 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 21:03:20 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 21:06:21 +0200 | AlexNoo | (~AlexNoo@178.34.150.250) |
2024-08-31 21:12:16 +0200 | AlexZenon | (~alzenon@178.34.150.250) |
2024-08-31 21:14:18 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 21:15:09 +0200 | ubert | (~Thunderbi@178.165.175.79.wireless.dyn.drei.com) |
2024-08-31 21:18:44 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 21:19:33 +0200 | ubert | (~Thunderbi@178.165.175.79.wireless.dyn.drei.com) (Ping timeout: 245 seconds) |
2024-08-31 21:20:54 +0200 | AlexNoo_ | (~AlexNoo@178.34.150.250) |
2024-08-31 21:22:15 +0200 | troojg | (~troojg@user/troojg) |
2024-08-31 21:23:17 +0200 | raehik | (~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net) |
2024-08-31 21:24:32 +0200 | AlexNoo | (~AlexNoo@178.34.150.250) (Ping timeout: 272 seconds) |
2024-08-31 21:25:26 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 21:26:57 +0200 | takuan | (~takuan@178-116-218-225.access.telenet.be) (Remote host closed the connection) |
2024-08-31 21:27:34 +0200 | AlexNoo_ | AlexNoo |
2024-08-31 21:29:51 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2024-08-31 21:33:47 +0200 | swamp_ | (~zmt00@user/zmt00) (Read error: Connection reset by peer) |
2024-08-31 21:35:25 +0200 | zmt00 | (~zmt00@user/zmt00) |
2024-08-31 21:37:03 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2024-08-31 21:38:24 +0200 | Unicorn_Princess | (~Unicorn_P@user/Unicorn-Princess/x-3540542) |
2024-08-31 21:40:50 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 21:43:12 +0200 | justsomeguy | (~justsomeg@user/justsomeguy) (Quit: WeeChat 3.6) |
2024-08-31 21:43:22 +0200 | Sgeo | (~Sgeo@user/sgeo) |
2024-08-31 21:49:57 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 21:50:21 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds) |
2024-08-31 21:56:45 +0200 | michalz | (~michalz@185.246.207.222) |
2024-08-31 22:00:51 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 22:03:19 +0200 | ubert | (~Thunderbi@178.165.175.79.wireless.dyn.drei.com) |
2024-08-31 22:05:42 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 272 seconds) |
2024-08-31 22:07:39 +0200 | ubert | (~Thunderbi@178.165.175.79.wireless.dyn.drei.com) (Ping timeout: 246 seconds) |
2024-08-31 22:13:01 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2024-08-31 22:14:09 +0200 | weary-traveler | (~user@user/user363627) |
2024-08-31 22:16:16 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 22:21:04 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds) |
2024-08-31 22:27:42 +0200 | ZharMeny | (~ZharMeny@user/ZharMeny) |
2024-08-31 22:32:02 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 22:33:58 +0200 | A_Dragon | DNS |
2024-08-31 22:34:22 +0200 | neuroevolutus | (~neuroevol@206.217.206.95) |
2024-08-31 22:35:03 +0200 | spew | (~spew@201.141.99.170) (Quit: spew) |
2024-08-31 22:36:41 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds) |
2024-08-31 22:39:58 +0200 | CrunchyFlakes | (~CrunchyFl@ip-109-42-115-64.web.vodafone.de) (Read error: Connection reset by peer) |
2024-08-31 22:41:16 +0200 | neuroevolutus | (~neuroevol@206.217.206.95) (Quit: Client closed) |
2024-08-31 22:42:26 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2024-08-31 22:43:02 +0200 | CrunchyFlakes | (~CrunchyFl@ip-109-42-115-64.web.vodafone.de) |
2024-08-31 22:44:15 +0200 | neuroevolutus | (~neuroevol@146.70.211.24) |
2024-08-31 22:46:39 +0200 | lxsameer | (~lxsameer@Serene/lxsameer) |
2024-08-31 22:47:28 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 22:48:15 +0200 | CrunchyFlakes | (~CrunchyFl@ip-109-42-115-64.web.vodafone.de) (Read error: Connection reset by peer) |
2024-08-31 22:51:06 +0200 | tcard_ | (~tcard@2400:4051:5801:7500:1e90:74c3:2754:ce8a) (Quit: Leaving) |
2024-08-31 22:52:05 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 22:54:47 +0200 | sourcetarius | (~sourcetar@user/sourcetarius) (Quit: zzz) |
2024-08-31 22:55:13 +0200 | gentauro | (~gentauro@user/gentauro) (Read error: Connection reset by peer) |
2024-08-31 22:58:01 +0200 | hgolden_ | (~hgolden@23.162.40.110) |
2024-08-31 22:58:06 +0200 | lxsameer | (~lxsameer@Serene/lxsameer) (Ping timeout: 252 seconds) |
2024-08-31 23:00:05 +0200 | oo_miguel | (~Thunderbi@78.10.207.45) (Ping timeout: 260 seconds) |
2024-08-31 23:00:26 +0200 | tcard | (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
2024-08-31 23:00:39 +0200 | hgolden__ | (~hgolden@146.70.173.37) (Ping timeout: 260 seconds) |
2024-08-31 23:01:10 +0200 | gentauro | (~gentauro@user/gentauro) |
2024-08-31 23:02:53 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 23:06:05 +0200 | She | BREW |
2024-08-31 23:07:09 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2024-08-31 23:07:24 +0200 | BREW | She |
2024-08-31 23:12:01 +0200 | pavonia | (~user@user/siracusa) |
2024-08-31 23:18:20 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 23:19:08 +0200 | sourcetarius | (~sourcetar@user/sourcetarius) |
2024-08-31 23:19:22 +0200 | machinedgod | (~machinedg@d50-99-47-73.abhsia.telus.net) (Ping timeout: 252 seconds) |
2024-08-31 23:22:19 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2024-08-31 23:22:28 +0200 | michalz | (~michalz@185.246.207.222) (Remote host closed the connection) |
2024-08-31 23:22:40 +0200 | ZharMeny | GET` |
2024-08-31 23:23:14 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds) |
2024-08-31 23:23:40 +0200 | target_i | (~target_i@user/target-i/x-6023099) (Quit: leaving) |
2024-08-31 23:34:03 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 23:36:35 +0200 | troojg | (~troojg@user/troojg) (Ping timeout: 252 seconds) |
2024-08-31 23:36:54 +0200 | divya` | (~user@202.170.201.214) (Remote host closed the connection) |
2024-08-31 23:38:08 +0200 | GET` | ZharMeny |
2024-08-31 23:38:29 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds) |
2024-08-31 23:40:29 +0200 | ash3en | (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) |
2024-08-31 23:43:39 +0200 | SovereignNoumena | (~Sovereign@207.195.86.72) |
2024-08-31 23:44:57 +0200 | esnos | (~user@176.106.34.161) (Remote host closed the connection) |
2024-08-31 23:49:29 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) |
2024-08-31 23:52:59 +0200 | SovereignNoumena | (~Sovereign@207.195.86.72) (Read error: Connection reset by peer) |
2024-08-31 23:54:08 +0200 | merijn | (~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds) |
2024-08-31 23:55:46 +0200 | ash3en | (~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Quit: ash3en) |