>From here:
http://perldoc.perl.org/utf8.html
I wonder if utf8::upgrade() might do the trick. With write_file() in
File::Slurp, passing it a hash with binmode set to :utf8 will get it to write
UTF8 output to disk. Perl has in general very good internal UTF support.
An aside: You know that lea
On 11/08/2012 12:43, Shawn H Corey wrote:
No, @ISA is used only by Exporter.pm
Exporter makes no use of @ISA at all. This array is a per-package
variable used by Perl internally to implement object-oriented
inheritance. It is very often used to make a package a subclass of
Exporter, but that i
Umm... Are you aware that binary attachments on usenet aren't actually *in*
binary? They're encoded in ASCII using one of a number of different methods.
They're just text, until decoded on the receiving end.
I recommend looking into File::Slurp and CHI. CHI basically implements the
entire cach
Thank you. I am confused about how to send variables to this ext.pl and get
values (scalars) back into main.pl
another confusion is from web the cgi will run, i want to check cookies in
external subroutine file and redirect to some website based on some condition,
or gives some values back to c
On Sat, 11 Aug 2012 02:49:56 -0400
shawn wilson wrote:
> On Aug 10, 2012 11:41 PM, wrote:
> >
> > > I mean to ask, wether they will clash with the same loaded modules
> loaded
> > > in calling script?
> > >
> >
> > No. they are loaded only once.
> >
>
> Well, they will both be in ISA to look up
Hi All,
I'm using Net::NNTP to transfer articles from servers. My aim is to write
an NNTP proxy.
I obtain the article from my parent news server, write the file to disk, and
serve the current, as well as future requests for that article from the
local file on the disk. My results are very incon