Re: Where is "Subject"?

2017-02-24 Thread ToddAndMargo
On 02/23/2017 11:50 PM, Luca Ferrari wrote: On Fri, Feb 24, 2017 at 7:51 AM, ToddAndMargo wrote: Hi All, Am I blind or is there nowhere to set the subject of an eMail in Net::SMTP? I suspect it is implementing a quite low-level interface: smtp does not know anything about a subject, it simpl

Re: I am having trouble installing panda

2017-02-24 Thread ToddAndMargo
On 02/23/2017 10:41 PM, ToddAndMargo wrote: Hi All, I am having trouble installing "panda" on Fedora Code 25. $ perl6 -v This is Rakudo version 2016.11 built on MoarVM version 2016.11 implementing Perl 6.c. What is going on? Many thanks, -T $ git clone --recursive http://github.com/tadzik/p

Re: Where is "Subject"?

2017-02-24 Thread Luca Ferrari
Seems to me it has to work, but I would suggest a couple of little changes to make the source code more readable (see below): On Fri, Feb 24, 2017 at 9:15 AM, ToddAndMargo wrote: >for @Report -> $Line { $StringFullOfLineFeeds .= ( "$Line" ~ "\n" ); } here I would use join, much simpler than

Re: Where is "Subject"?

2017-02-24 Thread Brandon Allbery
On Fri, Feb 24, 2017 at 2:50 AM, Luca Ferrari wrote: > On Fri, Feb 24, 2017 at 7:51 AM, ToddAndMargo > wrote: > > Am I blind or is there nowhere to set the subject of an eMail > > in Net::SMTP? > > I suspect it is implementing a quite low-level interface: smtp does > not know anything about a su

Re: I am having trouble installing panda

2017-02-24 Thread Timo Paulssen
Hey Todd, > Net::SMTP (doesn't support SSL, but others do) > $ zef --force install > Net::SMTP Are you sure that's the case? i definitely see SSL-related verbiage in Net::SMTP's Readme. The simple interface offers an "ssl" and a "starttls" flag in its "new" method, and the raw interface has "swi

Geany and group comments

2017-02-24 Thread ToddAndMargo
Hi All, I do adore the Geany editor for coding, but ... it coughs on group comments =begin Introduction blah blah blah =end Introduction after the first "=" everything is blue and I lose my fancy colors that tell me when I forget a quote, etc.. Anyone know a way to keep my group comments and r

Re: I am having trouble installing panda

2017-02-24 Thread ToddAndMargo
On 02/24/2017 11:51 AM, Timo Paulssen wrote: Hey Todd, Net::SMTP (doesn't support SSL, but others do) $ zef --force install > Net::SMTP Are you sure that's the case? i definitely see SSL-related verbiage in Net::SMTP's Readme. The simple interface offers an "ssl" and a "starttls" flag in its

Re: Where is "Subject"?

2017-02-24 Thread ToddAndMargo
On 02/24/2017 04:05 AM, Luca Ferrari wrote: "$Subject$StringFullOfLineFeeds); Guilty as charged. I missed the quote at the end of the line. -- ~~ Computers are like air conditioners. They malfunction when you open windows ~~

Your thoughts on Padre?

2017-02-24 Thread ToddAndMargo
http://padre.perlide.org/ Any good for Perl 6? You have a better one you like?

Re: Your thoughts on Padre?

2017-02-24 Thread Lloyd Fournier
I haven't heard much on Padre. I use emacs, which gets the job done for me. A fair bit of work has gone into making an atom mode that works. See: https://github.com/MadcapJake/language-perl6fe LL On Sat, Feb 25, 2017 at 9:46 AM ToddAndMargo wrote: http://padre.perlide.org/ Any good for Perl 6?

Re: Your thoughts on Padre?

2017-02-24 Thread Brandon Allbery
On Fri, Feb 24, 2017 at 5:45 PM, ToddAndMargo wrote: > http://padre.perlide.org/ > > Any good for Perl 6? You have a better one you like? Padre's maintained? I thought it died years ago. -- brandon s allbery kf8nh sine nomine associates allber...@gmail.com

Re: Your thoughts on Padre?

2017-02-24 Thread yary
I installed and used Padre a little bit last year. It showed promise and seems to have had quite a bit of activity in its day. As of now it works for basic editing in perl6 but it seemed a little rough, and as Brandon noted it isn't maintained, fixes would be DIY.

Re: Your thoughts on Padre?

2017-02-24 Thread ToddAndMargo
On 02/24/2017 04:58 PM, yary wrote: I installed and used Padre a little bit last year. It showed promise and seems to have had quite a bit of activity in its day. As of now it works for basic editing in perl6 but it seemed a little rough, and as Brandon noted it isn't maintained, fixes would be D

Re: Your thoughts on Padre?

2017-02-24 Thread yary
Not really, and since I am not doing anything major in perl6, I still fire up Padre in a while. In general emacs, but I never installed any perl6 mode for it, I just use "fundamental"

Re: Your thoughts on Padre?

2017-02-24 Thread ToddAndMargo
On 02/24/2017 05:47 PM, ToddAndMargo wrote: On 02/24/2017 04:58 PM, yary wrote: I installed and used Padre a little bit last year. It showed promise and seems to have had quite a bit of activity in its day. As of now it works for basic editing in perl6 but it seemed a little rough, and as Brando

Re: Geany and group comments

2017-02-24 Thread ToddAndMargo
On 02/24/2017 01:56 PM, ToddAndMargo wrote: Hi All, I do adore the Geany editor for coding, but ... it coughs on group comments =begin Introduction blah blah blah =end Introduction after the first "=" everything is blue and I lose my fancy colors that tell me when I forget a quote, etc.. Anyo

Re: Your thoughts on Padre?

2017-02-24 Thread vijayvithal jahagirdar
my alternative is Vim with a bunch of plugins to support (all) the features quoted at http://padre.perlide.org/features/ If anyone is interested my .vimrc is available at https://github.com/jahagirdar/misc-scripts/blob/master/.vimrc On Sat, Feb 25, 2017 at 7:17 AM, ToddAndMargo wrote: > On 02/2