Logs: freenode/#haskell
| 2021-04-06 17:19:55 | → | Pickchea joins (~private@unaffiliated/pickchea) |
| 2021-04-06 17:20:09 | <geekosaur> | I'm a sysadmin, I think of such things :) |
| 2021-04-06 17:20:12 | → | HannaM joins (~quassel@p54849510.dip0.t-ipconnect.de) |
| 2021-04-06 17:21:08 | <Enrico63> | geekosaur, for whatever reason I did put that alias in my config files, appending `-RTS` at the end of it... what does it? |
| 2021-04-06 17:21:24 | <monochrom> | "end of the RTS things" |
| 2021-04-06 17:21:38 | <geekosaur> | +RTS starts passing parameters directly to ghc's runtime system, -RTS stops |
| 2021-04-06 17:22:09 | <geekosaur> | --RTS (with double hyphen) both stops and forces any later +RTS to be passed through to the application, if you need to do that for some reason |
| 2021-04-06 17:23:06 | <Enrico63> | oh,ok, so it's just like +RTS and -RTS are opening and closing parenthesis around stuff to be passed to the runtime system (whatever that means) |
| 2021-04-06 17:24:45 | <ADG1089> | why don't people check in cabal.project? |
| 2021-04-06 17:25:10 | → | doraemon joins (~doraemon@117.222.71.159) |
| 2021-04-06 17:26:29 | <tomsmeding> | Enrico63: indeed :) |
| 2021-04-06 17:27:04 | → | molehillish joins (~molehilli@2600:8800:8d06:1800:6d47:e2d7:e78c:8f4) |
| 2021-04-06 17:27:32 | × | molehillish quits (~molehilli@2600:8800:8d06:1800:6d47:e2d7:e78c:8f4) (Remote host closed the connection) |
| 2021-04-06 17:27:40 | <geekosaur> | Enrico63, you may want to close that issue with an explanation. also you appended to an unrelated issue, you should probably have opened a new one (it's too late now) |
| 2021-04-06 17:28:13 | → | molehillish joins (~molehilli@2600:8800:8d06:1800:6d47:e2d7:e78c:8f4) |
| 2021-04-06 17:28:46 | → | barthandelous joins (~calebbrze@2600:1007:b0a1:3aa7:b579:e4ea:b055:38a9) |
| 2021-04-06 17:29:43 | → | cr3 joins (~cr3@192-222-143-195.qc.cable.ebox.net) |
| 2021-04-06 17:31:02 | → | cub3s_ joins (bifunc2@gateway/vpn/protonvpn/bifunc2) |
| 2021-04-06 17:31:03 | × | forell quits (~forell@unaffiliated/forell) (Quit: ZNC - https://znc.in) |
| 2021-04-06 17:31:25 | → | aenesidemus joins (~aenesidem@c-73-53-247-25.hsd1.fl.comcast.net) |
| 2021-04-06 17:31:43 | × | todda7 quits (~torstein@athedsl-09242.home.otenet.gr) (Ping timeout: 268 seconds) |
| 2021-04-06 17:32:14 | × | notzmv quits (~zmv@unaffiliated/zmv) (Read error: Connection reset by peer) |
| 2021-04-06 17:32:39 | × | molehillish quits (~molehilli@2600:8800:8d06:1800:6d47:e2d7:e78c:8f4) (Ping timeout: 246 seconds) |
| 2021-04-06 17:32:42 | × | Enrico63 quits (520efe97@cpc92708-cmbg20-2-0-cust150.5-4.cable.virginm.net) (Quit: Connection closed) |
| 2021-04-06 17:32:52 | → | forell joins (~forell@unaffiliated/forell) |
| 2021-04-06 17:34:00 | <cub3s_> | When I publish a Haskell library, I usually put a stack.yaml file in there with a resolver. Should I be doing this? This file is sort of useless because anyone who compiles the library is going to use their own stack.yaml resolver (or Nix file, or just pure cabal) anyway. |
| 2021-04-06 17:34:11 | × | kuribas quits (~user@ptr-25vy0i98ky9sotgacau.18120a2.ip6.access.telenet.be) (Quit: ERC (IRC client for Emacs 26.3)) |
| 2021-04-06 17:34:30 | <cub3s_> | well, unless they just want to download my library only, and compile/test it in isolation |
| 2021-04-06 17:34:47 | <glguy> | cub3s_: it's not useful for someone depending on your library, but if stack's useful at all it could be useful for someone developing your library |
| 2021-04-06 17:34:51 | × | sord937 quits (~sord937@gateway/tor-sasl/sord937) (Quit: sord937) |
| 2021-04-06 17:35:09 | × | jpds quits (~jpds@gateway/tor-sasl/jpds) (Ping timeout: 240 seconds) |
| 2021-04-06 17:35:16 | → | dcoutts joins (~duncan@94.186.125.91.dyn.plus.net) |
| 2021-04-06 17:35:27 | <glguy> | if you have interesting extra-deps listed, it could serve as a shortcut to updating their own file |
| 2021-04-06 17:35:28 | <cub3s_> | glguy, ok now, in a similar way, shouldn't i also include a nix file pinned to a specific nixpkgs commit? (in a similar way that stack.yaml is pinned to specific resolver) |
| 2021-04-06 17:35:34 | → | vicfred joins (~vicfred@unaffiliated/vicfred) |
| 2021-04-06 17:36:05 | <glguy> | cub3s_: I'd suppose it's just a question of what your other library developers need and what you want to support and actively test |
| 2021-04-06 17:36:19 | <glguy> | stale build information doesn't help anyone |
| 2021-04-06 17:36:48 | × | barthandelous quits (~calebbrze@2600:1007:b0a1:3aa7:b579:e4ea:b055:38a9) (Quit: WeeChat 3.1) |
| 2021-04-06 17:37:17 | <cub3s_> | yeah |
| 2021-04-06 17:37:36 | <cub3s_> | it's starting to make sense to me to have both stack and nix support, as those are the most common |
| 2021-04-06 17:38:29 | × | CaptainIRS quits (9d339880@157.51.152.128) (Quit: Connection closed) |
| 2021-04-06 17:38:43 | <minoru_shiraeesh> | emmanuel_erc: "Regardless, I'm leaving the current job partially because I think the rewrite is a dumb idea and I don't want to work on a codebase that is going to be thrown out eventually." |
| 2021-04-06 17:38:51 | <minoru_shiraeesh> | emmanuel_erc: "They didn't really have an interest in listening to what I had to say about the whole venture." |
| 2021-04-06 17:39:08 | <minoru_shiraeesh> | emmanuel_erc: "Given what has happened to me at this last job, it makes me wonder if persuing Haskell has been worth it or will be so." |
| 2021-04-06 17:39:36 | → | jpds joins (~jpds@gateway/tor-sasl/jpds) |
| 2021-04-06 17:39:51 | × | ukari quits (~ukari@unaffiliated/ukari) (Remote host closed the connection) |
| 2021-04-06 17:40:18 | <minoru_shiraeesh> | I see your point and the way you feel, but on the other hand, I recently heard a saying "don't let a love for a language blind you" |
| 2021-04-06 17:40:19 | × | vicfred quits (~vicfred@unaffiliated/vicfred) (Client Quit) |
| 2021-04-06 17:40:27 | → | ukari joins (~ukari@unaffiliated/ukari) |
| 2021-04-06 17:41:44 | <minoru_shiraeesh> | if you take another perspective, the task of rewriting a codebase is an interesting one. |
| 2021-04-06 17:42:30 | <monochrom> | How long ago was that conversation? |
| 2021-04-06 17:42:52 | <minoru_shiraeesh> | :) it was 3 hours ago |
| 2021-04-06 17:43:34 | → | molehillish joins (~molehilli@2600:8800:8d06:1800:6d47:e2d7:e78c:8f4) |
| 2021-04-06 17:44:46 | <cub3s_> | yeah rewrite in haskell and get paid for it?! not bad if you otherwise like it and will gain valuable haskell experience. "it'll be thrown out eventually". that's not really the employee's problem, is it? someone else bears the risk. |
| 2021-04-06 17:45:22 | → | royal_screwup21 joins (52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) |
| 2021-04-06 17:45:31 | <geekosaur> | this is rewriting away from haskell, iirc |
| 2021-04-06 17:45:34 | <geekosaur> | to typescript |
| 2021-04-06 17:45:39 | <cub3s_> | oh, my bad |
| 2021-04-06 17:46:06 | × | acarrico quits (~acarrico@dhcp-68-142-39-249.greenmountainaccess.net) (Ping timeout: 260 seconds) |
| 2021-04-06 17:46:56 | × | zyklotomic quits (~ethan@66.154.104.2) (Changing host) |
| 2021-04-06 17:46:56 | → | zyklotomic joins (~ethan@unaffiliated/chocopuff) |
| 2021-04-06 17:48:28 | zfnmxt_ | is now known as zfnmxt |
| 2021-04-06 17:49:26 | → | vicfred joins (vicfred@gateway/vpn/mullvad/vicfred) |
| 2021-04-06 17:49:27 | <minoru_shiraeesh> | hmm, turns out he was in the position of maintaining legacy code that was in the process of being ported to other language |
| 2021-04-06 17:49:48 | <minoru_shiraeesh> | then my point about rewriting being an interesting task doesn't apply |
| 2021-04-06 17:50:19 | × | royal_screwup21 quits (52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) (Ping timeout: 260 seconds) |
| 2021-04-06 17:50:25 | → | Tops2 joins (~Tobias@dyndsl-095-033-088-082.ewe-ip-backbone.de) |
| 2021-04-06 17:52:11 | × | Tops21 quits (~Tobias@dyndsl-095-033-088-082.ewe-ip-backbone.de) (Ping timeout: 240 seconds) |
| 2021-04-06 17:52:53 | → | Ory0n joins (~Ory0n@mob-5-91-113-166.net.vodafone.it) |
| 2021-04-06 17:53:43 | → | acarrico joins (~acarrico@dhcp-68-142-39-249.greenmountainaccess.net) |
| 2021-04-06 17:54:01 | × | zyklotomic quits (~ethan@unaffiliated/chocopuff) (Quit: WeeChat 3.1) |
| 2021-04-06 17:54:46 | × | zaquest quits (~notzaques@5.128.210.178) (Ping timeout: 240 seconds) |
| 2021-04-06 17:54:56 | → | royal_screwup21 joins (52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) |
| 2021-04-06 17:55:05 | × | mkDoku quits (~TheMule@aftr-37-201-195-134.unity-media.net) (Ping timeout: 265 seconds) |
| 2021-04-06 17:55:22 | × | geekosaur quits (82650c7a@130.101.12.122) (Ping timeout: 240 seconds) |
| 2021-04-06 17:55:53 | ← | Ory0n parts (~Ory0n@mob-5-91-113-166.net.vodafone.it) ("Leaving") |
| 2021-04-06 17:56:46 | × | acarrico quits (~acarrico@dhcp-68-142-39-249.greenmountainaccess.net) (Client Quit) |
| 2021-04-06 18:05:24 | × | esp32_prog quits (~esp32_pro@91.193.4.202) (Quit: esp32_prog) |
| 2021-04-06 18:05:41 | × | solvr quits (57e3c46d@87.227.196.109) (Quit: Connection closed) |
| 2021-04-06 18:07:04 | × | ukari quits (~ukari@unaffiliated/ukari) (Remote host closed the connection) |
| 2021-04-06 18:07:10 | × | molehillish quits (~molehilli@2600:8800:8d06:1800:6d47:e2d7:e78c:8f4) (Remote host closed the connection) |
| 2021-04-06 18:07:52 | → | ukari joins (~ukari@unaffiliated/ukari) |
| 2021-04-06 18:08:49 | × | coot quits (~coot@37.30.55.131.nat.umts.dynamic.t-mobile.pl) (Quit: coot) |
| 2021-04-06 18:10:20 | → | geekosaur joins (82650c7a@130.101.12.122) |
| 2021-04-06 18:12:26 | × | rajivr quits (uid269651@gateway/web/irccloud.com/x-capllcjtsollkkrc) (Quit: Connection closed for inactivity) |
| 2021-04-06 18:13:23 | → | notzmv joins (~zmv@unaffiliated/zmv) |
| 2021-04-06 18:14:24 | <maerwald> | did they ever say what kind of code it was? |
| 2021-04-06 18:14:35 | <maerwald> | If it was frontend, I'd say that might be quite reasonable |
| 2021-04-06 18:15:22 | → | jj2021 joins (~JJ@cpe-76-185-168-105.satx.res.rr.com) |
| 2021-04-06 18:15:26 | → | molehillish joins (~molehilli@2600:8800:8d06:1800:6d47:e2d7:e78c:8f4) |
| 2021-04-06 18:17:45 | → | shalokshalom joins (~quassel@2a02:1748:dd5e:7f60:cf49:8384:7c93:3106) |
| 2021-04-06 18:17:46 | <maerwald> | tomsmeding: https://arxiv.org/abs/1207.2017 can I maybe hack around my problem with that? :p |
| 2021-04-06 18:18:54 | <tomsmeding> | maerwald: I'm not sure how "un-sharing" a 1GB buffer would look :p |
| 2021-04-06 18:19:33 | × | srk quits (~sorki@unaffiliated/srk) (Ping timeout: 246 seconds) |
| 2021-04-06 18:20:29 | → | eacameron joins (uid256985@gateway/web/irccloud.com/x-ewulhovpekfjgces) |
| 2021-04-06 18:21:35 | × | stree quits (~stree@68.36.8.116) (Ping timeout: 260 seconds) |
| 2021-04-06 18:22:40 | × | molehillish quits (~molehilli@2600:8800:8d06:1800:6d47:e2d7:e78c:8f4) (Remote host closed the connection) |
| 2021-04-06 18:25:00 | × | royal_screwup21 quits (52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) (Quit: Connection closed) |
| 2021-04-06 18:25:19 | → | royal_screwup21 joins (52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) |
| 2021-04-06 18:25:59 | × | thc202 quits (~thc202@unaffiliated/thc202) (Quit: thc202) |
All times are in UTC.