Logs: freenode/#haskell
| 2020-11-04 22:01:05 | <Axman6> | lots of tiny tests are unlikely to get much speedup from parallelism with other overhead, it could very well be the hedgehog coordination. feel free to share some code |
| 2020-11-04 22:01:25 | × | knupfer quits (~Thunderbi@i5E86B46C.versanet.de) (Ping timeout: 264 seconds) |
| 2020-11-04 22:01:50 | <tomjaguarpaw> | Thanks, says 1.2s GC and 1s MUT |
| 2020-11-04 22:02:05 | <Axman6> | looks like GC then. there are eays to reduce that though |
| 2020-11-04 22:02:20 | <Axman6> | like judt making it allocate a big enough heap it doesn't need to GC |
| 2020-11-04 22:02:20 | <tomjaguarpaw> | Productivity 45.4% of total user |
| 2020-11-04 22:02:28 | <Axman6> | that's pretty bad |
| 2020-11-04 22:02:43 | <Axman6> | stop making so much garbage! |
| 2020-11-04 22:03:05 | <tomjaguarpaw> | Hah, I'm doing 10k random samples for each of about 15 property tests |
| 2020-11-04 22:03:22 | × | belphegor666 quits (~satan@HSI-KBW-046-005-253-003.hsi8.kabel-badenwuerttemberg.de) (Quit: WeeChat 2.9) |
| 2020-11-04 22:03:31 | <tomjaguarpaw> | 1.6 GB allocated on the heap, so I guess I can make the heap big enough |
| 2020-11-04 22:05:08 | <tomjaguarpaw> | GC is now 0.375s but MUT is now 2.2s! |
| 2020-11-04 22:05:15 | <tomjaguarpaw> | I don't even understand what MUT si |
| 2020-11-04 22:05:24 | <tomjaguarpaw> | Perhaps something in Hedgehog is doing mutation |
| 2020-11-04 22:05:49 | × | dxld quits (~dxld@80-109-136-248.cable.dynamic.surfer.at) (Remote host closed the connection) |
| 2020-11-04 22:06:09 | × | hyperisco quits (~hyperisco@d192-186-117-226.static.comm.cgocable.net) (Ping timeout: 256 seconds) |
| 2020-11-04 22:06:52 | <tomjaguarpaw> | Well they run fast enough anyway. I was just confused. Thanks Axman6 and koz_ |
| 2020-11-04 22:07:01 | × | enva2712 quits (~enva2712@cpe-75-86-42-2.wi.res.rr.com) (Quit: leaving) |
| 2020-11-04 22:07:34 | <koz_> | Axman6: How does one disable parallel GC again? |
| 2020-11-04 22:08:13 | <Axman6> | there's a flag... >_> |
| 2020-11-04 22:08:15 | × | Tario quits (~Tario@201.192.165.173) (Read error: Connection reset by peer) |
| 2020-11-04 22:08:18 | <hekkaidekapus> | koz_: ghc -qg |
| 2020-11-04 22:08:19 | <Axman6> | I don't remember, I've never done it |
| 2020-11-04 22:08:30 | → | dxld joins (~dxld@80-109-136-248.cable.dynamic.surfer.at) |
| 2020-11-04 22:08:34 | <koz_> | hekkaidekapus: Thanks! |
| 2020-11-04 22:09:00 | hackage | gopro-plus 0.4.1.2 - GoPro Plus Client API. https://hackage.haskell.org/package/gopro-plus-0.4.1.2 (dustin) |
| 2020-11-04 22:09:49 | hekkaidekapus | waves at dsal. |
| 2020-11-04 22:10:11 | dsal | uploads GoPro footage of yak shaving |
| 2020-11-04 22:10:29 | <hekkaidekapus> | lol |
| 2020-11-04 22:10:48 | <dsal> | I think my actual motivation was "I saw a thing on optics yesterday, so I want to at least touch a lens." |
| 2020-11-04 22:11:09 | <hekkaidekapus> | dsal: changelog: Unreleased changes ;) |
| 2020-11-04 22:11:26 | × | ubert quits (~Thunderbi@p200300ecdf1e5367e6b318fffe838f33.dip0.t-ipconnect.de) (Ping timeout: 244 seconds) |
| 2020-11-04 22:11:44 | <dsal> | The lens that allows me to manipulate data within a JSON blob of a known type is kind of neat, though. |
| 2020-11-04 22:11:59 | → | ubert joins (~Thunderbi@p200300ecdf1e5367e6b318fffe838f33.dip0.t-ipconnect.de) |
| 2020-11-04 22:12:04 | <dsal> | Yeah, ...1 to ...2 just added a few instances. I guess I could've mentioned that. |
| 2020-11-04 22:12:12 | <dsal> | I don't feel like I've added all the instances, though. |
| 2020-11-04 22:12:55 | <hekkaidekapus> | Did you switch to optics or you did some lensy stuff? |
| 2020-11-04 22:13:23 | <dsal> | I'm still using lens. |
| 2020-11-04 22:13:25 | → | wroathe_ joins (~wroathe@c-73-24-27-54.hsd1.mn.comcast.net) |
| 2020-11-04 22:13:52 | × | wroathe quits (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 256 seconds) |
| 2020-11-04 22:14:06 | <hekkaidekapus> | Ah, cheers! (Just saw the commit.) |
| 2020-11-04 22:14:08 | <dsal> | I just made a lens on a thing that comes out of the DB as a ByteString where I can manipulate the structured that ByteString represents. |
| 2020-11-04 22:14:48 | × | elliott_ quits (~elliott_@pool-108-51-141-12.washdc.fios.verizon.net) (Read error: Connection reset by peer) |
| 2020-11-04 22:15:19 | → | elliott_ joins (~elliott_@pool-108-51-141-12.washdc.fios.verizon.net) |
| 2020-11-04 22:15:37 | <dsal> | It's not stuff I *need* to do, but stuff I'd like to be able to do someday. dbresult & someblob . variations . whatever ?~ "stuff" |
| 2020-11-04 22:16:50 | → | coot joins (~coot@37.30.49.253.nat.umts.dynamic.t-mobile.pl) |
| 2020-11-04 22:17:25 | × | wroathe_ quits (~wroathe@c-73-24-27-54.hsd1.mn.comcast.net) (Client Quit) |
| 2020-11-04 22:17:33 | → | son0p joins (~son0p@181.136.122.143) |
| 2020-11-04 22:17:46 | → | wroathe joins (~wroathe@c-73-24-27-54.hsd1.mn.comcast.net) |
| 2020-11-04 22:20:36 | × | gehmehgeh quits (~ircuser1@gateway/tor-sasl/gehmehgeh) (Quit: Leaving) |
| 2020-11-04 22:22:08 | × | jakob_ quits (~textual@p200300f49f16220018bfd377e039c2e3.dip0.t-ipconnect.de) (Quit: My Laptop has gone to sleep. ZZZzzz…) |
| 2020-11-04 22:23:53 | × | ubert quits (~Thunderbi@p200300ecdf1e5367e6b318fffe838f33.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-11-04 22:24:10 | → | Neuromancer joins (~Neuromanc@unaffiliated/neuromancer) |
| 2020-11-04 22:25:17 | → | jedws joins (~jedws@101.184.150.81) |
| 2020-11-04 22:30:19 | → | Tario joins (~Tario@201.192.165.173) |
| 2020-11-04 22:31:04 | → | kest10 joins (~kest10@139.28.218.148) |
| 2020-11-04 22:32:03 | × | heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection) |
| 2020-11-04 22:34:05 | → | jakob_ joins (~textual@p200300f49f1622005c3255e4d89f5bc8.dip0.t-ipconnect.de) |
| 2020-11-04 22:34:12 | → | heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-04 22:36:40 | → | christo joins (~chris@81.96.113.213) |
| 2020-11-04 22:42:03 | → | nut joins (~user@roc37-h01-176-170-197-243.dsl.sta.abo.bbox.fr) |
| 2020-11-04 22:50:48 | × | Tario quits (~Tario@201.192.165.173) (Read error: Connection reset by peer) |
| 2020-11-04 22:53:01 | → | o1lo01ol1o joins (~o1lo01ol1@bl8-213-81.dsl.telepac.pt) |
| 2020-11-04 22:55:11 | × | fendor quits (~fendor@178.115.130.128.wireless.dyn.drei.com) (Remote host closed the connection) |
| 2020-11-04 22:55:14 | × | conal quits (~conal@66.115.157.70) (Quit: Computer has gone to sleep.) |
| 2020-11-04 22:56:57 | → | conal joins (~conal@66.115.157.70) |
| 2020-11-04 22:57:08 | × | conal quits (~conal@66.115.157.70) (Client Quit) |
| 2020-11-04 23:04:25 | × | theDon quits (~td@94.134.91.97) (Ping timeout: 240 seconds) |
| 2020-11-04 23:04:58 | → | DTZUZU_ joins (~DTZUZU@207.81.171.87) |
| 2020-11-04 23:06:47 | × | DTZUZU quits (~DTZUZU@207.81.171.87) (Ping timeout: 258 seconds) |
| 2020-11-04 23:09:13 | → | conal joins (~conal@66.115.157.70) |
| 2020-11-04 23:10:46 | <nshepperd> | using lenses for text manipulation is fun |
| 2020-11-04 23:11:45 | → | Tario joins (~Tario@201.192.165.173) |
| 2020-11-04 23:14:05 | <nshepperd> | i made a little library with functions like: take a parser and return a traversal of each matching substring |
| 2020-11-04 23:18:15 | × | Franciman quits (~francesco@host-79-36-167-172.retail.telecomitalia.it) (Quit: Leaving) |
| 2020-11-04 23:18:30 | hackage | Win32 2.10.1.0 - A binding to Windows Win32 API. https://hackage.haskell.org/package/Win32-2.10.1.0 (TamarChristina) |
| 2020-11-04 23:22:19 | → | thir joins (~thir@p200300f27f0b7e00f4e9381c2bf90854.dip0.t-ipconnect.de) |
| 2020-11-04 23:24:47 | × | o1lo01ol1o quits (~o1lo01ol1@bl8-213-81.dsl.telepac.pt) (Remote host closed the connection) |
| 2020-11-04 23:25:41 | → | o1lo01ol1o joins (~o1lo01ol1@bl8-213-81.dsl.telepac.pt) |
| 2020-11-04 23:26:00 | → | pavonia joins (~user@unaffiliated/siracusa) |
| 2020-11-04 23:26:01 | × | xerox_ quits (~xerox@unaffiliated/xerox) (Ping timeout: 246 seconds) |
| 2020-11-04 23:26:08 | <Axman6> | nshepperd: link? that sounds familliar |
| 2020-11-04 23:26:39 | <Axman6> | lens-regex is super cool too |
| 2020-11-04 23:27:17 | <nshepperd> | it's not anything i uploaded |
| 2020-11-04 23:27:23 | × | thir quits (~thir@p200300f27f0b7e00f4e9381c2bf90854.dip0.t-ipconnect.de) (Ping timeout: 244 seconds) |
| 2020-11-04 23:27:25 | <nshepperd> | maybe i should tho |
| 2020-11-04 23:27:31 | × | o1lo01ol1o quits (~o1lo01ol1@bl8-213-81.dsl.telepac.pt) (Remote host closed the connection) |
| 2020-11-04 23:27:48 | → | o1lo01ol1o joins (~o1lo01ol1@bl8-213-81.dsl.telepac.pt) |
| 2020-11-04 23:28:32 | × | conal quits (~conal@66.115.157.70) (Quit: Computer has gone to sleep.) |
| 2020-11-04 23:29:11 | → | conal joins (~conal@66.115.157.70) |
| 2020-11-04 23:30:02 | × | christo quits (~chris@81.96.113.213) (Remote host closed the connection) |
| 2020-11-04 23:30:33 | → | christo joins (~chris@81.96.113.213) |
| 2020-11-04 23:32:37 | × | o1lo01ol1o quits (~o1lo01ol1@bl8-213-81.dsl.telepac.pt) (Remote host closed the connection) |
| 2020-11-04 23:33:14 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2020-11-04 23:33:16 | × | mmohammadi9812 quits (~mmohammad@2.178.217.171) (Ping timeout: 256 seconds) |
| 2020-11-04 23:35:35 | × | christo quits (~chris@81.96.113.213) (Ping timeout: 272 seconds) |
| 2020-11-04 23:35:59 | × | Varis quits (~Tadas@unaffiliated/varis) (Remote host closed the connection) |
| 2020-11-04 23:36:04 | <bqv> | d.nnr |
| 2020-11-04 23:36:24 | → | christo joins (~chris@81.96.113.213) |
| 2020-11-04 23:36:44 | <bqv> | is it possible in any context to use foreign imports in typeclass instances? |
All times are in UTC.