Re: Exactly what is type match?

2018-12-20 Thread JJ Merelo
.new(from => 1, made ...) > >> in block at -e line 1 > >> > >> Here is my work around: > >> > >> $ p6 'my $x="11.2.3.4"; my Str $D0; my Str $D1; my Str $D2; my Str > $D3; > >> $x~~m{ (<:N>+) [.] (\d

Re: say Cool-concat-junction question

2018-12-23 Thread JJ Merelo
El dom., 23 dic. 2018 a las 7:39, Brad Gilbert () escribió: > I turns out there is a candidate for > > Str:D, Junction:D > > but not for > > Any:D, Junction:D > > so it is going through one of the other &infix:<~> candidates, > specifically it looks like it could be > > *@args > > Which doesn't ap

Re: Pair colon-chains

2018-12-25 Thread JJ Merelo
Probably not. Can you please raise an issue in perl6/doc? The first one seems specially inconsistent... We'll have to check also if it's REPL only or it extends somewhere else... El mar., 25 dic. 2018 a las 1:23, yary () escribió: > https://docs.perl6.org/type/Pair says "Colon pairs can be chaine

Re: Basic question about lexical binding in relationship with "list assignment"

2018-12-27 Thread JJ Merelo
Hi, El jue., 27 dic. 2018 a las 9:30, Raymond Dresens (< raymond.dres...@gmail.com>) escribió: > Hello, > > I'm getting up to speed with Perl 6 again after a long while, and I more > or less 'hit my nose' against something that I can reduce to the > following very basic snippet of code: > > m

Re: I need hash inside a hash help

2019-01-11 Thread JJ Merelo
What would you say is the error, according to where the arrow points to? Maybe some unclosed double quotes? El vie., 11 ene. 2019 a las 19:57, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > Hi All, > > How do I do a hash inside a hash? > > So far I have: > > $ p6 'my %Vendors=

Re: I need hash inside a hash help

2019-01-11 Thread JJ Merelo
I think you want $x, not $Ace. Cheers El vie., 11 ene. 2019 a las 20:26, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 1/11/19 11:16 AM, Bruce Gray wrote: > > > > > >> On Jan 11, 2019, at 12:41 PM, ToddAndMargo via perl6-users < > perl6-us...@perl.org> wrote: > >> > >> Hi

Re: I need hash inside a hash help

