Re: DBD::mySQL make fails

2002-10-15 Thread George Gunderson
On Monday, Oct 14, 2002, at 20:09 US/Eastern, Wiggins d'Anconia wrote: > It would appear that the "mysql.bundle" file is the output file: > > "cc -o blib/arch/auto/DBD/mysql/mysql.bundle" > > Is this possibly a permissions issue? or maybe a non-existing path, > though I would think cc would try

DBD::mySQL make fails

2002-10-13 Thread George Gunderson
Hello, I'm trying to get mySQL running on my PowerMac running Mac OS X v10.2 with developer tools installed. I've installed DBI.pm and the mySQL binary successfully. mysqld seems to be starting up properly (it appears in top). However, when I try to install DBD-mySQL.pm, it fails due a miss

Re: hiding a URL

2002-09-10 Thread George Gunderson
On Tuesday, Sep 10, 2002, at 18:45 US/Eastern, Michael Fowler wrote: > On Mon, Sep 09, 2002 at 11:56:59PM -0600, Jose Malacara wrote: >> Is there an easy way to hide ,or spoof, a URL when outputting to html >> with >> perl? For example if I was running a script in my cgi-bin directory, >> but

Re: hiding a URL

2002-09-10 Thread George Gunderson
On Tuesday, Sep 10, 2002, at 01:56 US/Eastern, Jose Malacara wrote: > Is there an easy way to hide ,or spoof, a URL when outputting to html > with > perl? For example if I was running a script in my cgi-bin directory, > but > wanted the URL to appear differently so as to hide location of my >

Re: hiding a URL

2002-09-10 Thread George Gunderson
On Tuesday, Sep 10, 2002, at 01:58 US/Eastern, [EMAIL PROTECTED] wrote: > use mod_rewrite. > Here's a URL for more info! GmG -- Nothing good comes from the earth anymore. -Jet Black, Cowboy Bebop, 2071 -- To unsubscribe, e-mail: [EMAIL PR

Re: Dear answerers (was Re: )

2002-06-24 Thread George Gunderson
On Monday, June 24, 2002, at 02:23 , Jenda Krynicky wrote: > > I would like to ask all the people who invest their time and answer > the questions in this list to ignore the posts whose authors were too > lazy to specify a meaningful subject. > > If they do not get any reply, they might start won

Re: Perl for Mac

2002-03-07 Thread George Gunderson
On Thursday, March 7, 2002, at 06:44 , Michael Maibaum wrote: > On Thu, Mar 07, 2002 at 10:02:16PM +, Naveen Parmar wrote: >> Any good text editors for Mac? >> >> I am interested in something that will display at least line #s. > > BBEdit. I use BBEdit, just make

Re: some questions about for, foreach

2002-03-01 Thread George Gunderson
On Friday, March 1, 2002, at 10:22 , John Edwards wrote: > I think it lies in the history of programming. Traditionally for loops > look > like this (when written in perl) > > for($i=1; $i<=100; $i++){ >print "$i\n"; > } One could write, as an alternative to for: $i=1; while ($i<=100) {