Is there a linter for Perl 6? (like Perl::Critic or pylint)

2017-05-31 Thread Gabor Szabo
e.g. I'd like to check that every pl pm and t file in our project has a "use v6;" at the beginning. regards Gabor

Creating an array of a single hash

2017-06-01 Thread Gabor Szabo
use v6; my @x = { name => "Foo" }, { name => "Bar"} say @x.gist; # [{name => Foo} {name => Bar}] say @x.^name;# Array say @x[0].^name; # Hash my @y = { name => "Foo" } say @y; # [name => Foo] say @y.^name; # Array say @y[0].^name; # Pair my @z = { name => "Foo" },; say @z;

Re: Creating an array of a single hash

2017-06-01 Thread Gabor Szabo
On Thu, Jun 1, 2017 at 5:44 PM, Timo Paulssen wrote: > Yeah, you can use the prefix $ to itemize things, like so: > > timo@schmand ~> perl6 -e 'my @y = ${ name => "Foo" }; say @y.gist; > say @y.^name; say @y[0].^name' > [{name => Foo}] > Array > Hash > > HTH > - Timo Thanks.

Re: Is there a linter for Perl 6? (like Perl::Critic or pylint)

2017-06-03 Thread Gabor Szabo
ilador/Bailador/blob/main/t/00-lint.t regards Gabor On Thu, Jun 1, 2017 at 2:50 PM, Ahmad Zawawi wrote: > Hi Gabor, > > Like https://atom.io/packages/atom-perl6-editor-tools for instance or > project-level linting? > > Regards, > Ahmad > > > On Thu, Jun 1, 2017 a

How to install from a specific Git branch?

2017-06-07 Thread Gabor Szabo
Hi There! In the Bailador project we use a branch called 'dev' for development and one called 'main' for releases. Or at least we try to. In the META.list of the ecosystem https://github.com/perl6/ecosystem/blob/master/META.list we have listed the 'main' branch: https://raw.githubusercontent.com/

How do you call the variable types?

2017-06-08 Thread Gabor Szabo
Looking at https://docs.perl6.org/language/variables there are 4 variable types with sigil: $, @, %, &. In Perl 5 I used to call them scalar, array, hash, and function respectively, even if the scalar variable had a reference to an array in it. How do you call them in Perl 6? As I understand @ a

Re: How do you call the variable types?

2017-06-09 Thread Gabor Szabo
to >> arrays. A scalar in a vector is a component of a vector. >> >> I was thinking of "generic". >> >> Hence "$variable" is a generic variable because it can hold any type of >> content. >> >> >> >> On Friday, June

Undeclared routine: break used at line ...

2017-06-13 Thread Gabor Szabo
I just managed to write while True { ... break if $code eq 'exit'; ... } I wonder if Rakudo could be more cleaver in this particular case and remind me to use 'last' instead of 'break'. Gabor

Re: Undeclared routine: break used at line ...

2017-06-13 Thread Gabor Szabo
On Tue, Jun 13, 2017 at 8:50 PM, Elizabeth Mattijsen wrote: > >> On 13 Jun 2017, at 19:34, Gabor Szabo wrote: >> >> I just managed to write >> >> while True { >>... >>break if $code eq 'exit'; >>... >> } >> &

Re: Undeclared routine: break used at line ...

2017-06-13 Thread Gabor Szabo
On Tue, Jun 13, 2017 at 9:33 PM, Elizabeth Mattijsen wrote: >> On Tue, Jun 13, 2017 at 8:50 PM, Elizabeth Mattijsen wrote: >>>> On 13 Jun 2017, at 19:34, Gabor Szabo wrote: >>>> >>>> I just managed to write >>>> >&

getting help in the REPL

2017-06-14 Thread Gabor Szabo
Hi, In the python interactive shell one can write dir(object) and it lists the attributes and methods of the object. One can write help(object) and get the documentation of the object. Is there anything similar in Perl 6? Gabor

Re: getting help in the REPL

