2022-08-27 00:03:32 +0200 | adanwan | (~adanwan@gateway/tor-sasl/adanwan) (Remote host closed the connection) |
2022-08-27 00:04:36 +0200 | adanwan | (~adanwan@gateway/tor-sasl/adanwan) |
2022-08-27 00:11:53 +0200 | melonai- | (~mel@rnrd.eu) |
2022-08-27 00:12:00 +0200 | eikke | (~NicolasT@user/NicolasT) |
2022-08-27 00:12:11 +0200 | melonai | (~mel@rnrd.eu) (Ping timeout: 255 seconds) |
2022-08-27 00:12:19 +0200 | [exa] | (exa@user/exa/x-3587197) (Ping timeout: 268 seconds) |
2022-08-27 00:12:29 +0200 | [exa] | (exa@srv3.blesmrt.net) |
2022-08-27 00:15:29 +0200 | azimut_ | (~azimut@gateway/tor-sasl/azimut) (Ping timeout: 268 seconds) |
2022-08-27 00:16:29 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) |
2022-08-27 00:16:30 +0200 | kimjetwav | (~user@2607:fea8:235e:b600:d0ab:c5dd:dc27:59e5) |
2022-08-27 00:17:08 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 00:19:08 +0200 | nschoe | (~quassel@2a01:e0a:8e:a190:6c1:7ffb:81b:ea40) (Ping timeout: 268 seconds) |
2022-08-27 00:21:15 +0200 | leah_ | (lp0@heathens.club) (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.) |
2022-08-27 00:21:56 +0200 | leah_ | (lp0@heathens.club) |
2022-08-27 00:25:40 +0200 | gustik | (~gustik@2a01:c844:2457:2220:475d:34f:d571:996f) (Quit: Leaving) |
2022-08-27 00:29:38 +0200 | azimut_ | (~azimut@gateway/tor-sasl/azimut) |
2022-08-27 00:29:42 +0200 | gmg | (~user@user/gehmehgeh) (Quit: Leaving) |
2022-08-27 00:32:22 +0200 | dsrt^ | (~dsrt@96.70.11.181) |
2022-08-27 00:33:59 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) (Ping timeout: 268 seconds) |
2022-08-27 00:36:21 +0200 | Tuplanolla | (~Tuplanoll@91-159-69-12.elisa-laajakaista.fi) (Quit: Leaving.) |
2022-08-27 00:36:56 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 00:41:57 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 268 seconds) |
2022-08-27 00:42:34 +0200 | olle | (~olle@h-94-254-63-12.NA.cust.bahnhof.se) (Ping timeout: 268 seconds) |
2022-08-27 00:46:56 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 00:47:20 +0200 | motherfs1 | motherfsck |
2022-08-27 00:48:08 +0200 | <raehik> | I have a function returning a binop (it's a record in a type). Can I do something like "left `opInA a` right"? |
2022-08-27 00:48:38 +0200 | <raehik> | That's not working, but I wonder if there's any similar syntax I don't know about. Else I'll bumble around without infix |
2022-08-27 00:51:09 +0200 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Remote host closed the connection) |
2022-08-27 00:51:21 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 00:55:22 +0200 | <geekosaur> | no, the allowable syntax inside of `` is very limited because that kind of bracketing is hard to parse (ask anyone who had to deal with shells that used `` for command substitution, before ksh and POSIX gave us $()) |
2022-08-27 00:55:48 +0200 | <geekosaur> | you can use let to extract it to a local operator though |
2022-08-27 00:56:19 +0200 | <geekosaur> | let (^*^) = opInA a in foo ^*^ bar |
2022-08-27 00:59:17 +0200 | <geekosaur> | (or where, if you prefer) |
2022-08-27 01:01:50 +0200 | slaydr | (~slaydr@75.164.62.23) |
2022-08-27 01:02:17 +0200 | <raehik> | geekosaur: lovely ty |
2022-08-27 01:02:23 +0200 | slaydr | (~slaydr@75.164.62.23) (Client Quit) |
2022-08-27 01:03:30 +0200 | eikke | (~NicolasT@user/NicolasT) (Ping timeout: 268 seconds) |
2022-08-27 01:07:42 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 01:09:05 +0200 | bontaq | (~user@ool-45779fe5.dyn.optonline.net) (Ping timeout: 268 seconds) |
2022-08-27 01:11:47 +0200 | michalz | (~michalz@185.246.204.90) (Remote host closed the connection) |
2022-08-27 01:13:58 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Remote host closed the connection) |
2022-08-27 01:14:05 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 01:15:30 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Remote host closed the connection) |
2022-08-27 01:16:21 +0200 | <shachaf> | Hmm, there's also another trick which is probably not a good idea. |
2022-08-27 01:16:40 +0200 | <shachaf> | Where you define two operators for the left and right `, and then you can put an expression in between them. |
2022-08-27 01:17:06 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 01:17:13 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 01:18:27 +0200 | <shachaf> | > 1 & (,,) 3 $ 2 |
2022-08-27 01:18:29 +0200 | <lambdabot> | (3,1,2) |
2022-08-27 01:18:29 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Read error: Connection reset by peer) |
2022-08-27 01:19:16 +0200 | <shachaf> | You can use some brackety-looking names instead of & and $, if you give them the reasonable precedences. |
2022-08-27 01:22:05 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Ping timeout: 268 seconds) |
2022-08-27 01:22:49 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 01:23:14 +0200 | kimjetwav | (~user@2607:fea8:235e:b600:d0ab:c5dd:dc27:59e5) (Ping timeout: 244 seconds) |
2022-08-27 01:40:17 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 01:41:06 +0200 | sagax | (~sagax_nb@213.138.71.146) |
2022-08-27 01:50:47 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) |
2022-08-27 01:51:26 +0200 | mvk | (~mvk@2607:fea8:5ce3:8500::a1ec) |
2022-08-27 01:51:34 +0200 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) |
2022-08-27 01:53:40 +0200 | sammelweis | (~quassel@2601:401:8200:2d4c:bd9:d04c:7f69:eb10) |
2022-08-27 01:55:57 +0200 | `2jt | (~jtomas@56.red-88-17-82.dynamicip.rima-tde.net) (Ping timeout: 268 seconds) |
2022-08-27 01:56:44 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Remote host closed the connection) |
2022-08-27 01:58:24 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 02:03:06 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 02:03:06 +0200 | raehik | (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 260 seconds) |
2022-08-27 02:07:40 +0200 | waleee | (~waleee@2001:9b0:213:7200:cc36:a556:b1e8:b340) (Ping timeout: 268 seconds) |
2022-08-27 02:08:06 +0200 | waleee | (~waleee@h-176-10-137-138.NA.cust.bahnhof.se) |
2022-08-27 02:08:52 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 02:08:53 +0200 | nilradical | (~nilradica@user/naso) (Remote host closed the connection) |
2022-08-27 02:09:11 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 02:09:28 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 02:13:01 +0200 | ddellacosta | (~ddellacos@143.244.47.90) (Ping timeout: 260 seconds) |
2022-08-27 02:13:21 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 02:14:19 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 02:17:06 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection) |
2022-08-27 02:18:16 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 02:19:11 +0200 | o-90 | (~o-90@gateway/tor-sasl/o-90) |
2022-08-27 02:20:26 +0200 | tremon | (~tremon@83-84-18-241.cable.dynamic.v4.ziggo.nl) (Quit: getting boxed in) |
2022-08-27 02:26:33 +0200 | o-90 | (~o-90@gateway/tor-sasl/o-90) (Remote host closed the connection) |
2022-08-27 02:31:04 +0200 | adanwan | (~adanwan@gateway/tor-sasl/adanwan) (Remote host closed the connection) |
2022-08-27 02:31:04 +0200 | ec | (~ec@gateway/tor-sasl/ec) (Remote host closed the connection) |
2022-08-27 02:31:04 +0200 | califax | (~califax@user/califx) (Remote host closed the connection) |
2022-08-27 02:31:28 +0200 | adanwan | (~adanwan@gateway/tor-sasl/adanwan) |
2022-08-27 02:31:39 +0200 | ec | (~ec@gateway/tor-sasl/ec) |
2022-08-27 02:31:52 +0200 | califax | (~califax@user/califx) |
2022-08-27 02:40:13 +0200 | jero98772 | (~jero98772@2800:484:1d80:d8ce:efcc:cbb3:7f2a:6dff) |
2022-08-27 02:41:14 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 02:45:38 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 02:47:36 +0200 | remexre | (~remexre@user/remexre) (Remote host closed the connection) |
2022-08-27 02:47:59 +0200 | remexre | (~remexre@user/remexre) |
2022-08-27 02:48:56 +0200 | king_gs | (~Thunderbi@2806:103e:29:da7a:1f74:531c:dec2:7aec) |
2022-08-27 02:54:41 +0200 | azimut_ | (~azimut@gateway/tor-sasl/azimut) (Remote host closed the connection) |
2022-08-27 02:56:11 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) |
2022-08-27 03:00:18 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 03:09:10 +0200 | bontaq | (~user@ool-45779fe5.dyn.optonline.net) |
2022-08-27 03:16:01 +0200 | sympt | (~sympt@user/sympt) (Ping timeout: 260 seconds) |
2022-08-27 03:16:23 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 03:18:54 +0200 | king_gs | (~Thunderbi@2806:103e:29:da7a:1f74:531c:dec2:7aec) (Remote host closed the connection) |
2022-08-27 03:19:12 +0200 | king_gs | (~Thunderbi@2806:103e:29:da7a:1f74:531c:dec2:7aec) |
2022-08-27 03:19:36 +0200 | <nilradical> | what is the best way to get force-directed graphs in haskell displaying in the browser, where both nodes and edges can be labelled |
2022-08-27 03:20:41 +0200 | waleee | (~waleee@h-176-10-137-138.NA.cust.bahnhof.se) (Ping timeout: 260 seconds) |
2022-08-27 03:21:11 +0200 | sympt | (~sympt@user/sympt) |
2022-08-27 03:21:57 +0200 | califax | (~califax@user/califx) (Remote host closed the connection) |
2022-08-27 03:22:19 +0200 | califax | (~califax@user/califx) |
2022-08-27 03:31:15 +0200 | mima | (mmh@gateway/vpn/airvpn/mima) (Ping timeout: 248 seconds) |
2022-08-27 03:31:34 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 03:33:41 +0200 | nilradical | (~nilradica@user/naso) (Remote host closed the connection) |
2022-08-27 03:34:33 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 03:36:26 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 03:40:31 +0200 | nilradical | (~nilradica@user/naso) (Ping timeout: 260 seconds) |
2022-08-27 03:40:47 +0200 | econo | (uid147250@user/econo) (Quit: Connection closed for inactivity) |
2022-08-27 03:46:03 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 03:48:48 +0200 | [itchyjunk] | (~itchyjunk@user/itchyjunk/x-7353470) (Ping timeout: 268 seconds) |
2022-08-27 03:50:26 +0200 | [itchyjunk] | (~itchyjunk@user/itchyjunk/x-7353470) |
2022-08-27 03:58:01 +0200 | gurkenglas | (~gurkengla@p548ac72e.dip0.t-ipconnect.de) (Ping timeout: 260 seconds) |
2022-08-27 04:04:27 +0200 | codaraxis | (~codaraxis@user/codaraxis) (Ping timeout: 244 seconds) |
2022-08-27 04:04:33 +0200 | <hololeap> | hopefully this isn't too vague, but is there a name/library/example pattern for when only non-empty elements are pretty-printed (such as in XML), and empty ones are left out completely? |
2022-08-27 04:05:46 +0200 | <hololeap> | also leaving out nested elements where the bottom is empty |
2022-08-27 04:06:31 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 04:06:33 +0200 | <hololeap> | it just seems to come up a lot and I'd like a sure-fire way to deal with it when it does |
2022-08-27 04:07:31 +0200 | <hololeap> | nilradical: how would you do this in other languages? |
2022-08-27 04:08:47 +0200 | <nilradical> | hololeap: https://itnext.io/d3-force-directed-graph-forces-experiments-for-dummies-20a5682935 |
2022-08-27 04:09:09 +0200 | beteigeuze | (~Thunderbi@bl11-28-222.dsl.telepac.pt) (Ping timeout: 268 seconds) |
2022-08-27 04:09:13 +0200 | <nilradical> | probably bindings to some javascript graph library |
2022-08-27 04:09:43 +0200 | <hololeap> | maybe convert the graph to json somehow and get one of those libraries to display it |
2022-08-27 04:11:12 +0200 | <nilradical> | thanks that might work, there's also graphviz bindings that seem to be up to date |
2022-08-27 04:11:34 +0200 | <hololeap> | aeson is the major json library, fyi |
2022-08-27 04:12:27 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 252 seconds) |
2022-08-27 04:12:39 +0200 | <nilradical> | thanks |
2022-08-27 04:13:55 +0200 | td_ | (~td@94.134.91.103) (Ping timeout: 252 seconds) |
2022-08-27 04:15:41 +0200 | td_ | (~td@94.134.91.193) |
2022-08-27 04:24:35 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 04:25:43 +0200 | nilradical | (~nilradica@user/naso) (Remote host closed the connection) |
2022-08-27 04:25:52 +0200 | talismanick | (~talismani@2601:200:c100:3850::dd64) |
2022-08-27 04:26:20 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 04:28:55 +0200 | slaydr | (~slaydr@173.239.197.75) |
2022-08-27 04:31:16 +0200 | nilradical | (~nilradica@user/naso) (Ping timeout: 260 seconds) |
2022-08-27 04:33:35 +0200 | king_gs | (~Thunderbi@2806:103e:29:da7a:1f74:531c:dec2:7aec) (Quit: king_gs) |
2022-08-27 04:38:36 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 04:40:25 +0200 | bontaq | (~user@ool-45779fe5.dyn.optonline.net) (Remote host closed the connection) |
2022-08-27 04:47:22 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 04:50:59 +0200 | zebrag | (~chris@user/zebrag) (Quit: Konversation terminated!) |
2022-08-27 04:52:28 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 04:53:35 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) (Remote host closed the connection) |
2022-08-27 04:54:02 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) |
2022-08-27 04:54:47 +0200 | [itchyjunk] | (~itchyjunk@user/itchyjunk/x-7353470) (Ping timeout: 255 seconds) |
2022-08-27 04:55:40 +0200 | [itchyjunk] | (~itchyjunk@user/itchyjunk/x-7353470) |
2022-08-27 04:59:01 +0200 | FinnElija | (~finn_elij@user/finn-elija/x-0085643) (Killed (NickServ (Forcing logout FinnElija -> finn_elija))) |
2022-08-27 04:59:01 +0200 | finn_elija | (~finn_elij@user/finn-elija/x-0085643) |
2022-08-27 04:59:01 +0200 | finn_elija | FinnElija |
2022-08-27 05:04:53 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) (Remote host closed the connection) |
2022-08-27 05:05:03 +0200 | hughjfchen | (~hughjfche@vmi556545.contaboserver.net) (Quit: WeeChat 2.8) |
2022-08-27 05:05:37 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) |
2022-08-27 05:07:24 +0200 | causal | (~user@50.35.83.177) |
2022-08-27 05:08:28 +0200 | hughjfchen | (~hughjfche@vmi556545.contaboserver.net) |
2022-08-27 05:17:56 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 05:18:50 +0200 | nilradical | (~nilradica@user/naso) (Ping timeout: 268 seconds) |
2022-08-27 05:23:34 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 05:24:06 +0200 | [itchyjunk] | (~itchyjunk@user/itchyjunk/x-7353470) (Remote host closed the connection) |
2022-08-27 05:27:31 +0200 | ec | (~ec@gateway/tor-sasl/ec) (Ping timeout: 268 seconds) |
2022-08-27 05:29:23 +0200 | jero98772 | (~jero98772@2800:484:1d80:d8ce:efcc:cbb3:7f2a:6dff) (Remote host closed the connection) |
2022-08-27 05:31:14 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 05:33:43 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 05:37:03 +0200 | bontaq | (~user@ool-45779fe5.dyn.optonline.net) |
2022-08-27 05:38:15 +0200 | nate4 | (~nate@98.45.169.16) (Read error: Connection reset by peer) |
2022-08-27 05:38:21 +0200 | nilradical | (~nilradica@user/naso) (Ping timeout: 260 seconds) |
2022-08-27 05:39:13 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 05:39:21 +0200 | rekahsoft | (~rekahsoft@bras-base-wdston4533w-grc-02-142-113-160-8.dsl.bell.ca) (Ping timeout: 252 seconds) |
2022-08-27 05:42:32 +0200 | stef204 | (~stef204@user/stef204) (Quit: WeeChat 3.6) |
2022-08-27 05:51:56 +0200 | mvk | (~mvk@2607:fea8:5ce3:8500::a1ec) (Ping timeout: 255 seconds) |
2022-08-27 05:52:50 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 05:55:01 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) (Remote host closed the connection) |
2022-08-27 05:55:37 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) |
2022-08-27 05:56:12 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Client Quit) |
2022-08-27 06:00:47 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 06:03:23 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 06:08:06 +0200 | crns | (~netcrns@user/crns) (Ping timeout: 260 seconds) |
2022-08-27 06:09:44 +0200 | crns | (~netcrns@p4ff5e402.dip0.t-ipconnect.de) |
2022-08-27 06:09:44 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) (Remote host closed the connection) |
2022-08-27 06:09:44 +0200 | crns | (~netcrns@p4ff5e402.dip0.t-ipconnect.de) (Changing host) |
2022-08-27 06:09:44 +0200 | crns | (~netcrns@user/crns) |
2022-08-27 06:10:19 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) |
2022-08-27 06:11:36 +0200 | shapr | (~user@68.54.166.125) (Ping timeout: 260 seconds) |
2022-08-27 06:11:53 +0200 | jmorris | (uid537181@id-537181.uxbridge.irccloud.com) |
2022-08-27 06:16:23 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 06:19:23 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 06:21:53 +0200 | dsrt^ | (~dsrt@96.70.11.181) (Remote host closed the connection) |
2022-08-27 06:22:17 +0200 | dsrt^ | (~dsrt@96.70.11.181) |
2022-08-27 06:26:11 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 06:28:43 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Remote host closed the connection) |
2022-08-27 06:29:12 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 06:32:50 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) (Ping timeout: 268 seconds) |
2022-08-27 06:33:47 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 06:37:39 +0200 | nilradical | (~nilradica@user/naso) (Ping timeout: 252 seconds) |
2022-08-27 06:37:39 +0200 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 252 seconds) |
2022-08-27 06:39:11 +0200 | qrpnxz | (~qrpnxz@fsf/member/qrpnxz) (Ping timeout: 255 seconds) |
2022-08-27 06:41:29 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Read error: Connection reset by peer) |
2022-08-27 06:41:29 +0200 | califax | (~califax@user/califx) (Read error: Connection reset by peer) |
2022-08-27 06:41:29 +0200 | adanwan | (~adanwan@gateway/tor-sasl/adanwan) (Read error: Connection reset by peer) |
2022-08-27 06:41:29 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) (Remote host closed the connection) |
2022-08-27 06:41:29 +0200 | Chai-T-Rex | (~ChaiTRex@user/chaitrex) (Remote host closed the connection) |
2022-08-27 06:41:50 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) |
2022-08-27 06:41:51 +0200 | adanwan | (~adanwan@gateway/tor-sasl/adanwan) |
2022-08-27 06:42:06 +0200 | Chai-T-Rex | (~ChaiTRex@user/chaitrex) |
2022-08-27 06:42:12 +0200 | califax | (~califax@user/califx) |
2022-08-27 06:42:43 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 06:49:45 +0200 | Chai-T-Rex | (~ChaiTRex@user/chaitrex) (Remote host closed the connection) |
2022-08-27 06:50:49 +0200 | Chai-T-Rex | (~ChaiTRex@user/chaitrex) |
2022-08-27 06:52:08 +0200 | econo | (uid147250@user/econo) |
2022-08-27 06:54:29 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 255 seconds) |
2022-08-27 06:55:00 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 06:55:09 +0200 | shapr | (~user@68.54.166.125) |
2022-08-27 07:02:17 +0200 | OpenSource | linux |
2022-08-27 07:02:41 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 07:04:29 +0200 | libertyprime | (~libertypr@118-92-68-91.dsl.dyn.ihug.co.nz) |
2022-08-27 07:05:56 +0200 | coot | (~coot@213.134.176.158) |
2022-08-27 07:08:36 +0200 | nilradical | (~nilradica@user/naso) (Ping timeout: 268 seconds) |
2022-08-27 07:10:44 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection) |
2022-08-27 07:11:59 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 07:13:02 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 07:23:15 +0200 | Me-me | (~me-me@tunnel690570-pt.tunnel.tserv12.mia1.ipv6.he.net) (Changing host) |
2022-08-27 07:23:15 +0200 | Me-me | (~me-me@user/me-me) |
2022-08-27 07:33:53 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 268 seconds) |
2022-08-27 07:34:34 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 07:35:48 +0200 | coot | (~coot@213.134.176.158) (Quit: coot) |
2022-08-27 07:36:19 +0200 | jargon | (~jargon@184.101.185.66) (Remote host closed the connection) |
2022-08-27 07:39:02 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 07:43:47 +0200 | random-jellyfish | (~random-je@user/random-jellyfish) |
2022-08-27 07:43:48 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 07:48:26 +0200 | nilradical | (~nilradica@user/naso) (Ping timeout: 260 seconds) |
2022-08-27 07:50:17 +0200 | jinsun | (~jinsun@user/jinsun) (Ping timeout: 255 seconds) |
2022-08-27 07:58:58 +0200 | gmg | (~user@user/gehmehgeh) |
2022-08-27 08:00:34 +0200 | Tuplanolla | (~Tuplanoll@91-159-69-12.elisa-laajakaista.fi) |
2022-08-27 08:02:59 +0200 | jinsun | (~jinsun@user/jinsun) |
2022-08-27 08:03:18 +0200 | jargon | (~jargon@184.101.185.66) |
2022-08-27 08:03:24 +0200 | jinsun__ | (~jinsun@user/jinsun) |
2022-08-27 08:03:24 +0200 | jinsun | Guest1517 |
2022-08-27 08:03:24 +0200 | jinsun__ | jinsun |
2022-08-27 08:04:15 +0200 | nilradical | (~nilradica@user/naso) |
2022-08-27 08:04:22 +0200 | nilradical | (~nilradica@user/naso) (Remote host closed the connection) |
2022-08-27 08:06:21 +0200 | zeenk | (~zeenk@2a02:2f04:a311:2d00:6865:d863:4c93:799f) |
2022-08-27 08:07:23 +0200 | Guest1517 | (~jinsun@user/jinsun) (Ping timeout: 255 seconds) |
2022-08-27 08:07:40 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 08:13:45 +0200 | takuan | (~takuan@178-116-218-225.access.telenet.be) |
2022-08-27 08:16:14 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 08:21:06 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 260 seconds) |
2022-08-27 08:24:56 +0200 | coot | (~coot@213.134.176.158) |
2022-08-27 08:26:21 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 08:29:17 +0200 | acidjnk | (~acidjnk@p200300d6e7137a55e00ff7705fa34544.dip0.t-ipconnect.de) |
2022-08-27 08:36:30 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) |
2022-08-27 08:37:26 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 260 seconds) |
2022-08-27 08:48:28 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) (Ping timeout: 268 seconds) |
2022-08-27 08:48:29 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 08:52:06 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 08:55:10 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) |
2022-08-27 08:55:17 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 268 seconds) |
2022-08-27 08:55:25 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 08:57:08 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 268 seconds) |
2022-08-27 09:14:11 +0200 | acidjnk | (~acidjnk@p200300d6e7137a55e00ff7705fa34544.dip0.t-ipconnect.de) (Ping timeout: 260 seconds) |
2022-08-27 09:14:53 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 09:16:46 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:18d6:a3f4:c421:c1db) |
2022-08-27 09:17:06 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 09:17:41 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) (Ping timeout: 260 seconds) |
2022-08-27 09:19:44 +0200 | sagax | (~sagax_nb@213.138.71.146) (Remote host closed the connection) |
2022-08-27 09:20:24 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) (Remote host closed the connection) |
2022-08-27 09:20:33 +0200 | califax | (~califax@user/califx) (Remote host closed the connection) |
2022-08-27 09:21:42 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) |
2022-08-27 09:21:55 +0200 | califax | (~califax@user/califx) |
2022-08-27 09:22:11 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) |
2022-08-27 09:23:31 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 260 seconds) |
2022-08-27 09:26:09 +0200 | eikke | (~NicolasT@user/NicolasT) |
2022-08-27 09:29:05 +0200 | worldhelloworld1 | (uid543174@id-543174.helmsley.irccloud.com) |
2022-08-27 09:30:15 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 09:35:21 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 09:35:29 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) (Ping timeout: 252 seconds) |
2022-08-27 09:38:44 +0200 | zxx7529 | (~Thunderbi@user/zxx7529) |
2022-08-27 09:49:34 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 09:51:42 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:18d6:a3f4:c421:c1db) (Remote host closed the connection) |
2022-08-27 09:52:01 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:70e8:ec21:78f9:5f31) |
2022-08-27 09:52:39 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:70e8:ec21:78f9:5f31) (Remote host closed the connection) |
2022-08-27 09:53:51 +0200 | bontaq | (~user@ool-45779fe5.dyn.optonline.net) (Ping timeout: 260 seconds) |
2022-08-27 09:57:59 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 09:59:42 +0200 | Vajb | (~Vajb@2001:999:705:3c86:e7ea:442b:1e01:22d8) (Read error: Connection reset by peer) |
2022-08-27 09:59:50 +0200 | Vajb | (~Vajb@hag-jnsbng11-58c3ad-40.dhcp.inet.fi) |
2022-08-27 10:07:57 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) |
2022-08-27 10:09:17 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 268 seconds) |
2022-08-27 10:13:44 +0200 | harveypwca | (~harveypwc@2601:246:c180:a570:3828:d8:e523:3f67) |
2022-08-27 10:13:44 +0200 | gurkenglas | (~gurkengla@p548ac72e.dip0.t-ipconnect.de) |
2022-08-27 10:16:36 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 10:17:17 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) (Ping timeout: 252 seconds) |
2022-08-27 10:17:57 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 10:20:35 +0200 | eikke | (~NicolasT@user/NicolasT) (Ping timeout: 252 seconds) |
2022-08-27 10:22:53 +0200 | mima | (mmh@gateway/vpn/airvpn/mima) |
2022-08-27 10:26:05 +0200 | olle | (~olle@h-94-254-63-12.NA.cust.bahnhof.se) |
2022-08-27 10:27:52 +0200 | zaquest | (~notzaques@5.130.79.72) (Remote host closed the connection) |
2022-08-27 10:29:00 +0200 | zaquest | (~notzaques@5.130.79.72) |
2022-08-27 10:30:41 +0200 | coot | (~coot@213.134.176.158) (Quit: coot) |
2022-08-27 10:31:26 +0200 | cheater1__ | (~Username@user/cheater) |
2022-08-27 10:31:27 +0200 | cheater | (~Username@user/cheater) (Ping timeout: 268 seconds) |
2022-08-27 10:31:30 +0200 | cheater1__ | cheater |
2022-08-27 10:35:05 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) |
2022-08-27 10:37:06 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) |
2022-08-27 10:37:07 +0200 | dos__^^ | (~user@user/dos/x-1723657) |
2022-08-27 10:38:38 +0200 | econo | (uid147250@user/econo) (Quit: Connection closed for inactivity) |
2022-08-27 10:40:03 +0200 | wonko | (~wjc@2a0e:1c80:2::130) |
2022-08-27 10:41:24 +0200 | `2jt | (~jtomas@56.red-88-17-82.dynamicip.rima-tde.net) |
2022-08-27 10:42:41 +0200 | eggplantade | (~Eggplanta@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection) |
2022-08-27 10:45:37 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 10:45:48 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) |
2022-08-27 10:46:20 +0200 | califax | (~califax@user/califx) (Ping timeout: 268 seconds) |
2022-08-27 10:46:45 +0200 | califax | (~califax@user/califx) |
2022-08-27 10:46:54 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 268 seconds) |
2022-08-27 10:50:01 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 10:50:39 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) (Ping timeout: 252 seconds) |
2022-08-27 10:51:29 +0200 | Sgeo | (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
2022-08-27 10:53:07 +0200 | talismanick | (~talismani@2601:200:c100:3850::dd64) (Ping timeout: 244 seconds) |
2022-08-27 10:55:23 +0200 | coot | (~coot@2a02:a310:e241:1b00:ec1a:e9df:79ac:66ba) |
2022-08-27 10:57:23 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) |
2022-08-27 10:59:54 +0200 | adanwan | (~adanwan@gateway/tor-sasl/adanwan) (Ping timeout: 268 seconds) |
2022-08-27 10:59:57 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) (Max SendQ exceeded) |
2022-08-27 11:00:24 +0200 | jakalx | (~jakalx@base.jakalx.net) () |
2022-08-27 11:00:27 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) |
2022-08-27 11:00:49 +0200 | adanwan | (~adanwan@gateway/tor-sasl/adanwan) |
2022-08-27 11:01:41 +0200 | jmorris | (uid537181@id-537181.uxbridge.irccloud.com) (Quit: Connection closed for inactivity) |
2022-08-27 11:02:24 +0200 | jakalx | (~jakalx@base.jakalx.net) |
2022-08-27 11:03:42 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) (Max SendQ exceeded) |
2022-08-27 11:04:17 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) |
2022-08-27 11:05:09 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 11:15:34 +0200 | random-jellyfish | (~random-je@user/random-jellyfish) (Quit: Client closed) |
2022-08-27 11:15:47 +0200 | tzh | (~tzh@c-24-21-73-154.hsd1.or.comcast.net) (Quit: zzz) |
2022-08-27 11:20:26 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 11:23:30 +0200 | benin0 | (~benin@49.206.96.5) |
2022-08-27 11:24:27 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:5cef:1e58:eb92:5f6a) |
2022-08-27 11:28:23 +0200 | califax | (~califax@user/califx) (Remote host closed the connection) |
2022-08-27 11:29:11 +0200 | califax | (~califax@user/califx) |
2022-08-27 11:31:37 +0200 | benin08 | (~benin@2401:4900:2325:11d7:d46:f407:3146:a2f1) |
2022-08-27 11:33:36 +0200 | benin0 | (~benin@49.206.96.5) (Ping timeout: 260 seconds) |
2022-08-27 11:33:37 +0200 | benin08 | benin0 |
2022-08-27 11:35:33 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:5cef:1e58:eb92:5f6a) (Remote host closed the connection) |
2022-08-27 11:35:52 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:8be3:ca91:e0db:d2eb) |
2022-08-27 11:37:46 +0200 | worldhelloworld1 | (uid543174@id-543174.helmsley.irccloud.com) (Quit: Connection closed for inactivity) |
2022-08-27 11:39:47 +0200 | benin0 | (~benin@2401:4900:2325:11d7:d46:f407:3146:a2f1) (Ping timeout: 255 seconds) |
2022-08-27 11:42:43 +0200 | Guest4172 | (~chenqisu1@183.217.200.212) (Ping timeout: 252 seconds) |
2022-08-27 11:43:12 +0200 | eggplantade | (~Eggplanta@108-201-191-115.lightspeed.sntcca.sbcglobal.net) |
2022-08-27 11:44:14 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) (Ping timeout: 268 seconds) |
2022-08-27 11:44:36 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 11:47:57 +0200 | eggplantade | (~Eggplanta@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 268 seconds) |
2022-08-27 11:48:53 +0200 | azimut_ | (~azimut@gateway/tor-sasl/azimut) |
2022-08-27 11:49:05 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 11:49:14 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) (Ping timeout: 268 seconds) |
2022-08-27 11:50:25 +0200 | olle | (~olle@h-94-254-63-12.NA.cust.bahnhof.se) (Ping timeout: 268 seconds) |
2022-08-27 11:51:37 +0200 | harveypwca | (~harveypwc@2601:246:c180:a570:3828:d8:e523:3f67) (Quit: Leaving) |
2022-08-27 11:54:01 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 11:54:40 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:8be3:ca91:e0db:d2eb) (Remote host closed the connection) |
2022-08-27 11:54:59 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:3675:4e7c:2b6b:7b38) |
2022-08-27 11:56:21 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) (Remote host closed the connection) |
2022-08-27 11:59:33 +0200 | __monty__ | (~toonn@user/toonn) |
2022-08-27 12:02:00 +0200 | coot | (~coot@2a02:a310:e241:1b00:ec1a:e9df:79ac:66ba) (Quit: coot) |
2022-08-27 12:02:03 +0200 | axeman | (~quassel@net-93-65-246-244.cust.vodafonedsl.it) |
2022-08-27 12:06:46 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 12:07:00 +0200 | azimut_ | (~azimut@gateway/tor-sasl/azimut) (Remote host closed the connection) |
2022-08-27 12:07:31 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) |
2022-08-27 12:15:40 +0200 | beteigeuze | (~Thunderbi@bl11-28-222.dsl.telepac.pt) |
2022-08-27 12:16:55 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:3675:4e7c:2b6b:7b38) (Remote host closed the connection) |
2022-08-27 12:18:49 +0200 | acidjnk | (~acidjnk@p200300d6e7137a55e00ff7705fa34544.dip0.t-ipconnect.de) |
2022-08-27 12:19:03 +0200 | nattiestnate | (~nate@202.138.250.13) |
2022-08-27 12:19:18 +0200 | nattiestnate | (~nate@202.138.250.13) (Client Quit) |
2022-08-27 12:19:40 +0200 | nattiestnate | (~nate@202.138.250.9) |
2022-08-27 12:20:22 +0200 | toeffel | (~toeffel@user/toeffel) |
2022-08-27 12:24:03 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 12:29:58 +0200 | libertyprime | (~libertypr@118-92-68-91.dsl.dyn.ihug.co.nz) (Quit: leaving) |
2022-08-27 12:38:31 +0200 | Topsi | (~Topsi@dyndsl-095-033-090-077.ewe-ip-backbone.de) |
2022-08-27 12:39:50 +0200 | zeenk | (~zeenk@2a02:2f04:a311:2d00:6865:d863:4c93:799f) (Quit: Konversation terminated!) |
2022-08-27 12:40:03 +0200 | lisbeths | (uid135845@id-135845.lymington.irccloud.com) |
2022-08-27 12:40:13 +0200 | jespada | (~jespada@cpc121060-nmal24-2-0-cust249.19-2.cable.virginm.net) |
2022-08-27 12:41:16 +0200 | acidjnk | (~acidjnk@p200300d6e7137a55e00ff7705fa34544.dip0.t-ipconnect.de) (Ping timeout: 260 seconds) |
2022-08-27 12:42:58 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 12:48:21 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 268 seconds) |
2022-08-27 12:52:45 +0200 | gurkenglas | (~gurkengla@p548ac72e.dip0.t-ipconnect.de) (Ping timeout: 252 seconds) |
2022-08-27 12:54:36 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 13:02:51 +0200 | wonko | (~wjc@2a0e:1c80:2::130) (Ping timeout: 260 seconds) |
2022-08-27 13:04:51 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection) |
2022-08-27 13:05:38 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 13:13:21 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 13:14:57 +0200 | stiell | (~stiell@gateway/tor-sasl/stiell) (Ping timeout: 268 seconds) |
2022-08-27 13:15:06 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 260 seconds) |
2022-08-27 13:16:34 +0200 | nattiestnate | (~nate@202.138.250.9) (Quit: WeeChat 3.6) |
2022-08-27 13:23:44 +0200 | jinsun | (~jinsun@user/jinsun) (Ping timeout: 255 seconds) |
2022-08-27 13:28:35 +0200 | stiell | (~stiell@gateway/tor-sasl/stiell) |
2022-08-27 13:43:25 +0200 | FinnElija | (~finn_elij@user/finn-elija/x-0085643) (Remote host closed the connection) |
2022-08-27 13:43:39 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 13:44:58 +0200 | FinnElija | (~finn_elij@user/finn-elija/x-0085643) |
2022-08-27 13:45:27 +0200 | eggplantade | (~Eggplanta@108-201-191-115.lightspeed.sntcca.sbcglobal.net) |
2022-08-27 13:47:45 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 13:49:55 +0200 | eggplantade | (~Eggplanta@108-201-191-115.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 248 seconds) |
2022-08-27 13:52:49 +0200 | MoC | (~moc@user/moc) |
2022-08-27 13:54:25 +0200 | raym | (~raym@user/raym) (Remote host closed the connection) |
2022-08-27 13:55:52 +0200 | toeffel | (~toeffel@user/toeffel) (Quit: quit) |
2022-08-27 13:58:32 +0200 | coot | (~coot@213.134.176.158) |
2022-08-27 14:00:01 +0200 | elkcl | (~elkcl@broadband-37-110-156-162.ip.moscow.rt.ru) (Ping timeout: 260 seconds) |
2022-08-27 14:03:38 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 14:07:55 +0200 | jtomas | (~jtomas@56.red-88-17-82.dynamicip.rima-tde.net) |
2022-08-27 14:10:31 +0200 | `2jt | (~jtomas@56.red-88-17-82.dynamicip.rima-tde.net) (Ping timeout: 260 seconds) |
2022-08-27 14:16:04 +0200 | Chai-T-Rex | (~ChaiTRex@user/chaitrex) (Quit: Chai-T-Rex) |
2022-08-27 14:17:31 +0200 | ChaiTRex | (~ChaiTRex@user/chaitrex) |
2022-08-27 14:18:25 +0200 | zeenk | (~zeenk@2a02:2f04:a311:2d00:6865:d863:4c93:799f) |
2022-08-27 14:19:05 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 14:22:21 +0200 | raym | (~raym@user/raym) |
2022-08-27 14:24:48 +0200 | jtomas | (~jtomas@56.red-88-17-82.dynamicip.rima-tde.net) (Read error: Connection reset by peer) |
2022-08-27 14:26:26 +0200 | axeman | (~quassel@net-93-65-246-244.cust.vodafonedsl.it) (Ping timeout: 268 seconds) |
2022-08-27 14:35:36 +0200 | raym | (~raym@user/raym) (Ping timeout: 260 seconds) |
2022-08-27 14:37:23 +0200 | raym | (~raym@user/raym) |
2022-08-27 14:44:17 +0200 | instantaphex | (~jb@c-73-171-252-84.hsd1.fl.comcast.net) |
2022-08-27 14:45:22 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) (Remote host closed the connection) |
2022-08-27 14:45:48 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) |
2022-08-27 14:46:56 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 14:51:21 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 14:52:28 +0200 | jinsun | (~jinsun@user/jinsun) |
2022-08-27 14:55:39 +0200 | raehik | (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) |
2022-08-27 15:01:21 +0200 | szkl | (uid110435@id-110435.uxbridge.irccloud.com) (Quit: Connection closed for inactivity) |
2022-08-27 15:05:00 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 15:05:06 +0200 | o-90 | (~o-90@gateway/tor-sasl/o-90) |
2022-08-27 15:06:34 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) (Ping timeout: 268 seconds) |
2022-08-27 15:07:18 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) |
2022-08-27 15:07:19 +0200 | img | (~img@user/img) (Quit: ZNC 1.8.2 - https://znc.in) |
2022-08-27 15:07:42 +0200 | img | (~img@user/img) |
2022-08-27 15:08:01 +0200 | img | (~img@user/img) (Client Quit) |
2022-08-27 15:09:33 +0200 | o-90 | (~o-90@gateway/tor-sasl/o-90) (Remote host closed the connection) |
2022-08-27 15:10:44 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) |
2022-08-27 15:11:02 +0200 | img | (~img@user/img) |
2022-08-27 15:22:32 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 15:23:21 +0200 | stiell | (~stiell@gateway/tor-sasl/stiell) (Remote host closed the connection) |
2022-08-27 15:24:05 +0200 | stiell | (~stiell@gateway/tor-sasl/stiell) |
2022-08-27 15:24:42 +0200 | toeffel | (~toeffel@user/toeffel) |
2022-08-27 15:26:21 +0200 | instantaphex | (~jb@c-73-171-252-84.hsd1.fl.comcast.net) (Ping timeout: 260 seconds) |
2022-08-27 15:34:27 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 15:39:11 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 15:40:59 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 15:42:45 +0200 | kenaryn | (~aurele@cre71-h03-89-88-44-27.dsl.sta.abo.bbox.fr) |
2022-08-27 15:42:52 +0200 | waleee | (~waleee@2001:9b0:213:7200:cc36:a556:b1e8:b340) |
2022-08-27 15:46:11 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 260 seconds) |
2022-08-27 15:53:36 +0200 | kenaryn | (~aurele@cre71-h03-89-88-44-27.dsl.sta.abo.bbox.fr) (Quit: leaving) |
2022-08-27 15:55:11 +0200 | stef204 | (~stef204@user/stef204) |
2022-08-27 15:59:11 +0200 | [itchyjunk] | (~itchyjunk@user/itchyjunk/x-7353470) |
2022-08-27 15:59:47 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) (Remote host closed the connection) |
2022-08-27 16:00:32 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) |
2022-08-27 16:00:50 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Ping timeout: 268 seconds) |
2022-08-27 16:04:59 +0200 | axeman | (~quassel@net-93-65-246-244.cust.vodafonedsl.it) |
2022-08-27 16:06:21 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 16:06:26 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 16:08:16 +0200 | mastarija | (~mastarija@2a05:4f46:e03:6000:b825:f4cc:782a:97c1) |
2022-08-27 16:10:57 +0200 | mastarija | (~mastarija@2a05:4f46:e03:6000:b825:f4cc:782a:97c1) (Client Quit) |
2022-08-27 16:16:06 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Remote host closed the connection) |
2022-08-27 16:16:12 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 16:17:00 +0200 | coot | (~coot@213.134.176.158) (Quit: coot) |
2022-08-27 16:17:37 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Remote host closed the connection) |
2022-08-27 16:18:00 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 16:22:14 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Quit: = "") |
2022-08-27 16:30:08 +0200 | ardell | (~ardell@user/ardell) |
2022-08-27 16:32:00 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:83a1:2a85:23be:cd6e) |
2022-08-27 16:32:53 +0200 | zxx7529 | (~Thunderbi@user/zxx7529) (Remote host closed the connection) |
2022-08-27 16:33:05 +0200 | zxx7529 | (~Thunderbi@user/zxx7529) |
2022-08-27 16:33:55 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 16:36:24 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Remote host closed the connection) |
2022-08-27 16:37:33 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:83a1:2a85:23be:cd6e) (Remote host closed the connection) |
2022-08-27 16:37:51 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:8b00:c7a:9f57:74a6) |
2022-08-27 16:40:24 +0200 | szkl | (uid110435@id-110435.uxbridge.irccloud.com) |
2022-08-27 16:40:56 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 16:43:36 +0200 | MoC | (~moc@user/moc) (Quit: Konversation terminated!) |
2022-08-27 16:45:20 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 16:49:25 +0200 | olle | (~olle@h-94-254-63-12.NA.cust.bahnhof.se) |
2022-08-27 16:56:41 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:8b00:c7a:9f57:74a6) (Remote host closed the connection) |
2022-08-27 16:59:31 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 17:00:59 +0200 | gurkenglas | (~gurkengla@p548ac72e.dip0.t-ipconnect.de) |
2022-08-27 17:04:08 +0200 | tzh | (~tzh@c-24-21-73-154.hsd1.wa.comcast.net) |
2022-08-27 17:05:23 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 17:06:33 +0200 | acidjnk | (~acidjnk@p200300d6e7137a55e00ff7705fa34544.dip0.t-ipconnect.de) |
2022-08-27 17:07:20 +0200 | zeenk | (~zeenk@2a02:2f04:a311:2d00:6865:d863:4c93:799f) (Quit: Konversation terminated!) |
2022-08-27 17:11:36 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:586d:1f09:9fd1:8ca7) |
2022-08-27 17:18:21 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 17:19:49 +0200 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) |
2022-08-27 17:27:35 +0200 | dolio | (~dolio@130.44.130.54) (Quit: ZNC 1.8.2 - https://znc.in) |
2022-08-27 17:30:00 +0200 | dolio | (~dolio@130.44.130.54) |
2022-08-27 17:30:59 +0200 | dolio | (~dolio@130.44.130.54) (Client Quit) |
2022-08-27 17:32:35 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 17:33:30 +0200 | zxx7529 | (~Thunderbi@user/zxx7529) (Remote host closed the connection) |
2022-08-27 17:33:42 +0200 | zxx7529 | (~Thunderbi@user/zxx7529) |
2022-08-27 17:34:04 +0200 | wonko | (~wjc@2a0e:1c80:2::130) |
2022-08-27 17:34:10 +0200 | dolio | (~dolio@130.44.130.54) |
2022-08-27 17:35:27 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:586d:1f09:9fd1:8ca7) (Remote host closed the connection) |
2022-08-27 17:37:20 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) |
2022-08-27 17:38:05 +0200 | ddellacosta | (~ddellacos@143.244.47.100) |
2022-08-27 17:38:38 +0200 | bitdex_ | (~bitdex@gateway/tor-sasl/bitdex) |
2022-08-27 17:39:28 +0200 | slaydr | (~slaydr@173.239.197.75) (Quit: Leaving) |
2022-08-27 17:39:30 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Ping timeout: 268 seconds) |
2022-08-27 17:40:04 +0200 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 268 seconds) |
2022-08-27 17:41:50 +0200 | hgolden | (~Howard@cpe-172-251-233-141.socal.res.rr.com) (Remote host closed the connection) |
2022-08-27 17:42:02 +0200 | dsrt^ | (~dsrt@96.70.11.181) (Remote host closed the connection) |
2022-08-27 17:45:34 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 17:48:00 +0200 | lortabac | (~lortabac@2a01:e0a:541:b8f0:6df:dab8:c95c:e89f) |
2022-08-27 17:50:08 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 17:50:18 +0200 | lortabac | (~lortabac@2a01:e0a:541:b8f0:6df:dab8:c95c:e89f) (Client Quit) |
2022-08-27 17:50:33 +0200 | waleee | (~waleee@2001:9b0:213:7200:cc36:a556:b1e8:b340) (Ping timeout: 268 seconds) |
2022-08-27 17:51:16 +0200 | econo | (uid147250@user/econo) |
2022-08-27 17:53:47 +0200 | hgolden | (~Howard@cpe-172-251-233-141.socal.res.rr.com) |
2022-08-27 17:55:22 +0200 | eggplantade | (~Eggplanta@108-201-191-115.lightspeed.sntcca.sbcglobal.net) |
2022-08-27 18:04:32 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 18:07:21 +0200 | acidjnk | (~acidjnk@p200300d6e7137a55e00ff7705fa34544.dip0.t-ipconnect.de) (Ping timeout: 260 seconds) |
2022-08-27 18:07:26 +0200 | rush | sloorush |
2022-08-27 18:12:13 +0200 | notzmv | (~zmv@user/notzmv) |
2022-08-27 18:14:02 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) (Ping timeout: 268 seconds) |
2022-08-27 18:14:52 +0200 | jpds | (~jpds@gateway/tor-sasl/jpds) |
2022-08-27 18:17:30 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) (Remote host closed the connection) |
2022-08-27 18:21:56 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 18:24:31 +0200 | acidjnk | (~acidjnk@p200300d6e7137a04a00358bb388e8ede.dip0.t-ipconnect.de) |
2022-08-27 18:25:52 +0200 | examors | (~examors@user/examors) (Quit: WeeChat 3.5) |
2022-08-27 18:30:37 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) |
2022-08-27 18:30:49 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 252 seconds) |
2022-08-27 18:31:38 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 18:36:02 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 255 seconds) |
2022-08-27 18:37:56 +0200 | goepsilongo | (~goepsilon@2806:101e:9:5045:107a:c190:12f7:570c) |
2022-08-27 18:40:53 +0200 | Vajb | (~Vajb@hag-jnsbng11-58c3ad-40.dhcp.inet.fi) (Read error: Connection reset by peer) |
2022-08-27 18:41:01 +0200 | Vajb | (~Vajb@hag-jnsbng11-58c3ad-40.dhcp.inet.fi) |
2022-08-27 18:41:24 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) |
2022-08-27 18:43:20 +0200 | bontaq | (~user@ool-45779fe5.dyn.optonline.net) |
2022-08-27 18:43:35 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 268 seconds) |
2022-08-27 18:45:08 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) (Read error: Connection reset by peer) |
2022-08-27 18:46:19 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2022-08-27 18:46:27 +0200 | stef204 | (~stef204@user/stef204) (Quit: WeeChat 3.6) |
2022-08-27 18:52:07 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) |
2022-08-27 18:52:09 +0200 | enek_ | (~Gambino@pool-100-11-18-203.phlapa.fios.verizon.net) |
2022-08-27 18:52:50 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 268 seconds) |
2022-08-27 18:53:25 +0200 | axeman | (~quassel@net-93-65-246-244.cust.vodafonedsl.it) (Ping timeout: 268 seconds) |
2022-08-27 18:54:36 +0200 | waleee | (~waleee@2001:9b0:213:7200:cc36:a556:b1e8:b340) |
2022-08-27 18:55:40 +0200 | stef204 | (~stef204@user/stef204) |
2022-08-27 19:02:11 +0200 | xff0x | (~xff0x@ai071162.d.east.v6connect.net) (Ping timeout: 260 seconds) |
2022-08-27 19:04:17 +0200 | Vajb | (~Vajb@hag-jnsbng11-58c3ad-40.dhcp.inet.fi) (Read error: Connection reset by peer) |
2022-08-27 19:04:25 +0200 | enek_ | (~Gambino@pool-100-11-18-203.phlapa.fios.verizon.net) (Quit: Textual IRC Client: www.textualapp.com) |
2022-08-27 19:04:59 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) (Remote host closed the connection) |
2022-08-27 19:06:39 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 19:06:59 +0200 | Vajb | (~Vajb@2001:999:705:3c86:e7ea:442b:1e01:22d8) |
2022-08-27 19:11:59 +0200 | fserucas | (~fserucas@89.214.116.132) |
2022-08-27 19:12:37 +0200 | stef204 | (~stef204@user/stef204) (Quit: WeeChat 3.6) |
2022-08-27 19:13:19 +0200 | fserucas | (~fserucas@89.214.116.132) (Client Quit) |
2022-08-27 19:14:26 +0200 | acidjnk | (~acidjnk@p200300d6e7137a04a00358bb388e8ede.dip0.t-ipconnect.de) (Ping timeout: 260 seconds) |
2022-08-27 19:14:45 +0200 | xff0x | (~xff0x@2405:6580:b080:900:1b20:aae8:b54a:f45a) |
2022-08-27 19:19:36 +0200 | marinelli[m] | (~marinelli@2001:470:69fc:105::2d8) () |
2022-08-27 19:19:58 +0200 | notzmv | (~zmv@user/notzmv) (Ping timeout: 268 seconds) |
2022-08-27 19:21:20 +0200 | acidjnk | (~acidjnk@p200300d6e7137a046828ecd89b5c1416.dip0.t-ipconnect.de) |
2022-08-27 19:21:30 +0200 | jmd_ | (~jmdaemon@user/jmdaemon) (Quit: ZNC 1.8.2 - https://znc.in) |
2022-08-27 19:23:59 +0200 | pavonia | (~user@user/siracusa) (Quit: Bye!) |
2022-08-27 19:25:34 +0200 | asivitz | (uid178348@id-178348.tinside.irccloud.com) |
2022-08-27 19:26:47 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 19:31:41 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 268 seconds) |
2022-08-27 19:31:56 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 260 seconds) |
2022-08-27 19:32:31 +0200 | Kaipei | (~Kaiepi@142.68.249.28) (Ping timeout: 260 seconds) |
2022-08-27 19:34:48 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) (Quit: No Ping reply in 180 seconds.) |
2022-08-27 19:35:03 +0200 | cyphase | (~cyphase@user/cyphase) (Quit: cyphase.com) |
2022-08-27 19:36:55 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) |
2022-08-27 19:42:11 +0200 | xff0x | (~xff0x@2405:6580:b080:900:1b20:aae8:b54a:f45a) (Ping timeout: 244 seconds) |
2022-08-27 19:43:37 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 19:43:48 +0200 | Sgeo | (~Sgeo@user/sgeo) |
2022-08-27 19:44:02 +0200 | xff0x | (~xff0x@ai071162.d.east.v6connect.net) |
2022-08-27 19:44:21 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 19:45:24 +0200 | cyphase | (~cyphase@user/cyphase) |
2022-08-27 19:46:22 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) (Remote host closed the connection) |
2022-08-27 19:46:35 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) |
2022-08-27 19:46:54 +0200 | enek | (~enek@pool-100-11-18-203.phlapa.fios.verizon.net) |
2022-08-27 19:47:10 +0200 | enek | (~enek@pool-100-11-18-203.phlapa.fios.verizon.net) (Changing host) |
2022-08-27 19:47:10 +0200 | enek | (~enek@user/polo) |
2022-08-27 19:48:16 +0200 | acidjnk | (~acidjnk@p200300d6e7137a046828ecd89b5c1416.dip0.t-ipconnect.de) (Ping timeout: 260 seconds) |
2022-08-27 19:48:20 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 268 seconds) |
2022-08-27 19:48:38 +0200 | enek | Polo |
2022-08-27 19:48:46 +0200 | Polo | (~enek@user/polo) (Client Quit) |
2022-08-27 19:52:31 +0200 | matthewmosior | (~matthewmo@173.170.253.91) (Ping timeout: 244 seconds) |
2022-08-27 19:55:35 +0200 | notzmv | (~zmv@user/notzmv) |
2022-08-27 19:56:56 +0200 | zxx7529 | (~Thunderbi@user/zxx7529) (Ping timeout: 268 seconds) |
2022-08-27 19:59:29 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) (Ping timeout: 268 seconds) |
2022-08-27 20:04:39 +0200 | jao | (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) |
2022-08-27 20:05:52 +0200 | zebrag | (~chris@user/zebrag) |
2022-08-27 20:06:36 +0200 | matthewmosior | (~matthewmo@173.170.253.91) |
2022-08-27 20:07:58 +0200 | tomboy64 | (~tomboy64@user/tomboy64) (Remote host closed the connection) |
2022-08-27 20:09:37 +0200 | tomboy64 | (~tomboy64@user/tomboy64) |
2022-08-27 20:14:00 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) |
2022-08-27 20:17:17 +0200 | brettgilio | (~brettgili@c9yh.net) (Ping timeout: 268 seconds) |
2022-08-27 20:17:42 +0200 | axeman | (~quassel@net-93-65-246-244.cust.vodafonedsl.it) |
2022-08-27 20:17:53 +0200 | Kaiepi | (~Kaiepi@142.68.249.28) |
2022-08-27 20:19:45 +0200 | alternateved | (~user@staticline-31-183-146-203.toya.net.pl) (Remote host closed the connection) |
2022-08-27 20:23:25 +0200 | zxx7529 | (~Thunderbi@user/zxx7529) |
2022-08-27 20:27:47 +0200 | raehik | (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 252 seconds) |
2022-08-27 20:29:25 +0200 | lisbeths | (uid135845@id-135845.lymington.irccloud.com) (Quit: Connection closed for inactivity) |
2022-08-27 20:30:37 +0200 | titibandit | (~titibandi@xdsl-87-78-66-58.nc.de) |
2022-08-27 20:31:20 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 20:32:51 +0200 | Guest2279 | (~Guest22@2604:3d08:9578:cd70:294c:2f1f:3ead:65d7) |
2022-08-27 20:33:09 +0200 | Guest2279 | (~Guest22@2604:3d08:9578:cd70:294c:2f1f:3ead:65d7) (Client Quit) |
2022-08-27 20:35:48 +0200 | Lord_of_Life_ | (~Lord@user/lord-of-life/x-2819915) |
2022-08-27 20:35:51 +0200 | Lord_of_Life | (~Lord@user/lord-of-life/x-2819915) (Ping timeout: 252 seconds) |
2022-08-27 20:36:43 +0200 | stef204 | (~stef204@user/stef204) |
2022-08-27 20:37:39 +0200 | Guest32 | (~Guest32@2604:3d08:9578:cd70:294c:2f1f:3ead:65d7) |
2022-08-27 20:37:49 +0200 | raehik | (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) |
2022-08-27 20:38:28 +0200 | Lord_of_Life_ | Lord_of_Life |
2022-08-27 20:39:10 +0200 | Guest32 | (~Guest32@2604:3d08:9578:cd70:294c:2f1f:3ead:65d7) (Client Quit) |
2022-08-27 20:39:28 +0200 | Ailrk | (~Ailrk@2604:3d08:9578:cd70:294c:2f1f:3ead:65d7) |
2022-08-27 20:42:36 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) |
2022-08-27 20:42:42 +0200 | <segfaultfizzbuzz> | zsh: segmentation fault stack upgrade |
2022-08-27 20:43:10 +0200 | segfaultfizzbuzz | segfaulted stack on a first use attempt |
2022-08-27 20:43:23 +0200 | wonko | (~wjc@2a0e:1c80:2::130) (Ping timeout: 255 seconds) |
2022-08-27 20:43:26 +0200 | <segfaultfizzbuzz> | can i get some comedy karma points |
2022-08-27 20:43:46 +0200 | Ailrk | (~Ailrk@2604:3d08:9578:cd70:294c:2f1f:3ead:65d7) (Client Quit) |
2022-08-27 20:44:04 +0200 | <segfaultfizzbuzz> | stack was installed freshly via ghcup |
2022-08-27 20:44:21 +0200 | <segfaultfizzbuzz> | on macos/m1 |
2022-08-27 20:48:20 +0200 | cyphase | (~cyphase@user/cyphase) (Ping timeout: 255 seconds) |
2022-08-27 20:48:45 +0200 | phma | (phma@2001:5b0:210d:9458:aee1:2881:7c08:f7a7) (Read error: Connection reset by peer) |
2022-08-27 20:50:03 +0200 | phma | (phma@2001:5b0:210d:2468:ee36:3a6:50fd:1e95) |
2022-08-27 20:50:40 +0200 | Me-me | (~me-me@user/me-me) (Read error: Connection reset by peer) |
2022-08-27 20:52:44 +0200 | Pickchea | (~private@user/pickchea) |
2022-08-27 20:52:59 +0200 | cyphase | (~cyphase@user/cyphase) |
2022-08-27 20:55:10 +0200 | Me-me | (~me-me@v.working.name) |
2022-08-27 21:02:43 +0200 | ardell | (~ardell@user/ardell) (Quit: Leaving) |
2022-08-27 21:05:55 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) (Ping timeout: 252 seconds) |
2022-08-27 21:07:30 +0200 | stef204 | (~stef204@user/stef204) (Quit: WeeChat 3.6) |
2022-08-27 21:12:55 +0200 | acidjnk | (~acidjnk@p200300d6e7137a04192cc13bdab8a600.dip0.t-ipconnect.de) |
2022-08-27 21:13:26 +0200 | raehik | (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 260 seconds) |
2022-08-27 21:15:13 +0200 | raehik | (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) |
2022-08-27 21:16:39 +0200 | zebrag | (~chris@user/zebrag) (Read error: Connection reset by peer) |
2022-08-27 21:17:54 +0200 | zebrag | (~chris@user/zebrag) |
2022-08-27 21:20:05 +0200 | wonko | (~wjc@2a0e:1c80:2::130) |
2022-08-27 21:23:21 +0200 | cyphase | (~cyphase@user/cyphase) (Ping timeout: 260 seconds) |
2022-08-27 21:27:39 +0200 | michalz | (~michalz@185.246.204.90) |
2022-08-27 21:28:12 +0200 | cyphase | (~cyphase@user/cyphase) |
2022-08-27 21:30:51 +0200 | biberu | (~biberu@user/biberu) (Ping timeout: 252 seconds) |
2022-08-27 21:30:56 +0200 | raehik | (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 260 seconds) |
2022-08-27 21:31:09 +0200 | titibandit | (~titibandi@xdsl-87-78-66-58.nc.de) (Remote host closed the connection) |
2022-08-27 21:34:27 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) |
2022-08-27 21:38:05 +0200 | <hololeap> | name checks out |
2022-08-27 21:39:06 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) (Ping timeout: 260 seconds) |
2022-08-27 21:39:15 +0200 | biberu | (~biberu@user/biberu) |
2022-08-27 21:42:38 +0200 | zxx7529 | (~Thunderbi@user/zxx7529) (Quit: zxx7529) |
2022-08-27 21:43:17 +0200 | enek | (~enek@pool-100-11-18-203.phlapa.fios.verizon.net) |
2022-08-27 21:44:21 +0200 | axeman | (~quassel@net-93-65-246-244.cust.vodafonedsl.it) (Ping timeout: 260 seconds) |
2022-08-27 21:44:44 +0200 | harveypwca | (~harveypwc@2601:246:c180:a570:3828:d8:e523:3f67) |
2022-08-27 21:45:31 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 252 seconds) |
2022-08-27 21:55:18 +0200 | beteigeuze | (~Thunderbi@bl11-28-222.dsl.telepac.pt) (Read error: Connection reset by peer) |
2022-08-27 21:55:23 +0200 | beteigeuze1 | (~Thunderbi@bl11-28-222.dsl.telepac.pt) |
2022-08-27 21:55:37 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) (Remote host closed the connection) |
2022-08-27 21:57:35 +0200 | akegalj | (~akegalj@141-136-183-58.dsl.iskon.hr) |
2022-08-27 21:57:41 +0200 | beteigeuze1 | beteigeuze |
2022-08-27 22:00:06 +0200 | mima | (mmh@gateway/vpn/airvpn/mima) (Ping timeout: 260 seconds) |
2022-08-27 22:01:17 +0200 | <akegalj> | I wonder does GHC do some magic to do tail call optimisation on monadic recursive functions in IO or ST? Will `let f x = doSomething >>= f` be TCO optimised? |
2022-08-27 22:03:09 +0200 | <geekosaur> | tail call optimization as such doesn't really apply, since evaluation is by graph reduction rather than procedural execution |
2022-08-27 22:04:02 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) |
2022-08-27 22:05:28 +0200 | <akegalj> | geekosaur: thanks for the info |
2022-08-27 22:06:18 +0200 | enek | (~enek@pool-100-11-18-203.phlapa.fios.verizon.net) (Ping timeout: 240 seconds) |
2022-08-27 22:06:47 +0200 | toeffel | (~toeffel@user/toeffel) (Quit: quit) |
2022-08-27 22:08:26 +0200 | wonko | (~wjc@2a0e:1c80:2::130) (Ping timeout: 255 seconds) |
2022-08-27 22:08:51 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 260 seconds) |
2022-08-27 22:09:20 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) |
2022-08-27 22:10:39 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) |
2022-08-27 22:10:58 +0200 | <dolio> | akegalj: It's not magic. It's a pretty natural consequence of the implementation. |
2022-08-27 22:11:33 +0200 | <dolio> | That's a good part of the token-passing implementation. |
2022-08-27 22:12:54 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 22:13:17 +0200 | pavonia | (~user@user/siracusa) |
2022-08-27 22:13:31 +0200 | <dolio> | Essentially it becomes `f x s = case doSomething s of (y, s) -> f y s` which just has the right structure to operate well. |
2022-08-27 22:14:51 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) (Ping timeout: 252 seconds) |
2022-08-27 22:15:00 +0200 | enek | (~enek@user/polo) |
2022-08-27 22:17:32 +0200 | enek | (~enek@user/polo) (Read error: Connection reset by peer) |
2022-08-27 22:19:36 +0200 | <akegalj> | dolio: so you are saying it will get optimised in efficient loop? If bind is compiled in case statement it looks to me as good to be optimised |
2022-08-27 22:20:21 +0200 | <dolio> | It probably will be, but it doesn't need to be optimized, because lazy evaluation will have the same semantics, just with more overhead. |
2022-08-27 22:22:42 +0200 | <dolio> | The optimizations aren't changing stack usage, I guess is what I'm saying. |
2022-08-27 22:22:51 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 260 seconds) |
2022-08-27 22:23:04 +0200 | <dolio> | That is for the reason geekosaur said. |
2022-08-27 22:26:56 +0200 | beteigeuze | (~Thunderbi@bl11-28-222.dsl.telepac.pt) (Ping timeout: 260 seconds) |
2022-08-27 22:31:08 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 268 seconds) |
2022-08-27 22:31:23 +0200 | cyphase | (~cyphase@user/cyphase) (Ping timeout: 255 seconds) |
2022-08-27 22:32:28 +0200 | <akegalj> | dolio: hm, how they are not changing stack usage. TCO version will be optimised in while loop while recursive function will push the function and arguments to the stack |
2022-08-27 22:32:54 +0200 | shapr | (~user@68.54.166.125) (Remote host closed the connection) |
2022-08-27 22:34:46 +0200 | <geekosaur> | nope |
2022-08-27 22:34:54 +0200 | <geekosaur> | there is no execution stack |
2022-08-27 22:35:27 +0200 | <akegalj> | geekosaur: will this clear things to me https://en.m.wikibooks.org/wiki/Haskell/Graph_reduction ? |
2022-08-27 22:35:28 +0200 | <geekosaur> | there is a pattern match stack but it works differently |
2022-08-27 22:35:33 +0200 | <olle> | You guys do escape analysis in the compiler? |
2022-08-27 22:35:34 +0200 | <geekosaur> | it might |
2022-08-27 22:35:47 +0200 | <dolio> | One way of thinking about it is that all calls are tail calls. |
2022-08-27 22:36:01 +0200 | <olle> | https://gitlab.haskell.org/ghc/ghc/-/issues/16891 - 3 years ago |
2022-08-27 22:36:06 +0200 | <geekosaur> | graph reduction is a very different form of execution |
2022-08-27 22:36:18 +0200 | cyphase | (~cyphase@user/cyphase) |
2022-08-27 22:36:31 +0200 | <geekosaur> | olle, yes there is escape analysis |
2022-08-27 22:36:32 +0200 | qrpnxz | (~qrpnxz@fsf/member/qrpnxz) |
2022-08-27 22:36:41 +0200 | <dolio> | So without any optimizations, f tail calls (>>=) and then (>>=) tail calls f. |
2022-08-27 22:37:19 +0200 | <olle> | geekosaur: Not the link I found tho? |
2022-08-27 22:37:22 +0200 | <monochrom> | Yeah all calls are tail calls. The stack is used for something else and can still grow. |
2022-08-27 22:38:27 +0200 | <geekosaur> | right, that ticket is for a partcular case of escape analysis that isn't currently done |
2022-08-27 22:39:12 +0200 | <olle> | https://stackoverflow.com/questions/5132350/how-do-haskell-compilers-decide-whether-to-allocate-on… |
2022-08-27 22:39:16 +0200 | <olle> | Kinda vague here |
2022-08-27 22:40:05 +0200 | <olle> | Hm |
2022-08-27 22:40:32 +0200 | <monochrom> | Based on the asm code I have seen, GHC goes "why not both? :)" |
2022-08-27 22:41:02 +0200 | <olle> | haha k |
2022-08-27 22:41:24 +0200 | <monochrom> | data is put on heap, and pointer to that data is put on stack. |
2022-08-27 22:41:39 +0200 | <olle> | That's always the case? |
2022-08-27 22:41:57 +0200 | <olle> | You usually dont malloc pointers, at least not in C |
2022-08-27 22:42:14 +0200 | <monochrom> | I haven't seen GHC-asm code that look like escape analysis was ever done. |
2022-08-27 22:43:48 +0200 | <geekosaur> | maybe I'm misunderstanding |
2022-08-27 22:44:11 +0200 | zeenk | (~zeenk@2a02:2f04:a311:2d00:6865:d863:4c93:799f) |
2022-08-27 22:44:12 +0200 | <geekosaur> | although there is a different kind of escape analysis that definitely happens… in the typechecker |
2022-08-27 22:44:30 +0200 | <geekosaur> | not helpful here or relevant to that ticket |
2022-08-27 22:44:57 +0200 | <olle> | got it :) |
2022-08-27 22:46:04 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 22:46:54 +0200 | <monochrom> | I think GHC uses fusions for lists, unboxing for Ints, such that the result supersedes escape analysis anyway. |
2022-08-27 22:49:40 +0200 | <geekosaur> | if you read that ticket you'll get some idea of (a) how GHC evaluates things (b) why escape analysis is difficult |
2022-08-27 22:50:16 +0200 | <geekosaur> | (c) why a stack complicates things (note that "the stack" is used in scare quotes for a reason) |
2022-08-27 22:55:16 +0200 | <olle> | :P |
2022-08-27 23:00:52 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) |
2022-08-27 23:01:29 +0200 | Pickchea | (~private@user/pickchea) (Quit: Leaving) |
2022-08-27 23:02:35 +0200 | inversed | (~inversed@90.209.137.56) (Ping timeout: 268 seconds) |
2022-08-27 23:03:34 +0200 | sagax | (~sagax_nb@user/sagax) |
2022-08-27 23:03:41 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 260 seconds) |
2022-08-27 23:05:40 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) (Ping timeout: 268 seconds) |
2022-08-27 23:07:11 +0200 | inversed | (~inversed@90.209.137.56) |
2022-08-27 23:09:23 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) |
2022-08-27 23:20:36 +0200 | kaskal | (~kaskal@2001:4bb8:2dc:7b0e:55ee:692c:e44d:a4b0) (Ping timeout: 260 seconds) |
2022-08-27 23:22:45 +0200 | akegalj | (~akegalj@141-136-183-58.dsl.iskon.hr) (Quit: leaving) |
2022-08-27 23:30:47 +0200 | wonko | (~wjc@2a0e:1c80:2::130) |
2022-08-27 23:31:03 +0200 | gmg | (~user@user/gehmehgeh) (Quit: Leaving) |
2022-08-27 23:31:13 +0200 | raehik | (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) |
2022-08-27 23:38:06 +0200 | Sgeo | (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
2022-08-27 23:42:47 +0200 | bitmapper | (uid464869@id-464869.lymington.irccloud.com) |
2022-08-27 23:44:49 +0200 | nate4 | (~nate@98.45.169.16) |
2022-08-27 23:47:27 +0200 | Topsi | (~Topsi@dyndsl-095-033-090-077.ewe-ip-backbone.de) (Read error: Connection reset by peer) |
2022-08-27 23:48:51 +0200 | waleee | (~waleee@2001:9b0:213:7200:cc36:a556:b1e8:b340) (Ping timeout: 248 seconds) |
2022-08-27 23:49:59 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) |
2022-08-27 23:50:04 +0200 | nate4 | (~nate@98.45.169.16) (Ping timeout: 268 seconds) |
2022-08-27 23:52:37 +0200 | Midjak | (~Midjak@82.66.147.146) (Quit: This computer has gone to sleep) |
2022-08-27 23:53:35 +0200 | __monty__ | (~toonn@user/toonn) (Quit: leaving) |
2022-08-27 23:54:26 +0200 | segfaultfizzbuzz | (~segfaultf@23-93-74-212.dsl.dynamic.sonic.net) (Ping timeout: 260 seconds) |
2022-08-27 23:55:10 +0200 | Sgeo | (~Sgeo@user/sgeo) |
2022-08-27 23:55:43 +0200 | yvan-sraka | (~yvan-srak@2a02:2788:224:71c:fa6e:5383:4435:8be3) |
2022-08-27 23:57:40 +0200 | <aviladev[m]> | Originally asked on #haskell-beginners:libera.chat :... (full message at https://libera.ems.host/_matrix/media/r0/download/libera.chat/7096fb54c079f405515990aab7909bd15a86…) |
2022-08-27 23:58:44 +0200 | janus | (janus@anubis.0x90.dk) () |