<< 06-02-2014 >>

00:01:06EXetoCderived? isn't it all implicit?
00:02:07EXetoCwhich I think was criticized, but then someone defended that behavior I think
00:02:28Araqno idea what you mean
00:02:44Araqif you speak of some reddit discussion, I barely read those
00:03:09filwitgotta run to the store, be back in a few
00:04:58EXetoCAraq: something about things conforming accidentaly I think
00:09:21*darkf joined #nimrod
00:14:08Araqgood night
00:16:01EXetoCbye
01:03:29*Varriount quit (Ping timeout: 240 seconds)
01:28:36*BitPuffin quit (Ping timeout: 245 seconds)
01:42:11NimBotAraq/Nimrod devel 370b74e Araq [+0 ±4 -0]: fixes regression: constant fac4 didn't work
01:43:14filwitAraq is secretly still up and hacking on Nimrod..
01:43:36filwit:P
01:44:59*DAddYE quit (Remote host closed the connection)
01:45:18NimBotAraq/Nimrod devel 9029763 superfunc [+0 ±1 -0]: Fixed typo's in tutorial 2
01:45:18NimBotAraq/Nimrod devel 98526cf Andreas Rumpf [+0 ±1 -0]: Merge pull request #876 from superfunc/devel... 2 more lines
01:45:33*DAddYE joined #nimrod
01:46:20NimBotAraq/Nimrod devel ab62556 EXetoC [+0 ±2 -0]: A first attempt at fixing the MongoDB modules.
01:46:20NimBotAraq/Nimrod devel af613f4 Andreas Rumpf [+0 ±2 -0]: Merge pull request #875 from EXetoC/mongo... 2 more lines
01:49:57*DAddYE quit (Ping timeout: 260 seconds)
01:52:29Araqfilwit: your PR makes no sense
01:52:44*brson quit (Quit: leaving)
01:52:54filwitokay, how so? what is the correct solution?
01:53:05Araq'Bar' and 'Baz' happen to have no children, but Foo[Bar] would have a child
01:53:19*brson joined #nimrod
01:53:23filwitone sec, let me look
01:53:37Araqbut why should in Foo[Bar] Bar be the matching candidate? makes no sense
01:54:25filwiti'm not sure what you're saying exactly. How do Bar/Baz not have children. and Foo is a module in my example.
01:54:28filwitone sec
01:54:36Araqzahary really needs to looks at this code
01:54:44Araqbut I would fix it this way:
01:55:05Araq let toMatch = a
01:55:45Araqsorry, Foo is not a module in my example
01:55:55AraqI need to sleep now, good night
01:56:16filwitnight
02:17:57*brson quit (Ping timeout: 260 seconds)
02:23:27*Demos joined #nimrod
02:33:27renesac|awaydoes nimrod have a power operator?
02:33:38*renesac|away is now known as renesac
02:33:58renesacI can't find a good list of defined operators
02:34:16Demosrenesac, no idea, try `^` and `**`
02:34:25DemosI think `^` is avalible for overloading
02:35:24Demosdoes nimrod still have opengl bindings in the standard dist?
02:36:28renesacnone of those two are defined
02:36:40renesacseems I have to import math
02:36:51renesacand use pow()
02:37:12Demosyou could define ^ if you wanted I guess
02:37:35renesacright, but as I'm using only one time, there is no need for that
02:37:58renesactoo bad pow only works with floats...
02:38:23renesacI will have to sprinkle quite a few type conversions here
02:38:32Demoswell you could write other versions and add them to the standard lib
02:38:38filwit^
02:38:58renesacright, I need to write a todo to list those things
02:39:07renesac:P
02:39:14Demosanyone know if the nimrod-mode.el version on marmelade is the newest
02:39:22DemosM-x org-mode :D
02:42:22renesactemplates can't have default arguments?
02:45:17renesachttps://gist.github.com/ReneSac/715730359e06c472f683 <-- the error
02:46:01*DAddYE joined #nimrod
02:47:54EXetoCthe order is wrong
02:48:27Demosdefault args must be the last argument
02:48:59Demosspeaking of which, how does tuple/map packing and unpacking work. Are there any docs?
02:49:15filwitrenesac, make two overloads of timeit
02:50:31*DAddYE quit (Ping timeout: 265 seconds)
02:51:21renesacfilwit, yeah, that seems the way
02:53:04renesacbut still ugly, as I have to repeat all over the default values for the arguments
02:54:00renesacDemos, the stmt must be the last value, so that isn't an option...
02:54:49Demoshm, annoying... maybe someday there will be special rules for templates
02:54:59renesacnot only for templates
02:55:07renesacfor functions accepting functions too
02:55:28renesacthat must have them as the last arguments to use the do: notation
02:55:29EXetoCthat's not a problem
02:55:35EXetoCyes
02:56:22renesacwhen using the do notation, let me forget the previous optional arguments
02:56:37filwitrenesac: make internal const for the default values then
02:56:50EXetoCthe implementer should deal with that
02:56:50renesacit is like I do "last_argument_name=func()"
02:56:59EXetoCanyway, it's not the end of the world
02:57:18renesacyeah, but ugly
02:57:20renesac^"
02:57:24Demosmaybe you could write a macro that generates templates to emulate default args
02:57:44Demosgranted that would be kinda confusing code..
02:57:58renesacI'm more inclined to fiddle with the grammar to fix it once for all
02:58:33renesacthough this seems complex
03:05:40*DAddYE joined #nimrod
03:09:54renesachum, the problem is not the grammar, but the way do: blocks are translated to the AST
03:34:41*ics quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
04:07:27Demosif I have proc foo(a: int) = var a = a ... is that saying "I want to copy a and then shadow it"?
04:09:04fowlDemos, ye
04:09:15Demossweet, is it idomatic?
04:09:22Demosdare I say nimrodic
04:09:51fowldunno
04:11:05Demosit seems strange that java/c#'s arrays have a fixed length. I mean if everything is heap allocated anyway and the arrays are already carrying around their length it would be reasonable to just make them "vectors" by default
04:50:31*Varriount joined #nimrod
04:50:55VarriountSorry about getting disconnected, I had a power outage
04:57:36*dmac joined #nimrod
05:02:02*ics joined #nimrod
05:05:05Varriountreactormonk: I had a look at your cartesian product code, very nice!
05:06:06Varriountreactormonk: I hope you don't mind if I submit a PR adding comments and lengthening some variable names (I was also able to add a couple lines that shaved off some time)
05:17:05*Demos quit (Read error: Connection reset by peer)
05:26:31*xtagon quit (Read error: Connection reset by peer)
05:41:15*ddl_smurf quit (Quit: ddl_smurf)
06:01:55*BitPuffin joined #nimrod
06:06:45*BitPuffin quit (Ping timeout: 265 seconds)
06:13:51reactormonkVarriount, go for it
06:20:36*CarpNet quit (Ping timeout: 245 seconds)
06:21:00*CarpNet joined #nimrod
06:42:19*ics quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
07:00:54*CarpNet quit (Ping timeout: 245 seconds)
07:01:20*CarpNet joined #nimrod
07:12:43*filwit quit (Ping timeout: 260 seconds)
08:19:26*dmac quit (Ping timeout: 245 seconds)
08:27:02*DAddYE quit (Remote host closed the connection)
08:54:13*_davidk_ joined #nimrod
09:28:52*DAddYE joined #nimrod
09:33:18*DAddYE quit (Ping timeout: 265 seconds)
10:29:31*DAddYE joined #nimrod
10:34:23*DAddYE quit (Ping timeout: 272 seconds)
11:08:21*psquid joined #nimrod
11:08:49*Mordecai quit (Ping timeout: 245 seconds)
11:11:19*BitPuffin joined #nimrod
11:19:00*awestroke joined #nimrod
11:55:42*awestroke quit (Ping timeout: 265 seconds)
11:55:59*awestroke joined #nimrod
11:59:36Araqhi awestroke welcome
12:02:45*ddl_smurf joined #nimrod
12:05:48*eigenlicht quit (Ping timeout: 252 seconds)
12:08:19*eigenlicht joined #nimrod
12:12:34*eigenlicht quit (Ping timeout: 246 seconds)
12:17:11*eigenlicht joined #nimrod
12:25:09*eigenlicht quit (Ping timeout: 248 seconds)
12:27:37*eigenlicht joined #nimrod
12:30:49*DAddYE joined #nimrod
12:35:31*DAddYE quit (Ping timeout: 265 seconds)
12:45:41*eigenlicht quit (Ping timeout: 245 seconds)
13:04:15*darkf quit (Quit: Leaving)
13:31:34*DAddYE joined #nimrod
13:33:18*radsoc joined #nimrod
13:36:26*DAddYE quit (Ping timeout: 265 seconds)
14:12:18*[1]Endy joined #nimrod
14:36:28OrionPKDemos you can resize arrays
14:36:52OrionPKoh that was a long time ago...
14:36:55*OrionPK has no conception of time
14:42:46*eigenlicht joined #nimrod
14:46:56*noam joined #nimrod
15:32:52*DAddYE joined #nimrod
15:37:16*DAddYE quit (Ping timeout: 245 seconds)
15:38:39*aftershave joined #nimrod
15:46:20awestrokeAraq: hello hello
16:15:19*BitPuffin quit (Quit: WeeChat 0.4.2)
16:18:24*psquid quit (Quit: work)
16:22:03*ics joined #nimrod
16:33:32*DAddYE joined #nimrod
16:34:05*ics quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
16:38:33*DAddYE quit (Ping timeout: 272 seconds)
16:44:39*brihat left #nimrod (#nimrod)
16:48:34*awestroke quit (Read error: Connection reset by peer)
16:48:48*awestroke joined #nimrod
17:01:55*Demos joined #nimrod
17:22:43*awestroke quit (Remote host closed the connection)
17:29:07*brson joined #nimrod
17:34:10*DAddYE joined #nimrod
17:38:45*DAddYE quit (Ping timeout: 248 seconds)
17:53:41*brson quit (Ping timeout: 248 seconds)
17:54:39*Demos quit (Ping timeout: 245 seconds)
18:00:45*brson joined #nimrod
18:09:28dom96Ahh so those bots were from the GCHQ not the NSA. I was almost right: https://www.quakenet.org/articles/102-press-release-irc-networks-under-systematic-attack-from-governments
18:10:52EXetoC:o
18:11:35*xtagon joined #nimrod
18:13:04*aftershave quit (Quit: Textual IRC Client: www.textualapp.com)
18:24:35*DAddYE joined #nimrod
18:34:04*_davidk_ left #nimrod ("Leaving")
18:45:41VarriountAraq: When I use repr() on a a newly created sequence of integers with uninitialized entries, how does repr() know the difference bettween a 0 and a nil?
18:46:11dom96Value types cannot be nil.
18:53:39EXetoCright. it just means that they aren't explicitly given a value, so it could be anything
18:54:54dom96No, it's always initialised to binary 0.
18:56:05EXetoCdoesn't sound like uninitialized to me, but ok
18:57:55EXetoCok so he just got the semantics wrong
19:05:18*icebattle joined #nimrod
19:05:29*brson quit (Ping timeout: 272 seconds)
19:05:50*brson joined #nimrod
19:10:11*BitPuffin joined #nimrod
19:10:28*Demos joined #nimrod
19:11:23EXetoCis `&=` supposed to be exclusively for strings? should we just stick to 'add'?
19:11:45Demoswell & works on seqs
19:12:36EXetoCyes, & but not &=
19:13:16AraqEXetoC: please add it
19:13:35Araqalso &= should be an alias for 'write'
19:18:04EXetoCAraq: for every overload of add and write?
19:18:32Araqnah, just make it generic
19:18:52Araqproc &= [T](f: TFile, x: T) = write(f, x)
19:18:58EXetoCstill for every overload then, just with less repetition
19:19:09Araqwell also for sockets
19:19:20Araqalias for 'send' then
19:20:28*delian66 joined #nimrod
19:20:37*aftershave_ joined #nimrod
19:24:45EXetoCwill do. I'd prefer not to have 'add' then because of the overlap, but it's used everywhere
19:25:04VarriountAraq: It's amazing how shallow copying can speed something up
19:25:38VarriountI spent ~2 hours last night, comparing my version of the cartesian product iterator with reactormonk's, trying to find why his was faster
19:26:22VarriountWhat made his faster was the use of a constant container and shallowCopy()
19:26:32Demosyeah getting the correct semantics for copying/memory layout/ownership is supah important
19:27:10Demosalso, I thought nimrod did shallow copies by default as far as refs are concerned
19:28:28EXetoCor have only 'add' and `&`.
19:36:29Demosif I have a template foo(t: typedesc): stmt = var `t blarg`: int what is the name I should expect when calling like foo(int)? would I get an intblarg?
19:38:06EXetoCI think you need a macro
19:38:30Demosoh dear god... macros are really hard to write
19:39:20Demosthe code I posted compiles
19:39:36DemosI just don't know what the actual name of the symbol is going to be, and it is hard to figure that out
19:39:41dom96I disagree. Macros are pretty easy.
19:39:50EXetoC`t blarg`?
19:40:31Demosaccodring the the manual the backticks can be used to generate names using the stuff you were passed
19:40:36dom96Demos: Call it and see. The compiler will give you a warning about an unused variable.
19:40:48EXetoCbut, there's whitespace there, so I don't know if it works
19:41:03dom96It does. Personally I dislike that syntax.
19:41:21EXetoCyeah, just tested it
19:41:48EXetoCdom96: ugly, but sometimes necessary
19:41:51Demosah it just calls it "typSceneNode"
19:42:44Demosor rather tblarg
19:43:20*filwit joined #nimrod
19:43:26EXetoCoh. yeah, apparently
19:44:17Demosis there a way to get the name of a type as it appears in the source?
19:44:22EXetoCit sure is hacky, but I don't know why you need it
19:44:26Demosoh, wait
19:44:28DemosI know
19:44:30EXetoCmaybe you should document that, because it's not obvious
19:44:37Demosyeah
19:45:34Demosactually it may just be a bug
19:45:50Demosif I replace t: typedesc with t:expr I still get tblarg
19:47:05EXetoCmaybe the constraint is the only difference
19:47:28EXetoCwhere the former is more restrictive
19:49:55EXetoCAraq: should &= be preferred then?
19:50:23EXetoCwhen invoking
19:55:52Araq EXetoC no ...
19:55:59Araqwe're doing it ruby style
19:56:02Araqaliases ftw
19:57:08dom96So much for consistency...
20:01:34VarriountAraq: Once again, I thank you for having a templating feature
20:02:26Araqyou're welcome
20:06:46EXetoCAraq: sarcasm or not, I'm confused
20:06:51*Demos quit (Ping timeout: 245 seconds)
20:06:55*brson quit (Ping timeout: 272 seconds)
20:07:45EXetoCCSS sure has a lot of stuff
20:07:59AraqEXetoC: no sarcasm this time
20:11:11VarriountAraq: Does return() do anything in an iterator?
20:11:34EXetoCAraq: what purpose will it serve then? to aid in writing generic interfaces and to reduce noise when it really matters?
20:11:53AraqEXetoC: generic interface
20:12:39dom96Varriount: You were right. Adding a custom field to the overlapped structure is useful, and in fact necessary.
20:13:35Varriountdom96: I'm glad that you found that link useful.
20:15:28VarriountAlso, Araq, is an object yielded from an iterator copied?
20:15:50EXetoCAraq: ok that's fine
20:16:03AraqVarriount: yes
20:16:10EXetoCI think &= in basic{2,3}d should be *=
20:17:46VarriountHm. Ok, return isn't allowed, so is there a was to stop an iterator early, without resorting to booleans and if statements?
20:19:13AraqVarriount: 'return' workswith closure iterators
20:20:00AraqEXetoC: that code is used in a commercial project irrc, so don't touch it for now
20:21:18EXetoCok
20:22:08EXetoCAraq: a 'put' trait seems like a natural progression then, whenever that becomes a possibility
20:28:52VarriountAraq: How serious is a closure iterator gc bug?
20:29:31AraqVarriount: I will mark it in red ...
20:30:03VarriountAraq: It's probably a more obscure bug, since my iterator is rather complicated.
20:42:52reactormonkVarriount, and I'm a strong believer of the functional style ;-)
20:43:00reactormonkVarriount, how much faster btw?
20:44:13Varriountreactormonk: Well, the best time out of 100 rounds, with a thousand loops each round, was about 0.08 seconds for the initial version
20:44:27VarriountSometimes it was a bit higher, 0.1 seconds
20:44:32reactormonkVarriount, how much _faster_, not how fast
20:44:43VarriountThe revised version took 0.07 seconds
20:44:59reactormonkslap some more in there, you want at least 1s runtime ;-)
20:45:21VarriountI know it's not *that* much faster, but I couldn't see how to optimize it any more.
20:45:41reactormonkI'll take that as a compliment ;-)
20:45:44VarriountAlso, I appear to be running into a codegen bug when trying to turn it into an iterator
20:46:00reactormonkhuh?
20:47:33Varriounthttps://gist.github.com/Varriount/8852176
20:47:55Varriountreactormonk: The generated C code isn't being generated properly, there are syntax errors.
20:48:18Varriountreactormonk: I also added an ordering option for results.
20:48:50*[1]Endy quit (Ping timeout: 252 seconds)
20:48:50VarriountAraq: The link I posted causes the error
20:49:25VarriountIt seems to have something to do with the garbage collector.
20:49:25reactormonkVarriount, issue
20:49:40Varriountreactormonk: And what do I call the issue?
20:49:54Varriount"Mysterious bug from planet x"?
20:50:07reactormonkprobably
20:50:09reactormonk # Handle corner cases
20:50:10reactormonk if groupsLen == 0 or groupsLen == 1:
20:50:12reactormonk raise newException(EOutOfRange, "Invalid args")
20:50:14reactormonk
20:50:16reactormonk^ not sure about that one...
20:50:40Varriountreactormonk: What do you mean?
20:50:50reactormonkI'd make it a condition, aka something you can capture, but doesn't interrupt the flow and just use my flows
20:51:04reactormonkotherwise you force people to handle corner cases, whereas empty input just means empty output
20:51:09reactormonk... which is mathematically defined.
20:51:28Varriountreactormonk: I had "return" before, however I was trying to get the iterator to work.
20:53:27reactormonkVarriount, in case of 0 elements, don't yield at all. In case of 1 element, yield the element.
20:56:47AraqVarriount: how can it both generate wrong C and cause GC issues?
20:57:45VarriountAraq: The error in the generated C is around a "asgnRefNoCycle" call
20:58:47NimBotAraq/Nimrod devel 40015dd Simon Hafner [+0 ±1 -0]: removed unittest from talgorithm
21:04:08VarriountAraq, reactormonk : Updated the gist
21:04:09reactormonkAraq, do you approve an indexBy[T, U](x: seq[T], index: proc(x: T): U):TTable[U,T] ?
21:05:07reactormonkVarriount, is it faster with shallowcopy?
21:05:26Varriountreactormonk: Well, yes. However I don't have to do that with an iterator.
21:05:39reactormonkVarriount, oh, right.
21:05:43VarriountSince the yielded item is copied anyway
21:06:07Varriountreactormonk: And in the updated procedure version of product(), I preallocate all the space needed for the result.
21:06:27reactormonkVarriount, cute
21:06:29VarriountSo I don't need to use shallowcopy for that either.
21:07:10AraqVarriount: report the bug please
21:07:49VarriountAraq: Ok.
21:08:39Varriountreactormonk: I particularly like the usage of templates to help implement the ascending/descending result order
21:09:01reactormonkcan I use indexBy[T, U, V](x: V[T], index: proc(x: T): U):TTable[U,T] - where V is a container that can be iterated over?
21:09:10reactormonkaka, defines items.
21:10:14reactormonkVarriount, hm, they're basically procs with scope here, but I guess it's faster here
21:11:04reactormonkand make stuff rather readable, which can't be said of my version
21:11:18Varriountreactormonk: Which was my primary goal :p
21:11:27Araqreactormonk: V[T] is not supported yet
21:13:03reactormonkAraq, so how would I go define it?
21:13:32filwitAraq: so it seems my macro bug is happening somewhere in vmgen:genIf:305, dest is 10 when gen is called, and the preceding unused check fails (if dest >= 0)
21:13:35reactormonkVarriount, btw, if you make an issue, please paste the code in there, don't link it. github cleans up gists.
21:14:07Varriountreactormonk: Really? So what is their expiration date?
21:14:23reactormonkVarriount, no idea, but I once looked up an old one and it was expired
21:14:35filwitAraq: i'm not really understanding how dest is used. I understand it's a register index, but why does unused check if it's above 0 then?
21:14:46Varriountreactormonk: The gist should last long enough for this particular bug
21:15:25filwitoff-topic: never played the game, but this song is great: http://www.youtube.com/watch?v=8yCyysCmhlQ
21:15:42VarriountAlso, I can't find anything on the github website/s to suggest that gists expire.
21:15:53reactormonkVarriount, kk
21:16:27reactormonkAraq, hmm, template?
21:16:29VarriountI have a gist from three years ago.
21:16:54Araqreactormonk: just use V instead of V[T]
21:17:11AraqT is deduced from the proc then. big deal. :P
21:17:41reactormonkAraq, cool
21:20:28*eigenlicht quit (Read error: Operation timed out)
21:20:31*radsoc quit (Ping timeout: 250 seconds)
21:23:52VarriountAraq: I don't suppose you could submit an organization application to the Google Summer of Code?
21:25:12VarriountThen I could have a reason to work on Nimrod all summer long
21:26:41*eigenlicht joined #nimrod
21:28:43AraqVarriount: I can try ...
21:29:12VarriountAraq: https://www.google-melange.com/gsoc/homepage/google/gsoc2014
21:32:35*eigenlicht quit (Ping timeout: 246 seconds)
21:35:46*eigenlicht joined #nimrod
21:40:46dom96GSOC sounds like a lot of work for the organizers.
21:46:08dom96Hrm, "College". My school has "College" in the name.
21:46:12dom96I wonder if I could apply.
21:48:46reactormonkAraq, that's one week. But if you manage to get through, you can get our own coding pet ;-)
21:49:19Araqgood night
21:49:40dom96Doesn't look like it :\
21:49:47reactormonkdom96, http://pastie.org/8706267 here's the agreement
21:50:06dom96"post secondary school" means post-high-school
21:50:26reactormonkyou are not a resident or national of Cuba, Iran, Syria, Sudan, North Korea, or Myanmar (Burma);
21:52:21dom96I could be a mentor though heh
21:52:26reactormonkdom96, sure
21:52:40reactormonk(a) To provide a publicly published list of project ideas from which students participating in Google Summer of Code (“Students”) will choose a project to work on for the duration of Google Summer of Code;
21:52:45reactormonk(b) To make available a person or persons to evaluate Student suggestions for projects should those students not find something that appeals to them on the published list and to either approve or reject those suggestions;
21:52:49reactormonk(c) To make available a person or persons to review the incoming Student applications targeted to the Mentor Organization and to decide which applications should be accepted;
21:52:53reactormonk(d) To make available a person or persons responsible for helping Students integrate with the Mentor Organization’s community;
21:52:57reactormonk(e) To make available a person or persons to monitor the progress of the students and mentor them as the project proceeds ("Mentor(s)");
21:53:01reactormonk(f) To make available one or more alternate Mentors in the event an existing Mentor is unable to continue providing guidance to the accepted Student applicant;
21:53:11reactormonk.... and the written evaluation
21:53:24dom96Yeah, sounds like a lot of work.
21:53:34reactormonkyup
21:53:40dom96And all the mentoring organisation gets is $500
21:53:46reactormonkand code.
21:54:37dom96true.
21:54:47reactormonkphI||Ip, Araq mentioned he had a proper fix for the PR somewhen in this chat.
21:55:11filwitwhy you write my name so odd.. :P
21:55:19*aftershave_ quit (Quit: Textual IRC Client: www.textualapp.com)
21:55:44reactormonkfilwit, just do it like everyone else and use the same nick everywhere
21:55:44filwithe already fixed it better, and it works now with recent changes to devel, so i closed
21:56:00filwiti try, but i can't usually
21:56:03reactormonkphI||Ip, wrong person. sorry.
21:56:13filwitoh, okay
21:56:28filwiti recently closed a PR, so thought you where talking to me about that
21:56:41reactormonkfilwit, nah, I was.
21:56:56filwitoh, i see
21:57:12reactormonkI just hl'd the guy again and mention "wrong person" so he can go back to sleep
21:57:28filwityeah i always tried to use "F i L" places (that's my nic on phoronix, steam, etc) but a lot of places don't like the spaces
21:58:05reactormonkdom96, now the only problem is to get Araq to sign up for that, or do it yourself.
21:58:17reactormonkfilwit, do it R style and use dots
21:58:19filwitso i chose PhilipWitte (my real name) for things that didn't like the space (youtube, github, etc) until i realized 'filwit' was probably better
21:58:24reactormonkF.i.L
21:58:36reactormonknope, freenode doesn't like it.
21:58:55filwitmeh, filwit (Philip Witte = F i L Wit = filwit) is simpler to type anyways
21:59:43reactormonk:>
21:59:46filwiti really don't care about internet anonymity, lol
22:01:21reactormonkfilwit, pseudonymity you say
22:01:30reactormonkyou can look up my name pretty fast
22:02:03filwityou can look up almost anyone pretty fast unless they don't use tech at all
22:02:12reactormonkyup
22:03:47filwitanyone know the what a 'var T' enum looks like in the VM? nkVarTy?
22:05:16filwittrying that.. think it might work
22:05:44reactormonklib/system.nim(1627, 7) Error: undeclared identifier: 'data'
22:05:46reactormonkmuh
22:06:30filwitfixit
22:06:50reactormonkjust did
22:07:28*filwit gives cookie
22:07:55filwit(internet cookie with virus that is)
22:10:53EXetoCexecutable cookies?
22:11:40filwitonly if you're on Win95 of earlier
22:11:45filwitor*
22:12:17EXetoCnah I'm not
22:12:36EXetoCyou?
22:12:40filwitgah, i fixed my macro bug, but Araq says it's not right... dunno why though. contemplating making a PR anyways
22:13:05filwitEXetoC: i use the penguin these days :)
22:13:23filwitthough i have to stay in Win 8.1 a lot for work
22:15:32filwitAnyone here know much about how the VM works?
22:16:34reactormonkfilwit, nimrod vm?
22:16:43filwityes
22:17:05filwitspecifically vmgen:genIf, concerning 'dest' register indexes
22:17:59filwiti can't figure out why the dest variable at vmgen:305 is set to 10 when 'gen' gets called on that line
22:18:45filwitbut gen immediately does 'unused' for the node kinds it gets from genIf, and unused checks if dest is >= 0, which obviously fails when it's 10
22:19:49filwiti'm not sure what's going on. I though dest would be a positive index, but apparently not, so i'm trying to understand what exactly it's values are used for
22:19:59filwitthought*
22:21:06filwitmy "fix" for the bug basically entails expanding all assert/unused checks for my specific test if/else macro test case, and obviously that's not right
22:21:34*ddl_smurf quit (Quit: ddl_smurf)
22:21:44filwitbut it works if i do that, so I'm assuming there's just a bug with how dest is being set in genIf, and I need to fix it there (then the asserts will work)
22:27:10*Demos joined #nimrod
22:36:09*io2 joined #nimrod
22:39:30Varriountfilwit: If you want an easy-ish bug to fix, get modules with unicode names working.
22:39:49VarriountCurrently they cause C compiler errors, because of the identifiers.
22:41:27filwitVarriount: not really trying to fix random bugs right now. I need this to be fixed so my macros work with devel
22:42:28VarriountMacros which do..?
22:43:36reactormonkVarriount, http://pastie.org/private/u49hwpmco7ht1lxrykn8w looks reasonable?
22:43:59Demoshonetly, macros and templates are quite hard to deal with because there are a lot of compiler bugs and a lot of invalid code that is rejected with terrible errors
22:44:11reactormonkDemos, so you say basically C++?
22:44:53Demosno, c++ errors are long, but in the end tell you where you screwed up. Nimrod says either SIGSEGV or like a one line error that does not help you much
22:44:59Demosor just "Internal compiler error"
22:45:06filwitVarriount: OOP stuff mostly. they build types/procs based on an incoming body of code. But they'll also connect to an editor generated code and mix stuff together
22:45:55filwitVarriount: i'll be making a stripped down version for a standard-lib proposal, and a unique version for my game engine.
22:49:18*whatelse joined #nimrod
22:54:34Demoshm there is documentation in macros.nim that is not on the devel docs... are the devel docs just of master?
22:56:31NimBotAraq/Nimrod devel b23e47d Simon Hafner [+1 ±1 -0]: indexBy, which indexes a collection into a hashtable
22:59:45reactormonkError: named expression expected
22:59:47reactormonkhuh?
22:59:50reactormonk x.inputs.incl(TItem(typeID: id, amount = tbl[id].amount + input.amount))
23:01:22EXetoCthis: "amount ="?
23:01:48EXetoCa = instead of :
23:01:49*brson joined #nimrod
23:07:10*DAddYE_ joined #nimrod
23:08:42*BitPuffin quit (Quit: WeeChat 0.4.2)
23:10:57*DAddYE quit (Ping timeout: 260 seconds)
23:15:39*brson quit (Ping timeout: 272 seconds)
23:16:09*ddl_smurf joined #nimrod
23:19:13*brson joined #nimrod
23:23:13reactormonkEXetoC, thanks
23:29:39Varriountreactormonk: Yes, however if these kind of abstract types are repeatedly used in algorithms/sequtils, I would define them seperately, in a type block
23:30:46Varriountreactormonk: See my unfinished nimrod version of python's itertools -> https://gist.github.com/Varriount/8854701
23:37:02EXetoCdoesn't that usage of typedesc result in unnecessary verbosity?
23:37:22*xenagi joined #nimrod
23:38:55*xenagi quit (Client Quit)
23:39:20*brson quit (Quit: leaving)
23:40:01*brson joined #nimrod
23:40:22EXetoCuntested I guess
23:43:31*xenagi joined #nimrod
23:51:02*DAddYE_ quit (Remote host closed the connection)
23:51:38*DAddYE joined #nimrod
23:53:06*darkf joined #nimrod
23:53:39filwiteating a mug full of Reeses Puff cereal.. finally found an American food I can boast about.
23:55:26*io2 quit (Ping timeout: 264 seconds)