There are 12 messages totalling 455 lines in this issue.

Topics of the day:

  1. Decompress .jar file! (3)
  2. FTPMail, Agora, etc. statistics
  3. Problem in Reference.COM query reply (2)
  4. Download of complete Web Page
  5. ACCMAIL Digest - 10 Feb 1999 to 11 Feb 1999 (#1999-43)
  6. mp3 search (3)
  7. IBM PC Year 2000 (Y2K) Evaluation Tool

~~~~~~~~~~~~~~~ ACCMAIL Info (automatically generated) ~~~~~~~~~~~~~~
To UNSUBscribe: Send UNSUBSCRIBE ACCMAIL to [EMAIL PROTECTED]
To get the ACCMAIL FAQ: Send e-mail to "[EMAIL PROTECTED]"
and enter only this line in the BODY of the note:
send usenet/news.answers/internet-services/access-via-email
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

----------------------------------------------------------------------

Date:    Sun, 14 Feb 1999 05:01:19 +0800
From:    Harun <[EMAIL PROTECTED]>
Subject: Decompress .jar file!

Thank Gerry for solving my problem about cd &chdir w/ ftpmail server :)
Now I've already download a huge archive w/ .JAR extension. Could you show
me where should I take program to decompress it. I only have WINZIP which
doesn't support .JAR type.

TIA
Aaron

------------------------------

Date:    Sun, 14 Feb 1999 06:01:02 GMT
From:    [EMAIL PROTECTED]
Subject: FTPMail, Agora, etc. statistics

FTPMail, Agora, etc. statistics for Sat 13 Feb 1999, posted Sun 14 Feb, 06:00 GMT/BST

Less than 1 hour

[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]

1-4 hours

[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]

4-10 hours

None


More than 10 hours

[EMAIL PROTECTED]

Response within 4 hours in at least 5 out of 7 recent tests

[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]


This data is generated automatically around 0600 GMT/BST most
days. The performance reported is dependant on many factors and your
experience may vary. You can also access this list:

     On the Web at http://www.netservs.com/mrcool/stats.htm
     By FTP at ftp://ftp.cix.co.uk/pub/net-services/stats.txt
     Mail to [EMAIL PROTECTED] and say
     "get file stats.txt" (no quotes)

Want this list every day? Send mail to [EMAIL PROTECTED] and in the
body of your message put "join statistics" (no quotes)

No liability is accepted for inaccuracies. Mirroring, links to and
copying of this entire file (not extracts) is permitted until further
notice.

Slow downloads? Try Mr. Cool!
See http://www.netservs.com/mrcool/

Copyright Net Services 1999.

------------------------------

Date:    Sun, 14 Feb 1999 10:13:54 EDT
From:    [EMAIL PROTECTED]
Subject: Problem in Reference.COM query reply

Hi,

The Reference.COM service don`t work properly or ...
I sent the following command :

>>>alter user password newpassword

and very other commands.
but the reference.com sent for me this error:

>>>ALTER USER PASSWORD failed with error unknown user-table error.

The User-service and manual-service of reference.com don`t response
to my problem.
Is there anyone to guide me for solving this problem?

------------------------------

Date:    Sat, 13 Feb 1999 16:19:14 -0500
From:    Stephen Benjamin <[EMAIL PROTECTED]>
Subject: Download of complete Web Page

I'm trying to get an entire site, the "Yale Web Style Guide" at:

     http://info.med.yale.edu/caim/manual/contents.html

I want to get all the links (only 1 level deep, only the pages that
are linked from the contents page), images, etc.  I've tried several
freeware web downloaders but they all, IMO, don't work well.  I
remember someone mentioning a web site that will get a web site, its
links, and images and then zips it, and e-mail me it. Does anyone know
the address?

Stephen Benjamin
[EMAIL PROTECTED]
http://members.djcafe.com/sbenjamin/


________________________________________________________
NetZero - We believe in a FREE Internet.  Shouldn't you?
Get your FREE Internet Access and Email at
http://www.netzero.net/download.html

------------------------------

