2026/04/30

Newest at the top

2026-04-30 03:38:04 +0000m(~travltux@user/travltux) (Quit: WeeChat 4.7.2)
2026-04-30 03:37:04 +0000tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net) tzh
2026-04-30 03:36:38 +0000synchromesh(~john@2406:5a00:247e:1500:655a:5069:c050:dc5f) synchromesh
2026-04-30 03:34:31 +0000layline-away(~layline@149.154.26.170) (Quit: ZZZzzz…)
2026-04-30 03:34:16 +0000layline_layline-away
2026-04-30 03:33:14 +0000FallenSky(~FallenSky@user/FallenSky) (Ping timeout: 245 seconds)
2026-04-30 03:32:35 +0000synchromesh(~john@2406:5a00:247e:1500:d5de:46aa:de90:76fa) (Quit: WeeChat 4.1.1)
2026-04-30 03:32:17 +0000inedia(~irc@2600:3c00:e000:287::1) dove
2026-04-30 03:32:05 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) bitdex
2026-04-30 03:31:55 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection)
2026-04-30 03:30:15 +0000inedia(~irc@2600:3c00:e000:287::1) (Quit: WeeChat 4.8.1)
2026-04-30 03:28:32 +0000alhazrod(uid662262@id-662262.lymington.irccloud.com)
2026-04-30 03:28:24 +0000FallenSky(~FallenSky@user/FallenSky) FallenSky
2026-04-30 03:21:00 +0000FallenSky(~FallenSky@user/FallenSky) (Ping timeout: 244 seconds)
2026-04-30 03:20:45 +0000tzh_(~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: ksvks)
2026-04-30 03:18:07 +0000synchromesh(~john@2406:5a00:247e:1500:d5de:46aa:de90:76fa) synchromesh
2026-04-30 03:17:55 +0000synchromesh(~john@2406:5a00:247e:1500:6092:d450:dbbd:88ed) (Read error: Connection reset by peer)
2026-04-30 03:16:04 +0000FallenSky(~FallenSky@user/FallenSky) FallenSky
2026-04-30 03:12:13 +0000jmcantrell_(~weechat@user/jmcantrell) (Ping timeout: 244 seconds)
2026-04-30 03:06:45 +0000hsw(~hsw@112-104-8-95.adsl.dynamic.seed.net.tw) (Quit: Leaving)
2026-04-30 03:04:45 +0000FallenSky(~FallenSky@user/FallenSky) (Ping timeout: 245 seconds)
2026-04-30 02:59:58 +0000FallenSky(~FallenSky@user/FallenSky) FallenSky
2026-04-30 02:58:03 +0000mehbark(~mehbark@joey.luug.ece.vt.edu)
2026-04-30 02:57:09 +0000mehbark(~mehbark@joey.luug.ece.vt.edu) (Client Quit)
2026-04-30 02:54:39 +0000FallenSky(~FallenSky@user/FallenSky) (Ping timeout: 244 seconds)
2026-04-30 02:54:27 +0000mehbark(~mehbark@joey.luug.ece.vt.edu)
2026-04-30 02:51:45 +0000mtmn(~mtmn@user/mtmn) mtmn
2026-04-30 02:50:43 +0000merijn(~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2026-04-30 02:49:40 +0000FallenSky(~FallenSky@user/FallenSky) FallenSky
2026-04-30 02:45:28 +0000merijn(~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn
2026-04-30 02:45:20 +0000puke(~puke@user/puke) (Quit: puke)
2026-04-30 02:43:16 +0000karenw(~karenw@user/karenw) karenw
2026-04-30 02:39:51 +0000mehbark(~mehbark@joey.luug.ece.vt.edu) (Quit: insert leave message here)
2026-04-30 02:39:20 +0000FallenSky(~FallenSky@user/FallenSky) (Ping timeout: 245 seconds)
2026-04-30 02:38:00 +0000 <tccq> is there a good example / tutorial for SYB style generic usage? I want a fold over the language-c AST and would rather not write it myself
2026-04-30 02:37:11 +0000 <monochrom> perhaps s/simplicity/KISS/
2026-04-30 02:37:00 +0000tccq(~tccq@user/tccq) tccq
2026-04-30 02:36:26 +0000 <monochrom> Why no cut: I don't really know, but I bet it's for simplicity. (I dread thinking up Prolog code that uses cuts to ensure first-solution-only. I never get it.)
2026-04-30 02:35:18 +0000 <monochrom> Why it's an open world: Separate compilation, therefore you will not be sure that Eq(Int) does not happen in some other module.
2026-04-30 02:33:12 +0000merijn(~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds)
2026-04-30 02:33:05 +0000 <monochrom> Since you don't have negation, you cannot try "if A is not Int then try Stuff(A)" either.
2026-04-30 02:32:26 +0000 <monochrom> Since you don't have cut, there is no way to fix up "Eq(Int). Eq(A) :- Stuff(A)." to have uniqueness.
2026-04-30 02:31:22 +0000 <monochrom> If you take Prolog, but remove cut, and remove the closed-world assumption (so for example you cannot talk about negation), then you get Haskell type classes, with "Stuff a => Eq a" being "Eq(A) :- Stuff(A)".
2026-04-30 02:26:33 +0000merijn(~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn
2026-04-30 02:17:45 +0000FallenSky(~FallenSky@user/FallenSky) FallenSky
2026-04-30 02:15:50 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) bitdex
2026-04-30 02:13:19 +0000merijn(~merijn@62.45.136.136) (Ping timeout: 244 seconds)
2026-04-30 02:11:41 +0000Sgeo(~Sgeo@user/sgeo) Sgeo
2026-04-30 02:09:07 +0000merijn(~merijn@62.45.136.136) merijn
2026-04-30 02:06:00 +0000FallenSky(~FallenSky@user/FallenSky) (Ping timeout: 255 seconds)