Re: OT: wiki engine architecture

2006-06-08 Thread Will Coleda
that P6 Grammars will blow any existing way to write parsers clear out of the water, though. Regards, -- #Aristotle *AUTOLOAD=*_;sub _{s/(.*)::(.*)/print$2,(,$\/, )[defined wantarray]/e;$1}; Just-another-Perl-hacker; -- Will Coke Coleda [EMAIL PROTECTED]

Re: In lieu of This Week in Perl 6

2008-04-24 Thread Will Coleda
it. -- Will Coke Coleda

Re: In lieu of This Week in Perl 6

2008-04-25 Thread Will Coleda
- http://www.perlfoundation.org/perl6 Official Parrot Wiki - http://www.perlfoundation.org/parrot -- Will Coke Coleda

Announce: Rakudo Perl 6 compiler development release #31 (Atlanta)

2010-07-22 Thread Will Coleda
contributed to this release: Patrick R. Michaud, Jonathan Worthington, Moritz Lenz, Solomon Foster, Carl Masak, Bruce Gray, Martin Berends, chromatic, Will Coke Coleda, Matthew (lue), Timothy Totten, maard, Kodi Arfer, TimToady, Stephen Weeks, Patrick Abi Salloum, snarkyboojum, Radu Stoica, Vyacheslav

Re: slurpy hash

2010-08-16 Thread Will Coleda
- d...@panix.com - http://www.panix.com/~dha/ Why *isn't* there a Widget::Gonzo module? -- Will Coke Coleda

Re: Various questions

2010-12-28 Thread Will Coleda
://perlcabal.org/syn/ and do a google search in the upper RHS (which is what I did just now.) Regards. -- Will Coke Coleda

Re: Can't download Rakudo Dec 2010 without git

2011-01-04 Thread Will Coleda
, rather than trying to build parrot itself. -- Will Coke Coleda

Re: benchmarking against other languages

2011-02-13 Thread Will Coleda
;  is energy.fmt(%.9f), -0.169044806, 'energy 123';  done(); } -- Will Coke Coleda

Re: Fwd: FOSDEM - perl 6 critic

2011-02-22 Thread Will Coleda
footprint can certainly be improved - it's not all Rakudo. -- Will Coke Coleda

Re: lc on arrays

2012-05-21 Thread Will Coleda
, you need to act on the array elements, not the array itself, e.g.: my @a = A B C; @a».=lc; say @a; say @a+0 a b c 3 Regards. -- Will Coke Coleda

Re: Perl 6 / Rakudo unicode code point ranges

2013-02-19 Thread Will Coleda
for the range xE000 to xFFFD - see http://www.utf8-chartable.de/unicode-utf8-table.pl . I'm just having a problem implementing a concise regex/grammar rule for the above. Looking for advice. Cheers, David Warring -- Will Coke Coleda

Re: how to handle debug code?

2014-01-03 Thread Will Coleda
, I've tried quasi { $code } $code quasi { {{{ $code }}} } All produce the same result. What am I doing wrong? Richard On 12/17/2013 02:25 AM, Will Coleda wrote: I would start with http://strangelyconsistent.org/blog/macros-what-are-they-really for a way to parse but not execute

Re: Orphaned module Form

2014-09-09 Thread Will Coleda
/ecosystem/blob/master/META.list? -- Pozdrawiam Kamil Kułaga -- Will Coke Coleda

Re: Installing dependencies, testing a module

2015-01-01 Thread Will Coleda
itself (e.g. panda installdeps ?) What would be the recommended way to run all the tests? I currently use the following, but I wonder if there is another recommended command? prove -e perl6 -Ilib Gabor -- Will Coke Coleda

Re: Object Introspection for Existence of Methods: How?

2015-03-20 Thread Will Coleda
; } } A similar function can detect valid attributes, but this or variants I've tried don't. How can I test for the existence of a method? Thanks. Cheers! -Tom -- Will Coke Coleda

Re: Object Introspection for Existence of Methods: How?

