»ö« Welcome to Perl 6! | perl6.org/ | evalbot usage: 'p6: say 3;' or rakudo:, or /msg camelia p6: ... | irclog: irc.perl6.org or colabti.org/irclogger/irclogger_logs/perl6 | UTF-8 is our friend!
Set by moritz on 22 December 2015.
buggable 🎺🎺🎺 It's time for the monthly Accidental /win Lottery 😍😍😍 We have 14 ballots submitted by 10 users! DRUM ROLL PLEASE!... 00:00
And the winning number is 7! Congratulations to alphah! You win a can of WD40!
dwarring heh 00:07
BenGoldberg WD40 is good for half as many things as perl ;) 00:11
pilne why would google ban for using it to get time in different locations???? 00:24
ugexe www.youtube.com/watch?v=EIDZn8NHHfM perl6 graphql live talk 00:29
lookatme morning .o/ 00:39
BenGoldberg Does anyone know if there's a perl6 binding for Glib? In particular, GObject Introspection? 00:56
pilne buggable: tag glib 00:57
buggable pilne, There are no tickets tagged with GLIB
pilne whoops wrong bot
grebbable6: glib 00:58
greppable6 pilne, gist.github.com/15719059ecdd0ce448...8561a45dd8
pilne that thing is quite nifty 00:58
BenGoldberg greppable6: \bglib\b 00:59
greppable6 BenGoldberg, gist.github.com/042ff1d0975d073d84...e7a1b18d96
BenGoldberg A heap of modules which *depend* on glib, but nothing exposing glib itself 01:04
pilne i'm new here too 01:08
although it might be possible to use a perl5, python, or ruby wrapper with the inline modules. 01:09
lookatme How to create a role with meta-object protocol like class ? 01:41
ugexe m: role Foo { .^add_method("^shit", method { die "shit" }) }; class Bar does Foo { }; Foo.new.^shit 01:45
camelia Could not instantiate role 'Foo':
Package 'Mu' already has a method '^shit' (did you mean to declare a multi-method?)
in any protect at gen/moar/stage2/NQPCORE.setting line 1029
in block <unit> at <tmp> line 1
ugexe heh, guess not
lookatme ugexe, oh, thanks. Another question, do you know how can I add an attribute declare with HAS(not has) with meta-object protocol ? 01:50
m: role A { }; say A.HOW; 01:53
camelia Perl6::Metamodel::ParametricRoleGroupHOW.new
lookatme This metamodel class not have document yet.
skids ParametricRoleGroup is an abstract role group from which a ParametricRole has not yet been chosen. 01:59
m: role Foo [1] { }; role Foo [2] { }; say Foo[1] ~~ Foo # the last Foo is a ParametricRoleGroup, IIRC. 02:00
camelia True
skids But roles are only lazily collapsed, and even non-parametric ones are actually paramteric under the hood. 02:00
To get meta object protcol on a role need to figure out how to collapse it from ParametricRoleGroup to ParametricRole without collapsing all the way to CurriedRole 02:01
I don't know how to do that off the top of my head.
pilne any idea where i need to start looking to fix this up?: gist.github.com/anonymous/c8aef88b...538da411bd 02:02
lookatme skids, me too, there are not document about that. 02:03
s/not/no/
skids m: role Foo[$n] { }; my \c = Foo[1]; c.WHAT.say; c.^add_method("^covfefe", method { die "covfefe!" }); class Bar does Foo[1] { }; Foo[1].new.^covfefe # Collapsed too far.
camelia (Foo[Int])
No such method 'add_method' for invocant of type 'Perl6::Metamodel::CurriedRoleHOW'
in block <unit> at <tmp> line 1
lookatme What's the mean of `propdivsum($)`, pilne 02:04
The `$`
pilne goddamnit 02:05
that's the second time today i've done that
ty lookatme
skids m: role Foo { }; my \c = Foo; c.^candidates[0].^add_method("^covfefe", method { die "covfefe!" }); class Bar does Foo { }; c.^candidates[0].^methods[0](c); 02:09
camelia covfefe!
in method <anon> at <tmp> line 1
in block <unit> at <tmp> line 1
skids m: role Foo { }; my \c = Foo; c.^candidates[0].^add_method("covfefe", method { die "covfefe!" }); class Bar does Foo { }; Foo.new.covfefe.say 02:13
camelia covfefe!
in method <anon> at <tmp> line 1
in block <unit> at <tmp> line 1
lookatme m: role A {}; say A.HOW.^methods; 02:20
camelia No such method 'gist' for invocant of type 'NQPRoutine'
in block <unit> at <tmp> line 1
cbd_ noob question: does rakudo pass all the test as github.com/perl6/roast? 02:30
s/as/at/ 02:31
geekosaur no, there are a number skipped as Not Yet Implemented or TODO 02:37
i.e. known deviations
cbd_ Okay. I've never contributed to open source, or given a pull request before... 02:40
And I believe I've found a bug in Rakudo, and submitted one, but I figured that adding a test for the issue on perl6/roast would also help
how do I do that? 02:41
Or better: which direct should I head in? Just send someone an email through github and they're sort things out? 02:42
s/direct/direction/
cbd_ good grief, excuse the incorrect words 02:42
MasterDuke cbd_: click the "fork" button here github.com/perl6/roast, clone your fork to your computer, create and checkout a branch, add and commit and push your change, then click the "new pull request" button back on github.com/perl6/roast 02:46
cbd_ ok thanks 02:50
and they'll let me know if they don't think it is a bug that needs a test/ or if they don't like the test or whatever 02:51
MasterDuke yep. you said you already created an RT ticket? 02:52
cbd_ yes, but there hasn't been any action on the ticket 02:53
yet
MasterDuke what's the number? 02:53
Zoffix cbd_: what's the ticket and what's the bug?
cbd_ rt.perl.org/Public/Bug/Display.html?id=131381 02:54
Zoffix Hm. Looks like perl6.fail hasn't been updated for hours
cbd_ The bug is that a sub can't declare a parameter of type Array of Subset 02:56
Zoffix cdg: sidenote: we already have PositiveInt subset in core under the name UInt 02:57
m: say -5 ~~ UInt; say 5 ~~ UInt
camelia False
True
lookatme Seems like I have seen this bug before.
cbd_ I confess I did not really check through RT to see if this bug already existed 02:58
Zoffix: Looking though perl6/roast I just noticed that (type Int::Positive), was just using that as a simple example to showcase the bug 02:59
Zoffix Seems to work if you use `(Array[UInt] $x)`
cbd_ oh hey, so it does 03:00
Zoffix cdg: it's not always the easiest task :) Though perl6.fail/ lists all the open tickets on one page so it's a bit easier.
m: -> UInt @ {}(Array[UInt].new) 03:01
camelia Constraint type check failed in binding to parameter '<anon>'; expected UInt but got Array[UInt] (Array[UInt].new())
in block <unit> at <tmp> line 1
Zoffix golfed
cbd_ it is supposed to work as I originally wrote it? it is a legitimate bug? 03:02
Zoffix cbd_: yeah, it's a bug 03:03
lookatme m: subset PInt of Int where * > 0; sub f(PInt @p) { }; my PInt @a; f(@a)
camelia Constraint type check failed in binding to parameter '@p'; expected PInt but got Array[PInt] (Array[PInt].new())
in sub f at <tmp> line 1
in block <unit> at <tmp> line 1
Zoffix cdg: as for tests. Yeah, as was described, clone the perl6/roast repo, find some relevant file to put the test in, bump the `plan` at the top by the number of tests you're adding, add the test. Check the file works by running `t/fudgeandrun S-watever/your-test.t` and if it's all pass, then submit a PR. 03:04
There are a few articles on perl6.party (with "core hacking" in titles) that mention the test-writing process 03:05
And then "they" will comment on the PR or merge it :)
cbd_ t/fudgeandrun came with Rakudo*? 03:06
Zoffix cdg: it's a script in perl6/roast repo
cdg: oh, sorry, if you're in roast checkout, it should be just ./fudgeandrun some-test-file.t
This is the script: github.com/perl6/roast/blob/master/fudgeandrun 03:07
pilne so far 100% of my bugs have just been my babelfish going too deep into my ear >.< 03:09
Zoffix AST shows it typechecking for Positional[Int] and then typechking with UInt :S 03:13
MasterDuke ha 03:15
Zoffix doesn't know how any of this stuff works, gives up, and hopes MasterDuke will figure it out :) 03:19
night \o
MasterDuke well, not tonight for sure, about to head to bed myself 03:20
timotimo perl6.fail: Frontend for All Interesting Lapses 08:14
grondilu ls 11:29
^sorry
zengargoyle that GraphQL prestenation was pretty cool even with google hangout technical difficulties. 11:39
zengargoyle *presentation 11:40
pilne yawns 12:52
tbrowder question: is there a rule of thumb about the order of declaring vars in a script? i have a messy script that was working reasonably well but suddenly, after an unknown change (haven't checked git history yet), file scope vars defined early in the script are now throwing an undeclared error when referenced later. i also have a scattering of constants. should i always declare all such mutable vars at the top (after any modules) 14:10
and define initial values in a BEGIN block as a matter of course?
masak tbrowder: I'm kind of partial to the rule of "declare a variable at the latest possible point (when you need it), in the smallest possible scope" 14:13
lucs masak++
El_Che masak: constants are an exception, surely?
lucs Constants aren't variables ;)
masak El_Che: yes, but I'm not super-strict about putting them at the top either 14:14
but yeah, they are more likely to go at the top
El_Che lucs: haha, excellent point
masak tbrowder: anyway, something about your question tells me you're somewhat overwhelmed by too many variables in too wide scopes. I find that doesn't happen to me so much these days. 14:15
(not because I'm more clever than before -- I wish -- but because I try to constrain the scope of my variables)
lucs The fewer globals, the better, eh.
masak I even greatly appreciate linters these days that tell me when I have unused variables, or variables that I've declared but not assigned to, etc 14:16
those things are not compiler errors, but they're indicative of loose ends and I like to have them pointed out to me 14:18
lucs masak: Does P6 have such tools as far as you know?
El_Che masak: they are compiler errors in languages like go
rightfold Don't write messy code and you won't have those problems
Not even to "fix it in a minute"
It does not make you go faster in the short or long term
lucs rightfold: We all strive to avoid messy code, but, you know, things happen :)
timotimo tbrowder: don't forget that for "constant foo = bar" you already get BEGIN semantics 14:24
m: constant first-time = now; BEGIN sleep 2; constant second-time = now; say second-time - first-time
camelia 2.05492837
rightfold Woot 14:32
That's rad 14:33
timotimo it can be unexpected when you move code from a script to a module
and suddenly precompilation lets the code run less often 14:34
this is also why we don't offer "assign-once constants" under the "constant" keyword
tbrowder masak: i agree, but i'm in a "messy" dev state at the moment and haven' taken time to refactor and hide stuff yet... 14:35
masak: you are right, of course, thanks 14:36
tbrowder timotimo: thanks 14:36
Geth doc: 6e00889cca | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/Proc/Async.pod6
Fix Proc::Async.new

  - There's no :$path, *@args candidate
  - There's no `:r` argument
  - Include the positional multi
  - Include :enc and :translate-nl args
14:45
Geth doc: 8f695f2d22 | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Type/Proc/Async.pod6
Fix typo; Fixes #1354
15:41
tbrowder ref my prob: found a "=comment" that was meant to be an "=end comment", fixed and turned on torrent of errors, need to use a linter (not sure it would be easy to find that, though, given that p6 pod can have nested comments and no worries running through to eof).
[Coke] syntax highlighter might've been helpful there. 15:42
tbrowder my real error was not using my git history (actually, bzr) when the error popped up (and my emacs perl6-mode doesn't have a highlighter, anyway) 16:09
this Hi 16:20
moritz hi all. I'm considering writing something about P6 regexes and grammars. Here's a first draft of an outline: gist.github.com/moritz/471edf9f716...5d3526bb8e 19:03
feedback would be very welcome
curt_ m: my Array[Int] $x; say $x>>.Str; 19:07
camelia (timeout)
timotimo bisectable6: my Array[Int] $x; say $x>>.Str; 19:15
bisectable6 timotimo, On both starting points (old=2015.12 new=92c187d) the exit code is 0, exit signal is 1 (SIGHUP) and the output is identical as well
timotimo, Output on both points: ««timed out after 10 seconds»»
timotimo huh, it has been like this forever 19:16
moritz m: my Array[Int] $x; say $x.new()>>.Str; 19:18
camelia []
moritz m: my Array[Int] $x; say $x.defined
camelia False
Zoffix It's a bug in &deepmap, needs `&& $value.DEFINITE` on this line, at a guess: github.com/rakudo/rakudo/blob/92c1...s.pm#L1489 19:33
Need to relocate and will fix in ~2hrs.
m: dd Array.list
camelia (Array,)
Zoffix ^ it basically makes a 1-el list of Array type object, then goes to descend into it and finds the inner Array and recurses and makes 1-el list with the type object and hence infiniloop :) 19:34
eater What's the difference between <50/7> and (50/7)? 19:35
moritz m: say .^name for <50/7>, (50/7)
camelia Rat
Rat
Zoffix eater: the first one is a Rat literal, the second one is two Ints divided with the &infix:</> operator. The former can be used as a literal in the signature, for example, the latter can't as it';s an expression not a literal
eater thanks :) 19:36
Rat's are rad
awwaiid Rats are the BEST! 19:37
Zoffix They're indeed delicious!
Zoffix Oh, we're talking about Perl 6 objects? 19:38
awwaiid I want all the langs to switch to Rats by default
Zoffix curt_++ # thanks for presenting about Perl 6 last night! 19:41
GraphQL and Perl 6 if anyone wanna watch: www.youtube.com/watch?v=EIDZn8NHHfM 19:42
raschipi moritz: what about using a regex with .grep? It's not included in the 'Using Regexes' section. 19:43
curt_ I love Perl 6... It makes a perfect partner for GraphQL
Zoffix :)
moritz raschipi: I'll certainly mention that (though it's "just another" application of smart matching) 19:44
raschipi It's the most common regexp use, and I think giving a simple example is nice. 19:45
raschipi A section on Grammar::Debugger would also be nice, giving the ropes on how to use it. 19:49
eater hmm those NF* functions are new? 19:49
Zoffix Well, I lied. I was able to fix it before relocating \o/ 19:51
m: my Array[Int] $x; say $x>>.gist;
camelia [(Array[Int])]
Zoffix Drive-by bug fixing.... zoom ZOOM! 19:52
tbrowder .tell dwarring i just filed a new issue for Font::AFM 20:50
yoleaux tbrowder: I'll pass your message to dwarring.
tbrowder the issue i found is that the IsFixedPitch method is returning a string of 'true' or 'false', not a Boolean (to be fair, that what the README says), so a Boolean test shows no difference, one has to test for 'true'. is there any way to coerce those strings to a Boolean? 20:59
raschipi The other way around, turning it into a String when it's a boolean is trivial in P6, so it makes sense to return the Bool. 21:03
bye my loves 21:04
ufobat ${ ... } is an itemized hash, right? so when is {} an itemized has and when is {} a code-block-thingy? 21:28
m: say ('GET' => {foo => 1}).value.WHAT
camelia (Hash)
Geth doc: d3d3fa3666 | (Jan-Olof Hendig)++ | doc/Language/functions.pod6
Fixed a few typos
21:29
pilne my roguelike obsession is really nagging at me... i think i might pickup timotimo's libtcod bindings and also implement a pure perl6 one, just for yaknow.... poops and giggles perhaps they are both just out of my comfort zone as projects tbh, but i don't think that they are so far as to be something i'll hate myself for doing.
Juerd Search appears broken on doc.perl6.org 21:37
Especially short things like "io" or "try" don't get you anywhere near what you're looking for.
[Coke] Juerd: there's a fuzzy search, which may be slightly too fuzzy. Additionally, exact matches are not preferred. 21:39
[Coke] hurls github.com/perl6/doc/issues?q=is%3...l%3Asearch for a list of currently open search related issues which probably cover this.
Juerd Er, I wouldn't call this "slightly" too fuzzy :)
[Coke] github.com/perl6/doc/issues/247 in particular.
[Coke] Juerd: search for "routne" for example. 21:40
Juerd Sure, try "try" 21:40
Juerd I'd make a screenshot but the drop-down closes as soon as the input field loses focus. 21:40
[Coke] I see it, yes.
Juerd So, yep, pretty fuzzy :) 21:41
[Coke] for things that are short, we shouldn't return even shorter things. 21:43
say, if the term length is 4 or less, only return matches that are least 4 long?
Juerd Not just that, "try" should also not return things like "utc", "rwx", or "ord"
[Coke] that would cut that list down a bit, but perhaps not too much. 21:44
Juerd Or maybe it should find those things, but prioritize exact matches, then substrings, and then fuzziness
[Coke] right, the ordering of results is one ticket that's already out there. reducing the fuzz set would be something else. we have a few knobs we can try there.
Can you open a ticket and assign it to me? 21:45
Juerd I have no idea if I can do that 21:46
I'll try :)
[Coke] danke 21:47
dwarring tbrowder: got it thanks! 21:48
yoleaux 20:50Z <tbrowder> dwarring: i just filed a new issue for Font::AFM
[Coke] Juerd: I think the result you're looking for, btw, is under "try blocks" 21:59
Juerd Could be. I'd expect an exact match for keywords, though. 22:00
Especially since try can be used without a block :)
[Coke] ok, that's an actual doc issue, then, rather than a search-js-bug. 22:01
Juerd (Note: I'm trying to use Perl 6 for an actual project, so not taking the time to figure out how I can help to fix bugs or documentation; I'll just work around anything I encounter)
[Coke] I'll copy the ticket and deal with at least one of those 2 issues. :) 22:02
Juerd Great, thanks :)
[Coke] Juerd: sure; thanks for opening the ticket, it helps.
Juerd Another thing I'm working around is that serializing an object with "has Hash @foo" to/from json is hard, because after deserializing, it complains that the array is not a hash... Working around it simply by removing the type constraint. Finding out what I'm doing wrong takes too long :) 22:03
Juerd I'm falling in love with if ... -> $x { ... } 22:05
pilne it is quite elegant and useful 22:08
timotimo don't forget about the wonderful with ... -> $x { ... } as well
Juerd timotimo: I can't stand with/without because my brain can't be convinced they're conditionals. 22:09
Juerd timotimo: It messes with my comprehension of my own code if I use them. 22:10
pilne i'm noticing in a couple of SO questions and tutorials the line "... you can use $ for everything and ignore @ and %..." (one in context of using a % for something associative that isn't a hash, and the other in the docs on nativecall) 22:11
and i'm quite confused
jnthn In certainly contexts it may be true, but I don't think it's good general advice. 22:13
pilne k, i'll generally ignore it then (: 22:14
Juerd Heh, sigils were simplified but continue to confuse newbies :)
jnthn Not least because `my $x = Array.new; $x = ...` means something totally different to `my @x = ...`
If you move the sigils off the variables, you'll end up with them (or their method equivalents) at usage sites. 22:15
jnthn And then the code will look like @$blah :) 22:15
pilne i've never been adverse to sigils or sigil-esq things (like clojure using [] {} () for different data types) to make it immediately apparent what something is. although having the sigil on the name of the thing makes it a lot easier to not have to dig back up (or down...) in code to find out exactly "what" that thing is (: 22:18
Juerd "Unsupported use of $. variable; in Perl 6 please use the .kv method on e.g. .lines" when trying $.^name instead of self.^name; bug or my mistake? 22:41
AlexDaniel m: class Foo { method foo { say $\.^name } }; Foo.new.foo 22:47
camelia Any
AlexDaniel ah no, this is doing something else
or… does it? 22:48
m: class Foo { method foo { say ($).^name } }; Foo.new.foo
camelia Any
AlexDaniel m: class Foo { method foo { say (self).^name } }; Foo.new.foo
camelia Foo
AlexDaniel right, because… because that's an anon variable I think 22:49
Juerd: bug. 22:50
Juerd: I think this is where you would fix it: github.com/rakudo/rakudo/blob/8e0d...2080-L2083 22:53
like, maybe this: !before ‘^’? \w 22:54
Juerd Mind if I copy/paste that into a ticket? 22:55
AlexDaniel sure
Juerd: you can fix it yourself if you have time 22:56
Juerd Can't find the RT email address :( 22:57
AlexDaniel: That's the thing, I don't...
AlexDaniel huggable: rakudobug
huggable AlexDaniel, Report bugs by emailing to [email@hidden.address]
Juerd AlexDaniel: I'm not sure if I'm wasting time by using Perl 6 for actual work, or saving time
AlexDaniel well, $.^name issue doesn't take any time, just use self. :) 22:58
Juerd It's very little code compared to what I'd need if I had to put type checks everywhere in Perl 5
AlexDaniel For now, I mean
Juerd But I've already run into a handful of issues in 2 hours of coding :)
Yep, I'm happily working around anything I find
AlexDaniel Juerd: well, actually we need more people like you using perl 6 for real stuff 22:59
Juerd Mail sent 23:02
Herby_ o/ 23:09
timotimo yo herb
Herby_ hey timotimo 23:10
I'm working my way through the Think Perl 6 book and am stumped on an example 23:13
gist.github.com/anonymous/bc6f0e58...875fcdefc4 23:14
whether the user enters 1 or 50000, it will say One digit
timotimo huh, interesting 23:16
Herby_ I'm guessing its due to perl not making the user input a integer when it enters the given statement?
timotimo m: say "50000" ~~ 0..9
camelia True
timotimo bisect: say "50000" ~~ 0..9
bisectable6 timotimo, On both starting points (old=2015.12 new=b667e81) the exit code is 0 and the output is identical as well
timotimo, Output on both points: «True»
timotimo how does string vs int-range work ...
jeek m: say "50000" == 0 23:17
camelia False
jeek m: say "50000" == -1
camelia False
jeek m: say "50000" == 1
camelia False
jeek Hrm.
timotimo ah, lexicographic
it only does int vs int if both the target and value are ints 23:18
m: say val("50000") ~~ 0..9
camelia False
timotimo we may want to give prompt the "val" treatment? so we can get IntStr and such?
Herby_ say "50000".Int ~~ 0..9
evalable6 False
Herby_ say "50000".Int ~~ 45000..55000
evalable6 True
timotimo has think perl already been printed? 23:19
Herby_ i got the early release a few months back but yes i believe its gone into print
timotimo ah, perhaps it has been fixed since then
Herby_ i'm reading the ebook
eh, i downloaded the newest copy a few days ago
In my novice opinion the book is great. That example just stood out to me 23:20
timotimo thanks for pointing it out anyway :) 23:22
i'm not sure the author's reading the irc, though 23:23
Herby_ and to be fair, the example doesn't ask for user input. the book example starts at the given statement 23:24
timotimo oh, ok
right, so the example was expecting Int rather than Str
Herby_ likely, i added the user input part to test it 23:25
Juerd I'm slightly amazed that "my Foo|Bar @x" is not supported. Working around it with "my @x where Foo|Bar", but I wonder why the former can't work 23:27
timotimo hm, perhaps because you can't just put a Foo|Bar into an empty slot if the array grows or something 23:36
going to bed, seeya 23:38
Juerd Good night!