2017-06-14 Thread Gabor Szabo
Thanks for all the responses so far. On Wed, Jun 14, 2017 at 4:44 PM, Timo Paulssen wrote: > WHY and WHEREFOR are "fully" supported, it's just that we've not put any > pod into the core setting and we don't have helper code that loads it > "lazily" when WHY is called the first time on a core clas

Re: How do you call the variable types?

2017-06-15 Thread Gabor Szabo
alled >> my $y = &x; $y(); > called > > (Though multi subs would be much more complex to declare this way.) > > > On Fri, Jun 9, 2017 at 9:51 PM, Gabor Szabo wrote: >> >> Brad, thanks for your reply. >> I accept your point on not calling $-variables &

Re: next

2017-06-16 Thread Gabor Szabo
On Sat, Jun 17, 2017 at 4:19 AM, ToddAndMargo wrote: > On 06/16/2017 06:08 PM, Brandon Allbery wrote: >> >> On Fri, Jun 16, 2017 at 9:02 PM, ToddAndMargo > > wrote: >> >> I am afraid I am not understanding "next" again. >> >> When you invoke it, does it pop yo

The speed (improvement) of Rakudo

2017-06-16 Thread Gabor Szabo
Hi, Is there some measurements regarding the speed of Rakudo? e.g. It would be nice to have a graph of some hand-picked operations measured at different points in time of the development of Rakudo and then graphed in a nice way. Is there anything like that? Gabor

Re: The speed (improvement) of Rakudo

2017-06-16 Thread Gabor Szabo
The first one is the closest to what I was hoping to see. Very impressive. Thanks. Gabor On Sat, Jun 17, 2017 at 9:10 AM, H.Merijn Brand wrote: > On Sat, 17 Jun 2017 07:46:46 +0300, Gabor Szabo > wrote: > >> Hi, >> >> Is there some measurements regarding the sp

not enough memory

2017-06-28 Thread Gabor Szabo
hi, I've got this "not enough memory" twice today while trying to upgrade some packages using zef. Once when I ran 'zef upgrade zef' and then again when I ran 'zef --debug upgrade Bailador'. In both cases the error was shown during the running of the tests. After running the first command again

Re: not enough memory

2017-06-29 Thread Gabor Szabo
ilt on MoarVM version 2017.06 implementing Perl 6.c. > > LL > > > On Thu, Jun 29, 2017 at 4:37 PM Gabor Szabo wrote: >> >> hi, >> >> I've got this "not enough memory" twice today while trying to upgrade >> some packages using zef. >> O

accepting values on the command line

2017-07-01 Thread Gabor Szabo
I was hoping to wrote a simple script that would accept a bunch of filenames on the command line so I wrote: #!/usr/bin/env perl6 use v6; multi sub MAIN(@files) { say @files.perl; } $ perl6 code.pl6 Usage: code.pl6 $ perl6 code.pl6 abc Usage: code.pl6 $ perl6 code.pl6 abc def Usag

Re: accepting values on the command line

2017-07-01 Thread Gabor Szabo
On Sat, Jul 1, 2017 at 4:30 PM, Elizabeth Mattijsen wrote: > >> On 1 Jul 2017, at 15:15, Gabor Szabo wrote: >> >> I was hoping to wrote a simple script that would accept a bunch of >> filenames on the command line so I wrote: >> >> #!/usr/bin/env perl6

Travis for Perl 6

2017-07-07 Thread Gabor Szabo
Hi, as I understand if I use Travis for a Perl 6 project with language: perl6 perl6: - latest it will compile Rakudo and it takes bout 15 minutes. Is there a way to use a pre-compiled version of Rakudo that will be much faster? regards Gabor

Proc::Async .kill does not work on Bailador