2015-03-20 Thread Will Coleda
use Test; class bar { method foo () {}} ok bar.can(foo), stuff; ok 1 - stuff On Fri, Mar 20, 2015 at 3:00 PM, Tom Browder tom.brow...@gmail.com wrote: On Mar 20, 2015 1:50 PM, Will Coleda w...@coleda.com wrote: class bar { method foo () {}} my bar $a = bar.new(); say so $a.can(foo

Re: rakudo website down

2015-03-01 Thread Will Coleda
Request timeout for icmp_seq 2 Request timeout for icmp_seq 3 ^C --- rakudo.org ping statistics --- 5 packets transmitted, 0 packets received, 100.0% packet loss Can we bring it back? Thanks, Vaclav -- Will Coke Coleda

Re: Rakudo* downloader

2016-01-04 Thread Will Coleda
d version > of rakudo*. > > If anyone might find it useful, where should I put it to share? -- Will "Coke" Coleda

Announce: Rakudo Perl 6 compiler, Development Release #94 (“коледа”)

2015-12-25 Thread Will Coleda
ensen, chuck, cjeris, Nicholas Clark, Steve Clark, Jeff Clites, cmarcelo, cmeyer, Paul Cochrane, Daniel Colascione, Jason Cole, Will "Coke" Coleda, Sylvain Colinet, cono, Tim Conrow, Géraud Continsouzas, Damian Conway, Neil Conway, Stuart Cook, David Corbin, Deven T. Corzine, cosmicnet, Timot

Re: Hello List! Error found in glossary.pod

2015-12-27 Thread Will Coleda
]s Is No Longer True? > > -jas -- Will "Coke" Coleda

Re: release?

2015-12-28 Thread Will Coleda
xp: 08/04/2016) SHA256: > C2:40:67:22:25:52:29:AF:DF:50:4E:2A:6B:32:6D:BC:5B:1E:CA:7D:52:3B:4C:4A:21:5D:C8:E5:AE:7D:1A:09 > Puscii (exp: 04/03/2016) SHA256: > F9:C7:B1:B7:90:6B:17:BF:84:93:93:7C:0F:B4:FD:BE:E3:C0:71:9D:83:01:ED:3A:96:FE:FC:82:9D:30:51:C9 > -- Will "Coke" Coleda

Re: Perl 6 advocacy needs a mailing list

2016-02-05 Thread Will Coleda
rs, and hand wavers from the others on the users list. > > -Tom -- Will "Coke" Coleda

Re: Most wanted module: Net::SMTP

2016-02-22 Thread Will Coleda
cosystem here about determining if a module has quality. No one is suggesting the ecosystem setup is in a final state; There will be hiccups like this as we grow. > 2. How does one install a local (non-panda-list recognized) module > (e.g., one downloaded with git cl;one ...)? > > Thanks. > > Best regards, > > -Tom $ panda install . -- Will "Coke" Coleda

Re: Needed: Rakudo Star with 6.c Christmas Perl 6 release

2016-01-25 Thread Will Coleda
ballb...@sinenomine.net > unix, openafs, kerberos, infrastructure, xmonadhttp://sinenomine.net -- Will "Coke" Coleda

Re: perl6 reserves

2016-05-16 Thread Will Coleda
%29 > > What are other features/properties in other languages missing in perl6, > please? > Compilation to JS? > https://en.wikipedia.org/wiki/Dart_%28programming_language%29 > … > > Kind regards, > Hans > > PS: Please serious answers, no flame. -- Will "Coke" Coleda

Re: Helping Perl 6: a complete dev environment

2016-05-01 Thread Will Coleda
>> I would like to be able to easily test and create pull requests for rakudo >> and also the Task::Star modules but haven't yet figured out how to get it >> all working in the most effective manner. >> >> Thanks. >> >> Best regards, >> >> -Tom -- Will "Coke" Coleda

Re: panda's port?

2017-01-17 Thread Will Coleda
gt;> > > Figured it out. It is using "git" or port 9418 tcp. > > > -- > ~~ > Computers are like air conditioners. > They malfunction when you open windows > ~~ -- Will "Coke" Coleda

Re: can Perl 6 bootstrap itself

2016-08-22 Thread Will Coleda
the foundation is in C. Also wants make. -- Will "Coke" Coleda

Re: debugging and HookGrammar

