Re: Is there any funny game that was written in Perl? Thanks.

2006-05-24 Thread Dani Pardo
What about frozen bubble? http://www.frozen-bubble.org/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: A MySQL Question

2004-05-21 Thread Dani Pardo
can use CREATE FUNCTION. But these functions are created in C (i guess), and are compiled in a dynamic library (.so) into mysql. --- Dani Pardo, [EMAIL PROTECTED] Enplater S.A -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: A MySQL Question

2004-05-21 Thread Dani Pardo
the domain that has more visits per day gets value 1, the second gets value 2, etc.. Can you just omit this fileld? So you don't need to the script that recalculates :) I mean, can you forget about the rank filed and only work with (viewcount/(($now - startedTime)/86400)) (wiews per day)? --- Dani Pardo, [EMAIL PROTECTED] Enplater S.A -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: How to read a pdf file in perl

2004-05-14 Thread Dani Pardo
On Friday 14 May 2004 09:33, Mallik wrote: > Dear Friends, > > I want to parse a pdf file as we do for text files using perl. Can anyone > help me out? Hi, you may check PDF::API2, it's a pretty nice module. --- Dani Pardo, [EMAIL PROTECTED] ENPLATER S.A -- To unsubscrib

Re: File Monitoring

2004-05-10 Thread Dani Pardo
NYIMI Jose (BMB) wrote: Is this a joke ? :-) Here's a typical diff output: 17,18d16 < (who writes under the < pseudonym "Omniscient Trash") 45,46c43,44 < soon every Tom, Dick or Harry < will be writing his own Perl book --- soon every Tom, Randal and Larry will be writing their own Perl book

Re: File Monitoring

2004-05-10 Thread Dani Pardo
Hi, I've done this app. What I do is put into a file the output of ls -lR /directory_to_watch. Then use diff to compare the results. This gives the advantage that, if a line starts with +, then a new file has been added. If it's -, a file has been deleted :) $ ls -lR > listing1.txt $ ls -l

Re: SOLVED. RE: Another simple DBI question: INSERT a NULL (MSODBC)?

2004-05-06 Thread Dani Pardo
sier use this: $SQL="INSERT INTO table(field1, field2, filed3) values(value1, value2, value3)"; --- Dani Pardo, [EMAIL PROTECTED] Enplater S.A -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

formats and write()

2004-04-29 Thread Dani Pardo
; But, as you may have guessed, I need to format $line{1} with Perl formats. But write() writes to a filehandle, and I need to store the result into the scalar variable, How can I do it? TIA, --- Dani Pardo, [EMAIL PROTECTED] Enplater S.A -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additio