Lambert Lum on Docker, November 29th, 1pm.

2020-11-26 Thread Joseph Brenner
We're taking a break from the "Raku Study Group" this weekend, but Lambert Lum has volunteered to use the timeslot to talk about Docker. This is on Sunday November 29th, 1pm, via google meet rather than zoom: https://meet.google.com/mdh-ywsn-ghk https://www.meetup.co

Re: [perl #60046] [META] November 2008 release

2008-12-23 Thread Allison Randal
James Keenan via RT wrote: On Wed Dec 17 13:29:59 2008, kjs wrote: I thought I closed it last time. Trying again :-) kjs The ticket has 3 dependencies which are still open. Is it possible that the ticket cannot be resolved until these dependencies are resolved? Yes, but you can just remove

Re: [perl #60046] [META] November 2008 release

2008-12-21 Thread Sartak
On Sun, Dec 21, 2008 at 10:25 PM, James Keenan via RT wrote: > The ticket has 3 dependencies which are still open. Is it possible that > the ticket cannot be resolved until these dependencies are resolved? Yes, that is exactly the behavior of RT. You need to stop depending on those the three tic

Fwd: [november] Re: arrays and arrays ref question

2008-10-31 Thread Илья
So, I have found workaround for now: > my $ar = [1,2,3]; loop ( my $i = 0; $i < $ar.elems; $i++ ) { $ar[$i].say } 1 2 3 2008/10/30 Илья <[EMAIL PROTECTED]>: > I have found one: >> my $ar = [1,2,3]; my $i = 0; while $i < $ar.elems {say $ar[$i]; $i++ }; > 1 > 2 > 3 > > > 2008/10/30 Carl Mäsak <[EMA

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-31 Thread Guy Hulbert
On Fri, 2008-31-10 at 11:31 +0100, Carl Mäsak wrote: > >> > for @$ar { ... } > >> > or even > >> > for @ $ar { ... } > >> > or > >> > for @($ar) { ... } > > Guy (>): > > for ( @$ar ) { ... } > > > > ? > > That's Moritz' first suggestion, but with a pair of unnecessary > parentheses thrown in. :)

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-31 Thread Carl Mäsak
Guy (>), Carl (>>), Moritz (>>>): >> > for @($ar) { ... } >> >> This would arguably be the nicest variant. Well, actually, by "this" I meant all three variants that Moritz suggested. :) >> > for @$ar { ... } >> > or even >> > for @ $ar { ... } >> > or >> > for @($ar) { ... } Guy (>): > for ( @$a

Re: [november] Re: arrays and arrays ref question

2008-10-30 Thread Larry Wall
On Thu, Oct 30, 2008 at 12:03:55PM +0100, Carl Mäsak wrote: : Илья (>): : > I have array ref : > my $ar = [1,2,3]; : > how can I go over it? : : All I know is that `for $ar.elems { ... }` used to work for this case. : It doesn't seem to work anymore. : : Time to file a ticket, methinks. Er, .ele

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-30 Thread Guy Hulbert
On Thu, 2008-30-10 at 17:25 +0100, Carl Mäsak wrote: > > for @($ar) { ... } > > This would arguably be the nicest variant. for ( @$ar ) { ... } ? -- --gh

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-30 Thread Carl Mäsak
Moritz (>), Илья (>>): >> I have array ref >> my $ar = [1,2,3]; >> how can I go over it? > > Currently I think you can't, because the array contextualizer isn't > implemented yet. I think it should be > > for @$ar { ... } > or even > for @ $ar { ... } > or > for @($ar) { ... } This would arguably

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-30 Thread Moritz Lenz
Илья wrote: > Hi there, > question about arrays and array refs in Rakudo today. > > I have array ref > my $ar = [1,2,3]; > how can I go over it? Currently I think you can't, because the array contextualizer isn't implemented yet. I think it should be for @$ar { ... } or even for @ $ar { ... } or

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-30 Thread Carl Mäsak
Timothy (>): >>> my $r = <1 2 3>; for $r -> $t { say $t }; >> >> Which revision of Rakudo are you running? In my r32239, it outputs "1 >> 2 3" on the same line (i.e. it doesn't iterate over each element). > >Oops. My bad. Try either of the following with parrot 0.8.0. > > perl6 -e 'my $r

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-30 Thread Timothy S. Nelson
On Thu, 30 Oct 2008, Carl Mäsak wrote: Timothy (>): my $r = <1 2 3>; for $r -> $t { say $t }; Which revision of Rakudo are you running? In my r32239, it outputs "1 2 3" on the same line (i.e. it doesn't iterate over each element). Oops. My bad. Try either of the following with par

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-30 Thread Timothy S. Nelson
On Thu, 30 Oct 2008, wrote: Hi there, question about arrays and array refs in Rakudo today. I have array ref my $ar = [1,2,3]; how can I go over it? I try: my $r = [1,2,3]; say $r.elems; 3 my $r = [1,2,3]; say $r.WHAT; Array my $r = [1,2,3]; "Y".say for $r; Y my $r = [1,2,3]; .say

Re: Fwd: [november] Re: arrays and arrays ref question

2008-10-30 Thread Carl Mäsak
Timothy (>): > my $r = <1 2 3>; for $r -> $t { say $t }; Which revision of Rakudo are you running? In my r32239, it outputs "1 2 3" on the same line (i.e. it doesn't iterate over each element). // Carl

Re: [november] Re: arrays and arrays ref question

2008-10-30 Thread Carl Mäsak
Илья (>): > I have array ref > my $ar = [1,2,3]; > how can I go over it? All I know is that `for $ar.elems { ... }` used to work for this case. It doesn't seem to work anymore. Time to file a ticket, methinks. // Carl

Fwd: [november] Re: arrays and arrays ref question

2008-10-30 Thread Илья
t; >> So the last one seems to succeed, but it's really binding, not >> assignment, so @b and $a refer to the same variable after that. Change >> one, and you change the other. >> >> Moritz >> >> -- >> Moritz Lenz >> http://moritz.faui2k3.org/ | http

[perl #60046] [META] November 2008 release

2008-10-21 Thread via RT
# New Ticket Created by Jerry Gay # Please include the string: [perl #60046] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=60046 > This metaticket is for issues related to the November 2008 release of Parrot, planned

November, current state (Re: [november] Stackoverflow.com Perl 6 threads of interest)

2008-10-07 Thread Carl Mäsak
Conrad (>): > http://stackoverflow.com/questions/170268/what-features-of-perl6-are-you-the-most-excited-about > > (Of course I added **** "NOVEMBER" to the list of answers.) Heartfelt thanks for that. That is, indeed, a creative way to interpret the term "featu

Re: [perl #59068] Re: [november] Re: .perl fix

2008-09-22 Thread Moritz Lenz
Patrick R. Michaud wrote: > On Sun, Sep 21, 2008 at 10:50:22AM -0700, Moritz Lenz via RT wrote: >> Patrick R. Michaud wrote: >> > It would help if someone could describe all of the things that >> > need escaping, either as prose, Perl code, or text. >> >> (CC'ed p6c and the ticket, hope it worked)

Re: [perl #59068] Re: [november] Re: .perl fix

2008-09-22 Thread Patrick R. Michaud
On Sun, Sep 21, 2008 at 10:50:22AM -0700, Moritz Lenz via RT wrote: > Patrick R. Michaud wrote: > > It would help if someone could describe all of the things that > > need escaping, either as prose, Perl code, or text. > > (CC'ed p6c and the ticket, hope it worked) > > afaict the following charac

[perl #59068] Re: [november] Re: .perl fix

2008-09-21 Thread Moritz Lenz
Patrick R. Michaud wrote: > On Sun, Sep 21, 2008 at 03:34:50PM +0200, Carl Mäsak wrote: >> >> Andrew (>): >> > It turns out that .perl method does not escape >> > dollars >> >> Have you thought about reporting this via [EMAIL PROTECTED] > > It's already there as RT #59068. > > It would help if

[perl #58816] [BUG] Fwd: [november] Re: strange concatenation

2008-09-13 Thread via RT
# New Ticket Created by Ilya Belikin # Please include the string: [perl #58816] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=58816 > Hello there, please, look at this (sorry I have tried to make it smaller): grammar Test

Save the date: Parrot Developer Summit, November 15-16, 2008

2008-09-09 Thread Allison Randal
Google has graciously agreed to host the first ever Parrot Developer Summit. November 15th and 16th, 2008 on Google's Mountain View campus. You can find directions to the campus at: http://code.google.com/events/visitors More details to follow. Hope to see you there! Allison

November wiki mail list, November wiki page on the Perl 6 wiki

2008-09-08 Thread Conrad Schneiker
Some cross-linking to help future newcomers more easily find things. The November wiki discussion group is here: http://groups.google.com/group/november-wiki The November page on Perl 6 wiki is here: http://www.perlfoundation.org/perl6/index.cgi?november I just added a reference

November

2008-08-21 Thread Johan Viklund
We are now live at: http://www.november-wiki.org I have created a test-account. With user test-account and pass Iw4ntinPLZ. This is a _very_ early prototype. There are lots of things that don't work. I am aware of two things at the moment: 1. Non-ascii characters makes our parser bail out. So

RE: November

2008-08-17 Thread Conrad Schneiker
Carl Mäsak wrote: > Conrad (>): > > Do you plan to make a publicly-usable version of this wiki available, > > perhaps > > on the feather development system? > > Yes, that is our next TODO item. We'll notify the list once something > is set up. Excellent. FYI, I've also referenced your work here

Re: November

2008-08-17 Thread Carl Mäsak
Conrad (>): > Do you plan to make a publicly-usable version of this wiki available, > perhaps > on the feather development system? Yes, that is our next TODO item. We'll notify the list once something is set up. // Carl

RE: November

2008-08-16 Thread Conrad Schneiker
> From: Carl > We're pleased to annouce the release of November, a wiki engine written > in Perl 6. > > November is: > > * ...a proof-of-concept of what Rakudo Perl 6 can do today. > * ...released early rather than "when it's done". > * ...mean

Re: November

2008-08-15 Thread Carl Mäsak
Estrade (>): > You misspelled november in the github URL. > > Looks neat, though. Ah, good catch. That's what I get for composing emails offline. :) So, the working, non-misspelled address is: <http://github.com/viklund/november/> Thanks! // Carl

November

2008-08-15 Thread Carl Mäsak
We're pleased to annouce the release of November, a wiki engine written in Perl 6. November is: * ...a proof-of-concept of what Rakudo Perl 6 can do today. * ...released early rather than "when it's done". * ...meant to promote interest and involvement in Perl 6/Rakudo/Parro

Weekly Perl 6 mailing list summary for 26 November - 3 December, 2006

2006-12-03 Thread Ann Barcomb
This week on the Perl 6 mailing lists (26 Nov - 2 Dec) "... On the sixth day of Christmas my true love sent to me, Six versions of Perl, FIVE LANGUAGES COMPILING! Four bytes of bytecode, Three POST nodes, Two ASTs, And a Partridge with a parse tree." -- Jonathan

Weekly Perl 6 mailing list summary for 19-25 November, 2006

2006-11-26 Thread Ann Barcomb
This week on the Perl 6 mailing lists "...of course [that] can't be a bug as there are no specs ;)" -- Leopold Toetsch, in '[perl #40968] [BUG] :multi doesn't seem to work right ' Language Smart Matching clarification Last week, Jo

Weekly Perl 6 mailing list summary for 5-11 November, 2006

2006-11-12 Thread Ann Barcomb
Weekly Perl 6 mailing list summary This week on the Perl 6 mailing lists "...problem 2 is probably just me being confused (though I'd love an explanation, from @leo ;-))." -- Jonathan Worthington, in 'set_pmc_keyed_int delegates to set_pmc_keyed...? ' Lan

Weekly Perl 6 mailing list summary for 29 October - 4 November, 2006

2006-11-05 Thread Ann Barcomb
This week on the Perl 6 mailing lists "That fuzziness is classic $Larry. Some of the rest of @Larry can be more *mumble*matic." -- chromatic in 'where constraints as roles ' Language where constraints as roles A few clarifications