2017-02-28 Thread Will Coleda
gt;at gen/moar/perl6-debug.nqp:407 > (/home/theo/.rakudobrew/moar-nom/install/share/perl6/runtime/perl6-debug.moarvm:comp_unit) > > followed by a slew of other nqp stuff. Is there something wrong with my > installation? Suggestions for repair? > > Thanks, > > > -- > Theo van den Heuvel > Malden, The Netherlands -- Will "Coke" Coleda

Re: pod question

2017-03-01 Thread Will Coleda
Not true, '=for' is part of POD6. See below. If you're getting errors, it's helpful to reduce the example to a reasonably small bit of code that duplicates the same error; either you'll realize the issue as you remove unrelated bits of code, or you'll end up with an example that epitomizes the

Re: Observations from a C++/Python developer that never used Perl5

2016-09-08 Thread Will Coleda
mples, I'm sure there are perfectly good reasons for > the way things are. If not, it may be a bug, and the compiler can be > improved. > >> argument constructors, are all pretty sweet as well. Macros look pretty >> promising although again I had trouble finding good tutorials. > > > As I recall it, macros where left out of the initial implementation. So you > have to wait for another Christmas Present :-) > > /kaare > -- Will "Coke" Coleda

Re: Using Rakudo Start on OSX using the .dmg

2017-03-25 Thread Will Coleda
PATH=$RAKUDO/bin:$RAKUDO/share/perl6/site/bin/:$PATH > export PERL6LIB=$RAKUDO/share/perl6/site/lib/ > > reloaded it and then I could use it. > > Maybe some notes like this could be added to > http://rakudo.org/how-to-get-rakudo/ > > regards >Gabor -- Will "Coke" Coleda

Re: Perl 6 docs

2017-03-25 Thread Will Coleda
ommon @INC > > Luckily the former leads to > https://docs.perl6.org/language/5to6-perlvar which also has > information on the latter, but it would be nice if that was also > recognized in the search box. > > Gabor -- Will "Coke" Coleda

Re: Bug report for Crypt::Bcrypt - cannot install

2017-03-28 Thread Will Coleda
ll at > /usr/share/perl6/site/sources/1DC0BAA246D0774E7EB4F5119C6168E0D8266EFA > (Zef::Client) line 560 > in sub MAIN at > /usr/share/perl6/site/sources/A9948E7371E0EB9AFDF1EEEB07B52A1B75537C31 > (Zef::CLI) line 123 > in block at > /usr/share/perl6/site/resources/3DD33EF601FD300095284AE7C24B770BAADAF32E > line 1 -- Will "Coke" Coleda

Re: my command line notes:

2017-03-14 Thread Will Coleda
\*ARGS[$indx] = <$Arg>"; } > > > > $ ./CommandLineTest.pl6 > command line is empty > > $ ./CommandLineTest.pl6 a b c > @*ARGS has 3 elements >@*ARGS = >@*ARGS.perl = <["a", "b", "c"]> > > say in a loop: >@*ARGS[0] = >@*ARGS[1] = >@*ARGS[2] = > > > -- > ~~ > Computers are like air conditioners. > They malfunction when you open windows > ~~ -- Will "Coke" Coleda

Re: How do I call system functions?

2017-03-08 Thread Will Coleda
~~ > Computers are like air conditioners. > They malfunction when you open windows > ~~ -- Will "Coke" Coleda

Re: Perl 5 list assignment idiom

2017-03-13 Thread Will Coleda
ist > elements on the right-hand side. That enables an idiom that I rather like: > > 1 == (my ($script) = $page->find('//script')) > or die "Other than exactly one script element found"; > > Can a similar expression that avoids an intermediate array variable be > written in Perl 6? > -- Will "Coke" Coleda

Re: Is there a list out there of all the \n characters?

2017-03-06 Thread Will Coleda
Can you clarify the request here, I'm not sure what you mean. On Mon, Mar 6, 2017 at 5:14 AM, ToddAndMargo <toddandma...@zoho.com> wrote: > Hi All, > > Is there a list of all the \n pairs out there somewhere? > > Many thanks, > -T -- Will "Coke" Coleda

Re: Install Drive on Windows

2017-03-07 Thread Will Coleda
> > -- > Andreas Müller -- Will "Coke" Coleda

Re: flatmap considered harmful?

