»ö« Welcome to Perl 6! | perl6.org/ | evalbot usage: 'p6: say 3;' or /msg camelia p6: ... | irclog: irc.perl6.org or colabti.org/irclogger/irclogger_log/perl6 | UTF-8 is our friend! 🦋
Set by Zoffix on 25 July 2018.
buggable New CPAN upload: AttrX-Mooish-v0.4.4.tar.gz by VRURG modules.perl6.org/dist/AttrX::Mooish:cpan:VRURG 01:13
squashable6 🍕 TisonKun++ wrote a comment on “Separate category of Tutorial”: github.com/perl6/doc/issues/1969#i...-417828188 03:05
🍕🍕🍕 First contribution by TisonKun++! ♥
squashable6 🍕 TisonKun++ wrote a comment on “Grammar .parse, details about *%opt needed”: github.com/perl6/doc/issues/1651#i...-417829109 03:24
🍕 TisonKun++ wrote a comment on “Accidentally generate '/type/*'”: github.com/perl6/doc/issues/1656#i...-417829186 03:25
Xliff What's the best way to send a Perl6 callback to a C-routine, signature-wise? 03:28
squashable6 🍕 TisonKun++ closed issue “document regex object in…”: github.com/perl6/doc/issues/1673 03:29
Herby_ o/ 03:48
\o
is 2018.06 the latest rakudo? 03:56
Herby_ timotimo: just read your Faster FASTA article. great write-up :) 04:29
Geth gtk-simple: faraco self-assigned RFE: Please add Progress Bar to the list of examples github.com/perl6/gtk-simple/issues/77
4dadc9080b | faraco++ | examples/19-progress-bar.pl6
05:16
ToddAndMargo I want to convert a..z to 1..25. If there a way to do it in one big blast? `$ p6 'my $x="abcdefghi"; $x~~s/a/1/; $x~~s/b/2/; say $x;' 12cdefghi` is cumbersome 05:30
ToddAndMargo $ p6 'for ["a".."c"] -> $i { my Str $y=( ord($i)-ord("a")+1; ).Str; say "$y";}' 05:40
And it converts it back to a string, whichis what I wanted
ToddAndMargo what is the proper syntax for this? ` if $i in ["a".."z"] {say $i}` 06:01
squashable6 🍕 tbrowder++ wrote a comment on “Separate category of Tutorial”: github.com/perl6/doc/issues/1969#i...-417849606 10:38
🍕🍕🍕 First contribution by tbrowder++! ♥
AlexDaniel squashable6: status 12:32
squashable6 AlexDaniel, 🍕🍕 SQUASHathon is in progress! The end of the event in ≈23 hours. See github.com/rakudo/rakudo/wiki/Mont...Squash-Day
AlexDaniel, Log and stats: gist.github.com/767e32428abc7fae6a...6415d4d28e
buggable New CPAN upload: KHPH-0.0.4.tar.gz by MLDEVINE modules.perl6.org/dist/KHPH:cpan:MLDEVINE 14:43
squashable6 🍕 JJ++ wrote a comment on “divide Language page groups into separate pages”: github.com/perl6/doc/issues/2186#i...-417864914 14:54
🍕 JJ++ labeled issue “Search results from `foo…” (wishlist): github.com/perl6/doc/issues/2179 14:55
🍕 JJ++ unlabeled issue “Search results from `foo…” (wishlist): github.com/perl6/doc/issues/2179
🍕 JJ++ labeled issue “Search results from `foo…” (big): github.com/perl6/doc/issues/2179
🍕 JJ++ labeled issue “Search results from `foo…” (site): github.com/perl6/doc/issues/2179
Geth doc: b8d4541e3e | (JJ Merelo)++ | doc/Language/faq.pod6
Some reflow in the FAQ page
15:13
doc: dacc593d41 | (JJ Merelo)++ | doc/Type/Cool.pod6
Adds unpolar refs #2277
synopsebot Link: doc.perl6.org/language/faq
Link: doc.perl6.org/type/Cool
jjmerelo Labor day weekend is probably not the best date for a Squashathon... Anyway, if you're around, please take a look at the Perl6 doc issues and lend a hand. 15:14
Every little thing helps.
squashable6 🍕 JJ++ edited issue “Many methods in Any docs are wrong”: github.com/perl6/doc/issues/1731 15:32
🍕 JJ++ reopened issue “Many methods in Any docs are wrong”: github.com/perl6/doc/issues/1731
🍕 JJ++ wrote a comment on “Many methods in Any docs are wrong”: github.com/perl6/doc/issues/1731#i...-417867309 15:34
uzl .tell ToddAndMargo Probably this: if $i (elem) ("a".."z") { say $i } or with unicode: if $i ∈ ("a".."z") { say $i }
squashable6 🍕 JJ++ wrote a comment on “Many methods in Any docs are wrong”: github.com/perl6/doc/issues/1731#i...-417867384 15:35
jjmerelo Hi, all! We are in the monthly squashathon github.com/rakudo/rakudo/wiki/Mont...Squash-Day Want to lend a hand?
Geth doc/master: 4 commits pushed by (JJ Merelo)++ 15:36
squashable6 🍕 JJ++ closed issue “&max/&min/&minmax aren't documented.”: github.com/perl6/doc/issues/2154
uzl jjmerelo: Hello! So I'd like to get Rakudo Star 2018.06. I compiled 2018.04 from source and wondering If I have to do the same thing with 2018.06. 15:40
jjmerelo @uzl I'm afraid so. It goes for all monthly versions. You can use rakudobrew to do it for you. 15:42
drudgesentinel To further practice my perl6, I'm writing a very simple backup utility for my openbox configuration files. What module/method would you recommend for sending my file to a remote server? 15:45
uzl jjmerelo: I see. By the way, what issues do you recommend for a somewhat beginner? Most of them in perl6/doc seem to be out of my grasp.
jjmerelo @uzl you know more than you think :-) 15:47
jjmerelo @uzl one of the things that is needed throughout all the documentation is to adjust hash links 15:47
jjmerelo @uzl the headings of many documents were adapted, but not the links to them. Almost any document has some #Links_Of_This_Form that should be #Links_of_this_form 15:48
jjmerelo @uzl that could be this one: github.com/perl6/doc/issues/1838 15:49
uzl jjmerelo: Thanks. I'll look into that! 15:50
jjmerelo uzl++ 15:51
drudgesentinel is there a general scp equivalent in perl6? 15:54
drudgesentinel is it silly to try to do that in perl6 and I should just use bash? 15:58
TimToady you could run scp directly without the shell 15:59
TimToady run 'scp', 'from', 'to' 16:00
Herby_ o/
drudgesentinel I'll do it that way, thanks TimToady. 16:02
AlexDaniel drudgesentinel: what about rsync? 16:08
Geth doc: uzluisf++ created pull request #2290:
Adjust heading links
18:06
squashable6 🍕 uzluisf++ opened pull request “Adjust heading links”: github.com/perl6/doc/pull/2290
🍕 AlexDaniel++ submitted a review on pull request “Adjust heading links”: github.com/perl6/doc/pull/2290#pul...-151599884 18:07
🍕🍕🍕 First contribution by AlexDaniel++! ♥
🍕 AlexDaniel++ wrote a comment on a review for “Adjust heading links”: github.com/perl6/doc/pull/2290#dis...r214519672
squashable6 🍕 uzluisf++ submitted a review on pull request “Adjust heading links”: github.com/perl6/doc/pull/2290#pul...-151600189 18:18
🍕 uzluisf++ wrote a comment on a review for “Adjust heading links”: github.com/perl6/doc/pull/2290#dis...r214519941
Herby_ is it squashathon time? 18:19
lizmat Herby_: yes 18:21
weekly: jj.github.io/10-things-perl6-doc/la-pm.html#/19
notable6 lizmat, Noted!
chromatic Hi! Would someone kindly revert 656b0730f9a1ef1bf1c0d99e9c4d1bc59518c256 and 607ac1541f73c38517de96300918da6c254f7c5c please? Thank you! 18:58
quester releasable6: status 19:06
releasable6 quester, Next release will happen when it's ready. 0 blockers. 480 out of 502 commits logged
quester, Details: gist.github.com/8174445185283dee71...946bafe22d
squashable6 🍕 uzluisf++ synchronize pull request “Adjust heading links”: github.com/perl6/doc/pull/2290 19:57
xinming termbin.com/16gn <--- For this kind of code, Can we issue a warning for this? something like, missing ',' in list. The reason I say this because I meet a subtle bug which is missing , in middle of a list definition 20:43
Or, someone gives me a better idea to avoid this problem.
lizmat xinming: that feels like a bug to me: that shouldn't parse like that 20:49
Voldenet m: my @a = x => { a => "a" }, y => { b => "b" }, z => { c => "c" }; @a.perl.say
camelia [:x({:a("a")}), :y({:b("b")}), :z({:c("c")})]
Voldenet m: my @a = x => { a => "a" }, y => { b => "b" } z => { c => "c" }; @a.perl.say
camelia 5===SORRY!5=== Error while compiling <tmp>
Strange text after block (missing semicolon or comma?)
at <tmp>:1
------> 3 = x => { a => "a" }, y => { b => "b" }7⏏5 z => { c => "c" }; @a.perl.say
expecting any of:
infix
Voldenet I use this syntax
lizmat Voldenet: with the missing comma ? 20:51
Voldenet No, the first one :D
in fact, if you remove newlines from the provided snippet, it works well
lizmat you mean, it's a compilation error? 20:53
Voldenet Indeed 20:54
lizmat aaaahhhh
I know what it is
jnthn } as last thing on the line terminates a statement
lizmat indeed
so xinming: alas, it's a feature that maybe has too much DWIM so it causes a WAT 20:55
jnthn Though we should perhaps detect the thing that's terminated that was is a list in sink context and complain
jnthn Wow, the grammar in that sentence is so broken I can't figure out what I meant to type :D 20:56
We should be able to warn about the terminated part being a list in sink context
We could maybe then add some smarts to the warning
Voldenet in fact, doing ix.io/1lLY is even worse 20:57
:z() just disappears
lizmat so definitely worth an issue, right, so it won't fall through the cracks :-)
afk for a bit& 20:58
xinming :-) 21:04
Never thought it's a bug, I thought it was a feature
Voldenet xinming: depends how you present it 21:10
"your code works even if you make mistakes"
vs "your code works incorrectly and silently ignores mistakes you make"
Kaiepi squashable6, help
squashable6 Kaiepi, Available commands: status, log, quiet, loud # See wiki for more examples: github.com/perl6/whateverable/wiki/Squashable
Kaiepi squashable6, status
squashable6 Kaiepi, 🍕🍕 SQUASHathon is in progress! The end of the event in ≈14 hours. See github.com/rakudo/rakudo/wiki/Mont...Squash-Day
Kaiepi, Log and stats: gist.github.com/d79d55a8f263215038...0973c38f1e
🍕 Kaiepi++ wrote a comment on “TODOs all over”: github.com/perl6/doc/issues/2277#i...-417887416 21:14
🍕🍕🍕 First contribution by Kaiepi++! ♥
Kaiepi i won't be able to contribute anything this squashathon since i'm dealing with some personal stuff atm but keep it up champs 21:25
btw net::icmp's coming along, albeit slowly 21:29
it almost works on *bsd, just need to finish that up and write the linux code for it before i can push it to cpan
linux's version will be much speedier since there are plenty of examples out there 21:30
s/speedier/\0 to write/
and after that, Net::NNTP! 21:31
that should be much simpler to write in comparison since i was forced to use c for Net::ICMP 21:32
lizmat ++Kaiepi 21:41
Kaiepi thanks 21:43
El_Che are they on drugs in Riga? twitter.com/perlcon/status/1036002...66080?s=21 21:46
lizmat El_Che: please check #yapc on irc.perl.org 21:53
stmuk_ perl seems to have lost its sense of humour 22:31
timotimo call my sense of humor bad, but i'd be glad to not have any reference to mister drumpf in the conferences i attend
there's been one that had the "make x great again" and it wasn't so great 22:32
AFK again 22:34
lizmat stmuk_: I think the world has a lot of rethinking on what humour is lately :-( 22:35
pmurias I found the conference motto funny, but involving controversial politics doesn't seem super wise ;) 22:36
stmuk_ . o O ( 2018.08 "yes we can" ) 22:46