Logs: freenode/#haskell
| 2020-10-10 02:52:52 | <ski> | > zip [0,1,2] [3,4,5] |
| 2020-10-10 02:52:55 | <lambdabot> | [(0,3),(1,4),(2,5)] |
| 2020-10-10 02:53:27 | × | wroathe quits (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 240 seconds) |
| 2020-10-10 02:53:32 | <ski> | > [(s,t) | s <- [0,1,2] | t <- [3,4,5]] -- using the `ParallelListComp' language extension |
| 2020-10-10 02:53:34 | <lambdabot> | [(0,3),(1,4),(2,5)] |
| 2020-10-10 02:54:07 | → | HaskellYogi joins (~vivekrama@49.207.201.29) |
| 2020-10-10 02:54:21 | <MarcelineVQ> | you've gone mad with power |
| 2020-10-10 02:55:15 | <sepi> | https://dpaste.org/d6WS |
| 2020-10-10 02:55:51 | × | acarrico quits (~acarrico@dhcp-68-142-39-249.greenmountainaccess.net) (Ping timeout: 258 seconds) |
| 2020-10-10 02:56:27 | <sepi> | >zip 1 2 |
| 2020-10-10 02:56:31 | → | mdunnio joins (~mdunnio@208.59.170.5) |
| 2020-10-10 02:56:36 | <ghoulguy> | > (1, 2) |
| 2020-10-10 02:56:38 | <lambdabot> | (1,2) |
| 2020-10-10 02:57:31 | × | chenshen quits (~chenshen@2620:10d:c090:400::5:1bbd) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) |
| 2020-10-10 03:00:02 | × | abian1 quits (~abian@89.47.234.28) () |
| 2020-10-10 03:00:45 | × | mdunnio quits (~mdunnio@208.59.170.5) (Ping timeout: 240 seconds) |
| 2020-10-10 03:01:12 | <ski> | how's `(><)' |
| 2020-10-10 03:01:17 | <ski> | defined ? |
| 2020-10-10 03:01:40 | pjb | is now known as Guest84936 |
| 2020-10-10 03:02:55 | × | HaskellYogi quits (~vivekrama@49.207.201.29) (Ping timeout: 260 seconds) |
| 2020-10-10 03:04:24 | × | theDon quits (~td@muedsl-82-207-238-179.citykom.de) (Ping timeout: 256 seconds) |
| 2020-10-10 03:04:27 | × | Guest84936 quits (~t@2a01cb04063ec50000323e4acd27c310.ipv6.abo.wanadoo.fr) (Ping timeout: 272 seconds) |
| 2020-10-10 03:04:27 | <sepi> | From my understanding its a Cartesian product function |
| 2020-10-10 03:04:44 | → | pjb joins (~t@2a01cb04063ec50000393c8482ae9564.ipv6.abo.wanadoo.fr) |
| 2020-10-10 03:04:45 | × | Cthalupa quits (~cthulhu@47.186.47.75) (Ping timeout: 240 seconds) |
| 2020-10-10 03:04:55 | <sepi> | xs >< ys = [(x,y) | x <- xs, y <- ys]. or is that exactly the same thing of what I was trying to do |
| 2020-10-10 03:05:05 | <ski> | yes, that's cartesian product |
| 2020-10-10 03:05:13 | <sepi> | 👍 |
| 2020-10-10 03:05:17 | → | chenshen joins (~chenshen@2620:10d:c090:400::5:1bbd) |
| 2020-10-10 03:05:43 | × | sand_dull quits (~theuser@104.140.53.43) (Ping timeout: 260 seconds) |
| 2020-10-10 03:06:05 | → | drbean joins (~drbean@TC210-63-209-30.static.apol.com.tw) |
| 2020-10-10 03:06:15 | → | theDon joins (~td@muedsl-82-207-238-081.citykom.de) |
| 2020-10-10 03:06:50 | → | Cthalupa joins (~cthulhu@47.186.47.75) |
| 2020-10-10 03:08:21 | → | elliott_ joins (~elliott@pool-108-51-141-12.washdc.fios.verizon.net) |
| 2020-10-10 03:08:28 | hackage | micro-gateway 1.1.0.1 - A Micro service gateway. https://hackage.haskell.org/package/micro-gateway-1.1.0.1 (Lupino) |
| 2020-10-10 03:15:46 | × | Neuromancer quits (~Neuromanc@unaffiliated/neuromancer) (Read error: Connection reset by peer) |
| 2020-10-10 03:16:55 | × | Gurkenglas quits (~Gurkengla@unaffiliated/gurkenglas) (Ping timeout: 260 seconds) |
| 2020-10-10 03:17:18 | × | cosimone quits (~cosimone@2001:b07:ae5:db26:9217:95c7:973d:d0ad) (Quit: cosimone) |
| 2020-10-10 03:17:47 | → | sand_dull joins (~theuser@104.140.53.43) |
| 2020-10-10 03:19:20 | <sepi> | https://dpaste.org/ajxX |
| 2020-10-10 03:20:13 | <sepi> | for trans function am I just literally translating it like that |
| 2020-10-10 03:20:23 | <sepi> | The comment has what I'm going off of |
| 2020-10-10 03:20:30 | <koz_> | The wince operator? |
| 2020-10-10 03:21:40 | → | paxed1 joins (~paxed@185.204.1.185) |
| 2020-10-10 03:22:36 | × | berberman_ quits (~berberman@unaffiliated/berberman) (Quit: ZNC 1.7.5 - https://znc.in) |
| 2020-10-10 03:23:07 | → | berberman joins (~berberman@unaffiliated/berberman) |
| 2020-10-10 03:27:24 | × | nados quits (~dan@107-190-41-58.cpe.teksavvy.com) (Read error: Connection reset by peer) |
| 2020-10-10 03:27:24 | × | danso quits (~dan@107-190-41-58.cpe.teksavvy.com) (Read error: Connection reset by peer) |
| 2020-10-10 03:28:05 | → | nados joins (~dan@107-190-41-58.cpe.teksavvy.com) |
| 2020-10-10 03:28:11 | → | danso joins (~dan@107-190-41-58.cpe.teksavvy.com) |
| 2020-10-10 03:29:25 | × | taurux quits (~taurux@net-93-144-148-150.cust.dsl.teletu.it) (Ping timeout: 240 seconds) |
| 2020-10-10 03:29:56 | → | HaskellYogi joins (~vivekrama@49.207.201.29) |
| 2020-10-10 03:30:07 | → | taurux joins (~taurux@net-188-152-137-210.cust.dsl.teletu.it) |
| 2020-10-10 03:32:56 | → | snakemas1 joins (~snakemast@213.100.206.23) |
| 2020-10-10 03:34:01 | → | wroathe joins (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) |
| 2020-10-10 03:35:04 | × | sepi quits (49dc4892@c-73-220-72-146.hsd1.ca.comcast.net) (Ping timeout: 245 seconds) |
| 2020-10-10 03:37:28 | × | snakemas1 quits (~snakemast@213.100.206.23) (Ping timeout: 246 seconds) |
| 2020-10-10 03:38:26 | × | falafel quits (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) (Remote host closed the connection) |
| 2020-10-10 03:38:51 | × | elliott_ quits (~elliott@pool-108-51-141-12.washdc.fios.verizon.net) (Ping timeout: 260 seconds) |
| 2020-10-10 03:38:57 | → | falafel joins (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) |
| 2020-10-10 03:44:27 | × | djellemah quits (~djellemah@2601:5c2:100:96c:e008:b638:39fe:6a54) (Ping timeout: 240 seconds) |
| 2020-10-10 03:51:14 | → | mirrorbird joins (~psutcliff@2a00:801:429:5ea0:80af:2bca:f885:1bb9) |
| 2020-10-10 03:53:48 | → | slack1256 joins (~slack1256@181.203.124.243) |
| 2020-10-10 03:54:27 | × | polyphem quits (~p0lyph3m@2a02:810d:640:776c:76d7:55f6:f85b:c889) (Ping timeout: 260 seconds) |
| 2020-10-10 03:55:37 | <slack1256> | If I want to do native UI and FRP, which libraries will give me the least friction? |
| 2020-10-10 03:56:18 | <slack1256> | I've only done gi-gtk and I liked it. But I haven't seen the FRP light apart from some SwiftUI usage (which is just reactive). |
| 2020-10-10 03:56:20 | × | thecoffemaker quits (~thecoffem@unaffiliated/thecoffemaker) (Ping timeout: 265 seconds) |
| 2020-10-10 03:59:27 | × | koz_ quits (~koz@121.99.240.58) (Quit: ZNC 1.7.5 - https://znc.in) |
| 2020-10-10 03:59:48 | → | koz joins (~koz@2404:4408:4303:8800:4270:af80:81b7:2f9) |
| 2020-10-10 04:00:14 | koz | is now known as koz_ |
| 2020-10-10 04:00:39 | × | Wuzzy quits (~Wuzzy@p5790e6f5.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-10 04:04:08 | → | Rudd0 joins (~Rudd0@185.189.115.98) |
| 2020-10-10 04:05:56 | × | falafel quits (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) (Remote host closed the connection) |
| 2020-10-10 04:06:27 | → | falafel joins (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) |
| 2020-10-10 04:11:00 | × | Volt_ quits (~Volt_@c-73-145-164-70.hsd1.mi.comcast.net) (Quit: ) |
| 2020-10-10 04:15:27 | hackage | formatting 7.0.0 - Combinator-based type-safe formatting (like printf() or FORMAT) https://hackage.haskell.org/package/formatting-7.0.0 (AlexChapman) |
| 2020-10-10 04:15:56 | → | raehik joins (~raehik@cpc96984-rdng25-2-0-cust109.15-3.cable.virginm.net) |
| 2020-10-10 04:20:37 | × | raehik quits (~raehik@cpc96984-rdng25-2-0-cust109.15-3.cable.virginm.net) (Ping timeout: 264 seconds) |
| 2020-10-10 04:24:49 | × | Tario quits (~Tario@201.192.165.173) (Read error: Connection reset by peer) |
| 2020-10-10 04:27:26 | → | Saukk joins (~Saukk@2001:998:f1:3963:1c59:9bb5:b94c:2) |
| 2020-10-10 04:28:26 | × | falafel quits (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) (Remote host closed the connection) |
| 2020-10-10 04:29:36 | → | falafel joins (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) |
| 2020-10-10 04:29:56 | × | falafel quits (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) (Remote host closed the connection) |
| 2020-10-10 04:31:17 | → | falafel joins (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) |
| 2020-10-10 04:31:39 | × | jedws quits (~jedws@121.209.161.98) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2020-10-10 04:32:26 | × | falafel quits (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) (Remote host closed the connection) |
| 2020-10-10 04:33:04 | → | falafel joins (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) |
| 2020-10-10 04:33:56 | × | falafel quits (~falafel@2605:e000:1527:d491:1ccf:5c8d:7928:e9cc) (Remote host closed the connection) |
| 2020-10-10 04:34:09 | → | day_ joins (~Unknown@unaffiliated/day) |
| 2020-10-10 04:37:22 | × | day quits (~Unknown@unaffiliated/day) (Ping timeout: 260 seconds) |
| 2020-10-10 04:37:22 | day_ | is now known as day |
| 2020-10-10 04:39:28 | hackage | longshot 0.1.0.0 - Fast Brute-force search using parallelism https://hackage.haskell.org/package/longshot-0.1.0.0 (thyeem) |
| 2020-10-10 04:39:39 | → | Tario joins (~Tario@201.192.165.173) |
| 2020-10-10 04:43:11 | × | proteusguy quits (~proteusgu@cm-58-10-208-180.revip7.asianet.co.th) (Ping timeout: 258 seconds) |
| 2020-10-10 04:44:05 | → | falafel joins (~falafel@cpe-104-172-194-249.socal.res.rr.com) |
| 2020-10-10 04:44:58 | × | Buntspecht quits (~user@unaffiliated/siracusa) (Quit: Bye!) |
| 2020-10-10 04:45:16 | × | wroathe quits (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 272 seconds) |
| 2020-10-10 04:46:30 | × | howdoi quits (uid224@gateway/web/irccloud.com/x-nyfmrtbjovrebhnn) (Quit: Connection closed for inactivity) |
| 2020-10-10 04:47:57 | → | GyroW_ joins (~GyroW@ptr-48ujrfd1ztq5fjywfw3.18120a2.ip6.access.telenet.be) |
| 2020-10-10 04:47:58 | × | GyroW_ quits (~GyroW@ptr-48ujrfd1ztq5fjywfw3.18120a2.ip6.access.telenet.be) (Changing host) |
All times are in UTC.