2017-07-27 Thread Will Coleda
d it in Perl 6 other than subjective notions > of how confusing it is? > -- Will "Coke" Coleda

Re: contains question

2017-06-12 Thread Will Coleda
rl6 -e 'my $x = "\t"; if $x !~~ /<[A..Z a..z 0..9]>/ {say "out"} else >>> {say "in"}' >>> >>> Would this be easier to do with $x.contains? Or would it >>> be too worky? >> >> >> .contains only takes a *single string* to look up. So it is only useful >> for checking whether “foo” exists in “foo bar”: >> >>say “foo bar”.contains(“foo”) >> >> >> >> Liz >> > -- Will "Coke" Coleda

Re: contains question

2017-06-12 Thread Will Coleda
On Mon, Jun 12, 2017 at 4:07 PM, Elizabeth Mattijsen <l...@dijkmat.nl> wrote: >> On 12 Jun 2017, at 22:04, Will Coleda <w...@coleda.com> wrote: >> On Mon, Jun 12, 2017 at 5:17 AM, Francesco Rivetti <o...@oha.it> wrote: >>> if you can: >>> >&

Re: Task::Star and Panda

2017-05-23 Thread Will Coleda
if one exists in given path > zef build . > > # update Repository package lists > zef update > > # upgrade all distributions (BETA) > zef upgrade > > # upgrade specific distribution (BETA) > zef upgrade CSV::Parser > > # lookup module info by name/path/sha1 > zef --sha1 locate 9FA0AC28824EE9E5A9C0F99951CA870148AE378E > > > > > > > > -- > ~~ > Computers are like air conditioners. > They malfunction when you open windows > ~~ -- Will "Coke" Coleda

Re: Task::Star and Panda

2017-05-26 Thread Will Coleda
e with panda, per se. "zef is recommended over panda" is the message here. If you feel the need to specify why, you can point to the ability to interact with CPAN, improved module dependency checking, inclusion with Rakudo::Star, etc. -- Will "Coke" Coleda

Re: Task::Star and Panda

2017-05-26 Thread Will Coleda
e community anyway - which I am glad to see is happening here. > Gabor > http://perl6maven.com/ -- Will "Coke" Coleda

Re: a `pe4rl6 -c` error to fix

2018-06-20 Thread Will Coleda
hecker should throw an error if the line is "useless" > > Many thanks, > -T -- Will "Coke" Coleda

Re: Nesting pod6 formatting codes

2018-11-06 Thread Will Coleda
You can increase the # of <<'s : C<<$*PERL.compiler.version < v2018.09>> Or you can use unicode: C«$*PERL.compiler.version < v2018.09» On Tue, Nov 6, 2018 at 6:38 AM Fernando Santagata wrote: > > Hi, > > Here: > > https://docs.perl6.org/language/pod#Formatting_codes > > I read this: > >>

Re: Exactly what is type match?

2018-12-20 Thread Will Coleda
"Match objects are the result of a successful regex match, this does include any zero-width match. They store a reference to the original string (.orig), positional and named captures, the positions of the start and end of the match in the original string, and a payload referred to as AST

Re: vim-raku roadmap

2020-05-11 Thread Will Coleda
I think this got pulled into the Raku org so it didn't get lost - I don't think anyone is "in charge" at the moment. I'll review the existing PRs and apply them if possible. On Sat, May 9, 2020 at 12:53 PM Marc Chantreux wrote: > > hello rakuists, > > i want to work on raku-vim and saw that some

Re: the state of the build and install instructions

2020-05-14 Thread Will Coleda
to coordinate any changes. > > On 5/14/20, Will Coleda wrote: > > I think it's out of date, yes. > > > > Need a "make install" to install the binaries (by default to > > ./install). Previous versions of the build left a copy in ./perl6 but > > that h

Re: the state of the build and install instructions

2020-05-14 Thread Will Coleda
I think it's out of date, yes. Need a "make install" to install the binaries (by default to ./install). Previous versions of the build left a copy in ./perl6 but that hasn't been the case for a while. Thanks for the ping, we'll open a ticket to get INSTALL.txt updated. On Thu, May 14, 2020 at

Re: Raku Steering Council: nomination period ends Sept 6th at midnight UTC!