Date:    Sun, 14 Feb 1999 17:16:22 +0200
From:    AdiM <[EMAIL PROTECTED]>
Subject: Re: ACCMAIL Digest - 10 Feb 1999 to 11 Feb 1999 (#1999-43)

Has anyone thought were does the need for vacation come from?
Where does fatigue come from?
When there is something REALLY important to do, something you think that
is very important to you and to others, you give up thinking about how
tired you might be and DO that thing.
I believe that the need for vacation appears only when the thing you do
becomes less important or useless, or at least you feel it that way.
When you do something useful, you are energized by that job, and don't
need a vacation. People who often desire vacations don't like their jobs
or do their jobs with half of hearth, which means they feel, somewhere
in their hearts, that they should try something new. Unknowing what else
to try, they just think they need to stop for a while from doing what
they're doing now, taking a time to search the new thing. But if they
don't realize that need, they will only go for a trip and come back with
the same need for something new, and this will happen again, until they
finally find their REAL place, as Gerry Boyd seems to have found it.

Peace & Love to you all
----
AdiM
Webpage:     http://hasdeu.bz.edu.ro/~adim
Email:    [EMAIL PROTECTED], [EMAIL PROTECTED]

------------------------------

Date:    Sun, 14 Feb 1999 19:00:54 +0300
From:    Esmail <[EMAIL PROTECTED]>
Subject: mp3 search

does anyone know how to find a specific mp3 song on the net by email? like a search 
engine?

Zakir
[EMAIL PROTECTED]
http://www.geocities.com/Colosseum/Court/9404/

------------------------------

Date:    Sun, 14 Feb 1999 09:47:19 -0800
From:    "Gerald E. Boyd" <[EMAIL PROTECTED]>
Subject: Re: Decompress .jar file!

At 05:01 AM 2/14/1999 +0800, Harun wrote the following:

>Thank Gerry for solving my problem about cd &chdir w/ ftpmail server :)
>Now I've already download a huge archive w/ .JAR extension. Could you
show
>me where should I take program to decompress it. I only have WINZIP which
>doesn't support .JAR type.

JAR - Java Applet aRchive file
Netscape browsers don't support getResource() method, so you must use
     getResourceAsStream() method. Here there is an example which
extracts an image
     from a JAR file:

       InputStream is;
       ByteArrayOutputStream baos;
       Image img1;

       is =

this.getClass().getResourceAsStream("/imagenes/ingresos_y_pagos.gif");

       if (is == null)
         System.out.println("No resource found");
       baos = new ByteArrayOutputStream();
       try
       {
         int c;
         while((c = is.read()) >= 0)
           baos.write(c);
         img1 = getToolkit().createImage(baos.toByteArray());
       }
       catch(IOException e)
       {
         e.printStackTrace();
       }

The Java Archive Tool  part of the Java Development Kit.

I found a shareware product that has a demo download. However, you must
fill out a form:
http://www.sfs-software.com/iavazip/download_iavazip.html

Found some more at C|Net's shareware site:
vice113.zip
compress/
Oct 29,1998
1320 K
Vice: Graphical shell for the JAR Archiver

jazz10.zip
compress/
Feb 20,1998
3621 K
Jazz v1.0: Shell for the JAR file compressor

Look in your favorite Simtelnet archive mirrored ftp site under:
simtelnet/win95/compress/


--
Gerry Boyd -- [EMAIL PROTECTED]

------------------------------

Date:    Sun, 14 Feb 1999 10:03:34 -0800
From:    "Gerald E. Boyd" <[EMAIL PROTECTED]>
Subject: Re: Problem in Reference.COM query reply

At 10:13 AM 2/14/1999 EDT, [EMAIL PROTECTED] wrote the following:

>The Reference.COM service don`t work properly or ...
>I sent the following command :
>
>>>>alter user password newpassword
>
>and very other commands.
>but the reference.com sent for me this error:
>
>>>>ALTER USER PASSWORD failed with error unknown user-table error.
>
>The User-service and manual-service of reference.com don`t response
>to my problem.
>Is there anyone to guide me for solving this problem?

About the only thing that works at this site after 4 months of supposed
fixes following a server crash, is a plain search and signup for an
account by E-mail methods. The stored queries don't work, modifications
don't work, and out of the 3 E-mail address for help and manuals, the
only one that works is: [EMAIL PROTECTED] (or at least it did
on 02Feb99). E-mail to all sorts of people at the site also goes
unanswered.

This site must be maintained by the worst people they can find. Half
the time the web search page doesn't work either!!! You are better of
using DejaNews as that site is always up and dependable.

I'm about ready to pitch all references to this crummy site and pretend
it doesn't exit.

--
Gerry Boyd -- [EMAIL PROTECTED]

------------------------------

Date:    Sun, 14 Feb 1999 19:00:58 +0100
From:    Frits Westra <[EMAIL PROTECTED]>
Subject: IBM PC Year 2000 (Y2K) Evaluation Tool

Some time ago Gerry Boyd mentioned the below web page on this mailing
list.

