00:05:17 | * | couven92 quit (Read error: Connection reset by peer) |
00:11:25 | FromGitter | <timotheecour> @araq what do you suggest for https://github.com/nim-lang/Nim/pull/9853#discussion_r239007640 ?I tried a few stuff and found that to be clearest : ⏎ ⏎ ```code paste, see link``` ⏎ ⏎ but I’m open for suggestions (the goal being to clearly delimit what’s part of the code being displayed [https://gitter.im/nim-lang/Nim?at=5c08692d33d9e1199188d60b] |
00:42:19 | * | jakob0094 quit (Remote host closed the connection) |
00:51:16 | * | ftsf quit (Quit: Leaving) |
01:08:22 | * | lritter quit (Ping timeout: 244 seconds) |
01:09:17 | * | lritter joined #nim |
01:31:42 | Tanger | Hey, has anybody here added code hot-loading to any of their programs? I found a few (fairly outdated) articles, was looking for more recent code to pore through |
01:33:57 | Tanger | Haha, should rtfm first |
01:34:18 | Tanger | So the compiler supports JS hot reloading' |
01:34:58 | FromGitter | <rayman22201> This is an area actively being worked on: https://github.com/nim-lang/Nim/issues/8927 |
01:37:31 | Tanger | Nice, very exciting feature, super handy |
01:38:42 | FromGitter | <rayman22201> Yeah. A lot of people are excited about it (including me). Hopefully it will be ready about the end of February next year. |
01:44:36 | FromGitter | <zetashift> Is there a way to check if all items in a sequence is unique? I'm currently doing a conversion to a set and see if the lengths match, is there a more Nim(TM) way? |
01:48:19 | * | xet7 quit (Remote host closed the connection) |
01:54:28 | Tanger | zetashift: https://nim-lang.org/docs/tables.html#CountTable Count Table perhaps? Or maybe overload add() so that it verifies that the item doesn't exist on adding? |
02:11:59 | FromGitter | <zacharycarter> @arnetheduck - thanks for sharing that Nimbus dev update - hoping to use JSON RPC in my new project |
02:12:03 | FromGitter | <zacharycarter> among others |
02:18:23 | * | abm quit (Quit: Leaving) |
02:42:25 | * | revere quit (Ping timeout: 250 seconds) |
02:42:34 | * | revere joined #nim |
02:54:26 | * | dddddd quit (Remote host closed the connection) |
02:59:38 | leorize | zetashift: converting to a `set` is probably the Nim-est way I believe |
03:00:28 | leorize | if your data is too big for a `set`, you could use `deduplicate` from `sequtils` |
03:03:03 | FromGitter | <citycide> @alehander42 apparently Nim still does bounds checking on arrays even in an unreachable case like `if false and nums[2] == 2`, which is why the same logic used in gara for seqs fails for arrays |
03:05:02 | FromGitter | <citycide> (unless you're in `-d:release` obviously, which turns off those checks) |
03:07:07 | FromGitter | <citycide> Araq: could the compiler avoid an unnecessary bounds check in unreachable cases like that? not sure how reasonable that is |
03:07:43 | * | banc quit (Quit: ZNC - http://znc.in) |
03:25:16 | * | banc joined #nim |
04:04:08 | FromGitter | <citycide> to add to that ^ it's not even just that it's unreachable - there *would* be a length check there that's generated by gara but it seems to be elided and replaced with `false` (because it's an array with a known length), which then causes the out of bounds error |
04:04:14 | FromGitter | <citycide> so maybe this is a downright bug? |
04:06:15 | leorize | I think it's a bug, short-circuiting should have worked here and prevent the array from being accessed |
04:32:11 | * | vlad1777d quit (Ping timeout: 268 seconds) |
04:41:15 | * | lritter quit (Ping timeout: 246 seconds) |
04:41:33 | * | nsf joined #nim |
04:44:37 | * | narimiran joined #nim |
05:03:22 | * | endragor joined #nim |
05:07:32 | * | junland quit (Quit: Disconnected.) |
05:10:15 | * | junland joined #nim |
05:42:51 | * | MyMind joined #nim |
05:46:11 | * | Sembei quit (Ping timeout: 268 seconds) |
06:15:15 | FromDiscord_ | <technicallyagd> Well, that was painful. |
06:16:14 | FromGitter | <Vindaar> still is for me... test works out fine, real result is wrong and it's hard to debug :P |
06:19:47 | FromDiscord_ | <technicallyagd> Are you comparing the (id,distance) pair or the distance? |
06:20:06 | FromDiscord_ | <technicallyagd> This bug costs me 40min |
06:30:36 | narimiran | there is a bug on some inputs!! |
06:30:56 | narimiran | (but regardless of it, i decided to skip today's task for now) |
06:31:51 | FromGitter | <Vindaar> ugh |
06:32:31 | FromGitter | <Vindaar> that means now I don't know whether I'm too stupid to find my mistake or if I'm affected by that bug :| |
06:34:16 | FromDiscord_ | <technicallyagd> You can take some solution on reddit and check with your input |
06:34:27 | FromDiscord_ | <technicallyagd> I don't think that's cheating 😛 |
06:34:32 | FromGitter | <Vindaar> that's a good point |
06:35:33 | FromDiscord_ | <technicallyagd> I failed so many times the final timeout I got was 10 min |
06:35:53 | FromGitter | <Vindaar> I'm still "only" at 5 minutes, haha |
06:36:48 | FromDiscord_ | <technicallyagd> lol not so far away |
06:39:42 | FromGitter | <Vindaar> haha |
06:39:43 | FromGitter | <Vindaar> yes |
06:39:50 | FromGitter | <Vindaar> took some python solution, spits out my result |
06:41:49 | narimiran | https://twitter.com/ericwastl/status/1070563771339411457 |
06:42:57 | FromGitter | <Vindaar> yay, it works |
06:43:54 | FromGitter | <Vindaar> anyways, gonna do part 2 later today |
06:44:12 | FromDiscord_ | <technicallyagd> So it's solved now? |
06:46:06 | FromDiscord_ | <technicallyagd> don't! part 2 is super easy |
06:47:38 | * | narimiran quit (Ping timeout: 250 seconds) |
06:47:51 | FromGitter | <Vindaar> Ok, I can at least read it I guess... |
06:55:23 | FromGitter | <Vindaar> well, ok. you were right :) |
06:59:10 | FromDiscord_ | <technicallyagd> 😄 |
07:09:27 | * | krux02 joined #nim |
07:11:26 | FromDiscord_ | <technicallyagd> Is there a standard way of turning `seq[seq[int]]` into `seq[(int,int)]` by taking the first two value from each inner seq? |
07:13:52 | leorize | `sequtils.mapIt` should do |
07:16:59 | FromDiscord_ | <technicallyagd> so just `theSeq.mapIt((it[0],it[1]))` ? |
07:17:05 | leorize | yep |
07:17:52 | FromDiscord_ | <technicallyagd> but if I need 10 or more values, I would have to manually specify them as well? |
07:18:59 | leorize | are you really sure you'd want to do that? |
07:20:07 | FromDiscord_ | <technicallyagd> Well, if I have to access the values in `seq` many times, wouldn't it be better to turn them into tuple first? |
07:20:33 | leorize | why? |
07:21:43 | FromDiscord_ | <technicallyagd> Because tuple access seems to be 10x faster than seq access |
07:22:08 | leorize | are you compiling with `-d:release`? |
07:22:11 | FromDiscord_ | <technicallyagd> yep |
07:22:48 | leorize | that's just weird and could be a bug |
07:23:13 | leorize | but for maintainability, I don't think using a tuple of 10 would do any good |
07:25:11 | FromDiscord_ | <technicallyagd> how is that so? |
07:25:25 | FromDiscord_ | <technicallyagd> is it any different than array[10,int]? |
07:28:42 | leorize | you certainly wouldn't want your proc to take a param of type `(int, int, int, ...)` |
07:29:39 | FromDiscord_ | <technicallyagd> oh, you are right, lol |
07:30:32 | FromDiscord_ | <technicallyagd> well I guess turning seq into array is even better |
07:30:52 | leorize | there's toOpenArray, but I'm not really sure what it does exactly |
07:32:39 | FromDiscord_ | <technicallyagd> hmm, doesn't seem to work |
07:33:33 | FromDiscord_ | <technicallyagd> wait, so should sequence access be as efficient as array/tuple access? |
07:33:49 | leorize | yep, it's quite weird that you found it to be slower |
07:34:25 | leorize | do you have a reproducible sample? |
07:34:31 | FromDiscord_ | <technicallyagd> Yeah, I will try to write a minimal example now |
07:44:43 | * | kapil____ quit (Quit: Connection closed for inactivity) |
07:51:45 | FromDiscord_ | <technicallyagd> Done. https://gist.github.com/technicallyagd/b4bce3d5932ba43ee28ab0a324c9cf4a |
07:54:11 | FromDiscord_ | <technicallyagd> It's not as drastic of a difference here, only about 4.5 fold. I think it's due to the length of the outer seq in this example is shorter |
08:03:13 | FromDiscord_ | <technicallyagd> And my hunch was correct, updated the gist to include the one with longer outer seq |
08:26:14 | * | dddddd joined #nim |
08:27:53 | * | stefanos82 joined #nim |
08:29:53 | * | Vladar joined #nim |
08:43:34 | * | nolanv quit (Ping timeout: 246 seconds) |
08:47:04 | * | nolanv joined #nim |
08:52:53 | * | jxy quit (Read error: Connection reset by peer) |
08:53:08 | * | jxy joined #nim |
08:54:41 | FromGitter | <alehander42> @citycide yeah, not sure if that's easily fixable in the compiler |
08:55:25 | FromGitter | <alehander42> (if it's a bug at all: maybe it's just a conservative decision, after all using out of bounds element in dead code seems like something the compiler should stop you from :D) |
08:55:32 | FromGitter | <alehander42> one workaround is of course |
08:55:46 | FromGitter | <alehander42> to use when: it's used in other places in gara as well |
08:56:17 | FromGitter | <alehander42> so the conditions for arrays would look like when a.len > ..: other condition else: false |
08:58:32 | FromGitter | <alehander42> alll right |
08:58:50 | FromGitter | <alehander42> it works: its a veery simple change of one-two lines, your refactoring really helps here |
09:02:39 | * | kungtotte quit (Remote host closed the connection) |
09:08:03 | * | kungtotte joined #nim |
09:09:40 | FromGitter | <alehander42> the maybeMatches error is more weird tho.. |
09:10:04 | * | floppydh joined #nim |
09:20:19 | * | leorize quit (Ping timeout: 246 seconds) |
09:21:24 | * | leorize joined #nim |
09:24:14 | * | kungtotte quit (Remote host closed the connection) |
09:25:58 | * | kungtotte joined #nim |
09:27:50 | * | PMunch joined #nim |
09:32:35 | * | kapil____ joined #nim |
09:43:49 | * | krux02_ joined #nim |
09:44:44 | * | krux02 quit (Remote host closed the connection) |
10:22:27 | * | dom96_w joined #nim |
10:33:53 | Zevv | Can anyone tell me why I get an 'cannot instantiate' error when calling a method as a.make() instead of make(a) form? |
10:33:56 | Zevv | http://paste.ubuntu.com/p/q2mXzBZDtk/ |
10:34:19 | PMunch | Yes |
10:34:50 | FromGitter | <alehander42> well, how would make know what T is |
10:34:57 | FromGitter | <alehander42> ah wait, nvm |
10:35:00 | PMunch | It has to do with the fact that Nim needs to evaluate a to figure out what can be called on it |
10:35:52 | PMunch | Oh wait.. |
10:35:58 | PMunch | This is not that |
10:36:00 | Zevv | 'a' is a Thing in both cases, right? Naively, I'd assume that the foo.bar() notation is nothing more then syntactic sugar for bar(foo) |
10:36:28 | Zevv | Happy to see two "Oh wait" responses. That was my first thought as well :) |
10:37:27 | PMunch | Haha, yeah I thought it was the classic template taking untyped issue |
10:37:52 | PMunch | This I think is just a straight up bug.. |
10:39:47 | PMunch | Hmm, todays AoC was a bit trickier than the last couple |
10:40:00 | PMunch | I have a solution, but I'm pretty sure it won't work for the general case |
10:40:38 | Zevv | Didn't get to it yet |
10:40:44 | Zevv | work work |
10:44:11 | leorize | Zevv: you'd need to use `a.make[:Blob]()` IIRC |
10:44:12 | * | pwntus quit (Read error: Connection reset by peer) |
10:44:54 | Zevv | Thank you: |
10:44:55 | Zevv | The [: ] notation has been designed to mitigate this issue: x.p[:T] is rewritten by the parser to p[T](x), x.p[:T](y) is rewritten to p[T](x, y). Note that [: ] has no AST representation, the rewrite is performed directly in the parsing step. |
10:45:09 | Zevv | tricky |
10:47:09 | * | pwntus joined #nim |
10:47:09 | * | pwntus quit (Changing host) |
10:47:09 | * | pwntus joined #nim |
10:50:22 | FromGitter | <alehander42> wtf |
10:59:04 | * | krux02_ quit (Read error: Connection reset by peer) |
10:59:10 | * | krux02__ joined #nim |
11:01:01 | * | ng0 joined #nim |
11:02:00 | * | krux02__ is now known as krux02 |
11:25:09 | * | nolanv quit (Ping timeout: 246 seconds) |
11:57:59 | Araq | foo.bar() is complex syntax sugar, unfortunately |
11:58:44 | Araq | and it requires to semcheck 'foo', that is not surprising IMO |
12:01:39 | * | kapil____ quit (Quit: Connection closed for inactivity) |
12:01:51 | FromGitter | <mratsim> oh that’s why we sometimes cannot use that syntax with templates |
12:06:28 | Araq | 'o.x' means "if o has not field x, try x(x)" |
12:06:35 | Araq | "x(o)" |
12:06:47 | Araq | and that doesn't work with 'untyped', how could it... |
12:07:46 | FromGitter | <mratsim> I don’t think it was with untyped templates |
12:08:08 | Araq | never seen anything else where it fails |
12:09:42 | * | kapil____ joined #nim |
12:30:27 | * | Snircle joined #nim |
12:32:25 | Zevv | Its a bit of a gotcha. The 'why' is in the manual, but the error message does not really point you there |
12:32:40 | Zevv | luckily there's always #nim |
12:34:34 | * | krux02 quit (Ping timeout: 246 seconds) |
12:36:49 | * | Snircle_ joined #nim |
12:37:27 | * | Snircle quit (Ping timeout: 240 seconds) |
12:37:58 | * | krux02 joined #nim |
12:43:02 | * | Snircle joined #nim |
12:44:19 | * | Snircle_ quit (Ping timeout: 244 seconds) |
12:44:41 | Araq | it is a gotcha yes, it's also quite unfixable. |
12:45:16 | Araq | well, there are proposals so that 'untyped' can be avoided and 'typed' used instead |
12:48:29 | * | Snircle_ joined #nim |
12:52:04 | * | Snircle quit (Ping timeout: 244 seconds) |
12:57:37 | oprypin | why am i getting this error `Error: 'destroy' or 'deepCopy' expected for 'override'` in 0.19? |
12:57:37 | oprypin | for this line https://github.com/oprypin/nim-csfml/blob/c41b8f7b/src/csfml/private/system_gen.nim#L92 + https://github.com/oprypin/nim-csfml/blob/c41b8f7b/src/csfml/private/common.nim#L28 |
12:57:37 | oprypin | is there information on the current situation with destructors? |
12:58:07 | Araq | https://github.com/nim-lang/Nim/wiki/Destructors |
12:58:30 | Araq | the syntax is now |
12:58:38 | Araq | proc `=destroy`(x: var T) |
12:58:55 | Araq | but you also better overload `=` and `=sink` |
12:59:27 | oprypin | is there any way to use this in a way that is compatible with old Nim? |
13:00:22 | Araq | remove the 'destroy' annotation |
13:00:28 | * | masquino quit (Ping timeout: 245 seconds) |
13:01:33 | Araq | it never worked reliably previously and this feature is only now getting stable. |
13:02:34 | * | masquino joined #nim |
13:03:17 | FromGitter | <narimiran> (how) can i do something like `type MyRange = 5..50; for i in MyRange: ...`? |
13:04:59 | FromGitter | <narimiran> oh, it seems that i can do `for i in MyRange.low .. MyRange.high` |
13:06:35 | PMunch | Yeah, you can of course also create an iterator for your type |
13:10:32 | * | vlad1777d joined #nim |
13:10:41 | FromGitter | <narimiran> PMunch: thanks, my first type-iterator :) |
13:12:16 | PMunch | http://ix.io/1vne/Nim |
13:12:20 | PMunch | Something like that |
13:14:25 | FromGitter | <narimiran> PMunch: here is how i did it: http://ix.io/1vni/ |
13:15:45 | PMunch | Does that work? |
13:15:57 | FromGitter | <narimiran> it does :) |
13:16:34 | FromGitter | <Vindaar> @narimiran wait, but in your case `Range` within the iterator is *any* `typedesc`, no? |
13:17:03 | FromGitter | <narimiran> @Vindaar hmm, maybe :D |
13:17:09 | PMunch | Yeah that's what I was curious about |
13:17:45 | FromGitter | <narimiran> ok, changed to PMunch's version |
13:18:54 | PMunch | Are you working on your AoC puzzle? |
13:20:10 | FromGitter | <narimiran> but of course :D |
13:20:16 | PMunch | That range seemed familiar :P |
13:20:34 | FromGitter | <narimiran> my initial solution is probably the ugliest nim-code i've ever written |
13:20:49 | PMunch | Haha |
13:20:52 | FromGitter | <narimiran> now i have nicer code. but wrong result :D |
13:21:15 | PMunch | Mine seem to end up pretty simple, but not very optimized |
13:21:26 | PMunch | I should probably chuck them in a repo as well.. |
13:21:47 | FromGitter | <Vindaar> mine are ugly and unoptimized. Does that mean I win? :D |
13:22:42 | FromGitter | <narimiran> @Vindaar only if it is worse than mine. and i assure you it isn't. (no, i won't show it to anyone ever) |
13:23:51 | FromGitter | <Vindaar> haha, I just accepted it and got rid of my pride :P |
13:24:51 | FromGitter | <Vindaar> well, ok. My solutions mainly end up being very verbose |
13:25:32 | * | nsf quit (Quit: WeeChat 2.3) |
13:35:41 | FromGitter | <alehander42> that's usually not bad |
13:42:22 | * | zakora joined #nim |
13:48:59 | * | platoff joined #nim |
13:50:34 | FromGitter | <narimiran> ok, i've managed to make my code a bit nicer: now i don't instantaneously vomit when i see it |
13:52:15 | * | endragor quit (Remote host closed the connection) |
13:56:21 | * | kobi7 joined #nim |
13:56:31 | kobi7 | hi folks, has anyone used nimx here? |
13:57:12 | kobi7 | I don't know how to set the android environment vars |
13:58:07 | kobi7 | What should I set for NDK_PROJECT_PATH ? |
14:00:16 | kobi7 | or if it's not an env var, how to set things up correctly? |
14:03:22 | Araq | dunno but it sounds like an Internet search will quickly give you the answer |
14:03:36 | PMunch | NDK_PROJECT_PATH is used by the Android compiler IIRC |
14:04:40 | kobi7 | I follow the nimx nake instructions, but that variable is project specific I think. |
14:05:09 | kobi7 | I'm very new to this |
14:08:31 | kobi7 | (nimx is my first try on android) |
14:08:53 | kobi7 | true, it is kind of offtopic |
14:09:19 | PMunch | I've gotten Nim with SDL to work on Android before |
14:09:27 | PMunch | But that was before nimx was a thing |
14:09:42 | PMunch | Not entirely sure what changed between those projects |
14:09:53 | PMunch | Maybe you can find something that uses nimx? |
14:15:11 | * | endragor joined #nim |
14:19:36 | * | endragor quit (Ping timeout: 250 seconds) |
14:26:31 | * | nsf joined #nim |
14:32:43 | kobi7 | good idea |
14:32:51 | kobi7 | will pursue when i have some time. |
14:32:53 | kobi7 | see you |
14:32:54 | * | kobi7 quit (Quit: Leaving) |
14:46:11 | * | Vladar quit (Remote host closed the connection) |
14:48:14 | * | dom96_w quit (Quit: My MacBook has gone to sleep. ZZZzzz…) |
14:53:38 | * | Pisuke joined #nim |
14:55:08 | * | MyMind quit (Ping timeout: 250 seconds) |
15:00:53 | * | platoff quit (Quit: My MacBook has gone to sleep. ZZZzzz…) |
15:13:13 | * | PMunch quit (Remote host closed the connection) |
15:13:31 | * | PMunch joined #nim |
15:16:00 | * | narimiran joined #nim |
15:27:57 | * | shadowbane quit (Remote host closed the connection) |
15:28:22 | * | shadowbane joined #nim |
15:37:10 | * | nsf quit (Quit: WeeChat 2.3) |
15:37:55 | * | gmpreussner quit (Ping timeout: 244 seconds) |
15:43:54 | * | gmpreussner joined #nim |
15:44:49 | * | endragor joined #nim |
15:49:24 | * | endragor quit (Ping timeout: 246 seconds) |
15:49:49 | FromGitter | <alehander42> how is aoc going |
15:52:44 | narimiran | @alehander42: officially (as the one who is promoting Nim leaderboard): great, we have over 100 players! unofficially: also nice, but it takes me so much time to write the solutions i'm satisfied with |
15:53:34 | narimiran | i see that you solved day 5. for me, that one was the most interesting so far |
15:54:48 | PMunch | Day 5 wasn't that bad |
15:55:01 | PMunch | Day 6 was more interesting IIRC |
15:55:06 | PMunch | IMHO* |
15:55:37 | FromGitter | <alehander42> yeah, 5 was fun for me, because it was easy to get big complexity using lang strings incorrectly |
15:55:41 | FromGitter | <alehander42> i tried it in several langs |
15:55:50 | FromGitter | <alehander42> and I almost always started with the wrong usage |
15:56:05 | narimiran | i'm down to single-digit milliseconds for both parts of day5 |
15:56:11 | PMunch | Oh yeah, I just used delete from strutils, which is definitely not the best :P |
15:56:50 | narimiran | both parts meaning the complete day5 is complete in that time. not each part. |
15:57:29 | * | stefanos82 quit (Remote host closed the connection) |
15:58:33 | FromGitter | <alehander42> I just used setLen :D :D |
15:58:48 | PMunch | But then you chop the end of? |
15:59:04 | PMunch | http://ix.io/1vo3/Nim |
15:59:05 | FromGitter | <alehander42> well I setLen(a.length - 1) |
15:59:16 | FromGitter | <alehander42> basically the same |
15:59:19 | PMunch | That's my naïve solution day 5 |
16:00:26 | FromGitter | <alehander42> hm, I compared with swapcase, as I started from a discussion of the crystal ppl solutions |
16:00:36 | FromGitter | <alehander42> 1) and 32 is smarter |
16:00:41 | FromGitter | <alehander42> `-` * |
16:02:53 | PMunch | Huh? |
16:03:08 | * | dddddd quit (Remote host closed the connection) |
16:03:08 | PMunch | Oh yeah, using abs(ord-ord) == 32? |
16:03:29 | FromGitter | <alehander42> yes |
16:08:07 | * | floppydh quit (Quit: WeeChat 2.3) |
16:08:26 | narimiran | you can use xor instead of abs, it should be somewhat faster |
16:10:34 | * | lritter joined #nim |
16:13:01 | PMunch | Yeah I guess, but if I was going for speed I should've fixed the string delete part :P |
16:17:13 | * | endragor joined #nim |
16:19:55 | * | dom96_w joined #nim |
16:21:14 | * | Trustable joined #nim |
16:23:37 | * | endragor quit (Remote host closed the connection) |
16:24:56 | * | PMunch quit (Remote host closed the connection) |
16:25:58 | * | endragor joined #nim |
16:28:34 | * | stefanos82 joined #nim |
16:30:28 | * | endragor quit (Ping timeout: 250 seconds) |
16:34:07 | narimiran | now this is strange. if i define `var finite = {1 .. 50}`, i can do `for n in <array of ints>: finite.excl n` (n is int, not int16) |
16:34:56 | narimiran | but when i move that to a function where the result is `set[(u)int16]`, then i cannot exclude `n` without first converting it to (u)int16 :/ |
16:38:54 | narimiran | hmmm. if i just define my proc as `proc foo(x: myArray): auto` then everything is once again fine |
16:53:49 | * | endragor joined #nim |
16:56:22 | * | rockcavera quit (Remote host closed the connection) |
17:07:28 | * | Snircle_ quit (Quit: Textual IRC Client: www.textualapp.com) |
17:34:59 | * | Snircle joined #nim |
17:59:10 | * | gangstacat quit (Quit: Ĝis!) |
18:07:33 | * | nsf joined #nim |
18:18:46 | * | dom96_w quit (Quit: My MacBook has gone to sleep. ZZZzzz…) |
18:20:17 | * | Pisuke quit (Ping timeout: 268 seconds) |
18:22:09 | Zevv | \o/ todays stars are in |
18:27:39 | * | Pisuke joined #nim |
18:30:35 | narimiran | Zevv: congrats! who are you on the leaderboard? |
18:40:55 | * | dddddd joined #nim |
18:42:33 | * | gangstacat joined #nim |
18:44:39 | * | rockcavera joined #nim |
19:16:24 | * | Snircle quit (Ping timeout: 268 seconds) |
19:17:24 | Zevv | some anynymous halfway on the nim board :) |
19:22:21 | * | Vladar joined #nim |
19:23:18 | * | Snircle joined #nim |
19:28:44 | * | krux02 quit (Remote host closed the connection) |
19:36:27 | * | endragor quit (Remote host closed the connection) |
19:40:28 | * | platoff joined #nim |
19:57:42 | * | nsf quit (Quit: WeeChat 2.3) |
19:58:32 | * | lritter quit (Remote host closed the connection) |
20:00:13 | xace | how do you view the nim aoc board? |
20:01:08 | FromGitter | <Vindaar> @xace: did you join it already? otherwise you can't I believe |
20:06:12 | FromGitter | <Vindaar> Anybody familiar with nimble being unable to find Nim's stdlib on travis? |
20:06:57 | FromGitter | <mratsim> uh? you don’t need to find it though |
20:07:40 | FromGitter | <Vindaar> Well, nimble tells me it fails to parse the nimble file, because it can't find the stdlib |
20:07:42 | FromGitter | <Vindaar> one moment |
20:08:34 | FromGitter | <Vindaar> https://travis-ci.org/bluenote10/NimData/jobs/464601261 ⏎ the irony is, it even explicitly says "last try in nim-master/lib", which is totally correct |
20:12:33 | * | endragor joined #nim |
20:12:49 | * | ng0 quit (Remote host closed the connection) |
20:13:13 | * | platoff quit (Quit: My MacBook has gone to sleep. ZZZzzz…) |
20:13:51 | * | ng0 joined #nim |
20:14:56 | FromGitter | <mratsim> fun |
20:15:46 | FromGitter | <Vindaar> yup |
20:17:06 | * | endragor quit (Ping timeout: 250 seconds) |
20:27:15 | * | narimiran quit (Remote host closed the connection) |
20:29:18 | * | Trustable quit (Remote host closed the connection) |
20:30:40 | * | Snircle quit (Ping timeout: 264 seconds) |
20:37:04 | FromGitter | <Vindaar> Ok, I fixed it by adding the nim directory location to PATH with the full path, instead of just these weird "travis like" paths, which start from the local project |
20:45:52 | FromGitter | <timotheecour> @araq quick question if you’re here? |
20:49:23 | * | lritter joined #nim |
20:55:08 | * | theelous3_ joined #nim |
21:01:01 | * | zachk joined #nim |
21:02:10 | * | Snircle joined #nim |
21:04:45 | * | Snircle_ joined #nim |
21:08:06 | * | Snircle quit (Ping timeout: 268 seconds) |
21:19:24 | * | xet7 joined #nim |
21:20:04 | * | zakora quit (Quit: WeeChat 2.2) |
21:40:19 | * | Vladar quit (Remote host closed the connection) |
21:45:06 | * | resethard joined #nim |
21:45:47 | * | resethard quit (Client Quit) |
21:56:33 | * | martin__ joined #nim |
22:01:32 | * | zachk quit (Changing host) |
22:01:32 | * | zachk joined #nim |
22:11:04 | * | martin__ quit (Ping timeout: 250 seconds) |
22:13:53 | * | endragor joined #nim |
22:18:26 | * | endragor quit (Ping timeout: 250 seconds) |
22:31:01 | xace | vindaar: no i didnt join, i just wanted to peek on the problems and solutions and maybe learn a thing or 2 |
23:01:19 | * | stefanos82 quit (Remote host closed the connection) |
23:38:35 | * | platoff joined #nim |