Re: cd boot

2004-10-26 Thread ZEuS
On Tue, October 26, 2004 10:15, Danilo Ronci said: Ora non posso controllare. Winzozz non c'è più! :-) Nessuno lo rimpiangerà... :-D Saluti!

Re: array of references

2004-10-25 Thread Zeus Odin
push @array, [] while @array 10; also works. Ed Christian [EMAIL PROTECTED] wrote... push (@array,[]) for (1..$num_child_arrays); For more info: perldoc -f push -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: counting gaps in sequence data

2004-10-24 Thread Zeus Odin
This is a really cool problem. See solution below. Michael, next time post some code please. Thanks, ZO -- #!/usr/bin/perl use warnings; use strict; use Data::Dumper; my(%gap, $animal); while (DATA) { if (/(\w+)/) { $animal = $1; } else { while (/(-+)/) {

Re: What search string do I use on google or perldoc so that I know how to display a specified range of lines from a file (like sed -n 24, 48p filename)?

2004-10-23 Thread Zeus Odin
The following prints lines 24-48 of filename: prompt perl -ne print if 24..48 filename Ken Wolcott [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] A fishing pole question rather than a fish question :-) What search string do I use on google or perldoc so that I know how to display

Re: Parsing multiline data

2004-10-23 Thread Zeus Odin
Make sure each section is separated by a new line, including the last section. If there is no new line at the end of the file, the last record will be omitted. The following puts each field in %data with the field name being the key and the field value as the key's value, and it splits each line

Re: How to store the out put in StringBuffer

2004-10-23 Thread Zeus Odin
First, always use warnings; use strict; at the top of each program you write. Second, what are you trying to do exactly? Third, some observations: 1) You use $j and $pos exactly one time. Why are they present? 2) You seem to be looping to 10 using $i. Why not instead use for my $i(1 .. 10) {

Re: how the print the first 7 letter of file name

2004-10-23 Thread Zeus Odin
I'm assuming you want the word after the last \ but before the first _. Right? If so: #!/usr/bin/perl use warnings; use strict; my $FILENAME='C:\Developer\view_local\local_nt\FDAFDSAFDSASDFA\ASDFDAFSASDF\New Process_date_22-oct-2004.log'; my $file = (split /_/, (split /\\/, $FILENAME)[-1])[0];

RE: how the print the first 7 letter of file name

2004-10-23 Thread Zeus Odin
Please reply to the group so that others may answer also. :-) Your solution will return only the first 7 characters of the filename. My solution solution returns all characters after the last slash (first you used \ now you are using /) and before the first _ (underscore). Just keep this in mind.

RE: How to store the out put in StringBuffer

