Re: Name of IF style

2007-02-05 Thread Foo JH
David, Thanks also for the tip. Now I am doubly noob... > - UEdit column comment > select your code to comment > ALT+C (column edit) > type # and spaces as you like it > > ++ > David "Sniper" Rigaudiere > > > ___ > Perl-Win32-Users mailing list > Perl-W

Re: Name of IF style

2007-02-05 Thread Foo JH
Peters, Thanks for reminding me how noob I am at UE. But it's always good to know what I didn't know, as long as I know now. :) Huub Peters wrote: > My way of "fast" commenting code in UE: > > - Select the code to be commented > - ALT-E > - 3x arrow UP (2x = uncomment) > - Enter > > You could al

RE: Installing Crypt::Blowfish_PP and Crypt:Blowfish

2007-02-05 Thread Randy Kobes
On Mon, 5 Feb 2007, Fish, David wrote: > cpan> install Crypt::Blowfish > Running install for module Crypt::Blowfish > Running make for D/DP/DPARIS/Crypt-Blowfish-2.10.tar.gz > Is already unwrapped into directory \.cpan\build\Crypt-Blowfish-2.10 > Has already been processed within this session >

RE: Name of IF style

2007-02-05 Thread 田口 浩
I'm glad to hear how other people are doing what. I'm using "HIDEMARU" editor, famous & supreme one, but it does not have a build-in command to (un)comment perl code, so I creaded a HIDEMARU macro "PerlAltComment.mac" and set up it as "Ctrl + 1". This macro (un)comments the (commented)codes at onc

RE: Installing Crypt::Blowfish_PP and Crypt:Blowfish

2007-02-05 Thread Fish, David
Hello! I went to ppm install http://theoryx5.uwinnipeg.ca/ppms/Crypt-Blowfish.ppd and they are now at version 2.10. Thanks for your help. David Fish Senior Systems Analyst Property System Services Work (301) 380-3331 BlackBerry (301) 646-8985 [EMAIL PROTECTED] -Original Message- From:

RE: Installing Crypt::Blowfish_PP and Crypt:Blowfish

2007-02-05 Thread Fish, David
Hello! Thanks for your reply Rob. Here is the full output that I am getting. I tried to do it manually but it failed with the same errors. Since I don't have a unix emulator installed on my machine, could that be causing the commands to fail on XPSP2 box. cpan> install Crypt::Blowfish Running

Re: Installing Crypt::Blowfish_PP and Crypt:Blowfish

2007-02-05 Thread Sisyphus
- Original Message - From: "Fish, David" <[EMAIL PROTECTED]> . . > ### > CPAN.pm: Going to build M/MA/MATTBM/Crypt-Blowfish_PP-1.12.tar.gz > > Checking if your kit is complete... > Looks good > Writing Makefile for Crypt::Blowfish_PP >-- OK > Running make test > '

Installing Crypt::Blowfish_PP and Crypt:Blowfish

2007-02-05 Thread Fish, David
Hello! I am trying to install the either Crypt::Blowfish_PP or Crypt:Blowfish packages using the cpan utility and when I pull down the package that step is successful but the make test and make install is failing. The error message is below. I get the same error for both modules. I am installin

Re: Name of IF style

2007-02-05 Thread David 'Sniper' Rigaudiere
>> There are other ways to block out code in Perl. Personally, I use >> a vim macro and just comment out the block by marking the first line >> (type ma [mark 'a' position]) and going to the last line and executing >> the macro by hitting the key you have it bound to (I use #) >> > Lucky you. I am

Re: Name of IF style

2007-02-05 Thread Chris Wagner
A way I like to use to "comment out" code chunks is by turning them into string literals. Type an aposotrophe at the beginning of the code block and then another '; at the end of the block and everything in between is now a string literal called in void context. Just have to make sure there are n

Re: Name of IF style

2007-02-05 Thread Huub Peters
My way of "fast" commenting code in UE: - Select the code to be commented - ALT-E - 3x arrow UP (2x = uncomment) - Enter You could also type "n" instead of the 3x arrow UP which is faster offcourse but I got used to the above method.. TIMTOWTDI Huub Peters. - Original Message - From:

Re: Name of IF style

2007-02-05 Thread Foo JH
> There are other ways to block out code in Perl. Personally, I use > a vim macro and just comment out the block by marking the first line > (type ma [mark 'a' position]) and going to the last line and executing > the macro by hitting the key you have it bound to (I use #) > Lucky you. I am us