Home liberachat/#haskell: Logs Calendar

Logs: liberachat/#haskell

←Prev  Next→
Page 1 .. 414 415 416 417 418 419 420 421 422 423 424 .. 17997
1,799,637 events total
2021-06-12 16:02:26 <DigitalKiwi> isn't *nix great
2021-06-12 16:03:05 <tomsmeding> luckily posix doesn't match *nix :)
2021-06-12 16:03:41 <DigitalKiwi> isn't *ix great
2021-06-12 16:04:02 <tomsmeding> geekosaur: can't reproduce with 'bash --norc --verbose'
2021-06-12 16:04:16 <tomsmeding> not sure if that's sufficient to make it not read any config files ever
2021-06-12 16:04:16 <geekosaur> interesting. so maybe bash did fix it.
2021-06-12 16:04:27 <geekosaur> I think I said earlier that zsh did
2021-06-12 16:04:32 <tomsmeding> ("can't reproduce" as in my above example behaves the same)
2021-06-12 16:04:36 <geekosaur> for csh emulation at least
2021-06-12 16:06:46 haltux joins (~haltux@a89-154-181-47.cpe.netcabo.pt)
2021-06-12 16:10:10 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2021-06-12 16:10:23 ozataman joins (~ozataman@71.190.112.58)
2021-06-12 16:13:11 × jess quits (~jess@libera/staff/jess) ()
2021-06-12 16:13:13 Bartosz joins (~textual@24.35.90.211)
2021-06-12 16:19:14 <Clint> tomsmeding: do you have "export PATH" in /etc/profile?
2021-06-12 16:19:29 <tomsmeding> Clint: yes
2021-06-12 16:19:55 <tomsmeding> I was hoping --norc would stop it from reading any of that but I already feared that wouldn't work
2021-06-12 16:20:03 benin036 joins (~benin@183.82.205.218)
2021-06-12 16:20:04 <geekosaur> bu tthat should only be read by login shells (bash -l)
2021-06-12 16:20:31 × benin036 quits (~benin@183.82.205.218) (Client Quit)
2021-06-12 16:20:32 <tomsmeding> also I ran 'bash --norc --verbose' which I think prints out all that it executes, and it didn't show anything on startup
2021-06-12 16:21:11 × benin03 quits (~benin@183.82.205.218) (Ping timeout: 268 seconds)
2021-06-12 16:22:48 <Clint> iirc, zsh at least autoexports almost any parameter it imports
2021-06-12 16:22:51 <Clint> maybe bash does the same thing
2021-06-12 16:23:13 <geekosaur> yeh, I commented on zsh already
2021-06-12 16:23:34 <tomsmeding> I'm kind of hoping I never have to deal with this as an issue since I can't manage to reproduce it now :p
2021-06-12 16:23:54 <geekosaur> hope you don't. it's nothing but confusion
2021-06-12 16:26:44 MQ-17J joins (~MQ-17J@8.21.10.116)
2021-06-12 16:32:41 jaevanko joins (~jaevanko@2600:1700:1330:2bef:5548:773a:cf10:a3a1)
2021-06-12 16:34:22 × zebrag quits (~chris@user/zebrag) (Remote host closed the connection)
2021-06-12 16:37:09 × ubert quits (~Thunderbi@p200300ecdf259ddf6d4493bcfbeaba19.dip0.t-ipconnect.de) (Ping timeout: 244 seconds)
2021-06-12 16:39:02 zebrag joins (~chris@user/zebrag)
2021-06-12 16:39:34 eggplantade joins (~Eggplanta@2600:1700:bef1:5e10:4587:6292:4bfd:4d24)
2021-06-12 16:43:48 dunkeln joins (~dunkeln@94.129.65.28)
2021-06-12 16:44:06 × eggplantade quits (~Eggplanta@2600:1700:bef1:5e10:4587:6292:4bfd:4d24) (Ping timeout: 264 seconds)
2021-06-12 16:44:37 × merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 268 seconds)
2021-06-12 16:46:07 × qbt quits (~edun@user/edun) (Quit: Leaving)
2021-06-12 16:47:11 killsushi joins (~killsushi@2607:fea8:3d40:767:a826:23b7:521c:2d11)
2021-06-12 16:47:11 × killsushi quits (~killsushi@2607:fea8:3d40:767:a826:23b7:521c:2d11) (Changing host)
2021-06-12 16:47:11 killsushi joins (~killsushi@user/killsushi)
2021-06-12 16:49:33 × haltux quits (~haltux@a89-154-181-47.cpe.netcabo.pt) (Ping timeout: 264 seconds)
2021-06-12 16:50:38 × slowButPresent quits (~slowButPr@user/slowbutpresent) (Quit: leaving)
2021-06-12 16:50:46 rk04 joins (~rk04@user/rajk)
2021-06-12 16:51:52 jakalx parts (~jakalx@base.jakalx.net) ()
2021-06-12 16:53:53 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2021-06-12 16:54:19 sedeki joins (~textual@user/sedeki)
2021-06-12 16:55:32 econo joins (uid147250@user/econo)
2021-06-12 16:58:20 × merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 244 seconds)
2021-06-12 16:58:40 <dminuoso> Im trying to write a client library against an external API with servant. Part of the API will return URLs inside JSON against the same API, as a way to reference related resources. Does someone know of an existing way of creating a servant ClientM against a particular URL from an API endpoint?
2021-06-12 16:59:47 <dminuoso> Some kind of `urlA :: BaseUrl -> Either Text (ClientM A); urlB :: BaseUrl -> Either Text (ClientM B); urlA :<|> urlB = urlClient`
2021-06-12 17:00:12 <dminuoso> Naively it seems I should be able to write it myself, but perhaps someone else has stepped over this before.
2021-06-12 17:00:28 × sedeki quits (~textual@user/sedeki) (Quit: Textual IRC Client: www.textualapp.com)
2021-06-12 17:00:33 × pottsy quits (~pottsy@2400:4050:b560:3700:1def:faee:e2d6:f91c) (Ping timeout: 255 seconds)
2021-06-12 17:02:09 × dunkeln quits (~dunkeln@94.129.65.28) (Ping timeout: 264 seconds)
2021-06-12 17:03:19 tzh joins (~tzh@c-24-21-73-154.hsd1.wa.comcast.net)
2021-06-12 17:03:48 × lavaman quits (~lavaman@98.38.249.169) (Ping timeout: 252 seconds)
2021-06-12 17:05:00 × Bartosz quits (~textual@24.35.90.211) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-06-12 17:07:33 × rk04 quits (~rk04@user/rajk) (Ping timeout: 264 seconds)
2021-06-12 17:09:19 × waleee quits (~waleee@h-98-128-228-119.NA.cust.bahnhof.se) (Ping timeout: 265 seconds)
2021-06-12 17:10:11 × derelict quits (~derelict@user/derelict) (Quit: WeeChat 3.1)
2021-06-12 17:10:26 waleee joins (~waleee@2001:9b0:216:8200:d457:9189:7843:1dbd)
2021-06-12 17:11:45 Sgeo joins (~Sgeo@user/sgeo)
2021-06-12 17:12:33 × alx741 quits (~alx741@186.178.108.59) (Ping timeout: 272 seconds)
2021-06-12 17:15:26 × xff0x quits (~xff0x@2001:1a81:5382:9400:396b:8b84:7b33:5a72) (Ping timeout: 252 seconds)
2021-06-12 17:16:11 derelict joins (~derelict@user/derelict)
2021-06-12 17:16:11 xff0x joins (~xff0x@2001:1a81:5382:9400:bf95:26e2:74b9:5674)
2021-06-12 17:17:55 × dhil quits (~dhil@80.208.56.181) (Ping timeout: 268 seconds)
2021-06-12 17:18:19 rk04 joins (~rk04@user/rajk)
2021-06-12 17:18:37 renzhi joins (~xp@modemcable070.17-177-173.mc.videotron.ca)
2021-06-12 17:18:48 × Jinchu quits (~Jinchu@84-253-239-63.bb.dnainternet.fi) (Remote host closed the connection)
2021-06-12 17:23:51 × tromp quits (~textual@dhcp-077-249-230-040.chello.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2021-06-12 17:24:05 × rk04 quits (~rk04@user/rajk) (Ping timeout: 272 seconds)
2021-06-12 17:25:05 × killsushi quits (~killsushi@user/killsushi) (Quit: Leaving)
2021-06-12 17:25:09 alx741 joins (~alx741@181.196.69.243)
2021-06-12 17:25:10 dunkeln joins (~dunkeln@94.129.65.28)
2021-06-12 17:27:01 × wallymathieu quits (~wallymath@81-234-151-21-no94.tbcn.telia.com) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2021-06-12 17:28:29 killsushi joins (~killsushi@user/killsushi)
2021-06-12 17:29:55 × dunkeln quits (~dunkeln@94.129.65.28) (Ping timeout: 245 seconds)
2021-06-12 17:32:25 Erutuon joins (~Erutuon@user/erutuon)
2021-06-12 17:35:36 machinedgod joins (~machinedg@24.105.81.50)
2021-06-12 17:35:54 × waleee quits (~waleee@2001:9b0:216:8200:d457:9189:7843:1dbd) (Ping timeout: 265 seconds)
2021-06-12 17:36:23 Guest9 joins (~Guest9@43.250.157.5)
2021-06-12 17:37:12 waleee joins (~waleee@2001:9b0:216:8200:d457:9189:7843:1dbd)
2021-06-12 17:37:43 wallymathieu joins (~wallymath@81-234-151-21-no94.tbcn.telia.com)
2021-06-12 17:38:43 safinaskar joins (~safinaska@109-252-90-89.nat.spd-mgts.ru)
2021-06-12 17:39:57 × wroathe quits (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 264 seconds)
2021-06-12 17:40:05 dunkeln joins (~dunkeln@94.129.65.28)
2021-06-12 17:40:42 <safinaskar> how to convert haskell code to ast? for example, to template haskell expression?
2021-06-12 17:41:04 eggplantade joins (~Eggplanta@2600:1700:bef1:5e10:4587:6292:4bfd:4d24)
2021-06-12 17:41:26 <safinaskar> i tried "-ddump-parsed-ast", but output of this option is not valid haskell expression, because it contains location info
2021-06-12 17:42:37 × shapr quits (~user@pool-108-28-144-11.washdc.fios.verizon.net) (Read error: Connection reset by peer)
2021-06-12 17:43:11 <Square> safinaskar, Might be the wrong answer but what about 'reify :: Name -> Q Info'
2021-06-12 17:43:22 shapr joins (~user@pool-108-28-144-11.washdc.fios.verizon.net)
2021-06-12 17:43:55 jakalx joins (~jakalx@base.jakalx.net)
2021-06-12 17:44:25 <Square> ...doing that recursively and printing it would get you some sort of ast
2021-06-12 17:45:18 × waleee quits (~waleee@2001:9b0:216:8200:d457:9189:7843:1dbd) (Ping timeout: 264 seconds)
2021-06-12 17:45:54 × eggplantade quits (~Eggplanta@2600:1700:bef1:5e10:4587:6292:4bfd:4d24) (Ping timeout: 264 seconds)
2021-06-12 17:45:58 Bartosz joins (~textual@24.35.90.211)
2021-06-12 17:46:53 <pavonia> safinaskar: Do you want some specific AST type or just anyone? Otherwise you could use the haskell-src-exts package
2021-06-12 17:48:10 × Feuermagier quits (~Feuermagi@user/feuermagier) (Remote host closed the connection)

All times are in UTC.