RE: Microsoft Visual Toolkit, not quite built.

2005-10-26 Thread Konovalov, Vadim
> > and I saw good descriptions at > > perlmonks site. > > > > Ok. I had found nothing helpful at perlmonks about this, other than > "use vcvars", which I seem to be. I meant http://perlmonks.org/?node_id=387070 Although I replied that those are low quality, those were improved, yet advices are

RE: Microsoft Visual Toolkit

2005-10-25 Thread Konovalov, Vadim
> I have a copy of XP Pro: I just installed ActiveState Perl, Visual C+ > + Toolkit 2003, the MS SDK and the .NET SDK (On my Virtual PC > installation on my mac, btw. Only took about 10 hours, on and > off =-) > trying to build parrot using the toolkit command prompt, I get: ... > > Y:\>

RE: Pugs MetaClass Model Picture

2005-08-15 Thread Konovalov, Vadim
> # Pugs - Lambda Camels > http://pugscode.org/images/lambdacamels.png I wonder do greek symbols have any meaning? I was expecting to see greek letters in a sequence of: pi, epsilon, rho, lambda, so it could likely to be spelled as "perl" In other words, "\x{03c0}\x{03b5}\x{03c1}\x{03bb}"

RE: Pugs makefile minor inconvenience: pugs.exe.bat

2005-08-11 Thread Konovalov, Vadim
> On 5/28/05, Autrijus Tang <[EMAIL PROTECTED]> wrote: > > On Sat, May 28, 2005 at 09:24:13PM +0200, Gregoire Pean wrote: > > > "make install" with Pugs creates a pugs.exe.bat file in Perl bin > > > directrory, which is useless and don't work since > pugs.exe is not a > > > Perl script. It should

pugs-6.2.8 problem with file slurp.

2005-07-20 Thread Konovalov, Vadim
I was trying using pugs at work and stepped into a problem. I am reading a file with my @titles = @*ARGS[1].slurp; and then just @titles.say I am very fond of such a quick way of reading a file instead of every time dance of "$fh = open...; <$fh>" a problem is - my file contains characters /[

RE: what slow could be in Compress::Zlib? (was RE: 5.004_xx in th e wi ld?)

2005-07-04 Thread Konovalov, Vadim
> > > What is "(painfully slow) rewrite"? > > > > I think Paul means that it is taking him a long time to > write the code, > > not that the code itself is slow. > > Correct. Looks like I answered the wrong question :-) Indeed I understood incorrectly first time, but you shed quite many light o

what slow could be in Compress::Zlib? (was RE: 5.004_xx in the wi ld?)

2005-07-04 Thread Konovalov, Vadim
> I've just been through the should-I-shouldn't-I-support-5.4 with my > (painfully slow) rewrite of Compress::Zlib. In the end I ... I always thought that Compress::Zlib is just a wrapper around zlib which in turn is C and developed elsewhere (and in stable state for a long time now). What is "

RE: PXPerl 5.8.6-3 released with Windows binaries of Pugs 6.2.6 a nd Parrot 0.2.0

2005-06-05 Thread Konovalov, Vadim
> I try to stick to the hectic pace at which Pugs evolves :) > > http://pixigreg.com/?pxperl is it possible to have an alternative approach of just zip-packed binaries? Also, there is mentioned some Intel compiler for better performance... how it is supported? For the best of my knowledge, only

RE: (OT) Re: Perl development server

2005-05-27 Thread Konovalov, Vadim
> Icelandic: laukur (Incidentally, none of you will ever guess how to > correctly pronounce that.) Russian: luk (pronounced similar to English "look"). For some reason, Icelandic translation of onion is much closer to Russian than any other variants...

RE: RFC 263 (v1) Add null() keyword and fundamental data type

2000-09-20 Thread Konovalov, Vadim
> >undef null > > > >$a = undef; $a = null; > >$b = 1; $b = 1; > >$c = $a + b; $c = $a + $b; > > > >$c is 1 $c is null I'm quite sure that