Logs: freenode/#haskell
| 2020-11-19 23:26:28 | × | theorbtwo quits (~theorb@cpc81822-swin19-2-0-cust3.3-1.cable.virginm.net) (Ping timeout: 260 seconds) |
| 2020-11-19 23:27:21 | <Rembane> | Oh. Got it! That's clever. |
| 2020-11-19 23:27:23 | <monochrom> | splitmix basically just ran DieHard1 etc and reported very good scores. |
| 2020-11-19 23:27:30 | hackage | zydiskell 0.1.1.0 - Haskell language binding for the Zydis library, a x86/x86-64 disassembler. https://hackage.haskell.org/package/zydiskell-0.1.1.0 (nerded) |
| 2020-11-19 23:27:55 | <monochrom> | Claessen and Palka's simply went crypto. |
| 2020-11-19 23:28:09 | → | christo joins (~chris@81.96.113.213) |
| 2020-11-19 23:29:36 | × | merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 240 seconds) |
| 2020-11-19 23:29:52 | → | xerox_ joins (~xerox@unaffiliated/xerox) |
| 2020-11-19 23:32:08 | <monochrom> | The next cleverness is how to eliminate storing that lengthy history, bringing the time cost back down to O(1) regardless of how many times you've called split. |
| 2020-11-19 23:33:31 | × | son0p quits (~son0p@181.136.122.143) (Quit: leaving) |
| 2020-11-19 23:33:31 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-11-19 23:34:02 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-19 23:34:42 | <monochrom> | For Claessen and Palka, it turns out that popular crypto hash functions run a block cipher for as many rounds as your input (which is the history here), so you can just save "the hash so far" instead of the full history. |
| 2020-11-19 23:35:22 | <monochrom> | For splitmix, the hash is an inner product, so again you can just save "the inner product so far". |
| 2020-11-19 23:35:37 | <monochrom> | actually s/inner/dot/ to be specific. |
| 2020-11-19 23:36:20 | → | elliott__ joins (~elliott@pool-108-51-141-12.washdc.fios.verizon.net) |
| 2020-11-19 23:37:07 | → | hekkaidekapus{ joins (~tchouri@gateway/tor-sasl/hekkaidekapus) |
| 2020-11-19 23:37:09 | <monochrom> | Those two papers are both very fun and pleasing to read. |
| 2020-11-19 23:37:10 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-11-19 23:37:35 | × | Varis quits (~Tadas@unaffiliated/varis) (Remote host closed the connection) |
| 2020-11-19 23:38:00 | → | jayw99 joins (2fe3e53b@047-227-229-059.res.spectrum.com) |
| 2020-11-19 23:38:16 | <jayw99> | hi! is there a way to use the @ syntax for data types defined as records |
| 2020-11-19 23:38:23 | × | hekkaidekapus_ quits (~tchouri@gateway/tor-sasl/hekkaidekapus) (Ping timeout: 240 seconds) |
| 2020-11-19 23:38:42 | <jayw99> | say I have: data A = A { field :: Int } |
| 2020-11-19 23:38:53 | <jayw99> | and i want to make a function f {field=f} |
| 2020-11-19 23:39:02 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-19 23:39:04 | <jayw99> | is there a way to do something like f a@{field=f} |
| 2020-11-19 23:39:06 | <monochrom> | f x@A{field=y} = y+1 |
| 2020-11-19 23:39:21 | <jayw99> | oh you have to have the A |
| 2020-11-19 23:39:27 | <monochrom> | Yeah, that's all. |
| 2020-11-19 23:39:28 | → | machinedgod joins (~machinedg@24.105.81.50) |
| 2020-11-19 23:39:34 | <jayw99> | thx! |
| 2020-11-19 23:40:07 | × | benb quits (52456307@82-69-99-7.dsl.in-addr.zen.co.uk) (Remote host closed the connection) |
| 2020-11-19 23:40:56 | × | Chi1thangoo quits (~Chi1thang@87.112.60.168) (Ping timeout: 240 seconds) |
| 2020-11-19 23:41:43 | × | hekkaidekapus{ quits (~tchouri@gateway/tor-sasl/hekkaidekapus) (Ping timeout: 240 seconds) |
| 2020-11-19 23:45:04 | × | jayw99 quits (2fe3e53b@047-227-229-059.res.spectrum.com) (Ping timeout: 245 seconds) |
| 2020-11-19 23:48:51 | → | bliminse joins (~bliminse@host109-156-197-211.range109-156.btcentralplus.com) |
| 2020-11-19 23:48:51 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-11-19 23:49:01 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-19 23:49:11 | → | acidjnk_new joins (~acidjnk@p200300d0c719ff356dc4eeabe79b61ea.dip0.t-ipconnect.de) |
| 2020-11-19 23:49:54 | → | Varis joins (~Tadas@unaffiliated/varis) |
| 2020-11-19 23:52:31 | hackage | yi-language 0.19.0 - Collection of language-related Yi libraries. https://hackage.haskell.org/package/yi-language-0.19.0 (TomMurphy) |
| 2020-11-19 23:56:48 | → | acarrico joins (~acarrico@dhcp-68-142-39-249.greenmountainaccess.net) |
| 2020-11-19 23:56:58 | → | olligobber joins (olligobber@gateway/vpn/privateinternetaccess/olligobber) |
| 2020-11-19 23:58:18 | → | falafel_ joins (~falafel@c-73-79-82-198.hsd1.pa.comcast.net) |
| 2020-11-19 23:58:38 | → | p-core1 joins (~Thunderbi@2a0e:1c80:4:1023::1004) |
| 2020-11-19 23:58:45 | × | wroathe quits (~wroathe@c-68-54-25-135.hsd1.mn.comcast.net) (Ping timeout: 240 seconds) |
| 2020-11-19 23:58:46 | → | hekkaidekapus{ joins (~tchouri@gateway/tor-sasl/hekkaidekapus) |
| 2020-11-19 23:59:26 | × | p-core quits (~Thunderbi@2001:718:1e03:5128:2ab7:7f35:48a1:8515) (Ping timeout: 264 seconds) |
| 2020-11-19 23:59:26 | p-core1 | is now known as p-core |
| 2020-11-20 00:01:12 | × | falafel quits (~falafel@2601:547:1303:b30:7811:313f:d0f3:f9f4) (Ping timeout: 260 seconds) |
| 2020-11-20 00:02:08 | × | olligobber quits (olligobber@gateway/vpn/privateinternetaccess/olligobber) (Ping timeout: 272 seconds) |
| 2020-11-20 00:03:16 | → | jedws joins (~jedws@101.184.150.93) |
| 2020-11-20 00:07:17 | × | Varis quits (~Tadas@unaffiliated/varis) (Remote host closed the connection) |
| 2020-11-20 00:08:32 | → | Varis joins (~Tadas@unaffiliated/varis) |
| 2020-11-20 00:10:24 | × | borne quits (~fritjof@200116b864eda200f1dc39039d201adf.dip.versatel-1u1.de) (Ping timeout: 240 seconds) |
| 2020-11-20 00:12:36 | → | borne joins (~fritjof@200116b8640a4d0024e67d79d03c01ac.dip.versatel-1u1.de) |
| 2020-11-20 00:13:39 | × | jedws quits (~jedws@101.184.150.93) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2020-11-20 00:14:04 | → | olligobber joins (olligobber@gateway/vpn/privateinternetaccess/olligobber) |
| 2020-11-20 00:14:31 | hackage | yi-core 0.19.0 - Yi editor core library https://hackage.haskell.org/package/yi-core-0.19.0 (TomMurphy) |
| 2020-11-20 00:14:41 | × | DirefulSalt quits (DirefulSal@gateway/vpn/privateinternetaccess/direfulsalt) (Remote host closed the connection) |
| 2020-11-20 00:14:42 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-11-20 00:15:02 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-20 00:15:34 | → | DirefulSalt joins (DirefulSal@gateway/vpn/privateinternetaccess/direfulsalt) |
| 2020-11-20 00:15:57 | → | jedws joins (~jedws@101.184.150.93) |
| 2020-11-20 00:16:27 | → | Sarma joins (~Amras@unaffiliated/amras0000) |
| 2020-11-20 00:17:28 | → | justanotheruser joins (~justanoth@unaffiliated/justanotheruser) |
| 2020-11-20 00:18:37 | × | elfets quits (~elfets@ip-37-201-23-96.hsi13.unitymediagroup.de) (Quit: Leaving) |
| 2020-11-20 00:18:37 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-11-20 00:18:42 | → | nbloomf joins (~nbloomf@2600:1700:ad14:3020:7958:7d8e:4908:c843) |
| 2020-11-20 00:20:03 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-20 00:22:47 | × | Tracerneo1 quits (~Tracerneo@193.56.252.12) (Remote host closed the connection) |
| 2020-11-20 00:29:22 | × | raehik quits (~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 272 seconds) |
| 2020-11-20 00:32:31 | → | da39a3ee5e6b4b0d joins (~da39a3ee5@2403:6200:8876:6c06:f0fd:283a:1f37:de16) |
| 2020-11-20 00:34:57 | × | jess quits (jess@freenode/staff/jess) (Quit: Leaving) |
| 2020-11-20 00:36:05 | × | enoq quits (~textual@194-208-146-143.lampert.tv) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2020-11-20 00:36:38 | → | leungbk joins (~user@2605:e000:1315:706:925b:594a:9503:ee10) |
| 2020-11-20 00:36:39 | → | nullheroes joins (~danielvu@168.235.66.22) |
| 2020-11-20 00:43:20 | → | DJWillis joins (~DJWillis@217.146.82.202) |
| 2020-11-20 00:44:45 | × | olligobber quits (olligobber@gateway/vpn/privateinternetaccess/olligobber) (Ping timeout: 240 seconds) |
| 2020-11-20 00:46:23 | → | ph88 joins (~ph88@2a02:8109:9e00:7e5c:f073:c081:c2ef:433b) |
| 2020-11-20 00:48:05 | × | pfurla quits (~pfurla@ool-182ed2e2.dyn.optonline.net) (Ping timeout: 240 seconds) |
| 2020-11-20 00:55:38 | × | solonarv quits (~solonarv@astrasbourg-653-1-156-4.w90-6.abo.wanadoo.fr) (Ping timeout: 256 seconds) |
| 2020-11-20 00:56:53 | × | Benzi-Junior quits (~BenziJuni@88-149-67-198.du.xdsl.is) (Ping timeout: 260 seconds) |
| 2020-11-20 00:57:00 | → | B-J joins (~BenziJuni@88-149-65-135.du.xdsl.is) |
| 2020-11-20 00:57:58 | → | pfurla joins (~pfurla@ool-182ed2e2.dyn.optonline.net) |
| 2020-11-20 00:59:49 | × | da39a3ee5e6b4b0d quits (~da39a3ee5@2403:6200:8876:6c06:f0fd:283a:1f37:de16) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2020-11-20 01:00:07 | × | leungbk quits (~user@2605:e000:1315:706:925b:594a:9503:ee10) (Ping timeout: 260 seconds) |
| 2020-11-20 01:00:30 | hackage | yi-core 0.19.1 - Yi editor core library https://hackage.haskell.org/package/yi-core-0.19.1 (TomMurphy) |
| 2020-11-20 01:00:31 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-11-20 01:00:47 | → | olligobber joins (olligobber@gateway/vpn/privateinternetaccess/olligobber) |
| 2020-11-20 01:00:49 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-20 01:00:55 | × | alp quits (~alp@2a01:e0a:58b:4920:8196:f1ff:e993:87c3) (Ping timeout: 272 seconds) |
| 2020-11-20 01:01:33 | × | ph88 quits (~ph88@2a02:8109:9e00:7e5c:f073:c081:c2ef:433b) (Ping timeout: 272 seconds) |
| 2020-11-20 01:05:22 | × | christo quits (~chris@81.96.113.213) (Remote host closed the connection) |
| 2020-11-20 01:05:25 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-11-20 01:06:00 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-20 01:06:31 | → | acidjnk_new2 joins (~acidjnk@p200300d0c719ff356dc4eeabe79b61ea.dip0.t-ipconnect.de) |
| 2020-11-20 01:07:22 | × | olligobber quits (olligobber@gateway/vpn/privateinternetaccess/olligobber) (Ping timeout: 272 seconds) |
| 2020-11-20 01:08:21 | → | livvy joins (~livvy@gateway/tor-sasl/livvy) |
All times are in UTC.