2019-01-11 Thread JJ Merelo
You don't need to quote "%Vendors<{"$x"}>"By doing so, you're closing the quotes right behind { Cheers El vie., 11 ene. 2019 a las 20:39, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 1/11/19 11:33 AM, JJ Merelo wrote: >

Re: POD: linking to a module

2019-01-11 Thread JJ Merelo
Actually, we had that functionality, but it was recently eliminated by Richard Hainsworth since, as a matter of fact, there are no specs on what to actually do with them. And it was eliminated for several reasons, one of which is that MetaCPAN does not display Pod6, but the main reason is that ther

Re: POD: linking to a module

2019-01-13 Thread JJ Merelo
Hi, El dom., 13 ene. 2019 a las 1:48, Vadim Belman () escribió: > Not to mention different module versions, on top of what you wrote. > > Ok, I would think about it. One thing comes to my mind: in Synopsis 26 ( > https://design.perl6.org/S26.html) there is a mention of =config > directive. It can

Re: I need m/ help

2019-01-13 Thread JJ Merelo
I would say they are numbers that have a value by themselves, but can't be collated to other numbers to form bigger numbers, that is, they are not digits and they don't have a positional value. El dom., 13 ene. 2019 a las 20:13, Timo Paulssen () escribió: > There ought to be some documentation on

Re: I need m/ help

2019-01-14 Thread JJ Merelo
El lun., 14 ene. 2019 a las 18:41, Brad Gilbert () escribió: > Nl is not “*non-arabic numbers*” and it is not “*numbers that have a > value by themselves*”. > While both seem like correct statements, they are the wrong way to think > about the Nl category. > If either were entirely correct then th

Re: Roles are fundamentally broken?

2019-01-30 Thread JJ Merelo
El mié., 30 ene. 2019 a las 7:48, yary () escribió: > > Yet, have a look at my example with private methods > > All of the bug reports, code excerts use regular (public) methods. Do you > have code to share with !private_methods and/or submethods? I just made an > example, will be at the end of th

Re: How do I use chr inside a regex?

2019-02-01 Thread JJ Merelo
Hi, El sáb., 2 feb. 2019 a las 7:48, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > Hi All, > > How do I use chr inside a regex. In the below, how > do I get rid of $y? > > $ p6 'my Str $x=chr(0x66)~chr(0x77); my Str $y=chr(0x66)~chr(0x77); > $x~~s/ $y /xy/; say $x;' > > If w

Re: perl6.org down and documentation

2019-04-21 Thread JJ Merelo
It's provisionally here: http://docs.perl6.wakelift.de/ But those errors have nothing to do with that, I think. It's a permission problem. Do you have permission to write in the directory it indicates? Cheers El dom., 21 abr. 2019 a las 10:28, mimosinnet () escribió: > Dear perl6 users, > > Per

Re: Short term Zef fix

2019-04-30 Thread JJ Merelo
The problem with that is that it will go from using the old version of the file (and old versions of modules there) to none of them. It's probably better to lower the timeout... El mar., 30 abr. 2019 a las 12:07, Simon Proctor () escribió: > Until the p6c system is fixed here's a short term fix t

Re: Short term Zef fix

2019-04-30 Thread JJ Merelo
El mar., 30 abr. 2019 a las 13:03, Simon Proctor () escribió: > Oooh. How would I do that? > There's a phase-timeout option for zef, such as --fetch-timeout I'm not sure if that applies to repos, though... I seem to remember somebody mentioned, maybe in the IRC channel, another option, but can't

Re: push() practice: misplaced semicolon creates list elements within array?

2019-05-01 Thread JJ Merelo
El dom., 14 abr. 2019 a las 22:27, yary () escribió: > Looks like perl6 semicolon has different meaning in a list vs a capture. > In a list, it "makes sense to me" > > > perl6 --version > This is Rakudo Star version 2018.10 built on MoarVM version 2018.10 > implementing Perl 6.c. > >perl6 > To exi

Re: I need one liner module import help

2019-06-13 Thread JJ Merelo
Hi, El jue., 13 jun. 2019 a las 9:39, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 6/11/19 3:39 PM, ToddAndMargo via perl6-users wrote: > > This works: > > > > perl6 -e 'use lib "/home/linuxutil/p6lib"; use PrintColors :PrintBlue; > > PrintBlue( "Blue\n" );' > > > > Blue

Re: Downloading documentation

2019-06-21 Thread JJ Merelo
There's a epub release in "Releases", as well as a PDF https://github.com/perl6/doc/releases El vie., 21 jun. 2019 a las 23:49, Parrot Raiser (<1parr...@gmail.com>) escribió: > Hmm, downloaded to pdf, but at 1730 pages, maybe I'd better rethink > the printing. :-)* > -- JJ

Re: documentation translation effort ?

2019-07-09 Thread JJ Merelo
There have been some efforts to translate perl6intro; but as Laurent says, we can hardly say the documentation is complete, so diverting resources to translation is probably not such a good idea. El mar., 9 jul. 2019 a las 21:53, Laurent Rosenfeld via perl6-users (< perl6-us...@perl.org>) escribió

Re: is inlinable trait missing from docs

2019-07-13 Thread JJ Merelo
Most traits are not properly documented, see here https://github.com/perl6/doc/issues/2718 for instance. Even if it's not user-friendly, it's always better to make some reference even if only to avoid confusion just like this email. So I guess we'll get to it eventually... El sáb., 13 jul. 2019 a

Re: module availability problem

2019-07-31 Thread JJ Merelo
Takes a couple of hours, in general. What module was it? You obviously bumped up the version number, right? El mié., 31 jul. 2019 a las 11:19, Marcel Timmerman () escribió: > Hi, > > I've a problem with zef that it is not installing the newest module in > town. I had uploaded a module a few days

Re: module availability problem

2019-07-31 Thread JJ Merelo
;, "tags": [ "gnome", "gdk" ], "test-depends": [ ], "version": "0.14.6" } --- As you see, the source version is OK, the version that was in META6.json when packing it was not, apparently, as can be seen here too: https:

Re: DEPRECATED routine

2019-08-04 Thread JJ Merelo
Still, it's better to mention it in the documentation with all possible caveats. I'd appreciate if you opened an issue, linking this question. El dom., 4 ago. 2019 a las 14:20, Marcel Timmerman () escribió: > Hi all, > > Studying GTK::Simple if found about the existence of a routine > DEPRECATED

Re: DEPRECATED routine

2019-08-05 Thread JJ Merelo
Thanks! El lun., 5 ago. 2019 a las 12:50, Marcel Timmerman () escribió: > @JJ Merelo, > > I filed an the issue: 'extending the documentation of DEPRECATED #2938' > > -- JJ