--[snipped from IBM Year 2000 site]-----

  Year 2000 Evaluation Tool

  IBM has provided a software tool that quickly evaluates PC hardware
  one system at a time, to assess how the hardware clock and a PC BIOS
  will respond to the Year 2000 transition. If you need instructions on
  how to download a file and then execute the program on your system,
  review the [27]Download Instructions. Downloading the tool will create
  a self-booting diskette. **The IBM PC Year 2000 Evaluation Tool will
  function ONLY by booting to the diskette that is made.
    * [28]Year 2000 Evaluation Tool
    * [29]Installation Instructions for IBM Year 2000 Evaluation Tool
    * [30]Language Translations

  [27] http://www.pc.ibm.com/year2000/instructions.html
  [28] ftp://ftp.pc.ibm.com/pub/pccbbs/year2000/k3vt06a.exe
  [29] http://www.pc.ibm.com/year2000/instev4.html
  [30] http://www.pc.ibm.com/year2000/languages.html

--[snipped from IBM Year 2000 site]-----

If your native language is not English, check out link [30] first.
The evaluation tool has been translated into a lot of languages.

Best regards,
Frits Westra -- [EMAIL PROTECTED]

Net-Tamer V 1.11.2 - Registered

------------------------------

Date:    Sun, 14 Feb 1999 19:49:54 +0200
From:    Uzi Paz <[EMAIL PROTECTED]>
Subject: Re: Decompress .jar file!

You can download JAR (which also knows how to unjar files) from:
http://www.arjsoftware.com/files.htm

Unlike ARJ, JAR is not freeware, but there is a version that you can use
(I don't know what is it's limitations).

Uzi

> Date: Sun, 14 Feb 1999 05:01:19 +0800
> From: Harun <[EMAIL PROTECTED]>
>
> Thank Gerry for solving my problem about cd &chdir w/ ftpmail server :)
> Now I've already download a huge archive w/ .JAR extension. Could you show
> me where should I take program to decompress it. I only have WINZIP which
> doesn't support .JAR type.
>
> TIA
> Aaron

------------------------------

Date:    Sun, 14 Feb 1999 12:47:27 -0800
From:    "Gerald E. Boyd" <[EMAIL PROTECTED]>
Subject: Re: mp3 search

At 07:00 PM 2/14/1999 +0300, Esmail wrote the following:

>does anyone know how to find a specific mp3 song on the net by email?
like a search engine?

Lycos has a brand new search engine specifically for MP3 files.
http://mp3.lycos.com/

>From the web page after stripping worthless HTML code, I have:
<FORM ACTION="/cgi-bin/search" METHOD=GET>
<INPUT TYPE=hidden NAME=form VALUE=lycosnet>
Artist or song name:
<INPUT NAME=query VALUE="" SIZE=20>
</FORM>

So I can make a search string as follows:
send http://mp3.lycos.com/cgi-bin/search?form=lycosnet&query=[artist or
song]

For example, I searched (using www4mail) for the Doors, Light My Fire
like this:
get send http://mp3.lycos.com/cgi-bin/search?form=lycosnet\
&query=light+my+fire

I recieved, in part, back the following:
[snip]
2 * * * * *  [32]/student/mortarboard/AMP/AMP/[33]The Doors - Light My
   Fire.mp3
   6.5M - 1998 Nov 13 01:33

   3 * * * * *  [34]/oldies/[35]Doors - Light My Fire.mp3
   6.5M - 1998 Nov 15 14:46

   4 * * * * *  [36]/d:/60's/[37]Doors,The - Light My Fire.mp3
   6.4M - 1999 Feb 8 09:09
   [snip]
  32.
http://mp3.lycos.com/cgi-bin/search?query=light+my+fire&otype=Navigate&o
query=ftp.cc.utexas.edu/student/mortarboard/AMP/AMP
  33.
http://mp3.lycos.com/go.html?cnt=2&off=0&url=ftp://ftp.cc.utexas.edu/stu
dent/mortarboard/AMP/AMP/The%20Doors%20-%20Light%20My%20Fire.mp3&size=68
64561
  34.
http://mp3.lycos.com/cgi-bin/search?query=light+my+fire&otype=Navigate&o
query=student250.stong.yorku.ca/oldies
[snip]

Nothing to it...

--
Gerry Boyd -- [EMAIL PROTECTED]

------------------------------

Date:    Mon, 15 Feb 1999 02:49:03 +0600
From:    [EMAIL PROTECTED]
Subject: Re: mp3 search

At 19:00 14-02-99 +0300, you wrote:
>does anyone know how to find a specific mp3 song on the net by email? like
a search engine?
>

Yes - try . .

 http://mp3.lycos.com/
 http://www.angelfire.com/ok/uandi/
 http://www.mp3search.nu/cgi-bin/websearcher.cgi?action=search&Keywords=[wha
t ever you want]

HTH

Sen

------------------------------

End of ACCMAIL Digest - 13 Feb 1999 to 14 Feb 1999 (#1999-46)
*************************************************************

Reply via email to