Re: Selling Perl Code

2013-02-20 Thread John SJ Anderson
On Feb 20, 2013, at 6:02 PM, Bill Stephenson wrote: > The "obfuscating code" thread touch on the larger point of selling an app > written in perl. I'd like to discuss that a bit because I have some thoughts > and questions. Putting on my List Mom hat, I have to say that this is off topic for

Selling Perl Code

2013-02-20 Thread Bill Stephenson
The "obfuscating code" thread touch on the larger point of selling an app written in perl. I'd like to discuss that a bit because I have some thoughts and questions. I don't really mind if someone buys my app code and then customizes it for their purposes. That's actually a great thing for the

Re: .profile not being read

2013-02-20 Thread Brandon McCaig
On Tue, Feb 19, 2013 at 07:29:49PM -0600, Gerard Walschap wrote: > I see. There is a .bashrc file in my home directory with the > line > - > source /Users/gerard/perl5/perlbrew/etc/bashrc > - > So I guess installing perl did override my .profile, although > I'm n

Re: Email::Mime not able to send array in mesg body

2013-02-20 Thread Brandon McCaig
On Wed, Feb 20, 2013 at 10:41:51AM -0800, Rajeev Prasad wrote: > hello follwoing code is sending empty email body. I am trying > to send HTML content in body of mesg. It works if I use a > string instead of array. I tried sending reference to > @email_body, but It simply printed array_ref in body.

Re: Email::Mime not able to send array in mesg body

2013-02-20 Thread Rajeev Prasad
thx. I did achieve it by using join... join('',@array) From: David Precious To: beginners@perl.org Sent: Wednesday, February 20, 2013 1:01 PM Subject: Re: Email::Mime not able to send array in mesg body On Wed, 20 Feb 2013 10:41:51 -0800 (PST) Rajeev Prasa

Re: Email::Mime not able to send array in mesg body

2013-02-20 Thread David Precious
On Wed, 20 Feb 2013 10:41:51 -0800 (PST) Rajeev Prasad wrote: > hello follwoing code is sending empty email body. I am trying to send > HTML content in body of mesg. It works if I use a string instead of > array So, er, use a string? Why are you trying to pass an array as the body? What are yo

Email::Mime not able to send array in mesg body

2013-02-20 Thread Rajeev Prasad
hello follwoing code is sending empty email body. I am trying to send HTML content in body of mesg. It works if I use a string instead of array. I tried sending reference to @email_body, but It simply printed array_ref in body. modules used are: use Email::MIME; use Email::Sender::Simple qw(sen

Re: .profile not being read

2013-02-20 Thread rjc
On Wed, Feb 20, 2013 at 10:12:47AM GMT, James Griffin wrote: > Whilst that is correct, for a beginners list I'd recommend using the > OS's package management system to install perl, should it not already > be installed; which on most systems, especially UNIX systems, is the > case. And since this,

Re: .profile not being read

2013-02-20 Thread James Griffin
- Brian Fraser [2013-02-20 07:01:35 -0300] - : > On Tue, Feb 19, 2013 at 10:29 PM, Gerard Walschap wrote: > > I see. There is a .bashrc file in my home directory with the line > > - > > source /Users/gerard/perl5/perlbrew/etc/bashrc > > - > > So I guess in

Re: .profile not being read

2013-02-20 Thread Brian Fraser
On Tue, Feb 19, 2013 at 10:29 PM, Gerard Walschap wrote: > I see. There is a .bashrc file in my home directory with the line > - > source /Users/gerard/perl5/perlbrew/etc/bashrc > - > So I guess installing perl did override my .profile, although I'm not sure > how.

Re: .profile not being read

2013-02-20 Thread Luca Ferrari
This is becoming a bit too long and somewhat not related to Perl (at least in my opinion). Quick and dirt suggesion: link .bash_profile to .profile to see if it solves the problem, and that means that the Bash is reading one file instead of the other. If that works, remove the other file (see below