Re: perl6's new name?

2019-08-11 Thread JJ Merelo
Hi, El lun., 12 ago. 2019 a las 8:15, Eliza () escribió: > Hello perl6 world, > > I saw the perl6 github issue, just was confused will perl6 change its name? > Yes, it might. Perl 6 will still be the language, but the implementation (the stack including MoarVM, NQP and Rakudo) will be called Cam

Re: Perl6 -> Raku? whats the scope?

2019-10-15 Thread JJ Merelo
There's no such thing as a Raku blog, so I am not sure where the official renaming should go. Closest thing is Liz's Raku weekly, I guess... El mar., 15 oct. 2019 a las 17:47, Andrew Shitov () escribió: > Hi, > > Here's what Larry Wall said: > > https://github.com/perl6/problem-solving/pull/89?fb

Re: Perl6 -> Raku? whats the scope?

2019-10-15 Thread JJ Merelo
El mar., 15 oct. 2019 a las 17:49, Andrew Shitov () escribió: > > The coming weeks / months / years, the name "Perl 6" will be replaced by > "Raku". > > To my opinion, should be done before this year's Christmas. At least > everything that can be done by the "Perl 6 team" (whatever it is). > It's

Re: FC31 can't find my module subs

2019-11-03 Thread JJ Merelo
What's the content of /home/linuxutil/p6lib? El lun., 4 nov. 2019 a las 6:48, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 11/3/19 6:56 PM, ToddAndMargo via perl6-users wrote: > > On 11/3/19 3:15 PM, ToddAndMargo via perl6-users wrote: > >> Hi All, > >> > >> Help! > >> >

Re: FC31 can't find my module subs

2019-11-03 Thread JJ Merelo
The only thing I can think of is not having permission to write in that directory or in the directory you're running your program. In that case, perl6 will not be able to create a .precomp hidden directory, and that might result in what you're seeing. I see your modules are installed as root, which

Re: FC31 can't find my module subs

2019-11-03 Thread JJ Merelo
Again, running stuff and installing it as root is never a good idea. It's not a good idea either to dump your modules in a directory, the proper way to do that is through zef install, running as a non-privileged user. The privileges of the .precomp directory might be one thing, but there might be o

Re: FC31 can't find my module subs

2019-11-04 Thread JJ Merelo
El lun., 4 nov. 2019 a las 8:52, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 11/3/19 11:31 PM, JJ Merelo wrote: > > Again, running stuff and installing it as root is never a good idea > > > Most of my programs are for system administration and I

Re: FC31 can't find my module subs