2020-09-09 Thread Will Coleda
Nominations are closed, but voting is now open through September 20th. Original announcement with notes about who is eligible to vote: https://github.com/Raku/Raku-Steering-Council/blob/main/announcements/20200720.md A ballot has been created that has instructions on voting:

Re: I need a second pair of eyes

2020-05-27 Thread Will Coleda
Part of framing the question in the first place is reducing the problem code to as small a subset as possible that still exhibits the problem. Often, in the course of doing this "golfing", you'll uncover the problem yourself. On Wed, May 27, 2020 at 4:59 PM ToddAndMargo via perl6-users wrote: >

Re: Access violation when creating class instance

2020-06-24 Thread Will Coleda
The download page requires an update. You can get 2020.05.1 here: https://rakudo.org/downloads/star/ On Wed, Jun 24, 2020 at 6:11 AM WFB wrote: > > Thanks JJ, > > I am using Rakudostar on Windows and 2020.01 is the current released version > so far. > I will try to reduce the code a bit more

Re: Is thre a way to do an "if" on "use lib"?

2020-06-07 Thread Will Coleda
the URL with literal !! in it didn't work for me, but this does: https://docs.raku.org/language/operators#infix_??_%21%21 On Sun, Jun 7, 2020 at 4:53 PM Peter Pentchev wrote: > > On Sun, Jun 07, 2020 at 12:32:09PM -0700, ToddAndMargo via perl6-users wrote: > > On 2020-06-07 02:32, Peter Pentchev

Re: surprise with start

2021-01-05 Thread Will Coleda
They are tested for compilation, not that they generate the desired results (though this is a wishlist item in the docs backlog) On Tue, Jan 5, 2021 at 9:59 AM Ralph Mellor wrote: > > Sounds to me like it's time to raise a doc issue. > > Also, does anyone know if doc examples are tested? > >

Re: A problem case for the site documentation search: the "^methods" method.

2021-03-09 Thread Will Coleda
Please open an issue for this at github.com/Raku/doc/issues On Tue, Mar 2, 2021 at 8:12 PM Joseph Brenner wrote: > > If you go to docs.raku.org and type "^methods" into the search > window, you get a drop down looking something like this: > > class > Method > Submethod > >

Re: Newsgroups

2021-03-08 Thread Will Coleda
I'd rather spend our energy moving to a raku-named list than fixing things on the perl6 lists. On Sat, Mar 6, 2021 at 4:41 PM Ask Bjørn Hansen wrote: > > The nntp.perl.org NNTP server runs from the list archive. > > Distributing to other nntp servers runs via a few feeds which may not work >

Re: Depreciated code????

2021-08-10 Thread Will Coleda
On Tue, Jul 27, 2021 at 4:38 PM ToddAndMargo via perl6-users wrote: > > On 7/27/21 12:21 PM, Elizabeth Mattijsen wrote: > > > So the deprecation logic is pointing at the wrong line. > > > > Where does this RunNoShellLib.pm6 live? It's must be something inside that. > > Nothing has changed inside

Re: What is `Γäó`?

2022-07-04 Thread Will Coleda
https://www.reddit.com/r/rakulang/comments/kko35z/short_blog_post_fixing_raku_unicode_display/ To enable unicode output in your cmd session, run: chcp 65001 On Fri, Jul 1, 2022 at 8:10 PM ToddAndMargo via perl6-users wrote: > > >> On Fri, Jul 1, 2022 at 7:34 PM ToddAndMargo via perl6-users >

raku/docs: Planning

2022-05-08 Thread Will Coleda
Mentioning on list since I know this has specifically come up in the past. If you are working on something for the documentation site, please let me know. I am trying to get a list of all the projects in flight right now. Please see https://github.com/Raku/doc/wiki for what's on my list right

Re: Virtualmin and Webmin web hosting control panel are written in Perl 5

2022-08-03 Thread Will Coleda
Sorry this list is for users of the programming language Raku, which was formerly known as "Perl 6". For Perl support, I'd recommend starting at https://www.perl.org/ Best of luck. On Mon, Aug 1, 2022 at 4:16 AM Turritopsis Dohrnii Teo En Ming wrote: > > Subject: Virtualmin and Webmin web

