Home liberachat/#haskell: Logs Calendar

Logs: liberachat/#haskell

←Prev  Next→ 1,798,547 events total
2026-02-21 09:12:28 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 09:18:28 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2026-02-21 09:21:11 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 09:25:01 × ski quits (~ski@remote11.chalmers.se) (Ping timeout: 265 seconds)
2026-02-21 09:25:22 × ljdarj quits (~Thunderbi@user/ljdarj) (Ping timeout: 276 seconds)
2026-02-21 09:26:34 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds)
2026-02-21 09:27:40 Frostillicus joins (~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2026-02-21 09:29:36 prdak joins (~Thunderbi@user/prdak)
2026-02-21 09:30:15 ski joins (~ski@remote11.chalmers.se)
2026-02-21 09:34:09 × prdak quits (~Thunderbi@user/prdak) (Client Quit)
2026-02-21 09:37:47 lxsameer joins (~lxsameer@Serene/lxsameer)
2026-02-21 09:38:02 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 09:38:07 × Frostillicus quits (~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 264 seconds)
2026-02-21 09:43:24 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2026-02-21 09:51:14 × ChaiTRex quits (~ChaiTRex@user/chaitrex) (Remote host closed the connection)
2026-02-21 09:51:51 ChaiTRex joins (~ChaiTRex@user/chaitrex)
2026-02-21 09:54:03 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 09:58:38 Frostillicus joins (~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2026-02-21 09:59:49 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2026-02-21 10:10:40 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 10:15:42 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2026-02-21 10:25:58 × tcard__ quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (Quit: Leaving)
2026-02-21 10:26:43 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 10:26:49 × divlamir quits (~divlamir@user/divlamir) (Read error: Connection reset by peer)
2026-02-21 10:27:04 divlamir joins (~divlamir@user/divlamir)
2026-02-21 10:33:13 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2026-02-21 10:38:29 tcard joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303)
2026-02-21 10:40:55 pandeyan joins (~pandeyan@135-180-53-140.fiber.dynamic.sonic.net)
2026-02-21 10:42:19 × anpad quits (~pandeyan@user/anpad) (Ping timeout: 264 seconds)
2026-02-21 10:44:45 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 10:45:19 × Frostillicus quits (~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 276 seconds)
2026-02-21 10:45:43 × Sgeo quits (~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2026-02-21 10:50:07 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 10:52:02 <gentauro> in Haskell "scripting" is it possible to do something like this? `#load "lib/utils.fs"`
2026-02-21 10:52:40 gentauro in the sense that you define some helper functions and just load (as pre-pending) logic to current "script" file
2026-02-21 10:53:07 gentauro note-to-self I really need to setup LSP + Emacs xD
2026-02-21 10:59:44 Pozyomka joins (~pyon@user/pyon)
2026-02-21 11:00:34 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 11:02:12 × CiaoSen quits (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 264 seconds)
2026-02-21 11:02:27 <Leary> gentauro: How about `import Lib.Utils`?
2026-02-21 11:02:35 × lbseale quits (~quassel@user/ep1ctetus) (Ping timeout: 252 seconds)
2026-02-21 11:05:40 <int-e> If you want to depend on extra packages, cabal (and I assume stack too) has scripting capabilities too. Though at that point it's unclear what you gain compared to making a proper project that produces an executable.
2026-02-21 11:05:48 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 11:06:40 <int-e> (unclear to me)
2026-02-21 11:06:44 ljdarj joins (~Thunderbi@user/ljdarj)
2026-02-21 11:09:35 Frostillicus joins (~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2026-02-21 11:13:59 <gentauro> Leary: that worked. Thx :)
2026-02-21 11:16:21 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 11:20:07 × Frostillicus quits (~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 264 seconds)
2026-02-21 11:21:19 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 11:32:11 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 11:32:49 × halloy7365 quits (~halloy736@2404:4400:a100:9177:2496:807a:58a6:60a7) (Read error: Connection reset by peer)
2026-02-21 11:33:24 × lxsameer quits (~lxsameer@Serene/lxsameer) (Ping timeout: 264 seconds)
2026-02-21 11:37:36 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 11:41:50 × chromoblob quits (~chromoblo@user/chromob1ot1c) (Ping timeout: 256 seconds)
2026-02-21 11:46:11 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 11:49:56 housemate joins (~housemate@202.7.248.67)
2026-02-21 11:51:19 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 11:53:32 × wootehfoot quits (~wootehfoo@user/wootehfoot) (Quit: Leaving)
2026-02-21 11:59:29 × inedia quits (~irc@2600:3c00:e000:287::1) (Ping timeout: 245 seconds)
2026-02-21 11:59:45 inedia joins (~irc@2600:3c00:e000:287::1)
2026-02-21 12:01:49 × fun-safe-math quits (~fun-safe-@97.115.234.213) ()
2026-02-21 12:01:58 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 12:03:13 chromoblob joins (~chromoblo@user/chromob1ot1c)
2026-02-21 12:04:57 fun-safe-math joins (~fun-safe-@97.115.234.213)
2026-02-21 12:06:48 × poscat0x04 quits (~poscat@user/poscat) (Remote host closed the connection)
2026-02-21 12:09:19 × ZLima12 quits (~zlima12@user/meow/ZLima12) (Ping timeout: 260 seconds)
2026-02-21 12:09:30 ZLima12 joins (~zlima12@user/meow/ZLima12)
2026-02-21 12:09:50 poscat joins (~poscat@user/poscat)
2026-02-21 12:10:44 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2026-02-21 12:12:44 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 12:19:14 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 12:19:58 morj joins (~morj@user/morj)
2026-02-21 12:40:36 __monty__ joins (~toonn@user/toonn)
2026-02-21 12:44:13 wootehfoot joins (~wootehfoo@user/wootehfoot)
2026-02-21 12:52:21 AlexNoo_ is now known as AlexNoo
2026-02-21 12:53:11 Alex_delenda_est joins (~al_test@178.34.151.130)
2026-02-21 12:57:21 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 12:58:47 ss4 joins (~wootehfoo@user/wootehfoot)
2026-02-21 13:01:10 × wootehfoot quits (~wootehfoo@user/wootehfoot) (Ping timeout: 276 seconds)
2026-02-21 13:02:43 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 13:06:55 × ss4 quits (~wootehfoo@user/wootehfoot) (Quit: Leaving)
2026-02-21 13:07:12 wootehfoot joins (~wootehfoo@user/wootehfoot)
2026-02-21 13:11:53 PKDrinker joins (~PKDrinker@user/PKDrinker)
2026-02-21 13:13:11 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 13:15:35 × PKDrinker quits (~PKDrinker@user/PKDrinker) (Remote host closed the connection)
2026-02-21 13:18:11 CiaoSen joins (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db)
2026-02-21 13:18:28 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds)
2026-02-21 13:28:57 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 13:33:55 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 13:36:00 × igemnace quits (~igemnace@user/igemnace) (Quit: ZNC 1.9.0+deb2build3 - https://znc.in)
2026-02-21 13:38:29 igemnace joins (~igemnace@user/igemnace)
2026-02-21 13:44:45 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 13:51:55 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 14:00:19 × wootehfoot quits (~wootehfoo@user/wootehfoot) (Ping timeout: 264 seconds)
2026-02-21 14:02:51 merijn joins (~merijn@host-cl.cgnat-g.v4.dfn.nl)
2026-02-21 14:02:55 machinedgod joins (~machinedg@d172-219-48-230.abhsia.telus.net)
2026-02-21 14:08:12 × merijn quits (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds)
2026-02-21 14:11:15 × housemate quits (~housemate@202.7.248.67) (Quit: https://ineedsomeacidtocalmmedown.space/)
2026-02-21 14:13:19 × CiaoSen quits (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 276 seconds)

All times are in UTC.