Logs: freenode/#haskell
| 2020-09-18 16:49:05 | × | borne quits (~fritjof@83.135.81.245) (Ping timeout: 240 seconds) |
| 2020-09-18 16:49:22 | <tomsmeding> | aeson successfully built! peak usage: 1.3G of swap, in addition to most of the 1G of actual RAM |
| 2020-09-18 16:52:51 | × | Kaivo quits (~Kaivo@ec2-15-222-231-32.ca-central-1.compute.amazonaws.com) (Ping timeout: 258 seconds) |
| 2020-09-18 16:53:16 | × | ransom quits (~c4264035@c-73-243-2-10.hsd1.co.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2020-09-18 16:55:13 | → | Kaivo joins (~Kaivo@104-200-86-99.mc.derytele.com) |
| 2020-09-18 16:56:21 | × | gestone quits (~gestone@c-73-97-137-216.hsd1.wa.comcast.net) (Ping timeout: 260 seconds) |
| 2020-09-18 16:57:54 | <tomsmeding> | okay https://ircbrowse.tomsmeding.com/ is successfully running on ghc 8.8.4 sm[m] |
| 2020-09-18 16:59:24 | <sm[m]> | nice tomsmeding! |
| 2020-09-18 16:59:43 | → | proofofkeags joins (~proofofke@c-73-34-43-4.hsd1.co.comcast.net) |
| 2020-09-18 17:00:08 | → | gestone joins (~gestone@c-73-97-137-216.hsd1.wa.comcast.net) |
| 2020-09-18 17:00:51 | <merijn> | Wouldn't it be easier to build in a VM then ship the result to the VPS? :p |
| 2020-09-18 17:01:00 | <merijn> | Or is that big brain thinking? |
| 2020-09-18 17:03:16 | → | nineonine joins (~nineonine@216.81.48.202) |
| 2020-09-18 17:03:35 | <tomsmeding> | perhaps :p |
| 2020-09-18 17:03:39 | × | mirrorbird_ quits (~psutcliff@2a00:801:3fb:46ee:ec96:e1f0:7c6a:69aa) (Ping timeout: 272 seconds) |
| 2020-09-18 17:03:47 | <tomsmeding> | though hopefully I won't need to be building aeson in a while again |
| 2020-09-18 17:05:03 | × | dansho quits (~dansho@ip68-108-167-185.lv.lv.cox.net) (Quit: Leaving) |
| 2020-09-18 17:05:11 | → | ahmr88 joins (~ahmr88@cpc85006-haye22-2-0-cust131.17-4.cable.virginm.net) |
| 2020-09-18 17:05:18 | × | v0d1ch quits (~v0d1ch@cable-178-148-120-241.dynamic.sbb.rs) (Ping timeout: 246 seconds) |
| 2020-09-18 17:07:22 | <sm[m]> | for the record, that stack build |
| 2020-09-18 17:07:22 | <sm[m]> | command looks weird to me too |
| 2020-09-18 17:07:38 | <[exa]> | hm, reading Regex.TDFA... is there any reason why ⌜p_escaped = char '\\' >> anyChar >>= \c -> char_index >>= return . (`PEscape` c)⌝ would be better than the (imho) more readable applicative version? |
| 2020-09-18 17:08:14 | → | wgytfr78 joins (4d6ff75b@77.111.247.91) |
| 2020-09-18 17:08:22 | × | eric quits (~eric@2804:431:c7d4:402a:cc9a:66fe:3007:383) (Remote host closed the connection) |
| 2020-09-18 17:08:37 | → | ransom joins (~c4264035@c-73-243-2-10.hsd1.co.comcast.net) |
| 2020-09-18 17:09:19 | <geekosaur> | Regex.TDFA predates nice Applicative-supporting versions of Parsec? |
| 2020-09-18 17:09:44 | × | ahmr88 quits (~ahmr88@cpc85006-haye22-2-0-cust131.17-4.cable.virginm.net) (Ping timeout: 256 seconds) |
| 2020-09-18 17:09:53 | × | gestone quits (~gestone@c-73-97-137-216.hsd1.wa.comcast.net) (Ping timeout: 260 seconds) |
| 2020-09-18 17:10:26 | → | Lord_of_Life_ joins (~Lord@unaffiliated/lord-of-life/x-0885362) |
| 2020-09-18 17:10:52 | <dolio> | Shouldn't a Thompson DFA algorithm be doing something better than parsec? |
| 2020-09-18 17:10:52 | <geekosaur> | although that looks a little unfortunate even as monadic code, at least use fmap/liftM! |
| 2020-09-18 17:11:15 | <[exa]> | dolio: it's for parsing the input regexes |
| 2020-09-18 17:11:28 | <dolio> | Oh, I see. |
| 2020-09-18 17:11:40 | <wgytfr78> | My privats videos skype webcam 400gb links open in Tor Browser gg.gg/m7dgu |
| 2020-09-18 17:11:42 | ← | wgytfr78 parts (4d6ff75b@77.111.247.91) () |
| 2020-09-18 17:11:52 | <[exa]> | (anyway the T is for "tagged" in this case, there's some theory behind that) |
| 2020-09-18 17:12:08 | <[exa]> | geekosaur: ok looking at the docs date that seems quite likely, 2009 in fact |
| 2020-09-18 17:12:58 | <dolio> | Yeah, I would guess it's just old. |
| 2020-09-18 17:13:23 | × | Lord_of_Life quits (~Lord@unaffiliated/lord-of-life/x-0885362) (Ping timeout: 240 seconds) |
| 2020-09-18 17:13:26 | Lord_of_Life_ | is now known as Lord_of_Life |
| 2020-09-18 17:13:26 | <tomsmeding> | sm[m]: what would you expect it to look like instead? |
| 2020-09-18 17:13:43 | <[exa]> | technically, I expect there's no bad surprise (performance?) in rewriting it to something like ⌜flip PEscape <$> char '\\' *> anyChar <*> char_index⌝ ? |
| 2020-09-18 17:14:38 | <sm[m]> | can't check it just now, but I will |
| 2020-09-18 17:17:04 | × | machinedgod quits (~machinedg@45.78.189.122) (Ping timeout: 272 seconds) |
| 2020-09-18 17:18:49 | → | mariatsji joins (~mariatsji@2a01:79d:53aa:c66c:fcb4:8a4:b249:c1d3) |
| 2020-09-18 17:21:52 | → | justanotheruser joins (~justanoth@unaffiliated/justanotheruser) |
| 2020-09-18 17:23:19 | × | mariatsji quits (~mariatsji@2a01:79d:53aa:c66c:fcb4:8a4:b249:c1d3) (Ping timeout: 244 seconds) |
| 2020-09-18 17:23:57 | → | Tuplanolla joins (~Tuplanoll@91-159-68-239.elisa-laajakaista.fi) |
| 2020-09-18 17:24:29 | → | eric joins (~eric@2804:431:c7d4:402a:cc9a:66fe:3007:383) |
| 2020-09-18 17:25:07 | → | wroathe joins (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) |
| 2020-09-18 17:26:12 | → | gestone joins (~gestone@c-73-97-137-216.hsd1.wa.comcast.net) |
| 2020-09-18 17:26:16 | → | mariatsji joins (~mariatsji@2a01:79d:53aa:c66c:fcb4:8a4:b249:c1d3) |
| 2020-09-18 17:27:44 | × | petersen quits (~petersen@redhat/juhp) (Ping timeout: 258 seconds) |
| 2020-09-18 17:28:16 | <dolio> | [exa]: I would be surprised if that were significantly worse. |
| 2020-09-18 17:28:45 | × | eric quits (~eric@2804:431:c7d4:402a:cc9a:66fe:3007:383) (Ping timeout: 246 seconds) |
| 2020-09-18 17:28:58 | → | vicfred joins (~vicfred@unaffiliated/vicfred) |
| 2020-09-18 17:30:27 | hackage | patat 0.8.6.1 - Terminal-based presentations using Pandoc https://hackage.haskell.org/package/patat-0.8.6.1 (JasperVanDerJeugt) |
| 2020-09-18 17:30:34 | × | gestone quits (~gestone@c-73-97-137-216.hsd1.wa.comcast.net) (Ping timeout: 246 seconds) |
| 2020-09-18 17:30:42 | × | knupfer quits (~Thunderbi@i5E86B44C.versanet.de) (Ping timeout: 256 seconds) |
| 2020-09-18 17:31:01 | → | mirrorbird_ joins (~psutcliff@2a00:801:3fb:46ee:ec96:e1f0:7c6a:69aa) |
| 2020-09-18 17:31:12 | <[exa]> | dolio: ok thanks |
| 2020-09-18 17:31:58 | × | jespada quits (~jespada@90.254.241.6) (Quit: Sleeping) |
| 2020-09-18 17:32:37 | → | Dolly joins (585fd1fd@ti0203q160-5312.bb.online.no) |
| 2020-09-18 17:33:24 | → | Saten-san joins (~Saten-san@ip-83-134-68-193.dsl.scarlet.be) |
| 2020-09-18 17:33:25 | → | johnw joins (~johnw@haskell/developer/johnw) |
| 2020-09-18 17:33:58 | hackage | clckwrks 0.26.1 - A secure, reliable content management system (CMS) and blogging platform https://hackage.haskell.org/package/clckwrks-0.26.1 (JeremyShaw) |
| 2020-09-18 17:34:45 | × | Saten-san quits (~Saten-san@ip-83-134-68-193.dsl.scarlet.be) (Client Quit) |
| 2020-09-18 17:36:41 | × | mariatsji quits (~mariatsji@2a01:79d:53aa:c66c:fcb4:8a4:b249:c1d3) (Remote host closed the connection) |
| 2020-09-18 17:39:20 | × | kleisli__ quits (~kleisli@2600:1700:4640:c560:68bd:9d76:dbd8:24e7) (Ping timeout: 244 seconds) |
| 2020-09-18 17:39:45 | × | wroathe quits (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 240 seconds) |
| 2020-09-18 17:41:46 | × | dyeplexer quits (~lol@unaffiliated/terpin) (Read error: Connection reset by peer) |
| 2020-09-18 17:43:07 | → | ahmr88 joins (~ahmr88@cpc85006-haye22-2-0-cust131.17-4.cable.virginm.net) |
| 2020-09-18 17:43:16 | × | kuribas quits (~user@ptr-25vy0i7afx4f12rz1gu.18120a2.ip6.access.telenet.be) (Remote host closed the connection) |
| 2020-09-18 17:43:41 | → | kenran joins (~maier@b2b-37-24-119-190.unitymedia.biz) |
| 2020-09-18 17:45:47 | → | PropositionJoe joins (~ConJoe@cm-84.215.192.230.getinternet.no) |
| 2020-09-18 17:46:23 | → | mariatsji joins (~mariatsji@2a01:79d:53aa:c66c:fcb4:8a4:b249:c1d3) |
| 2020-09-18 17:47:03 | → | gestone joins (~gestone@c-73-97-137-216.hsd1.wa.comcast.net) |
| 2020-09-18 17:47:41 | ← | PropositionJoe parts (~ConJoe@cm-84.215.192.230.getinternet.no) ("Leaving") |
| 2020-09-18 17:47:46 | × | ahmr88 quits (~ahmr88@cpc85006-haye22-2-0-cust131.17-4.cable.virginm.net) (Ping timeout: 256 seconds) |
| 2020-09-18 17:48:54 | × | kenran quits (~maier@b2b-37-24-119-190.unitymedia.biz) (Ping timeout: 256 seconds) |
| 2020-09-18 17:50:13 | → | petersen joins (~petersen@redhat/juhp) |
| 2020-09-18 17:50:26 | × | ystael quits (~ystael@209.6.50.55) (Quit: leaving) |
| 2020-09-18 17:50:44 | → | ystael joins (~ystael@209.6.50.55) |
| 2020-09-18 17:51:34 | × | heatsink_ quits (~heatsink@2600:1700:bef1:5e10:b0dc:6c54:247b:ece) (Remote host closed the connection) |
| 2020-09-18 17:51:53 | × | gestone quits (~gestone@c-73-97-137-216.hsd1.wa.comcast.net) (Ping timeout: 260 seconds) |
| 2020-09-18 17:54:17 | × | cosimone quits (~cosimone@2001:b07:ae5:db26:b248:7aff:feea:34b6) (Quit: Quit.) |
| 2020-09-18 17:54:25 | → | caubert joins (~caubert@82.131.99.236.cable.starman.ee) |
| 2020-09-18 17:54:40 | → | cosimone joins (~cosimone@93-47-228-249.ip115.fastwebnet.it) |
| 2020-09-18 17:56:24 | → | pera joins (~pera@unaffiliated/pera) |
| 2020-09-18 17:57:57 | → | wroathe joins (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) |
| 2020-09-18 18:00:02 | × | SLot quits (~SLot@89.47.234.28) () |
| 2020-09-18 18:00:18 | → | heatsink joins (~heatsink@2600:1700:bef1:5e10:b0dc:6c54:247b:ece) |
| 2020-09-18 18:01:51 | → | proofofkeags_ joins (~proofofke@c-73-34-43-4.hsd1.co.comcast.net) |
| 2020-09-18 18:02:10 | × | geekosaur quits (42d52102@66.213.33.2) (Ping timeout: 245 seconds) |
| 2020-09-18 18:02:34 | × | wroathe quits (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 265 seconds) |
| 2020-09-18 18:03:17 | × | dmwit quits (~dmwit@pool-108-28-114-53.washdc.fios.verizon.net) (Ping timeout: 244 seconds) |
| 2020-09-18 18:04:29 | × | proofofkeags quits (~proofofke@c-73-34-43-4.hsd1.co.comcast.net) (Ping timeout: 260 seconds) |
| 2020-09-18 18:04:30 | → | dmwit joins (~dmwit@pool-108-28-114-53.washdc.fios.verizon.net) |
| 2020-09-18 18:07:53 | → | gestone joins (~gestone@c-73-97-137-216.hsd1.wa.comcast.net) |
| 2020-09-18 18:10:09 | × | mdunnio quits (~mdunnio@208.59.170.5) () |
All times are in UTC.