Re: Upcoming documentation meetings

2023-03-08 Thread Will Coleda
& raku/doc-website with quarterly goals to prioritize the tickets. Thanks to everyone making the docs work a success - if you'd like to volunteer, please stop by on IRC to chat, or reach out to me directly via email. We'll see where we are next month; On Sat, Feb 11, 2023 at 2:26 PM Will Co

New doc site

2023-02-26 Thread Will Coleda
Since I know not everyone is on IRC: The updated raku.docs.org site is now live! Big thanks to everyone who helped make this happen! If you find any issues please let me know at https://github.com/raku/doc/issues - content https://github.com/raku/doc-website/issues - site, search, styling,

Re: New doc site

2023-02-27 Thread Will Coleda
Embarrassing! Thanks for catching that, thankful she got it right in the weekly! On Mon, Feb 27, 2023 at 8:51 AM Marcel Timmerman wrote: > > On 27-02-2023 01:08, Will Coleda wrote: > > Since I know not everyone is on IRC: > > > > The updated raku.docs.org site

Re: New doc site

2023-02-28 Thread Will Coleda
Sorry, there is no GUI programming that's part of the core; the docs site is for the language spec and any core modules. On Tue, Feb 28, 2023 at 1:12 AM ToddAndMargo via perl6-users wrote: > > > > http://raku.docs.org > At first glance, this looks like a treasure trove. > > I did not see

Re: Help with %?RESOURCES variable

2023-04-20 Thread Will Coleda
On Mon, Apr 17, 2023 at 12:01 David Santiago wrote: > > I'm trying to use the variable %?RESOURCES without success. It doesn't > work even when i install it locally with zef > > I have the following: > > demanuel@archlinux test> cat resources/text.txt > This is my test file > demanuel@archlinux

Re: Upcoming documentation meetings

2023-02-11 Thread Will Coleda
2nd Saturday, which is the 11-th > > > > On 04/02/2023 23:13, Ralph Mellor wrote: > >> That's super short notice but if you mean EST, so 5pm UK time, > >> it would work for me. > >> > >> On Fri, Feb 3, 2023 at 7:07 PM Will Coleda wrote: > >&

Re: Upcoming documentation meetings

2023-02-03 Thread Will Coleda
I can do a test tomorrow at noon if there's interest. On Fri, Feb 3, 2023 at 10:27 AM Parrot Raiser <1parr...@gmail.com> wrote: > > I think I had problems finding the audio options on Jitsi, and wasted > a couple of meetings doing so. I'd suggest a "test" setup meeting, > where the whole agenda

Re: Upcoming documentation meetings

2023-02-04 Thread Will Coleda
Ok,we joined at noon eastern but only two of us were there. We'll see folks next week! On Fri, Feb 3, 2023 at 2:06 PM Will Coleda wrote: > > I can do a test tomorrow at noon if there's interest. > > On Fri, Feb 3, 2023 at 10:27 AM Parrot Raiser <1parr...@gmail.com> wrote: >

Re: Upcoming documentation meetings

2023-02-04 Thread Will Coleda
Yes, Eastern- but the time had already passed, sorry. On Sat, Feb 4, 2023 at 18:13 Ralph Mellor wrote: > That's super short notice but if you mean EST, so 5pm UK time, > it would work for me. > > On Fri, Feb 3, 2023 at 7:07 PM Will Coleda wrote: > > > > I can do

Re: pm6 naming convention

2024-02-12 Thread Will Coleda
e: > >> > >>> Has .pl6 been renamed too? > > > > On 2/12/24 12:37, Will Coleda wrote: > > > Please see: https://docs.raku.org/language/filename-extensions > > > <https://docs.raku.org/language/filename-extensions> > > > > >

Re: pm6 naming convention

2024-02-12 Thread Will Coleda
Please see: https://docs.raku.org/language/filename-extensions On Mon, Feb 12, 2024 at 3:24 PM ToddAndMargo via perl6-users < perl6-users@perl.org> wrote: > > >> On 12 Feb 2024, at 20:34, ToddAndMargo via perl6-users < > perl6-users@perl.org> wrote: > >> > >> > On 6 Feb 2024, at 18:08,