2017-07-07 Thread Gabor Szabo
Hi, In a test of Bailador we are launching an instance of Bailador using Proc::Async and then when we are done we would like to kill the other process using .kill(9) Unfortunately this does not seem to have any impact on the process and it keeps running even after we send that kill signal. (at le

clone and deep copy of arrays

2017-07-11 Thread Gabor Szabo
Hi, I wonder what does .clone do and how can I create a deep copy or deep clone of an array? Reading https://docs.perl6.org/type/Array#method_clone I don't understand what does it do as the example there works without clone as well: suggest I'd need a > my @a = (1, 2, 3) [1 2 3] > my @b = @a; [

processing misunderstand or bug?

2017-07-15 Thread Gabor Szabo
Hi, I don't understand this, and I wonder could shed some light on the situation? I have the following experimental program: use v6; my $proc = Proc::Async.new($*EXECUTABLE, "-e", "sleep 2; say 'done'"); $proc.stdout.tap: -> $s { print $s }; my $promise = $proc.start; await $promise; If I r

Re: processing misunderstand or bug?

2017-07-15 Thread Gabor Szabo
Hi, Brandon, thanks for the explanation. If I understand correctly, then this means Ctrl-C sends a SIGINT to both the main process I ran and the child process I created using Proc::Async. When I run kill -2 PID it only sends the SIGINT to the process I mentioned with PID. (Which in my case was t

Re: processing misunderstand or bug?

2017-07-15 Thread Gabor Szabo
Thank you! This helped us solve a major headache we had with processes hanging around after the tests have finished: https://github.com/Bailador/Bailador/issues/194 regards Gabor

Memory usage

2017-07-19 Thread Gabor Szabo
Hi, is it possible to get the size of memory used by the current Perl 6 process? (From inside the code) Is it possible to get the size of the individual variables? Gabor

Re: Memory usage

2017-07-20 Thread Gabor Szabo
On Thu, Jul 20, 2017 at 12:37 PM, Timo Paulssen wrote: > On 19/07/17 21:52, Gabor Szabo wrote: >> Hi, >> >> is it possible to get the size of memory used by the current Perl 6 >> process? (From inside the code) >> Is it possible to get the size of the individual v

set (+) set = bag ?

2017-07-21 Thread Gabor Szabo
Looking at Sets https://docs.perl6.org/type/Set I was happy to see (-) to work as I expected, but I was surprised to see that (+) created a bag. Is that intentional? How can I get back the set. Is the only way using the unicode character ∪ ? (This is Rakudo version 2017.04.3 so I might be behind

Re: set (+) set = bag ?

2017-07-21 Thread Gabor Szabo
On Fri, Jul 21, 2017 at 2:07 PM, Timo Paulssen wrote: > You want (|) to get the union of two sets as a set. > > https://docs.perl6.org/language/setbagmix#Set%2FBag_Operators > > hth > - Timo Oh thanks. Now I see there is also a link just under the "Operators" section of the Set article. I might

Re: Need sub for `LWP::UserAgent`

2017-07-27 Thread Gabor Szabo
LWP::Simple now allows you to set the header of your request. See my recent article with examples: http://perl6maven.com/simple-web-client I hope this helps. regards Gabor On Fri, Jul 28, 2017 at 7:42 AM, Todd Chester wrote: > Hi All, > > I am trying to convert a p5 program to p6. What do I

Re: Need sub for `LWP::UserAgent`

2017-07-28 Thread Gabor Szabo
d to be able >>> to pass the following to the web page: >>> >>> Caller >>> Host >>> UserAgent >>> Referer >>> Cookies >>> >>> This is the p5 code I want to convert: >>> >>>http://vpaste.net/

Memory leak or just normal usage in Rakudo?

2017-08-03 Thread Gabor Szabo
Hi, I think I've mentioned earlier that we see some memory leaks in Bailador. I've started to investigate it by creating a small function that would use "ps" to get the memory usage of the current process. The first step was to do some sanity check and so I wrote a test script: https://github.co

Running external CLI tool and capturing output

2017-08-10 Thread Gabor Szabo
The documentation has a nice example showing how to run an external program and how to get its output or even its standard error. https://docs.perl6.org/type/Proc However it looks a lot more complex than the plain backtick Perl 5 has and more complex than the capture function of Capture::Tiny. IMH

Re: Running external CLI tool and capturing output

2017-08-10 Thread Gabor Szabo
/capture stderr, and don't > separate out the params. > > --Brock > > > On Thu, Aug 10, 2017 at 10:57 AM, Gabor Szabo wrote: >> >> The documentation has a nice example showing how to run an external >> program and how to get its output or even its st

Re: Getting to hello world?

2006-05-22 Thread Gabor Szabo
On Ubuntu it was quite straigt forward, I think this is everything I needed: sudo apt-get install subversion sudo apt-get install ghc6 mkdir ~/src cd ~/src # To compile Parrot svn co https://svn.perl.org/parrot/trunk parrot cd parrot perl Configure.pl --prefix=$HOME/parrot --cc=cc --cxx=CC --li

Re: Getting to hello world?

2006-05-22 Thread Gabor Szabo
On 5/23/06, James E Keenan <[EMAIL PROTECTED]> wrote: Gabor Szabo wrote: > On Ubuntu it was quite straigt forward, I think this is everything I > needed: > > sudo apt-get install subversion > sudo apt-get install ghc6 > Given that, in the above, you installed subversio

Re: Simple Print/Say Question

2006-05-23 Thread Gabor Szabo
On 5/23/06, Chris Yocum <[EMAIL PROTECTED]> wrote: 1|2|3 I would say something like: print $array[0] . "|" . $array[1] . "|" . $array[2] . "\n"; not the best way but it works. In Perl6 if say something like this: print @array[0] ~ "|" ~ @array[1] ~ "|" ~ @array[2] . "\n"; I get 1 2 3 | |

eval

2006-05-24 Thread Gabor Szabo
if eval "command" fails, where can I get the error message ? aka $@ in P5 ? Gabor

Re: perl 6 hosting?

2006-05-24 Thread Gabor Szabo
On 5/25/06, David Cantrell <[EMAIL PROTECTED]> wrote: I might be able to host a virtual machine with perl6 on it and give out accounts. I need to think about how to stop people being naughty though. Probably the easy part is to to remove the most dangerous calls such as eval and system and the

perldoc or pod parser in Perl6

2006-05-25 Thread Gabor Szabo
sligthly related to the Perl6 wiki issue, is there a perldoc command or a podparser implemented in Perl6 already ? Gabor

Re: 3 Good Reasons...

2006-05-26 Thread Gabor Szabo
[ I am sorry this will not respond directly to the message in question as I have not seen it in my inbox. I hope the attribution is correct though. ] On 5/26/06, Dr.Ruud <[EMAIL PROTECTED]> wrote: >> Not really. Think about a Cobol-to-Parrot translator. You could for >> example use Perl (glu

Pugs on Windows

2007-02-06 Thread Gabor Szabo
On http://www.pugscode.org/ when I click "Download" I get to the wiki on rakudo and (yippi it works again !) but the link to the Win32 binary builds of Pugs and Parrot brings me to http://jnthn.net/public_html/perl6/ which is 404. Gabor

Re: Perl 6 fundraising and related topics.

2008-02-23 Thread Gabor Szabo
00 USD once a year. How hard would it be to enable (Paypal?) recurring monthly payments to TPF? How hard would it be to allow people to target their money to a specific project/person? TPF can then still focus on raising money from corporations. Gabor -- Gabor Szabo http://www.szabgab.com/

Re: Perl 6 fundraising and related topics.

2008-03-07 Thread Gabor Szabo
Has anything happened in response to this discussion? Gabor

qx{} or backtick?

2008-06-18 Thread Gabor Szabo
Hi, If system() is now called run() What replaces backtick or qx{} ? Gabor

Padre 0.22, Padre::Plugin::Parrot and Padre::Plugin::Perl6 released!

2008-12-24 Thread Gabor Szabo
Hi, as this is relevant to you as well, let me send this announcement here too. Yesterday we have released v0.22 of Padre the Perl IDE written in Perl 5. http://padre.perlide.org/ There are many changes as usual but the two important ones for the Parrot/Perl 6 developers are related mostly to tw

Re: perl6 tutorials

2009-03-12 Thread Gabor Szabo
Hi Lars, let me add to what Carl wrote that think the blogs of Moritz Lenz are quite good http://perlgeek.de/blog-en/perl-5-to-6/ but admittedly they are for Perl 5 programmers. I also started to write an publish my Perl 6 training slides. It is very early and basic but you are welcome to fetch t

Re: Oslo Perl 6 Hackathon Notes

2009-04-13 Thread Gabor Szabo
Hi, On Mon, Apr 13, 2009 at 11:56 PM, Patrick R. Michaud wrote: > As some of you are aware, this week is the Nordic Perl Workshop [1], > and in the days immediately following the workshop we will have > the Oslo Perl 6 Hackathon [2].  During the first day of the hackathon > Gabor S

Re: [Padre-dev] Padre Perl6 Outline view

2009-04-27 Thread Gabor Szabo
On Sun, Apr 26, 2009 at 12:14 AM, Ahmad Zawawi wrote: > Hi people, > > I just finished Perl6 Outline view which i promised Gabor 3 or 4 > months ago :) So you can now see Perl 6 > packages/modules/grammars/roles in parent nodes and under them you can > see methods/submethods/subroutines/rules/toke

Re: Perl 6 IDEs

2009-12-07 Thread Gabor Szabo
2009/12/6 Víctor A. Rodríguez (Bit-Man) : > Hi perlsixers, > > we've been working a bit on Perl 6 lately [1] and some work, even the > basic coding, would be great if we use some IDE. > I'm a regular Eclipse user and EPIC seems the natural choice for me, > but it doesn't support Perl 6 (yet). Also

Re: Perl 6 IDEs

2009-12-07 Thread Gabor Szabo
2009/12/7 Gabor Szabo : > 2009/12/6 Víctor A. Rodríguez (Bit-Man) : >> Hi perlsixers, >> >> we've been working a bit on Perl 6 lately [1] and some work, even the >> basic coding, would be great if we use some IDE. >> I'm a regular Eclipse user and EPIC

Perl 6 IDE: Perl 5 XL 0.02 with Padre and the Perl 6 plugin

2009-12-08 Thread Gabor Szabo
Hi, Let me announce version 0.02 of the XL Perl 5 distribution (temporary name, I hope :-) for Linux that contains a full version of Perl 5.10.1, Padre 0.51 and the Perl 6 plugin of Padre. This is still very experimental of course. You can download it from here: http://perlide.org/download/bina

Re: Perl 6 IDE: Perl 5 XL 0.02 with Padre and the Perl 6 plugin

2009-12-09 Thread Gabor Szabo
On Wed, Dec 9, 2009 at 2:18 PM, Richard Hainsworth wrote: > Gabor, > > Thanx this is a good step forward. > > With simple files, no problem. I tried a larger file and got the following > in the terminal window: > > ./perl-5.10.1-xl-0.02/perl/bin/padre.sh > Thread 1 terminated abnormally: Undefined

Re: Rakudo Star - a useful, usable, "early adopter" distribution of Perl 6

2010-07-29 Thread Gabor Szabo
Congratulations and thank you! I have started to collect the links to the press coverage of the release: http://www.perlfoundation.org/perl6/index.cgi?rakudo_star_press Please help me collect all the important links! Gabor

flushing a file

2010-09-14 Thread Gabor Szabo
I updated my Perl 6 slides and Masak commented on a lot of my slides. Thank You! For example for writing to a file I had the following: #!/usr/bin/perl6 use v6; my $filename = "temp.txt"; my $fh = open $filename, :w; $fh.say("hello world"); Masak: > I'd recommend $fh.close; it's more importan

Questions for Survey about Perl

2010-12-28 Thread Gabor Szabo
k the greater Perl Ecosystem please let me know that too. regards Gabor Gabor Szabo http://szabgab.com/ Perl Ecosystem Group http://perl-ecosystem.org/

Re: Questions for Survey about Perl

2010-12-29 Thread Gabor Szabo
On Wed, Dec 29, 2010 at 11:02 AM, Richard Hainsworth wrote: > Gabor, > > there is a big gap between 'i wrote snippets' to 'i wrote modules'. How > about 'i have written programs to solve real problems' ? > > How about a question on involvement in the perl6 development process, so as > to see how m

Re: Questions for Survey about Perl

2011-01-01 Thread Gabor Szabo
On Sat, Jan 1, 2011 at 9:39 AM, Richard Hainsworth wrote: > > > On 01/01/11 03:41, Daniel Carrera wrote: >> >> On Sat, Jan 1, 2011 at 1:26 AM, Chas. Owens  wrote: >>> >>> On Wed, Dec 29, 2010 at 21:39, Xue, Brian  wrote: I want to adding one more answer about what are people waiting for

Re: Questions for Survey about Perl

2011-01-02 Thread Gabor Szabo
On Sun, Jan 2, 2011 at 9:48 PM, Guy Hulbert wrote: > > I'm not sure what 'TPF survey' is. http://survey.perlfoundation.org/ Gabor

Re: Questions for Survey about Perl

2011-01-02 Thread Gabor Szabo
(a mistakenly private exchange back to the list) On Sun, Jan 2, 2011 at 10:11 PM, Gabor Szabo wrote: > On Sun, Jan 2, 2011 at 10:08 PM, Guy Hulbert wrote: >> On Sun, 2011-02-01 at 21:51 +0200, Gabor Szabo wrote: >>> On Sun, Jan 2, 2011 at 9:48 PM, Guy Hulbert wrote: >&g

Re: Questions for Survey about Perl

2011-01-02 Thread Gabor Szabo
On Sun, Jan 2, 2011 at 6:27 PM, Patrick R. Michaud wrote: > On Sat, Jan 01, 2011 at 12:53:17PM +0100, Daniel Carrera wrote: >> On Sat, Jan 1, 2011 at 12:36 PM, Moritz Lenz wrote: >> >> > Given the current version number scheme (year.month), it's highly >> > unlikely that we'll ever see a Rakudo 1

Re: Questions for Survey about Perl

2011-01-02 Thread Gabor Szabo
On Sat, Jan 1, 2011 at 1:36 PM, Moritz Lenz wrote: > On 01/01/2011 10:15 AM, Gabor Szabo wrote: >> So for example: >> >> I'll start learning Perl 6  (select one or more that fits your opinion) >> *) when Larry Wall declares that Perl 6.0 is ready >> *) afte

Re: Questions for Survey about Perl

2011-01-02 Thread Gabor Szabo
On Sat, Jan 1, 2011 at 2:26 AM, Chas. Owens wrote: > On Wed, Dec 29, 2010 at 21:39, Xue, Brian wrote: >> I want to adding one more answer about what are people waiting for before >> they >> start using Perl 6. >> >> There hasn't an official release of PERL6.0, just Rakudo. I'm afraid of >> Raku

Re: Production Release - was Re: Questions for Survey about Perl

2011-01-05 Thread Gabor Szabo
Let me just give a probably totally irrelevant comment here. I think most of the open source projects have been in use by many people in production environment before the project had a "production release". I guess there are still places that think Linux is not good for their production environment

Fwd: FOSDEM - perl 6 critic

2011-02-22 Thread Gabor Szabo
hi, At FOSDEM I met Arne Wichmann who is a long time sysadmin, Debian developer and Perl user. We had a short chat in which he expressed his concerns about the complexity, the size (memory footprint) and speed of Perl 6, Without even taking in account the current memory requirements and speed of

Re: Fwd: FOSDEM - perl 6 critic

2011-02-22 Thread Gabor Szabo
On Tue, Feb 22, 2011 at 6:14 PM, Guy Hulbert wrote: > On Tue, 2011-22-02 at 17:57 +0200, Gabor Szabo wrote: >> For a better comparison that takes in account the features as well see >> http://www.modernperlbooks.com/mt/2010/07/an-accurate-comparison-of-perl-5-and-rakudo-star.html

Re: Fwd: FOSDEM - perl 6 critic

2011-02-22 Thread Gabor Szabo
On Wed, Feb 23, 2011 at 3:10 AM, Frank S Fejes III wrote: > On Tue, Feb 22, 2011 at 10:46 AM, Moritz Lenz wrote: > >> We can't be everybody's darling, as much as we would love to. > > That's a fair statement, however ... Let me just link to the recent blog post of chromatic: http://www.modernper

Trying to build Rakudo fails while using Strawberry Perl 5.12

2011-09-18 Thread Gabor Szabo
Hi, a fresh clone of the rakudo and then I tried to build it. (This is not the first run so some things might have already built. the process ends with a popup window saying: nqp.exe: The program can't start because libparrot.dll is missing from your computer. The output looks like this: C:\wo

DateTime::Utils failing test - force install with panda?

2012-06-27 Thread Gabor Szabo
Hi, I was trying to install DateTime::Utils using panda install DateTime::Utils but i failed in a test that is currently unrelated to what I wanted to use. Can I somehow force install or notest it? regards Gabor ps. the failure is this: ==> Fetching DateTime::Utils ==> Building DateTime::Uti

Re: DateTime::Utils failing test - force install with panda?

2012-06-27 Thread Gabor Szabo
On Wed, Jun 27, 2012 at 6:35 PM, Tadeusz Sośnierz wrote: > Hi Gabor, > --notest should work, ISTR having a closed ticket about this. Right, that worked. Panda even told me that there is such an option, I am just blind and noticed it only now. Thank you all! Gabor

Perl 6 Maven

2012-06-27 Thread Gabor Szabo
into good resource for learning Perl 6. It is currently a static web site generated with a perl 6 script using HTML::Template. More fun stuff to come. regards Gabor -- Gabor Szabo http://szabgab.com/

%*ENV is missing?

2012-06-28 Thread Gabor Szabo
Hi, I have all kinds of values in %*ENV but %*ENV is not there while echo $HISTFILE has value. Is this a bug or my misunderstanding? regards Gabor

Re: %*ENV is missing?

2012-06-28 Thread Gabor Szabo
On Thu, Jun 28, 2012 at 12:18 PM, Moritz Lenz wrote: > Hi, > > Am 28.06.2012 11:09, schrieb Gabor Szabo: > >> I have all kinds of values in %*ENV but %*ENV is not there >> while echo $HISTFILE has value. >> >> Is this a bug or my misunderstanding? > > &g

Panda with git:// or https:// ?

2012-06-28 Thread Gabor Szabo
In panda all the projects, where there is a source URL, are listed with their git:// url except of https://github.com/perlpilot/p6-File-Temp.git I am just wondering why, and if it would not be better if that was also using git:// Some project have no source URL: - Druid - GGE - HTML::Template - L

Re: Panda with git:// or https:// ?

2012-06-28 Thread Gabor Szabo
On Thu, Jun 28, 2012 at 5:15 PM, Tadeusz Sośnierz wrote: > On Thursday, June 28, 2012 14:32:58 Gabor Szabo wrote: >> In panda all the projects, where there is a source URL, are listed with >> their git:// url except of https://github.com/perlpilot/p6-File-Temp.git >

Re: Panda with git:// or https:// ?

2012-06-28 Thread Gabor Szabo
's fixed, but I haven't seen a reason to change back > to https either. > > Am 28.06.2012 16:48, schrieb Gabor Szabo: > >> On Thu, Jun 28, 2012 at 5:15 PM, Tadeusz Sośnierz >> wrote: >>> >>> On Thursday, June 28, 2012 14:32:58 Gabor Szabo wrote: &g

<    1   2