2004-10-23 Thread Zeus Odin
); } -Original Message- From: Zeus Odin [mailto:[EMAIL PROTECTED] Sent: 23 October 2004 12:29 To: Kalkunte-Venkatachala, Sreedhar Subject: Re: How to store the out put in StringBuffer First, always use warnings; use strict

RE: How to store the out put in StringBuffer

2004-10-23 Thread Zeus Odin
to store the out put in StringBuffer Hi thank you very much for the mail. but just tme how store print $_ foreach @tail; this in a variable. So when I do DoChat($variable). it will print the complete information in one shot. Regards Sreedhar -Original Message- From: Zeus Odin [mailto

Re: How to store the out put in StringBuffer

2004-10-23 Thread Zeus Odin
What I think you are saying is that you are searching a log file for an error. If you find an error, you want to print out the last 10 lines (that would be the error line and The previous 9 lines) and the next 10 lines (total of 20 lines). Is this correct? You have to state the entire problem

RE: How to store the out put in StringBuffer

2004-10-23 Thread Zeus Odin
called $var (the result of print $_ foreach @tail;). because I can print the complete output in one shot. Regards Sreedhar -Original Message- From: Zeus Odin [mailto:[EMAIL PROTECTED] Sent: 23 October 2004 14:36 To: Kalkunte-Venkatachala, Sreedhar Subject: Re: How to store the out put

RE: How to store the out put in StringBuffer

2004-10-23 Thread Zeus Odin
-Original Message- From: Zeus Odin [mailto:[EMAIL PROTECTED] Sent: 23 October 2004 17:17 To: Kalkunte-Venkatachala, Sreedhar; [EMAIL PROTECTED] Subject: RE: How to store the out put in StringBuffer If you want to print to a handle, you must print CHAT text; If all of your text

RE: How to store the out put in StringBuffer

2004-10-23 Thread Zeus Odin
The following should do what you want. @print is an array of array references. You have to read the documentation, learn what it is, and how to use it. Now would be a good time to learn the Perl debugger so you can step through my code. Your assignment is to print @print in your DoChat() routine.

Problemi con il suono

2004-10-22 Thread ZEuS
Ciao a tutti, premetto che mi sono appena iscritto a questa lista, pertanto perdonate eventuali toppate... Vengo al dunque: ho appena finito di installare una Debian Sarge sul mio nuovissimo portatile (un Packard Bell) che va a sostituire il vecchio PIII Asus (Debian Sid): tutto funziona nel

grant tables update backward compatibility

2004-09-03 Thread zeus
Hi there, I have been using mysql 3.23.58, and I want to upgrade to 4.0.20. My question is this: after I run the script to upgrade the grant tables to support the new privilgeges, can I then revert back to 3.23.58 seamlessly or will I need to readjust the grant tables. Thanks in advance.

Bug#230422: Rapport à l'expéditeur

2004-09-02 Thread Zeus/Madrid%MADRID
Information sur l'incident:- Base de données:f:/Lotus/Domino/Data/mail.box Expéditeur:[EMAIL PROTECTED] Destinataires: [EMAIL PROTECTED] Objet:Mail Delivery (failure [EMAIL PROTECTED]) Date/Heure:02/09/2004 22:30:40 Le fichier joint message.scr que vous avez envoyé aux

Re: get last record in a file

2004-08-26 Thread Zeus Odin
The following solution isn't as short as the other solutions, but it will allow you to maintain the order of the original file: #!/usr/bin/perl use warnings; use strict; my($last, $last_rec); while (DATA) { my @data = split; if ($last and $data[0] != $last) { print $last_rec; } elsif

Re: date calculations

2004-08-18 Thread Zeus Odin
One small thing. How can today and yesterday have the same date? Their very definitions denote that these two days are different (except for specific calendar changes, like the readjustment of the calendar to increate precision). If you stick with Today and Yesterday, it might be worth

Re: Counting characters in a thread

2004-08-15 Thread Zeus Odin
The fastest would probably be: $text = '' if $text =~ tr/%// 10; -ZO [EMAIL PROTECTED] wrote ... How would I empty $string if it contained more than ten % characters? In other words -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Checking if URL is on a list.

2004-08-14 Thread Zeus Odin
Wiggins d Anconia [EMAIL PROTECTED] wrote in message ... if ($siteurl2 =~ /^(?:www.)?$FORM{'siteurl'}\/?$/) { ^^^ Keep in mind that this solution requires that the URL does not begin with http://;. The . above needs to be backslashed; including www., it also OPTIONALLY

Re: Checking if URL is on a list.

2004-08-13 Thread Zeus Odin
Hi, J77, Your question is not exactly clear, but I will try to answer what *I* think you are asking. First, I will assume that you have a list of web sites with and without http://www.; that you want to index like so: http://www.microsoft.com http://ibm.com www.ebay.com yahoo.com Second, I will

Re: Choosing only numbers from the output

2004-08-04 Thread Zeus Odin
I think a hash is more apt for this problem, but changing to (an) array(s) is not difficult at all. The data as posted had white space trailing some of the digits after the colons. I found this worked better for me. Your results may vary. ;-) #!/usr/bin/perl use warnings; use strict; my %tag;

Re: Choosing only numbers from the output

2004-08-04 Thread Zeus Odin
You are correct. I did not properly look at the regex you passed to split. Gunnar Hjalmarsson [EMAIL PROTECTED] wrote The data as posted had white space trailing some of the digits after the colons. Yes, but how would that matter? Please read the second sentence in perldoc -f split. --

Re: Searching and replacing text

2004-08-02 Thread Zeus Odin
Could you post the code you have written thus far? It would be a great help. -ZO Chris Richards [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi Everyone, This is my first post to the list Please be gentle :) Just so we are all clear... I am completely lost right from the start

Re: Regular Expressions - multiplelines

2004-08-01 Thread Zeus Odin
Another alternative: #!/usr/bin/perl use warnings; use strict; my $eol = '[\n\r\x0A\x0D]'; $/ = ''; while (DATA) { print /^(.*):$eol([^ ]*)/ ? $1/$2\n : $_; } __DATA__ $/Dev/something/something.com/blah1: default.asp userExc 26/07/04 1:42p

Re: getting list of all .html files in a directory and its directories

2004-07-30 Thread Zeus Odin
In DOS: perl -n0 -e push @b, $ARGV unless /%(?:perl|init)/; END{print \@b\} file1.html file2.html file3.html In *nix (untested): perl -n0 -e 'push @b, $ARGV unless /%(?:perl|init)/; END{print @b}' *.html Andrew Gaffney [EMAIL PROTECTED] wrote in message That still doesn't appear to do what I

RE: [SOLUTION] how can i generate 10 unique (non repeating) numbers

2004-07-27 Thread Zeus Odin
[mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 6:21 AM To: Zeus Odin Cc: [EMAIL PROTECTED] Subject: Re: [SOLUTION] how can i generate 10 unique (non repeating) numbers Hmm, I may be wrong, but I don't think this is as random as it could be. The problem is that every time you remove

RE: [SOLUTION] how can i generate 10 unique (non repeating) numbers

2004-07-27 Thread Zeus Odin
] Sent: Tuesday, July 27, 2004 5:37 AM To: Zeus Odin; [EMAIL PROTECTED] Subject: RE: [SOLUTION] how can i generate 10 unique (non repeating) numbers Hi Zeus, Your code and explanation are good. Incase I want 10 non repeated random numbers between 0 and 1 what needs to be done

Re: [SOLUTION] how can i generate 10 unique (non repeating) numbers

2004-07-26 Thread Zeus Odin
If you want to do it without the use of a module, you could (1) add the 15 numbers to an array (the deck) (2) choose a random number from the deck (3) remove that random element and add it to another array (your hand) (4) repeat until done (your hand has 10 numbers) This sounds exactly like the

RE: How efficient is this permutation algorithm?

2004-07-09 Thread Zeus Odin
; # Is this efficient? push @circular, splice @circular, 1, 1; } # Is this efficient? push @circular, shift @circular; } } } -Original Message- From: David J Kirol Sent: Sunday, June 27, 2004 9:30 PM To: Zeus Odin Subject: Re: How efficient

Test. Please ignore.

2004-07-01 Thread Zeus Odin
This is test. Outlook Express gives the annoying warning, 'A program is trying to access e-mail addresses stored in Outlook. Do you want to allow this?' -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: [PHP] Protecting database passwords

2004-06-30 Thread zeus
Hashing ... but i guess he wants to protected the password needed to access the DB not a PW stored in the DB. Yes, this is what I am concerned about, access to the file by local users on the server. Hashes won't help me. -Bob -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Protecting database passwords

2004-06-30 Thread zeus
argh. just make the file readable by root and the user that runs apache/php and you're done. Which unfortunately is installation specific. I.e., if I am distributing a program and want to install a file which the user modifies to contain the passwords, I have to direct the user to manually

Perl RPM X binary

2004-06-28 Thread Zeus
by mrtg-2.9.17-13 perl(vars) is needed by mrtg-2.9.17-13 Any idea ? []s Zeus -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

How efficient is this permutation algorithm?

2004-06-27 Thread Zeus Odin
Hello, group! I had a little free time today and was re-reading parts of Perl Cookbook. I came across section 4.19. Program: permute and thought it would be interesting to write my own version of permute before reading the Cookbook's recipe. Of course, I had just read 4.16. Implementing a

Re: Printing outside of foreach...

2004-06-26 Thread Zeus Odin
Daniel Falkenberg [EMAIL PROTECTED] wrote: Hello again, Hi. *Always* put the following at the top of your code: use strict; # requires declaration of all variables use warnings; # gives warnings on mistakes and suggestions These two lines will save you countless hours of debugging

RPM perl X binary perl

2004-06-26 Thread Zeus
by mrtg-2.9.17-13 Any idea ? []s Zeus -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

Re: printing array elements in columns

2004-06-21 Thread Zeus Odin
Guruguhan N [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi All, Hello. Please read Charles K. Clarkson's comments. They are spot on. I will not repeat them here. In reply to my own posting, I have written a code like the one given below. @X = (1 .. 30) $n_el = scalar(@X);

Why are timelocal() and localtime() not exactly opposite?

2004-06-20 Thread Zeus Odin
Hello, group! It is, like all other days, a great day to be a Perl programmer. Can anyone shed some light on the following? #!/usr/bin/perl use warnings; use strict; use Time::Local; # localtime cannot handle year 1903, but timelocal can print scalar timelocal(0,0,0, 31, 11, 2003), \n; print

Re: getting online information....

2004-06-18 Thread Zeus Odin
This email follows this format: 1. Suggestions and items you need to read in order to understand the code are listed first. 2. Suggestions about properly posting a question are next. 3. Finally, the code that does all that you ask is at the bottom. 1. Please read or do the following: (a)

Re: getting online information....

2004-06-14 Thread Zeus Odin
This is an update if you have been following this thread. From: aditi gupta [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 12:48 AM To: Zeus Odin Subject: RE: getting online information hi, there are following 12 fields: 1 gi|37182815|gb|AY358849.1| 2

Re: getting online information....

2004-06-13 Thread Zeus Odin
Your code can be simplified quite a bit if I correctly understand what you were actually trying to do. I have taken a stab at it but had to guess at your intent with the layout of the fields. Let's clear up the field layout. Your data have 9 fields (at least to the untrained eye), separated by the

Re: Elegant quoted word parsing

2004-06-12 Thread Zeus Odin
But this output is not at all similar to the output desired in the original post by Beau E. Cox. Your solution merely splits on all delimiters. -ZO David Storrs [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Personally, I would do this: #!/usr/bin/perl use Text::ParseWords; my

Re: Concatenating line into array problem

2004-06-11 Thread Zeus Odin
This works: ---BEGIN CODE--- #!/usr/bin/perl use warnings; use strict; $/ = ''; while (DATA) { s/(.*?\n.*?)\n/$1/s; print; } __DATA__ YNL331C CAATATGCGAGGGACCTACATGTTGA CATGACAATGAATTCTATTGAA YKL071W ATAATTATTCCTGTTTCTTTAACCTG GTGTACAAACACTTAAGC ---END CODE---

Re: Elegant quoted word parsing

2004-06-11 Thread Zeus Odin
This is certainly shorter, but I doubt it fully adheres to your intent. It produces the same output as your procedure for this string, but it is possible that I changed some of the meaning of what you were trying to do: ---BEGIN CODE--- #!/usr/bin/perl use warnings; use strict; print

ftp install problem

2004-06-03 Thread zeus
Hi there, I am trying to install FreeBSD 4.9 over ftp. I have a LAN connection over ethernet and I have set the option to configure using DHCP. When I get to the screen asking for IP, gateway, nameserver, etc. the correct values are filled in, but when I try to continue I get a message that

Re: Loading Scalar Vars with Text - Readability

2004-06-03 Thread Zeus Odin
If Clause is literal and the numbers are in numerical order from A to N (where both A and N are known), I would use: my $longlist = join '|', map { Clause$_ } (1..20); If Clause is literal and the numbers are not numerical: my $longlist = join '|', map { Clause$_ } qw(5 20 3 6 9 11 7 13 19);

data disappeared in mysql on XP

2004-05-28 Thread Centaur zeus
Hi all, I have just installed mysql 4.0 on my XP. I inserted data into the db by java. Then I used 1) command prompt to select from the table 2) MysqlCC 3) JDBC to retrieved the inserted data. It's ok. However, after a while (like rebooting my notebook, or hibernate my notebook... but not

Scoring documents by Click Count

2004-05-05 Thread Centaur zeus
Hi all, I want to integrate lucene into my web app. I would like to increase the score of the document when more people click on it. Could I implement that in lucene ? Thanks. Perseus _ MSN 8 helps eliminate e-mail viruses. Get

Rapport à l'expéditeur

2004-04-14 Thread Zeus/Madrid%MADRID
Information sur l'incident:- Base de données:f:/Lotus/Domino/Data/mail.box Expéditeur:debian-user-swedish@lists.debian.org Destinataires: zeus/[EMAIL PROTECTED] Objet:Re: Word file Date/Heure:15/04/2004 05:02:09 Le fichier joint document_word.pif que vous avez envoyé aux

Rapport à l'expéditeur

2004-03-02 Thread Zeus/Madrid%MADRID
Information sur l'incident:- Base de données:f:/Lotus/Domino/Data/mail.box Expéditeur:debian-user-swedish@lists.debian.org Destinataires: [EMAIL PROTECTED] Objet:Re: Here is the document Date/Heure:02/03/2004 12:22:46 Le fichier joint document_full.pif que vous avez envoyé aux

Re: RES: [cf-brasil] dados trocados ..

2004-01-29 Thread Zeus
Prezada Michelle, Acho que seria meio dificil visto que uma DSN chama um banco completamente diferente. Que eu saiba, e por favor me corrijam se estiver enganado, Você pode ter quantas DSN's diferentes no memso domínio para BD's diferentes sem que exista a possibilidade de que uma coloque os

[cf-brasil] Datasource Postgresql

2004-01-29 Thread Zeus
Bom dia... Estou com uma grande dúvida.. coloquei um banco de dados no postgresql e funciona perfeitamente, porém necessito de configurar uma Datasource no CFMX 6.1 e ele não mostra o driver verifiquei no site da Macromedia e encontrei uma referência.. fiz tudo blz.. mas ele não funciona.. me

Re: Re[2]: [IMail Forum] Newbie-IMAP setup problems

2003-11-27 Thread kirk zeus
] To: kirk zeus [EMAIL PROTECTED] Subject: Re[2]: [IMail Forum] Newbie-IMAP setup problems Date: Thu, 27 Nov 2003 01:35:37 -0500 I've been to the web site for Fetchmail and it looks as though it would do the job. Unfortunately it doesn't work on Windows as it is a Unix thing. Actually, it does run

[ilugd] Strange

2003-11-26 Thread Zeus foo
I posted two mails here yesternight but they are not listed here? What's wrong I did? ___ ilugd mailing list [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd

RE: [IMail Forum] Newbie-IMAP setup problems

2003-11-26 Thread kirk zeus
Many thanks for the reply Andy. Yes, I want to access my email stored on my ISP's mail server using IMAP. Unfortunately my ISP doesn't support IMAP. So I'm stuck with POP3 as a means to access my email held at my ISP. So the question is, how do I set up IMail to automatically download the

RE: [IMail Forum] Newbie-IMAP setup problems

2003-11-26 Thread kirk zeus
Engineer/Consultant/Owner eServices For You -Original Message- From: [EMAIL PROTECTED] [mailto:IMail_Forum- [EMAIL PROTECTED] On Behalf Of kirk zeus Sent: Tuesday, November 25, 2003 10:59 PM To: [EMAIL PROTECTED] Subject: RE: [IMail Forum] Newbie-IMAP setup problems Many thanks

Re: Re[2]: [IMail Forum] Newbie-IMAP setup problems

2003-11-26 Thread kirk zeus
users. Thanks From: Sanford Whiteman [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: kirk zeus [EMAIL PROTECTED] Subject: Re[2]: [IMail Forum] Newbie-IMAP setup problems Date: Wed, 26 Nov 2003 17:24:49 -0500 So the question is, how do I set up IMail to automatically download the email from

[IMail Forum] Newbie-IMAP setup problems

2003-11-25 Thread kirk zeus
Hi all Please excuse what may seem a basic question but I am having plenty of problems setting up IMAP4 to work in IMail Express V8.04. I have got SMTP working fine. The problem is setting up IMAP4. I am still trying to understand how this works with my dialup ISP. Currently I am using MS

table design of multi-lingual content

2003-11-19 Thread Centaur zeus
Hi all , I want to design a table, say T_PRODUCT { PRD_ID, NAME, DESCRIPTION, PRICE } where I want NAME and DESCRIPTION to have multi language inputed. I searched before where found two solutions : 1) T_PRODUCT {PRD_ID, PRD_DETAIL_ID, PRICE} T_PRODUCT_DETAIL { PRD_DEATIL_ID, LANG, NAME,

Re: Re: [ilugd] Re: Apache/2.0.40 problem

2003-11-03 Thread Zeus foo
[EMAIL PROTECTED] # ./DDoS 68.56.176.39 :) On Mon, 03 Nov 2003 Yashpal Nagar wrote : access_log contains:- ### . . 68.56.176.39 - - [03/Nov/2003:14:36:15 +051800] GET /scripts/root.exe?/c+dir HTTP/1.0 404 1041 - - 68.56.176.39 - - [03/Nov/2003:14:36:15 +051800] GET /MSADC/root.exe?/c+dir

Re: Damn! problem with Mac Plus :( HELP

2003-10-12 Thread Zeus
Hi Thanks to ALL, It works without problems at the moment, I have changend the 4 simm with 6 chips (used also with Classic I) with other 4 simm of 8 chips, all works apparently without problems, no more freeze :- THANKS ! -- Compact Macs is sponsored by http://lowendmac.com/.

Re: Damn! problem with Mac Plus :( HELP

2003-10-11 Thread Zeus
Hi Ian I'll give a look if I have also ther simm ram 30 pin . but now I'm also not sure if I'm using 1Mb or 4Mb simm ram The ram used have 6 chips : 1 chip is TC514400JL-70 (for parity ?) 5 chip are TC511000AJL-70 Is there an homepage to know exactly if the simm ram is 1-4-8-16-32

Re: OS 7.1 AppleTalk problem. and other (Ethernet and Appletalk)

2003-10-08 Thread Zeus
Hi Hi Gamba, all works now (I have reinstalled all in ClassicI using 7.0 and over the top 7.1) all It's OK :-) The problem was I needed to press many times COMMAND OPTION p r (Ithink this was the problem) Now I want to use a Performa 030 to connect to PC XP using PC MacLan 9 via ethernet , and

OS 7.1 AppleTalk problem..

2003-10-01 Thread Zeus
Hello, I have installed System 7.1 ENG to a Mac Plus (4Mb) and a Classic I (4Mb) but I have a problem with the Classic I ; well first thing how I have installed 7.1 to Plus 800K disk drive this could be useful for someone I think : * first I have installed 7.0, then I have mounted the images of

Classic I Plus Appletalk a problem

2003-09-26 Thread Zeus
Hello, I have made some works in these days with my Old Macs : add 4Mb to Plus, add 4Mb to Classic I, add Jomega Jaz scsi to them, and now Appletalk Well, in Mac Plus I have intalled OS System 7.0 (English version) while in Mac Classic I OS System 7.1 + Update 3.0 (English version) , I

Re: Jaz Iomega with Classic I Plus - System 7.x driver

2003-09-26 Thread Zeus
Thanks, I have also find a my original install disk for Mac Jaz Try this address: http://www.iomega.com/support/documents/10425.html This page has the driver file I believe you are looking for. Scroll about 2/3 down the page, look for the Jaz Drives links box. You want version 2.1.1.

Re: Classic I Plus Appletalk a problem

2003-09-26 Thread Zeus
Hi Gamba, The Chooser is active in the two Macs after the boot. About the battery It works in the ClassicI (correct day and date), while I don't have the battery in Plus at the moment, but Plus works as server, while ClassicI doesn't work as server Every time I try to sharing the HD of ClassicI

Re: Classic I Plus Appletalk a problem

2003-09-26 Thread Zeus
The Chooser is active in the two Macs after the boot. The Chooser itself is always active. What needs to be Active in the Chooser is AppleTalk. yes AppleTalk in Chooser is active in the ClassicI and the Plus I have tried to delete also Appleshare PDS file and the file Users Groups Data

Re: Searching OS System 7.1 (ita) for a friend

2003-09-25 Thread Zeus
Hello, thanks, but I'm searching System 7.1 , not 7.0.1 Allegedly because of licence issues, Apple doesn't have 7.1 on any site. YOu have to buy it! :-( yes I know but I's searching it -- Compact Macs is sponsored by http://lowendmac.com/. Support Low End Mac

Jaz Iomega with Classic I Plus - System 7.x driver

2003-09-25 Thread Zeus
Hello Does someone know where to find the driver to use Jaz Iomega SCSI with System 7.x (to add an unit of storage for Classic I and Plus) in Iomega homepage It's written there is a driver for 7.x System but I don't have find it, can someone help me ?

Re: Jaz Iomega with Classic I Plus - System 7.x driver

2003-09-25 Thread Zeus
- Original Message - From: Zeus [EMAIL PROTECTED] To: Compact Macs [EMAIL PROTECTED] Sent: Thursday, September 25, 2003 7:25 AM Subject: Jaz Iomega with Classic I Plus - System 7.x driver Hello Does someone know where to find the driver to use Jaz Iomega SCSI with System 7.x

Re: Jaz Iomega with Classic I Plus - System 7.x driver

2003-09-25 Thread Zeus
I have find now the disk 4.3 for use Iomega Jaz with OS 7.x , If it's useful for someone I can make a image disk and send to some FTP old Mac The driver works with Classic I, then I try it with Mac Plus but I think woks also I had the Mac driver in the original disks of Jaz :))) -- Compact

other question about HQX file

2003-09-25 Thread Zeus
Hello I need an other question about Mac Classic I and Plus I can unstuff archives with extension *.sea OK also arcs with extension *.sit (using StuffIT 3.6 lite unregistered) , OK but I can't open/extract file with extension *.hqx ,I need a newer version of StuffIT or what ? where I can get

about HQX file

2003-09-25 Thread Zeus
Hello, I need an other question about Mac Classic I and Plus I can unstuff archives with extension *.sea OK also arcs with extension *.sit (using StuffIT 3.6 lite unregistered) , OK but I can't open/extract file with extension *.hqx ,I need a newer version of StuffIT or what ? where I can get

Re: about HQX file

2003-09-25 Thread Zeus
I have found the solution using Stuffit Expander 4.01 , I had problems with 3.6 lite version that could not unstuff *.hqx file Hi HQX is the extension for BinHex, available in various places all over the web. Either a .bin or a .sea version will work. Google searches reveal:

Searching OS System 7.1 (ita) for a friend

2003-09-24 Thread Zeus
Hello, I'm searching for a friend the OS System 7.1 in DD and HD disks He needs it for its old Mac (a Classic I and a Plus with 4Mb) ,if possible the OS System 7.1 in Italian version. Thanks , Regards. -- Compact Macs is sponsored by http://lowendmac.com/. Support Low End Mac

Re: Searching OS System 7.1 (ita) for a friend

2003-09-24 Thread Zeus
Hello, thanks, but I'm searching System 7.1 , not 7.0.1 Hello, I'm searching for a friend the OS System 7.1 in DD and HD disks He needs it for its old Mac (a Classic I and a Plus with 4Mb) ,if possible the OS System 7.1 in Italian version. Thanks , Regards. Would 7.0.1 be OK?

REKLAM BÜTÇENÝZE HUZUR VERÝN

2003-07-24 Thread ZEUS REKLAM
Title: ZEUS WWW.ZEUSREKLAM.COM REKLAM BÜTÇENÝZE HUZUR VERÝN ! ÝNTERNET SÝTENÝZÝ, KAMPANYALARINIZI VE HERTÜRLÜ TANITIMLARINIZI MÝLYONLARCA TÜRK E-MAIL ADRESÝNE GÖNDERÝN VEYA BIRAKIN SÝZÝN ADINIZA BÝZ GÖNDERELÝM 8 Milyon Türk e-mail adresi Çok yönlü amaca uygun

REKLAM BÜTÇENÝZE HUZUR VERÝN

2003-07-24 Thread ZEUS REKLAM
Title: ZEUS WWW.ZEUSREKLAM.COM REKLAM BÜTÇENÝZE HUZUR VERÝN ! ÝNTERNET SÝTENÝZÝ, KAMPANYALARINIZI VE HERTÜRLÜ TANITIMLARINIZI MÝLYONLARCA TÜRK E-MAIL ADRESÝNE GÖNDERÝN VEYA BIRAKIN SÝZÝN ADINIZA BÝZ GÖNDERELÝM 8 Milyon Türk e-mail adresi Çok yönlü amaca uygun

REKLAM BÜTÇENÝZE HUZUR VERÝN

2003-07-24 Thread ZEUS REKLAM
Title: ZEUS - Do make responsible use of the mailing list. SPAMMING is frowned upon, and we will take relevant action against spammers

REKLAM BÜTÇENÝZE HUZUR VERÝN

2003-07-24 Thread ZEUS REKLAM
Title: ZEUS WWW.ZEUSREKLAM.COM REKLAM BÜTÇENÝZE HUZUR VERÝN ! ÝNTERNET SÝTENÝZÝ, KAMPANYALARINIZI VE HERTÜRLÜ TANITIMLARINIZI MÝLYONLARCA TÜRK E-MAIL ADRESÝNE GÖNDERÝN VEYA BIRAKIN SÝZÝN ADINIZA BÝZ GÖNDERELÝM 8 Milyon Türk e-mail adresi Çok yönlü amaca uygun

[PUG] REKLAM BÜTÇENÝZE HUZUR VERÝN

2003-07-24 Thread ZEUS REKLAM
Title: ZEUS WWW.ZEUSREKLAM.COM REKLAM BÜTÇENÝZE HUZUR VERÝN ! ÝNTERNET SÝTENÝZÝ, KAMPANYALARINIZI VE HERTÜRLÜ TANITIMLARINIZI MÝLYONLARCA TÜRK E-MAIL ADRESÝNE GÖNDERÝN VEYA BIRAKIN SÝZÝN ADINIZA BÝZ GÖNDERELÝM 8 Milyon Türk e-mail adresi Çok yönlü amaca uygun

[Xdoclet-devel] REKLAM BÜTÇENÝZE HUZUR VERÝN

2003-07-24 Thread ZEUS REKLAM
Title: ZEUS WWW.ZEUSREKLAM.COM REKLAM BÜTÇENÝZE HUZUR VERÝN ! ÝNTERNET SÝTENÝZÝ, KAMPANYALARINIZI VE HERTÜRLÜ TANITIMLARINIZI MÝLYONLARCA TÜRK E-MAIL ADRESÝNE GÖNDERÝN VEYA BIRAKIN SÝZÝN ADINIZA BÝZ GÖNDERELÝM 8 Milyon Türk e-mail adresi Çok yönlü amaca uygun

[Xdoclet-user] REKLAM BÜTÇENÝZE HUZUR VERÝN

2003-07-24 Thread ZEUS REKLAM
Title: ZEUS WWW.ZEUSREKLAM.COM REKLAM BÜTÇENÝZE HUZUR VERÝN ! ÝNTERNET SÝTENÝZÝ, KAMPANYALARINIZI VE HERTÜRLÜ TANITIMLARINIZI MÝLYONLARCA TÜRK E-MAIL ADRESÝNE GÖNDERÝN VEYA BIRAKIN SÝZÝN ADINIZA BÝZ GÖNDERELÝM 8 Milyon Türk e-mail adresi Çok yönlü amaca uygun

REKLAM BÜTÇENÝZE HUZUR VERÝN

2003-07-24 Thread ZEUS REKLAM
Title: ZEUS WWW.ZEUSREKLAM.COM REKLAM BÜTÇENÝZE HUZUR VERÝN ! ÝNTERNET SÝTENÝZÝ, KAMPANYALARINIZI VE HERTÜRLÜ TANITIMLARINIZI MÝLYONLARCA TÜRK E-MAIL ADRESÝNE GÖNDERÝN VEYA BIRAKIN SÝZÝN ADINIZA BÝZ GÖNDERELÝM 8 Milyon Türk e-mail adresi Çok yönlü amaca uygun

Re: How to call / push an elem to a hash of array ?

2003-07-18 Thread Zeus Odin
What are you trying to do? If you could include a brief example, it would be nice. Li Ngok Lam wrote: my (%LIST, @other_list); @other_list = ( Unknown Length Data Elems ); foreach my $col (@lists) { for (@other_list) { if ( exist $LIST{$col}[0] ) { Do_smth_2 } # But

Command line interface for http://www.m-w.com.

2003-07-07 Thread Zeus Odin
I have written an interface for m-w.com. I found some scripts on the web but nothing really robust. Please have a look, make comments, request functionality, make suggestions, make changes, or anything else you feel useful. If I have enough time, I will make this fully object-oriented. I welcome

Re: [Gimp-user] Q: How to force gimp on a certain Gnome-workspace?

2003-06-12 Thread zeus
. http://www.burtonini.com/debian/ ___ Gimp-user mailing list [EMAIL PROTECTED] http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user -- o--o Kuswanto a.k.a zeus http://zeus.coolfreepage.com

Re: [Gimp-user] how to transform bw image to transparency

2003-06-09 Thread zeus
-user -- o--o Kuswanto a.k.a zeus http://zeus.coolfreepage.com Dedication to Linux http://petshop.iwebland.com My Manga Studio http://web.bajingloncat.com (Related with works o--o

Query formulation question

2003-04-04 Thread zeus
Hi there, I have some experience with SQL, but I'm drawing a blank on this one. I have a table with these fields: Location Unit StartDate StopDate I want to construct a SELECT statement to get to a report that looks something like this: Location1Location2 Location3 ... Date1

Re: [Gimp-user] Re: Copying few layers at once.

2003-04-02 Thread zeus;]
at a time. zeus carol Irek Sonina ___ Gimp-user mailing list [EMAIL PROTECTED] http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user -- zeus;] ~~-~~ http://zeus.coolfreepage.com http://www.bajingloncat.com

Re: lingo-l 'open file with app' broken?

2003-03-13 Thread Bruce Epstein - Zeus Productions
At 06:29 AM -0500 03/13/03, [EMAIL PROTECTED] wrote: open Mess:test with BBEdit 6.1 BBEdit gets activated but that's all. This is a known problem with open...with. If the app is already open, in most cases, it won't open the new document (this is true in most versions of Director on both

Re: Printing fields in Perl without the use of AWK

2003-02-26 Thread Zeus Odin
How is $worker_hour populated? Post a sample of the data. Brady Jacksan wrote: HI all, I am doing an assignment. I am writing a script to access a file and print the first and last name of workers whose hours worked exceeded 300hours. In the file, the last name is the first field and the first

lingo-l [XPOST] ActionScript for Flash MX: The Definitive Guide availableonline

2003-02-24 Thread Bruce Epstein - Zeus Productions
Colin Moock's ActionScript for Flash MX: The Definitive Guide, popularly known as ASDG2, is now available online via O'Reilly's Safari service (no relation to the Apple browser of the same name): http://safari.oreilly.com/?XmlId=0-596-00396-X Safari

Re: REPACE CHARS

2003-02-14 Thread Zeus Odin
This is one way: A) Save script.pl use strict; while(@ARGV){ my $text = shift; $text =~ s/[^a-z0-9]//ig; # 1 # $text =~ s/[^a-z0-9_@.-]//ig;# 2 print $text\n; } B) usage: script.pl am13-+km9 am13-+km9_@.-$#!%^*() 1. comment out #2 above 2. comment out #1 above

The email format of this list.

2003-02-13 Thread Zeus Odin
Why is it that the beginners-digest emails are properly displayed ONLY by MS Outlook? If I look at the digest email in Outlook, it comprises a number of attachments who are themselves the actual email postings. I open an attachment and can reply to the original sender. This is not the case in

Re: very novice date question

2003-02-11 Thread Zeus Odin
I am trying to extract last month's date from today's date as in Jan or Febis there a switch to enable that ? Assuming you actually meant extract last month's name based on today's date: @months = qw(Jan Feb Mar Apr May Jun July Aug Sep Oct Nov Dec); print $months[(localtime)[4]-1];

RE: A very annoying regex question.

2003-01-30 Thread Zeus Odin
of the split result in the latter case. Thanks again. -Original Message- From: Robert Citek [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 11:21 PM To: Zeus Odin Cc: [EMAIL PROTECTED] Subject: Re: A very annoying regex question. Hello Zeus, At 11:55 AM 1/29/2003 -0500, Zeus Odin

<    2   3   4   5   6   7   8   9   >