2019-11-04 Thread JJ Merelo
El lun., 4 nov. 2019 a las 8:35, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > > Problem still occurs with selinux disabled > > selinux operates at a higher level. This is plain and simple not having the write bit set for your particular user. Anyway, try this (as a regular u

Re: Rakudo Star 2019.07.1

2019-11-05 Thread JJ Merelo
Thanks a lot, Patrick. El mar., 5 nov. 2019 a las 14:28, Patrick Spek via perl6-users (< perl6-us...@perl.org>) escribió: > Hello everyone, > > I've seen people ask about 2019.07.1 in multiple avenues, myself > included. Since there was little response, I've set out to build it > myself. The firs

Re: restricted value passed to a sub question

2019-12-04 Thread JJ Merelo
El mié., 4 dic. 2019 a las 11:06, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 2019-12-04 01:44, William Michels via perl6-users wrote: > > Hi Todd, > > > > Chapter 9 (Associatives) of "Learning Perl 6" by brian d foy has a > > section on Maps, "the immutable mapping of ze

Re: looking for good project to learn perl6

2019-12-06 Thread JJ Merelo
Try something in the most wanted repo: https://github.com/perl6/perl6-most-wanted/blob/master/most-wanted/modules.md That way you will learn _and_ help the community. El vie., 6 dic. 2019 a las 8:11, Tom Blackwood () escribió: > Hello > > My team most time developed with ruby language. > These re

Re: My keeper on hashes

2019-12-06 Thread JJ Merelo
El vie., 6 dic. 2019 a las 11:46, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > Hi All, > > My favorite variable is the associative array (hash). I finally updated > my keeper file on them. > > If anyone is interested, here goes! > > -T > > > Perl 6 Hashes (associative arrays

Re: Fwd: Raku, docs, help [was: Re: vulgar?]

2019-12-07 Thread JJ Merelo
El sáb., 7 dic. 2019 a las 17:24, Philip Hazelden (< philip.hazel...@gmail.com>) escribió: > On Sat, Dec 7, 2019 at 12:04 PM ToddAndMargo via perl6-users < > perl6-us...@perl.org> wrote: > >> On 2019-12-07 03:00, Tom Browder wrote: >> > Forgot to reply to all. >> > >> > -- Forwarded messag

Re: looking for good project to learn perl6

2019-12-08 Thread JJ Merelo
ail.python.org/archives/ >> https://mail.python.org/mailman/listinfo >> >> R: >> https://www.r-project.org/mail.html >> https://stat.ethz.ch/mailman/listinfo >> https://r.789695.n4.nabble.com >> >> >> HTH, Bill. >> >>

Re: Perl6 vs Julia

2019-12-08 Thread JJ Merelo
It might have been, but syntax is more Python-like to the point that in some cases it's exactly the same. It's got a very extensive macro systems, which enables it to work concurrently, for instance. It's more scientific-computing oriented, which means that there are all sort of mathematical module

Advent Calendar

2019-12-08 Thread JJ Merelo
Hi, As you probably know, we're publishing a Raku-related article every single day until Christmas; https://rakuadventcalendar.wordpress.com. Check it out, spread the word. Also, the slot for the 23 of December is still free. Anyone willing to take it up? https://github.com/Raku/advent/blob/master

Re: Perl6 vs Julia

2019-12-08 Thread JJ Merelo
El dom., 8 dic. 2019 a las 12:10, Tom Blackwood () escribió: > Thanks JJ. > We know Perl has PDL for data science, > http://pdl.perl.org/ > > We are looking into it and see if it's possible to make a Perl6 version of > Scikit-learn based on PDL. > That would be really great. JJ

Re: looking for good project to learn perl6

2019-12-08 Thread JJ Merelo
Spark is a platform for stream processing, mainly. Tensorflow is a framework for machine learning. It's now open source, although Google calls the shots. I don't think they're pulling the plug here. It's open source, you can always fork. El dom., 8 dic. 2019 a las 18:52, Tom Browder () escribió:

Re: A grand idea on the documentation

2019-12-09 Thread JJ Merelo
The Raku community has got a community documentation. It's called the official documentation, and it's done by the community. You want to write your own and help yourself and maybe others, there're lots lof places you can do that: dev.to, Medium, your own blog. Even the "official" Raku Advent Calen

Re: A grand idea on the documentation

2019-12-09 Thread JJ Merelo
El lun., 9 dic. 2019 a las 10:34, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 2019-12-09 00:33, JJ Merelo wrote: > > The Raku community has got a community documentation. It's called the > > official documentation, and it's done by the c

Re: Fwd: Raku, docs, help [was: Re: vulgar?]

2019-12-09 Thread JJ Merelo
El lun., 9 dic. 2019 a las 2:48, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 2019-12-07 08:17, Philip Hazelden wrote: > > This is not IEEE-ese. Earlier, you defined IEEE-ese as > > > > Technical written material that uses so many obscure > > terms and unnecess

Re: A grand idea on the documentation

2019-12-09 Thread JJ Merelo
El lun., 9 dic. 2019 a las 11:26, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 2019-12-09 01:52, JJ Merelo wrote: > > > > > > El lun., 9 dic. 2019 a las 10:34, ToddAndMargo via perl6-users > > (mailto:perl6-us...@perl.org>>) escrib

Re: modules and subsets

2019-12-11 Thread JJ Merelo
Subsets follow pretty much the same rules as every other declared thing. Change subset by "variable" or "class", if the answer is true, it's also true for subsets. By default, the scope of anything (containers, classes, whatever) is lexical to the scope they are in. El mié., 11 dic. 2019 a las 18

Re: modules and subsets

2019-12-11 Thread JJ Merelo
El mié., 11 dic. 2019 a las 18:54, JJ Merelo () escribió: > Subsets follow pretty much the same rules as every other declared thing. > Change subset by "variable" or "class", if the answer is true, it's also > true for subsets. > > By default, the scope of

Re: NativeCall Doc booboo

2019-12-31 Thread JJ Merelo
Hi, El mar., 31 dic. 2019 a las 5:54, Todd Chester via perl6-users (< perl6-us...@perl.org>) escribió: > Hi All, > > https://docs.raku.org/language/nativecall.html#Passing_and_returning_values > > Did anyone else discover the mistake, hopefully not the hard way like I > did. Anyone get weird gib

Re: NativeCall Doc booboo

2020-01-01 Thread JJ Merelo
El mar., 31 dic. 2019 a las 21:56, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 2019-12-31 09:17, JJ Merelo wrote: > > Hi, > > > > El mar., 31 dic. 2019 a las 5:54, Todd Chester via perl6-users > > (mailto:perl6-us...@perl.or

Re: NativeCall Doc booboo

2020-01-01 Thread JJ Merelo
El mié., 1 ene. 2020 a las 19:57, ToddAndMargo () escribió: > On 2020-01-01 01:58, JJ Merelo wrote: > > > > El mar., 31 dic. 2019 a las 21:56, ToddAndMargo via perl6-users (< > perl6-us...@perl.org>) escribió: > >> On 2019-12-31 09:17, JJ Merelo wrote: >>

Re: Working at FOSDEM

2020-01-03 Thread JJ Merelo
I'll be arriving on the Saturday afternoon, could spend some time there. El vie., 3 ene. 2020 a las 15:43, Andrew Shitov () escribió: > Hi, > > On 1-2 Feb, I have secured a table at the FOSDEM exhibition area. > Unfortunately, I found nobody who confirmed they can help at the > location for at le

Re: LocalFree?

2020-01-08 Thread JJ Merelo
Which is what I told you twice as an answer to your question: https://stackoverflow.com/questions/59630605/does-rakus-nativecall-run-localfree. Also, documentation: https://docs.raku.org/language/nativecall#index-entry-nativecall "Call into dynamic libraries that follow the C calling convention"

Re: Bug to report: cardinal called an integer

2020-01-14 Thread JJ Merelo
El mar., 14 ene. 2020 1:24, ToddAndMargo via perl6-users < perl6-us...@perl.org> escribió: > On 2020-01-13 15:16, Laurent Rosenfeld via perl6-users wrote: > > Your own record over the last years shows that you very often don't > > understand documentation (and I actually sometimes wonder whether y

Re: Bug in the documentation

2020-01-14 Thread JJ Merelo
I'd be grateful if you (or someone) raised this issue in the doc repo. El lun., 13 ene. 2020 22:33, ToddAndMargo via perl6-users < perl6-us...@perl.org> escribió: > Hi All, > > https://docs.raku.org/type/UInt > > Type Graph > Type relations for 404 > > The chart is 404 missing > > To fix this, Ra

Re: Bug in the documentation

2020-01-14 Thread JJ Merelo
s, Raku can use the chart from > >> https://docs.perl6.org/type/UInt > >> https://docs.perl6.org/images/type-graph-UInt.svg > >> > >> Picky, Picky, Picky > >> > >> :-) > >> > >> -T > > > > On 2020-01-14 01:15

Re: Ping JJ: string literals

2020-01-18 Thread JJ Merelo
I know this is utterly and absolutely absurd, but so it goes. El vie., 17 ene. 2020 a las 23:28, ToddAndMargo () escribió: > Hi JJ, > > Please be my hero. > > I won't call you any goofy names out of > affection and friendship, as others will get > their nickers in a twist. > > This is from a prev

Re: Ping JJ: string literals

2020-01-18 Thread JJ Merelo
El sáb., 18 ene. 2020 a las 13:55, Tobias Boege () escribió: > On Sat, 18 Jan 2020, JJ Merelo wrote: > > The example works perfectly, and it does because it's a string literal > > which is already 0 terminated. Let's use this code instead of the one > that > >

Re: Question about Blob and Buf

2020-02-11 Thread JJ Merelo
You are using ~, which stringifies. Bufs are not strings: you need to decode them to concatenate it to a string. If what you want is to concatenate the buffer, probably ,= will work (not sure about this, would have to check), or any other operator that works on Positionals. JJ El mar., 11 feb. 20

Re: Rakudo Star v2020.01

2020-02-19 Thread JJ Merelo
Great work, and thanks, Patrick. El mié., 19 feb. 2020 a las 20:46, Patrick Spek via perl6-users (< perl6-us...@perl.org>) escribió: > Hi everyone! > > Just now I've sent an announcement to perl6-compil...@perl.org, to > notify people that I've made a first non-rc release of Rakudo Star. For > th

Re: problems with 2020.01

2020-02-28 Thread JJ Merelo
That would be probably a good candidate for raising it as a Rakudo Star issue at https://github.com/rakudo/star/issues Definitely, at least the documentation and much better the installation process should check for prior versions and ask them to be uninstalled. El vie., 28 feb. 2020 a las 21:59,

Re: star 2020.02 ?

2020-03-22 Thread JJ Merelo
Hi, There's no Star release for every monthly release; latest one was 2020.01. It used to be done every four months, but not sure what's the schedule now. El dom., 22 mar. 2020 a las 9:50, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > I am not finding 2020.02 over on > > http

Re: star 2020.02 ?

2020-03-22 Thread JJ Merelo
ps://rakudo.org/downloads/star/ >> >> Am I missing something? >> > > > -- > JJ > > > On 2020-03-22 01:59, JJ Merelo wrote: > > Hi, > There's no Star release for every monthly release; latest one was 2020.01. > It used to b

Re: star 2020.02 ?

2020-03-22 Thread JJ Merelo
gt; > >> El dom., 22 mar. 2020 a las 9:50, ToddAndMargo via perl6-users > >> (mailto:perl6-us...@perl.org>>) escribió: > >> > >> I am not finding 2020.02 over on > >> > >> https://rakudo.org/downloads/star/ > >> > >&g

Re: Accidentally closed an issue

2020-05-30 Thread JJ Merelo
Reopened El sáb., 30 may. 2020 a las 19:26, Joseph Brenner () escribió: > I was just trying to comment on an issue I opened the other day, and I > accidentally closed it. I don't see any way for me to re-open it, so > I would guess I don't have permissions to do so. Could someone > re-open this

Re: Had a weird symptom calling raku

2020-06-06 Thread JJ Merelo
Since Raku is running CompUnits besides compiling them, it might be that there was some CompUnit creating a window in the path. Since you've been talking about GTK lately, something doing that might be left over and if it was used by something along the path, it might have been compiled, thus run,

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

2020-06-07 Thread JJ Merelo
Unsurprisingly, there is "if": https://github.com/FROGGS/p6-if Install it with zef install if And then... use if; # activate the :if adverb on use statements use My::Linux::Backend:if($*KERNEL.name eq 'linux');use My::Fallback::Backend:if($*KERNEL.name ne 'linux'); El dom., 7 jun. 2020 a las

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

2020-06-07 Thread JJ Merelo
on "use lib", so > >>> I do not have to keep commenting these back and forth? > >>> > >>> # use lib 'C:/NtUtil', '.'; > >>> use lib 'C:/NtUtil', '.', 'K:/NtUtil'; > >>>

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

2020-06-07 Thread JJ Merelo
Also, you can simply issue different -I arguments when you invoke the script; you can put that in a shell or whatever script raku -Imy/lib script for your own lib raku -Iother/lib script for other (or Windows equivalent). No need to use Raku to change the path, actually. El dom., 7 jun. 2020

Re: Access violation when creating class instance

2020-06-24 Thread JJ Merelo
El mié., 24 jun. 2020 a las 10:05, WFB () escribió: > Hi all, > > I have an access violation on Windows for one of my classes and think it > is a bug, but not entirely sure about that. > > Every now and then creating a class instance ended my script with error: > Process finished with exit code -1

Re: perl streaming framework

2020-07-13 Thread JJ Merelo
Hi, El mar., 14 jul. 2020 a las 4:35, Warren Pang () escribió: > Hi > > Does perl have a stream computing framework? > I don't really know about Perl. It used to have Perl Data Language, but I don't know its current state. However, this mailing list is about Raku, or Perl 6 as it was called last

Re: impact of compiling pod doc

2020-07-14 Thread JJ Merelo
It's going to be pretty much the same. If it's installed, it's going to be precompiled anyway. The overhead added by reading the file might even make it slower. Of course, you can always give it a try and measure. Measuring might always surprise you :-) El mar., 14 jul. 2020 a las 14:20, Marcel Ti

Re: NativeLibs not loading on Module testing

2020-07-14 Thread JJ Merelo
I've submitted now a PR to NativeLibs that fixes that issue. El mar., 14 jul. 2020 a las 11:03, Richard Hainsworth (< rnhainswo...@gmail.com>) escribió: > I'm adding a Module to the ecosystem, and the Build system failed, see > > https://travis-ci.com/github/Raku/ecosystem/builds/175326153 > > It

Re: I cannot install any lib with Zef

2020-07-20 Thread JJ Merelo
El lun., 20 jul. 2020 a las 18:03, Aureliano Guedes (< guedes.aureli...@gmail.com>) escribió: > Hi all, > > I'm trying to figure out why I cannot install any package with zef. > > $ raku --version > This is Rakudo version 2020.06 built on MoarVM version 2020.06 > implementing Raku 6.d. > > zef ins

Re: recent perl6 book

2020-07-21 Thread JJ Merelo
OK, it's right there, at the bottom https://github.com/moritz/perl6book-web El mar., 21 jul. 2020 a las 9:11, JJ Merelo () escribió: > I would obviously suggest my own book > https://www.apress.com/gp/book/9781484249550, Perl 6 Quick Syntax > Reference, published last October. &g

Re: recent perl6 book

2020-07-21 Thread JJ Merelo
I would obviously suggest my own book https://www.apress.com/gp/book/9781484249550, Perl 6 Quick Syntax Reference, published last October. And we'll have to try and find a way to update that file... El mar., 21 jul. 2020 a las 4:02, Warren Pang () escribió: > Greetings, > > Would you suggest a re

Re: Pod6 examples

2020-07-21 Thread JJ Merelo
El mar., 21 jul. 2020 a las 17:23, Richard Hainsworth (< rnhainswo...@gmail.com>) escribió: > How about: > > https://github.com/Raku/doc/tree/master/doc/Language/pod.pod6 > > which is the pod source of https://docs.raku.org/language/pod This page is also intended as a tutorial. If there's someth

Re: Baby steps to create a dataframe structure

2020-07-22 Thread JJ Merelo
The Raku wrapper for GSL is ready, specifically all matrix operations, check it out. It's extremely fast, and could be the foundation for these data frames. El mié., 22 jul. 2020 a las 9:15, Tessa Plum () escribió: > Marc Chantreux wrote: > >> But the idea is to implement cooperatively those tool

Re: Baby steps to create a dataframe structure

2020-07-22 Thread JJ Merelo
n Wed, Jul 22, 2020 at 2:03 PM Tom Browder wrote: > >> On Wed, Jul 22, 2020 at 06:51 JJ Merelo wrote: >> >>> The Raku wrapper for GSL is ready, specifically all matrix operations, >>> check it out. It's extremely fast, and could be the foundation for thes

Re: Place for examples in a Raku module?

2020-08-13 Thread JJ Merelo
Hi, El vie., 14 ago. 2020 a las 6:25, Stuart Hungerford (< stuart.hungerf...@gmail.com>) escribió: > Hi, > > I'd like to add some example modules to a Raku module I'm working on. > These are not strictly tests, nor stand-alone scripts, but modules of > compilable code that show suggested ways to

Reminder: Fill Raku's user survey!

2020-08-30 Thread JJ Merelo
Hi, Here's the link https://docs.google.com/forms/d/e/1FAIpQLSdRPBdn1iRN_sT8BMNMOBhVbEY1u8ngZWVwLyM37sqsa4OLwQ/viewform It'll take you five minutes, top. Answers will be summarized and carefully considered. Thanks! -- JJ

Re: Reminder: Fill Raku's user survey!

2020-08-30 Thread JJ Merelo
In principle, answers are anonymous, so no way, sorry. Did you *actually* fill the form, though, or just answered the question here? We need them to be in the form, to consider them. El dom., 30 ago. 2020 a las 11:34, ToddAndMargo () escribió: > On 2020-08-30 02:26, JJ Merelo wrote: >

Re: Reminder: Fill Raku's user survey!

2020-08-30 Thread JJ Merelo
El dom., 30 ago. 2020 a las 11:43, ToddAndMargo () escribió: > >> El dom., 30 ago. 2020 a las 11:34, ToddAndMargo ( >> <mailto:toddandma...@zoho.com>>) escribió: > >> > >> On 2020-08-30 02:26, JJ Merelo wrote: > >> > Hi

Get help for your projects during hacktoberfest

2020-09-23 Thread JJ Merelo
Hi, Hacktoberfest is coming, https://hacktoberfest.digitalocean.com/, and lots of people will be running around looking for PRs to get their tees. Let's try and help them by creating a page with specific issues that we have created specifically to be easy to PR for newcomers to Raku. Here's what yo

Re: list of printers

2020-12-06 Thread JJ Merelo
El dom, 6 dic 2020 a las 10:09, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 12/4/20 8:55 PM, ToddAndMargo via perl6-users wrote: > > On 2020-12-04 20:28, Curt Tilmes wrote: > >> On Fri, Dec 4, 2020 at 10:52 PM ToddAndMargo via perl6-users > >> wrote: > >> > >>> This is t

Two days to submit your talks to FOSDEM

2020-12-20 Thread JJ Merelo
Hi, https://news.perlfoundation.org/post/fosdem-2021-call-for-papers Any kind of talk is acceptable: from lightning talks to long talks (1 hour) Cheers -- JJ

Re: Continuous testing

2020-12-23 Thread JJ Merelo
You can probably use AppVeyor. It's got good support for Windows, although you'll have to write for it specifically. This one seems to use it, for instance https://github.com/MARTIMM/gnome-native El mié, 23 dic 2020 a las 16:35, Richard Hainsworth () escribió: > Hi to everyone. > > Hope you all h

Practical Raku projects

2020-12-24 Thread JJ Merelo
Hi, El jue, 24 dic 2020 a las 3:55, Matthias Peng () escribió: > May I ask if there is any practical perl6 project running? For example, > homebrew by ruby, k8s by go, flask by python etc. > I doubt there's any perl6 practical project _now_. There are a few practical Raku projects, however, and

Re: Practical Raku projects

2020-12-24 Thread JJ Merelo
Yep, there's DBIish, which is fine and works pretty well. There's also a fabulous ORM, Red, very Rakuish, also working like a charm. Cheers El jue, 24 dic 2020 a las 12:24, Matthias Peng () escribió: > Do you know if there is any for Perl6’s DBIx::Class the ORM library? > Regards > > >> Hi, >> >

Re: Please take apart this stub line for me

2020-12-30 Thread JJ Merelo
El mié, 30 dic 2020 a las 8:02, Veesh Goldman () escribió: > No. > I can't imagine that what you're doing now is productive. > What are you actually trying to understand by reading the source. > Probably proving his point that anything, up to and including looking at clouds and watching Turkish s

Re: Please take apart this stub line for me

2020-12-30 Thread JJ Merelo
El mié, 30 dic 2020 a las 10:14, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 12/30/20 12:18 AM, JJ Merelo wrote: > > > > > > El mié, 30 dic 2020 a las 8:02, Veesh Goldman ( > <mailto:rabbive...@gmail.com>>) escribió: > >

Re: Please take apart this stub line for me

2020-12-30 Thread JJ Merelo
It's "hosing me down". No, I'm not doing that. Veesh's answer was good enough for me; it probably should be for you. Cheers JJ

Re: Please take apart this stub line for me

2020-12-30 Thread JJ Merelo
El mié, 30 dic 2020 a las 11:40, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 12/30/20 2:21 AM, JJ Merelo wrote: > > It's "hosing me down". No, I'm not doing that. Veesh's answer was good > > enough for me; it probably shoul

Re: LTA documentation page

2021-01-05 Thread JJ Merelo
Gianni is basically right. rakudoc has not really been released yet into the ecosystem, and p6doc will get you the documentation itself, which you will have to build then. So LTA is true, and there's some work to be done. There's probably an issue already created, but it will pop up if you create a

Re: LTA documentation page

2021-01-05 Thread JJ Merelo
Yep, there are a couple of (known) issues here: https://github.com/Raku/problem-solving/issues/252 which request to remove it from the ecosystem (and I'll probably do it when I finish this email), and this one https://github.com/Raku/doc/issues/2896 Build.pm does not really work now, to it should p

Re: I need help with ~~m/

2021-01-29 Thread JJ Merelo
El sáb, 30 ene 2021 a las 7:24, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > Hi All, > > rakudo-pkg-2020.12-01.x86_64 > > Why does this work? > > > $x = "1.33.222.4"; > 1.33.222.4 > > $x ~~ m/ (<:N>+) [.] (<:N>+) [.] (<:N>+) [.] (<:N>+) /; > 「1.33.222.4」 > 0 => 「1」 > 1

We need you to propose projects for Google Summer of Code

2021-01-30 Thread JJ Merelo
Hi, You probably know that GSoC is an annual event where Google provides grants for students to help develop new stuff in open source organizations. https://summerofcode.withgoogle.com/ We participated a couple of years ago, and got a lot of help for the documentation and other stuff. Last year our

Re: We need you to propose projects for Google Summer of Code

2021-01-30 Thread JJ Merelo
Hi, El sáb, 30 ene 2021 a las 23:14, ToddAndMargo via perl6-users (< perl6-us...@perl.org>) escribió: > On 1/30/21 9:11 AM, JJ Merelo wrote: > > Anyway, my 2¢ is that in the grand scheme of things, compile time is not > > that important. > > It drives me around the

Re: We need you to propose projects for Google Summer of Code

2021-01-30 Thread JJ Merelo
https://github.com/perl-foundation-outreach/gsoc-2021-ideas/issues Here you go Cheers El dom, 31 ene 2021 a las 8:56, JJ Merelo () escribió: > Hi, > > El sáb, 30 ene 2021 a las 23:14, ToddAndMargo via perl6-users (< > perl6-us...@perl.org>) escribió: > >> On 1/30/

  1   2   3   >