Re: Y2K perl snag!

2000-01-02 Thread Oleg Goldshmidt
Ira Abramov [EMAIL PROTECTED] writes: please publish here more tips and glitches if you find them. Well, since you ask - here is a snippet from the headers of an email: X-Mailer: ELM [version 2.4ME+ PL34 (25)] Date: Sat, 1 Jan 100 18:22:07 +0200 (IST) And in the good old community

Re: Y2K perl snag!

2000-01-02 Thread Oleg Goldshmidt
Oleg Goldshmidt [EMAIL PROTECTED] writes: In all probability all these stem from the structure tm - see "man 3 ctime". ctime(3) does not use struct tm, but asctime(3) and mktime(3) do. The man page is common for all of them (and some others). Sorry for the confusion. -- Oleg Goldshmidt |

Re: Y2K perl snag!

2000-01-02 Thread Leonid Igolnik - LiM
|$year = $year % 100; # get the real "years since last beginning of | # the century" I would use: $year = sprintf("%02d", $year % 100); Other wise you will get dates like this 21/11/0, unless ofcourse you use printf later. Leonid Igolnik aka LiM

Re: Y2K perl snag!

2000-01-02 Thread Geoffrey S. Mendelson
Oleg Goldshmidt wrote: Well, since you ask - here is a snippet from the headers of an email: X-Mailer: ELM [version 2.4ME+ PL34 (25)] Date: Sat, 1 Jan 100 18:22:07 +0200 (IST) And in the good old community tradition of snitching on friends, let me mention that Geoff Mendelson

SUSE Linux

2000-01-02 Thread Shai
Hello list. I have a small problem, i can't find SUSE Linux in an Israeli server. If some of you know a server in Israel who holds it I would be very happy if you publish it on the list :) . thank you.

Re: SUSE Linux

2000-01-02 Thread Hetz Ben Hamo
If you're looking for SuSE 6.3 ISO image then u would be dissapointed - it's not out yet.. Hetz Shai wrote: Hello list. I have a small problem, i can't find SUSE Linux in an Israeli server. If some of you know a server in Israel who holds it I would be very happy if you publish it on

Re: outlook :-(

2000-01-02 Thread Omer Efraim
Seems like I'm a bit behind on my reading (as this reply is quite late), but anyhow: "Stanislav Malyshev a.k.a Frodo" wrote: OE Actually, Exchange interacts quite well with other OSes or OE mail systems. It supports X400/SMTP for mail delivery, OE and POP3/LDAP/IMAP in general (and MAPI, of

Re: Question about samba

2000-01-02 Thread Hetz Ben Hamo
Hi Alex, Sorry, but your answer talks about Host Only. The host only mode is good if you want a totally virtual PC which is "disconnected" from the system, and the URL's you gave talks about connecting SAMBA to it. I'm using Bridge Network mode - since I want also do operate other windows

Changing file timestamp

2000-01-02 Thread Mike
Hi list. due to several errors regarding to Y2K problem i must change the timestamp of several of my files. So my question is how can i change the timestamp ? What command do that ? Thanks, Mike = To unsubscribe, send mail to

Re: Changing file timestamp

2000-01-02 Thread Jonathan Ben-Avraham
On Sun, 2 Jan 2000, Mike wrote: Hi list. due to several errors regarding to Y2K problem i must change the timestamp of several of my files. So my question is how can i change the timestamp ? What command do that ? Thanks, Mike if in shell, RTFM man touch if in Perl RTFM perldoc -f

Re: Y2K perl snag!

2000-01-02 Thread guy keren
On Sun, 2 Jan 2000, Ira Abramov wrote: ($sec,$min,$hour,$mday,$month,$year) = localtime(time); print $year."\n"; you get: 100! in perl 4 (v4.036), there used to be a librarry function named 'timelocal', which makes the reverse translation (i.e. from year+month+day+hour+minute+second into