Re: clipboard and ps questions?

2017-02-23 Thread ToddAndMargo
On 02/17/2017 06:38 PM, ToddAndMargo wrote: Hi All, rakudo-star-0.0.2016.11-1.el7.x86_64 (Linux) Two questions about substitutes for system calls: 1) Is there a reliably Perl 6 way to copy things to the clipboard? (Perl 5 has a module, but it is unreliable and I have to make a syste

Re: clipboard and ps questions?

2017-02-23 Thread yary
On Thu, Feb 23, 2017 at 7:09 PM, ToddAndMargo wrote: > But ... it calls xclip (Linux), pbcopy (OS X), or clip (Windows), > so you might as well call these programs directly with qx or qqx > rather than having to use Panda to compile the module > > For instance, under Perl 5 (sorry no Perl 6 examp

Re: clipboard and ps questions?

2017-02-23 Thread ToddAndMargo
On 02/23/2017 06:08 PM, yary wrote: On Thu, Feb 23, 2017 at 7:09 PM, ToddAndMargo mailto:toddandma...@zoho.com>> wrote: But ... it calls xclip (Linux), pbcopy (OS X), or clip (Windows), so you might as well call these programs directly with qx or qqx rather than having to use Panda

I am having trouble installing panda

2017-02-23 Thread ToddAndMargo
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/panda.git $ cd panda # perl6 bootstrap.pl ==

Where is "Subject"?

2017-02-23 Thread ToddAndMargo
Hi All, Am I blind or is there nowhere to set the subject of an eMail in Net::SMTP? https://github.com/retupmoca/P6-Net-SMTP Many thanks, -T -- ~~~ Serious error. All shortcuts have disappeared. Screen. Mind. Both are blank. ~~~

Re: Where is "Subject"?

2017-02-23 Thread Moritz Lenz
Hi, On 24.02.2017 07:51, ToddAndMargo wrote: > Am I blind or is there nowhere to set the subject of an eMail > in Net::SMTP? > > https://github.com/retupmoca/P6-Net-SMTP You're not blind, just thinking at the wrong level. Net::SMTP expects you to have an email string that contains both the heade

Re: Where is "Subject"?

2017-02-23 Thread Luca Ferrari
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 simply sends it as a line "Subject: foo bar" f