* weather from shell
@ Raul A. Gallegos
` Ann Parsons
` (3 more replies)
0 siblings, 4 replies; 30+ messages in thread
From: Raul A. Gallegos @ UTC (permalink / raw)
To: Speakup Mailing-list
Hi. I know this was discussed before however I can't find it in the
archives by searching for the subject keyword "weather".
How can I find weather tempratures and forcasts from the shell? Is
there a text program I can install or is there a service I can telnet
into to find out/
Thanks.
--
If you are good, you will be assigned all the work. If you are real
good, you will get out of it.
Raul A. Gallegos - http://www.asmodean.net
^ permalink raw reply [flat|nested] 30+ messages in thread
* weather from shell
weather from shell Raul A. Gallegos
@ ` Ann Parsons
` Janina Sajka
` randy turner
` (2 subsequent siblings)
3 siblings, 1 reply; 30+ messages in thread
From: Ann Parsons @ UTC (permalink / raw)
To: speakup
Hi all,
I get weather from weather.com or is it wonderground? It comes in my
email.
Ann P.
--
Ann K. Parsons
email: akp@eznet.net ICQ Number: 33006854
WEB SITE: http://home.eznet.net/~akp
"All that is gold does not glitter. Not all those who wander are lost." JRRT
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
weather from shell Raul A. Gallegos
` Ann Parsons
@ ` randy turner
` Janina Sajka
` weather from shell Charles Hallenbeck
` Janina Sajka
3 siblings, 1 reply; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: Speakup Mailing-list
hi,
if you are looking for a good weather site try
http://iwin.nws.noaa.gov
they have a text only version of the weather.
if you need any help let me know.
randy
On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> Hi. I know this was discussed before however I can't find it in the
> archives by searching for the subject keyword "weather".
>
> How can I find weather tempratures and forcasts from the shell? Is
> there a text program I can install or is there a service I can telnet
> into to find out/
>
> Thanks.
> --
> If you are good, you will be assigned all the work. If you are real
> good, you will get out of it.
> Raul A. Gallegos - http://www.asmodean.net
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
weather from shell Raul A. Gallegos
` Ann Parsons
` randy turner
@ ` Charles Hallenbeck
` Raul A. Gallegos
` Steve Holmes
` Janina Sajka
3 siblings, 2 replies; 30+ messages in thread
From: Charles Hallenbeck @ UTC (permalink / raw)
To: Speakup Mailing-list
Here is a script I use. I call it 'wxw'.
#!/bin/bash
lynx http://braille.wunderground.com/
I guess I might as well have made it an alias instead of a
script.
Chuck
On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> Hi. I know this was discussed before however I can't find it in the
> archives by searching for the subject keyword "weather".
>
> How can I find weather tempratures and forcasts from the shell? Is
> there a text program I can install or is there a service I can telnet
> into to find out/
>
> Thanks.
> --
> If you are good, you will be assigned all the work. If you are real
> good, you will get out of it.
> Raul A. Gallegos - http://www.asmodean.net
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
Visit me at http://www.valstar.net/~hallenbeck
The Moon is Waning Gibbous (91% of Full)
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` weather from shell Charles Hallenbeck
@ ` Raul A. Gallegos
` Charles Hallenbeck
` Steve Holmes
1 sibling, 1 reply; 30+ messages in thread
From: Raul A. Gallegos @ UTC (permalink / raw)
To: speakup
I have a better idea. How about this:
#!/bin/bash
if [ "$#" -lt "1" -o "$#" -gt "2" ] ;then
echo "Usage: wxw zip or wxw cityname."
echo "Example: wxw 66212 or wxw Overland Park"
exit 1
fi
if [ "$#" -eq "1" ] ;then
QUERY="$1"
else
QUERY="$1+^[A$2"
fi
lynx
"http://braille.wunderground.com/cgi-bin/findweather/getForecast?query=$QUERY"
Charles Hallenbeck said the following on Fri, Mar 01, 2002 at 02:51:08PM -0500:
> Here is a script I use. I call it 'wxw'.
> #!/bin/bash
> lynx http://braille.wunderground.com/
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` weather from shell Charles Hallenbeck
` Raul A. Gallegos
@ ` Steve Holmes
` Gregory Nowak
1 sibling, 1 reply; 30+ messages in thread
From: Steve Holmes @ UTC (permalink / raw)
To: Speakup Mailing-list
With Slackware, the games has an expect script called 'weather' it in turn
telnets to rainmaker.wunderground.com port 3000. Be to have expect
installed from the tcl series or this script won't run.
On Fri, 1 Mar 2002, Charles Hallenbeck wrote:
> Here is a script I use. I call it 'wxw'.
> #!/bin/bash
> lynx http://braille.wunderground.com/
>
> I guess I might as well have made it an alias instead of a
> script.
> Chuck
>
> On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
>
> > Hi. I know this was discussed before however I can't find it in the
> > archives by searching for the subject keyword "weather".
> >
> > How can I find weather tempratures and forcasts from the shell? Is
> > there a text program I can install or is there a service I can telnet
> > into to find out/
> >
> > Thanks.
> > --
> > If you are good, you will be assigned all the work. If you are real
> > good, you will get out of it.
> > Raul A. Gallegos - http://www.asmodean.net
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
> Visit me at http://www.valstar.net/~hallenbeck
> The Moon is Waning Gibbous (91% of Full)
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Raul A. Gallegos
@ ` Charles Hallenbeck
0 siblings, 0 replies; 30+ messages in thread
From: Charles Hallenbeck @ UTC (permalink / raw)
To: speakup
Impressive. I may try it.
On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> I have a better idea. How about this:
>
> #!/bin/bash
>
> if [ "$#" -lt "1" -o "$#" -gt "2" ] ;then
> echo "Usage: wxw zip or wxw cityname."
> echo "Example: wxw 66212 or wxw Overland Park"
> exit 1
> fi
>
> if [ "$#" -eq "1" ] ;then
> QUERY="$1"
> else
> QUERY="$1+^[A$2"
> fi
>
> lynx
> "http://braille.wunderground.com/cgi-bin/findweather/getForecast?query=$QUERY"
>
> Charles Hallenbeck said the following on Fri, Mar 01, 2002 at 02:51:08PM -0500:
> > Here is a script I use. I call it 'wxw'.
> > #!/bin/bash
> > lynx http://braille.wunderground.com/
> >
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
Visit me at http://www.valstar.net/~hallenbeck
The Moon is Waning Gibbous (91% of Full)
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Steve Holmes
@ ` Gregory Nowak
` Raul A. Gallegos
` (3 more replies)
0 siblings, 4 replies; 30+ messages in thread
From: Gregory Nowak @ UTC (permalink / raw)
To: speakup
The last time I checked, port 3000 on rainmaker.wunderground.com is no longer available.
Greg
On Fri, Mar 01, 2002 at 01:22:51PM -0700, Steve Holmes wrote:
> With Slackware, the games has an expect script called 'weather' it in turn
> telnets to rainmaker.wunderground.com port 3000. Be to have expect
> installed from the tcl series or this script won't run.
>
> On Fri, 1 Mar 2002, Charles Hallenbeck wrote:
>
> > Here is a script I use. I call it 'wxw'.
> > #!/bin/bash
> > lynx http://braille.wunderground.com/
> >
> > I guess I might as well have made it an alias instead of a
> > script.
> > Chuck
> >
> > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> >
> > > Hi. I know this was discussed before however I can't find it in the
> > > archives by searching for the subject keyword "weather".
> > >
> > > How can I find weather tempratures and forcasts from the shell? Is
> > > there a text program I can install or is there a service I can telnet
> > > into to find out/
> > >
> > > Thanks.
> > > --
> > > If you are good, you will be assigned all the work. If you are real
> > > good, you will get out of it.
> > > Raul A. Gallegos - http://www.asmodean.net
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> > Visit me at http://www.valstar.net/~hallenbeck
> > The Moon is Waning Gibbous (91% of Full)
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Gregory Nowak
@ ` Raul A. Gallegos
` Ryan Mann
` (2 subsequent siblings)
3 siblings, 0 replies; 30+ messages in thread
From: Raul A. Gallegos @ UTC (permalink / raw)
To: speakup
You must have nnot checked recently. As of 2 minutes ago it's
still working fine. *smile*
Gregory Nowak said the following on Fri, Mar
01, 2002 at 02:59:49PM -0600:
> The last time I checked, port 3000 on rainmaker.wunderground.com is no longer available.
> Greg
--
If you are good, you will be assigned all the work. If you are real
good, you will get out of it.
Raul A. Gallegos - http://www.asmodean.net
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Gregory Nowak
` Raul A. Gallegos
@ ` Ryan Mann
` Janina Sajka
` Steve Holmes
3 siblings, 0 replies; 30+ messages in thread
From: Ryan Mann @ UTC (permalink / raw)
To: speakup
You can just use the regular telnet port for rainmaker.wunderground.com.
From the shell type telnet rainmaker.wunderground.com.
On Fri, 1 Mar 2002,
Gregory Nowak wrote:
> The last time I checked, port 3000 on rainmaker.wunderground.com is no longer available.
> Greg
>
>
> On Fri, Mar 01, 2002 at 01:22:51PM -0700, Steve Holmes wrote:
> > With Slackware, the games has an expect script called 'weather' it in turn
> > telnets to rainmaker.wunderground.com port 3000. Be to have expect
> > installed from the tcl series or this script won't run.
> >
> > On Fri, 1 Mar 2002, Charles Hallenbeck wrote:
> >
> > > Here is a script I use. I call it 'wxw'.
> > > #!/bin/bash
> > > lynx http://braille.wunderground.com/
> > >
> > > I guess I might as well have made it an alias instead of a
> > > script.
> > > Chuck
> > >
> > > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> > >
> > > > Hi. I know this was discussed before however I can't find it in the
> > > > archives by searching for the subject keyword "weather".
> > > >
> > > > How can I find weather tempratures and forcasts from the shell? Is
> > > > there a text program I can install or is there a service I can telnet
> > > > into to find out/
> > > >
> > > > Thanks.
> > > > --
> > > > If you are good, you will be assigned all the work. If you are real
> > > > good, you will get out of it.
> > > > Raul A. Gallegos - http://www.asmodean.net
> > > >
> > > > _______________________________________________
> > > > Speakup mailing list
> > > > Speakup@braille.uwo.ca
> > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > >
> > >
> > > Visit me at http://www.valstar.net/~hallenbeck
> > > The Moon is Waning Gibbous (91% of Full)
> > >
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
weather from shell Raul A. Gallegos
` (2 preceding siblings ...)
` weather from shell Charles Hallenbeck
@ ` Janina Sajka
3 siblings, 0 replies; 30+ messages in thread
From: Janina Sajka @ UTC (permalink / raw)
To: Speakup Mailing-list
telnet rainmaker.wunderground.com
On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> Hi. I know this was discussed before however I can't find it in the
> archives by searching for the subject keyword "weather".
>
> How can I find weather tempratures and forcasts from the shell? Is
> there a text program I can install or is there a service I can telnet
> into to find out/
>
> Thanks.
>
--
Janina Sajka, Director
Technology Research and Development
Governmental Relations Group
American Foundation for the Blind (AFB)
Email: janina@afb.net Phone: (202) 408-8175
Chair, Accessibility SIG
Open Electronic Book Forum (OEBF)
http://www.openebook.org
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Ann Parsons
@ ` Janina Sajka
0 siblings, 0 replies; 30+ messages in thread
From: Janina Sajka @ UTC (permalink / raw)
To: speakup
I should also note the web version:
http://braille.wunderground.com
The web version is particularly valuable because it provides some
international data--though I, myself, would like more! <grin>
On Fri, 1 Mar 2002, Ann Parsons wrote:
> Hi all,
>
>
> I get weather from weather.com or is it wonderground? It comes in my
> email.
>
> Ann P.
>
>
--
Janina Sajka, Director
Technology Research and Development
Governmental Relations Group
American Foundation for the Blind (AFB)
Email: janina@afb.net Phone: (202) 408-8175
Chair, Accessibility SIG
Open Electronic Book Forum (OEBF)
http://www.openebook.org
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` randy turner
@ ` Janina Sajka
` randy turner
` (2 more replies)
0 siblings, 3 replies; 30+ messages in thread
From: Janina Sajka @ UTC (permalink / raw)
To: Speakup Mailing-list
Cool. No nav bar on the text version of this site. I love it.
The international page seems to have no more data that braille.wunderground.com. But, wait ...
Oopps, though. It seems we have a new word on this page:
precipiation
Do you suppose they actually mean precipitation? <grin>
Jim, can you forward to whoever needs to see it??
On Fri, 1 Mar 2002, randy turner wrote:
>
>
> hi,
> if you are looking for a good weather site try
> http://iwin.nws.noaa.gov
> they have a text only version of the weather.
> if you need any help let me know.
> randy
>
> On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
>
> > Hi. I know this was discussed before however I can't find it in the
> > archives by searching for the subject keyword "weather".
> >
> > How can I find weather tempratures and forcasts from the shell? Is
> > there a text program I can install or is there a service I can telnet
> > into to find out/
> >
> > Thanks.
> > --
> > If you are good, you will be assigned all the work. If you are real
> > good, you will get out of it.
> > Raul A. Gallegos - http://www.asmodean.net
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
--
Janina Sajka, Director
Technology Research and Development
Governmental Relations Group
American Foundation for the Blind (AFB)
Email: janina@afb.net Phone: (202) 408-8175
Chair, Accessibility SIG
Open Electronic Book Forum (OEBF)
http://www.openebook.org
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Gregory Nowak
` Raul A. Gallegos
` Ryan Mann
@ ` Janina Sajka
` Steve Holmes
3 siblings, 0 replies; 30+ messages in thread
From: Janina Sajka @ UTC (permalink / raw)
To: speakup
You no longer need the port specification. It now works without the port
number.
On Fri, 1 Mar 2002, Gregory Nowak wrote:
> The last time I checked, port 3000 on rainmaker.wunderground.com is no longer available.
> Greg
>
>
> On Fri, Mar 01, 2002 at 01:22:51PM -0700, Steve Holmes wrote:
> > With Slackware, the games has an expect script called 'weather' it in turn
> > telnets to rainmaker.wunderground.com port 3000. Be to have expect
> > installed from the tcl series or this script won't run.
> >
> > On Fri, 1 Mar 2002, Charles Hallenbeck wrote:
> >
> > > Here is a script I use. I call it 'wxw'.
> > > #!/bin/bash
> > > lynx http://braille.wunderground.com/
> > >
> > > I guess I might as well have made it an alias instead of a
> > > script.
> > > Chuck
> > >
> > > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> > >
> > > > Hi. I know this was discussed before however I can't find it in the
> > > > archives by searching for the subject keyword "weather".
> > > >
> > > > How can I find weather tempratures and forcasts from the shell? Is
> > > > there a text program I can install or is there a service I can telnet
> > > > into to find out/
> > > >
> > > > Thanks.
> > > > --
> > > > If you are good, you will be assigned all the work. If you are real
> > > > good, you will get out of it.
> > > > Raul A. Gallegos - http://www.asmodean.net
> > > >
> > > > _______________________________________________
> > > > Speakup mailing list
> > > > Speakup@braille.uwo.ca
> > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > >
> > >
> > > Visit me at http://www.valstar.net/~hallenbeck
> > > The Moon is Waning Gibbous (91% of Full)
> > >
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
--
Janina Sajka, Director
Technology Research and Development
Governmental Relations Group
American Foundation for the Blind (AFB)
Email: janina@afb.net Phone: (202) 408-8175
Chair, Accessibility SIG
Open Electronic Book Forum (OEBF)
http://www.openebook.org
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Janina Sajka
@ ` randy turner
` randy turner
` audiogalaxy randy turner
2 siblings, 0 replies; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: Speakup Mailing-list
hi,
well what is cool
is that you can use wget
to automatically get fortcasts hourly temps
and special weather statements.
randy
On Fri, 1 Mar 2002, Janina Sajka wrote:
> Cool. No nav bar on the text version of this site. I love it.
>
> The international page seems to have no more data that braille.wunderground.com. But, wait ...
>
> Oopps, though. It seems we have a new word on this page:
>
> precipiation
>
> Do you suppose they actually mean precipitation? <grin>
>
> Jim, can you forward to whoever needs to see it??
>
> On Fri, 1 Mar 2002, randy turner wrote:
>
> >
> >
> > hi,
> > if you are looking for a good weather site try
> > http://iwin.nws.noaa.gov
> > they have a text only version of the weather.
> > if you need any help let me know.
> > randy
> >
> > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> >
> > > Hi. I know this was discussed before however I can't find it in the
> > > archives by searching for the subject keyword "weather".
> > >
> > > How can I find weather tempratures and forcasts from the shell? Is
> > > there a text program I can install or is there a service I can telnet
> > > into to find out/
> > >
> > > Thanks.
> > > --
> > > If you are good, you will be assigned all the work. If you are real
> > > good, you will get out of it.
> > > Raul A. Gallegos - http://www.asmodean.net
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
> --
>
> Janina Sajka, Director
> Technology Research and Development
> Governmental Relations Group
> American Foundation for the Blind (AFB)
>
> Email: janina@afb.net Phone: (202) 408-8175
>
> Chair, Accessibility SIG
> Open Electronic Book Forum (OEBF)
> http://www.openebook.org
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Janina Sajka
` randy turner
@ ` randy turner
` audiogalaxy randy turner
2 siblings, 0 replies; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: Speakup Mailing-list
hey that braille.wunderground.com is a cool site
thanks for the info.
randy
On Fri, 1 Mar 2002, Janina Sajka wrote:
> Cool. No nav bar on the text version of this site. I love it.
>
> The international page seems to have no more data that braille.wunderground.com. But, wait ...
>
> Oopps, though. It seems we have a new word on this page:
>
> precipiation
>
> Do you suppose they actually mean precipitation? <grin>
>
> Jim, can you forward to whoever needs to see it??
>
> On Fri, 1 Mar 2002, randy turner wrote:
>
> >
> >
> > hi,
> > if you are looking for a good weather site try
> > http://iwin.nws.noaa.gov
> > they have a text only version of the weather.
> > if you need any help let me know.
> > randy
> >
> > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> >
> > > Hi. I know this was discussed before however I can't find it in the
> > > archives by searching for the subject keyword "weather".
> > >
> > > How can I find weather tempratures and forcasts from the shell? Is
> > > there a text program I can install or is there a service I can telnet
> > > into to find out/
> > >
> > > Thanks.
> > > --
> > > If you are good, you will be assigned all the work. If you are real
> > > good, you will get out of it.
> > > Raul A. Gallegos - http://www.asmodean.net
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
> --
>
> Janina Sajka, Director
> Technology Research and Development
> Governmental Relations Group
> American Foundation for the Blind (AFB)
>
> Email: janina@afb.net Phone: (202) 408-8175
>
> Chair, Accessibility SIG
> Open Electronic Book Forum (OEBF)
> http://www.openebook.org
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* audiogalaxy
` Janina Sajka
` randy turner
` randy turner
@ ` randy turner
` audiogalaxy Gregory Nowak
` audiogalaxy Darcy Burnard
2 siblings, 2 replies; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: Speakup Mailing-list
hi all,
i was running the audiogalaxy for linux until a few months ago
can someone who is running it under linux
tell me if it still works under linux?
i downloaded the latest version of it
built the account.txt file and the shares.txt file
but it deletes the account file and tells me invalid account
i am able to log on to the web site ok
with my user name and password
so that proves that i am still active with them.
thanks in advance
randy
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy randy turner
@ ` Gregory Nowak
` audiogalaxy randy turner
` audiogalaxy Darcy Burnard
1 sibling, 1 reply; 30+ messages in thread
From: Gregory Nowak @ UTC (permalink / raw)
To: speakup
Yeap, still works like a charm for me. Never had the problem you mentioned.
Greg
On Fri, Mar 01, 2002 at 06:28:29PM -0600, randy turner wrote:
>
>
> hi all,
> i was running the audiogalaxy for linux until a few months ago
> can someone who is running it under linux
> tell me if it still works under linux?
> i downloaded the latest version of it
> built the account.txt file and the shares.txt file
> but it deletes the account file and tells me invalid account
> i am able to log on to the web site ok
> with my user name and password
> so that proves that i am still active with them.
> thanks in advance
> randy
>
>
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy randy turner
` audiogalaxy Gregory Nowak
@ ` Darcy Burnard
` audiogalaxy randy turner
` (2 more replies)
1 sibling, 3 replies; 30+ messages in thread
From: Darcy Burnard @ UTC (permalink / raw)
To: Speakup Mailing-list
Hi Randy. Yes, for some reason, audiogalaxy does this, but it does still
work. According to the web site, you've now got to put the ip address and
port number for the audiogalaxy server on the command line. However, even
when you do this, often it will still say invalid account and delete your
account.txt file. But if you're persistant, it will eventually work. You
might want to backup that file, and put something like the following in to
a script.
rm logv520.txt
cp .account.bak account.txt
./AGSatellite 64.245.58.81 21 &
Note that I put the command to delete the log file in there because it
does get rather large after a while.
HTH
Darcy
On Fri, 1 Mar 2002, randy turner wrote:
>
>
> hi all,
> i was running the audiogalaxy for linux until a few months ago
> can someone who is running it under linux
> tell me if it still works under linux?
> i downloaded the latest version of it
> built the account.txt file and the shares.txt file
> but it deletes the account file and tells me invalid account
> i am able to log on to the web site ok
> with my user name and password
> so that proves that i am still active with them.
> thanks in advance
> randy
>
>
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy Gregory Nowak
@ ` randy turner
0 siblings, 0 replies; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: speakup
very interesting!
i wonder if something is missing from my system
i have installed it several times
i am running slackware 8.0
2.2.19 kernel
i might need to reinstall some of my libs or something.
thanks
randy
On Fri, 1 Mar 2002, Gregory Nowak wrote:
> Yeap, still works like a charm for me. Never had the problem you mentioned.
> Greg
>
>
> On Fri, Mar 01, 2002 at 06:28:29PM -0600, randy turner wrote:
> >
> >
> > hi all,
> > i was running the audiogalaxy for linux until a few months ago
> > can someone who is running it under linux
> > tell me if it still works under linux?
> > i downloaded the latest version of it
> > built the account.txt file and the shares.txt file
> > but it deletes the account file and tells me invalid account
> > i am able to log on to the web site ok
> > with my user name and password
> > so that proves that i am still active with them.
> > thanks in advance
> > randy
> >
> >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy Darcy Burnard
@ ` randy turner
` audiogalaxy randy turner
` audiogalaxy randy turner
2 siblings, 0 replies; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: Speakup Mailing-list
hi,
sure thank you!
i will try that
randy
On Fri, 1 Mar 2002, Darcy Burnard wrote:
> Hi Randy. Yes, for some reason, audiogalaxy does this, but it does still
> work. According to the web site, you've now got to put the ip address and
> port number for the audiogalaxy server on the command line. However, even
> when you do this, often it will still say invalid account and delete your
> account.txt file. But if you're persistant, it will eventually work. You
> might want to backup that file, and put something like the following in to
> a script.
> rm logv520.txt
> cp .account.bak account.txt
> ../AGSatellite 64.245.58.81 21 &
>
> Note that I put the command to delete the log file in there because it
> does get rather large after a while.
> HTH
> Darcy
>
> On Fri, 1 Mar 2002, randy turner wrote:
>
> >
> >
> > hi all,
> > i was running the audiogalaxy for linux until a few months ago
> > can someone who is running it under linux
> > tell me if it still works under linux?
> > i downloaded the latest version of it
> > built the account.txt file and the shares.txt file
> > but it deletes the account file and tells me invalid account
> > i am able to log on to the web site ok
> > with my user name and password
> > so that proves that i am still active with them.
> > thanks in advance
> > randy
> >
> >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Gregory Nowak
` (2 preceding siblings ...)
` Janina Sajka
@ ` Steve Holmes
` Janina Sajka
` Gregory Nowak
3 siblings, 2 replies; 30+ messages in thread
From: Steve Holmes @ UTC (permalink / raw)
To: speakup
I just used it tonight. Though I recall opening up a telnet session
manually to the same site, forgetting the port number and got same
results. So I'm not sure what port 3000 does that isn't readily available
to normal telnet users.
On Fri, 1 Mar 2002, Gregory Nowak wrote:
> The last time I checked, port 3000 on rainmaker.wunderground.com is no longer available.
> Greg
>
>
> On Fri, Mar 01, 2002 at 01:22:51PM -0700, Steve Holmes wrote:
> > With Slackware, the games has an expect script called 'weather' it in turn
> > telnets to rainmaker.wunderground.com port 3000. Be to have expect
> > installed from the tcl series or this script won't run.
> >
> > On Fri, 1 Mar 2002, Charles Hallenbeck wrote:
> >
> > > Here is a script I use. I call it 'wxw'.
> > > #!/bin/bash
> > > lynx http://braille.wunderground.com/
> > >
> > > I guess I might as well have made it an alias instead of a
> > > script.
> > > Chuck
> > >
> > > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> > >
> > > > Hi. I know this was discussed before however I can't find it in the
> > > > archives by searching for the subject keyword "weather".
> > > >
> > > > How can I find weather tempratures and forcasts from the shell? Is
> > > > there a text program I can install or is there a service I can telnet
> > > > into to find out/
> > > >
> > > > Thanks.
> > > > --
> > > > If you are good, you will be assigned all the work. If you are real
> > > > good, you will get out of it.
> > > > Raul A. Gallegos - http://www.asmodean.net
> > > >
> > > > _______________________________________________
> > > > Speakup mailing list
> > > > Speakup@braille.uwo.ca
> > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > >
> > >
> > > Visit me at http://www.valstar.net/~hallenbeck
> > > The Moon is Waning Gibbous (91% of Full)
> > >
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Steve Holmes
@ ` Janina Sajka
` Gregory Nowak
1 sibling, 0 replies; 30+ messages in thread
From: Janina Sajka @ UTC (permalink / raw)
To: speakup
I think the port address had meaning once. This site has provided this
weather service for well over a decade.
On Fri, 1 Mar 2002, Steve Holmes wrote:
> I just used it tonight. Though I recall opening up a telnet session
> manually to the same site, forgetting the port number and got same
> results. So I'm not sure what port 3000 does that isn't readily available
> to normal telnet users.
>
> On Fri, 1 Mar 2002, Gregory Nowak wrote:
>
> > The last time I checked, port 3000 on rainmaker.wunderground.com is no longer available.
> > Greg
> >
> >
> > On Fri, Mar 01, 2002 at 01:22:51PM -0700, Steve Holmes wrote:
> > > With Slackware, the games has an expect script called 'weather' it in turn
> > > telnets to rainmaker.wunderground.com port 3000. Be to have expect
> > > installed from the tcl series or this script won't run.
> > >
> > > On Fri, 1 Mar 2002, Charles Hallenbeck wrote:
> > >
> > > > Here is a script I use. I call it 'wxw'.
> > > > #!/bin/bash
> > > > lynx http://braille.wunderground.com/
> > > >
> > > > I guess I might as well have made it an alias instead of a
> > > > script.
> > > > Chuck
> > > >
> > > > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> > > >
> > > > > Hi. I know this was discussed before however I can't find it in the
> > > > > archives by searching for the subject keyword "weather".
> > > > >
> > > > > How can I find weather tempratures and forcasts from the shell? Is
> > > > > there a text program I can install or is there a service I can telnet
> > > > > into to find out/
> > > > >
> > > > > Thanks.
> > > > > --
> > > > > If you are good, you will be assigned all the work. If you are real
> > > > > good, you will get out of it.
> > > > > Raul A. Gallegos - http://www.asmodean.net
> > > > >
> > > > > _______________________________________________
> > > > > Speakup mailing list
> > > > > Speakup@braille.uwo.ca
> > > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > > >
> > > >
> > > > Visit me at http://www.valstar.net/~hallenbeck
> > > > The Moon is Waning Gibbous (91% of Full)
> > > >
> > > >
> > > > _______________________________________________
> > > > Speakup mailing list
> > > > Speakup@braille.uwo.ca
> > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > >
> > >
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
--
Janina Sajka, Director
Technology Research and Development
Governmental Relations Group
American Foundation for the Blind (AFB)
Email: janina@afb.net Phone: (202) 408-8175
Chair, Accessibility SIG
Open Electronic Book Forum (OEBF)
http://www.openebook.org
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Steve Holmes
` Janina Sajka
@ ` Gregory Nowak
` Janina Sajka
1 sibling, 1 reply; 30+ messages in thread
From: Gregory Nowak @ UTC (permalink / raw)
To: speakup
I just tried telneting to rainmaker.wunderground.com on the standard telnet port, and it doesn't work. What I mean is that I could get in unlike before, but whenever I enter a city code, ask for a list of valid city codes, or ask for a valid list of state codes, it says something like network is down. This was yesterday, and today the telnet session simply times out. However, the web interface works grate.
Greg
On Fri, Mar 01, 2002 at 11:14:31PM -0700, Steve Holmes wrote:
> I just used it tonight. Though I recall opening up a telnet session
> manually to the same site, forgetting the port number and got same
> results. So I'm not sure what port 3000 does that isn't readily available
> to normal telnet users.
>
> On Fri, 1 Mar 2002, Gregory Nowak wrote:
>
> > The last time I checked, port 3000 on rainmaker.wunderground.com is no longer available.
> > Greg
> >
> >
> > On Fri, Mar 01, 2002 at 01:22:51PM -0700, Steve Holmes wrote:
> > > With Slackware, the games has an expect script called 'weather' it in turn
> > > telnets to rainmaker.wunderground.com port 3000. Be to have expect
> > > installed from the tcl series or this script won't run.
> > >
> > > On Fri, 1 Mar 2002, Charles Hallenbeck wrote:
> > >
> > > > Here is a script I use. I call it 'wxw'.
> > > > #!/bin/bash
> > > > lynx http://braille.wunderground.com/
> > > >
> > > > I guess I might as well have made it an alias instead of a
> > > > script.
> > > > Chuck
> > > >
> > > > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> > > >
> > > > > Hi. I know this was discussed before however I can't find it in the
> > > > > archives by searching for the subject keyword "weather".
> > > > >
> > > > > How can I find weather tempratures and forcasts from the shell? Is
> > > > > there a text program I can install or is there a service I can telnet
> > > > > into to find out/
> > > > >
> > > > > Thanks.
> > > > > --
> > > > > If you are good, you will be assigned all the work. If you are real
> > > > > good, you will get out of it.
> > > > > Raul A. Gallegos - http://www.asmodean.net
> > > > >
> > > > > _______________________________________________
> > > > > Speakup mailing list
> > > > > Speakup@braille.uwo.ca
> > > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > > >
> > > >
> > > > Visit me at http://www.valstar.net/~hallenbeck
> > > > The Moon is Waning Gibbous (91% of Full)
> > > >
> > > >
> > > > _______________________________________________
> > > > Speakup mailing list
> > > > Speakup@braille.uwo.ca
> > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > >
> > >
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: weather from shell
` Gregory Nowak
@ ` Janina Sajka
0 siblings, 0 replies; 30+ messages in thread
From: Janina Sajka @ UTC (permalink / raw)
To: speakup
Maybe you should try telnet to the ip address directly?
:[root@toccata 12:47:10] etc#:
:[root@toccata 12:47:15] etc#:w
Trying 66.28.69.161...
Connected to rainmaker.wunderground.com.
Escape character is '^]'.
------------------------------------------------------------------------------
* Welcome to THE WEATHER UNDERGROUND telnet service!
*
------------------------------------------------------------------------------
*
*
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
*
*
*
* We now have a way you can contribute to wunderground.com for use of
this *
* ad-free, no-cost telnet service: become a Weather Underground member!
For *
* just $5, join via: http://www.wunderground.com/members/signup.php
*
*
*
*
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
*
*
*
* **Note: If you cannot get past this opening screen, you must configure
*
* your telnet program to send a line feed instead of just a carriage
*
* return, or use a different telnet program that does so.
*
*
*
* comments: jmasters@wunderground.com
*
------------------------------------------------------------------------------
On Sat, 2 Mar 2002, Gregory Nowak wrote:
> I just tried telneting to rainmaker.wunderground.com on the standard telnet port, and it doesn't work. What I mean is that I could get in unlike before, but whenever I enter a city code, ask for a list of valid city codes, or ask for a valid list of state codes, it says something like network is down. This was yesterday, and today the telnet session simply times out. However, the web interface works grate.
> Greg
>
>
> On Fri, Mar 01, 2002 at 11:14:31PM -0700, Steve Holmes wrote:
> > I just used it tonight. Though I recall opening up a telnet session
> > manually to the same site, forgetting the port number and got same
> > results. So I'm not sure what port 3000 does that isn't readily available
> > to normal telnet users.
> >
> > On Fri, 1 Mar 2002, Gregory Nowak wrote:
> >
> > > The last time I checked, port 3000 on rainmaker.wunderground.com is no longer available.
> > > Greg
> > >
> > >
> > > On Fri, Mar 01, 2002 at 01:22:51PM -0700, Steve Holmes wrote:
> > > > With Slackware, the games has an expect script called 'weather' it in turn
> > > > telnets to rainmaker.wunderground.com port 3000. Be to have expect
> > > > installed from the tcl series or this script won't run.
> > > >
> > > > On Fri, 1 Mar 2002, Charles Hallenbeck wrote:
> > > >
> > > > > Here is a script I use. I call it 'wxw'.
> > > > > #!/bin/bash
> > > > > lynx http://braille.wunderground.com/
> > > > >
> > > > > I guess I might as well have made it an alias instead of a
> > > > > script.
> > > > > Chuck
> > > > >
> > > > > On Fri, 1 Mar 2002, Raul A. Gallegos wrote:
> > > > >
> > > > > > Hi. I know this was discussed before however I can't find it in the
> > > > > > archives by searching for the subject keyword "weather".
> > > > > >
> > > > > > How can I find weather tempratures and forcasts from the shell? Is
> > > > > > there a text program I can install or is there a service I can telnet
> > > > > > into to find out/
> > > > > >
> > > > > > Thanks.
> > > > > > --
> > > > > > If you are good, you will be assigned all the work. If you are real
> > > > > > good, you will get out of it.
> > > > > > Raul A. Gallegos - http://www.asmodean.net
> > > > > >
> > > > > > _______________________________________________
> > > > > > Speakup mailing list
> > > > > > Speakup@braille.uwo.ca
> > > > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > > > >
> > > > >
> > > > > Visit me at http://www.valstar.net/~hallenbeck
> > > > > The Moon is Waning Gibbous (91% of Full)
> > > > >
> > > > >
> > > > > _______________________________________________
> > > > > Speakup mailing list
> > > > > Speakup@braille.uwo.ca
> > > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > Speakup mailing list
> > > > Speakup@braille.uwo.ca
> > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
--
Janina Sajka, Director
Technology Research and Development
Governmental Relations Group
American Foundation for the Blind (AFB)
Email: janina@afb.net Phone: (202) 408-8175
Chair, Accessibility SIG
Open Electronic Book Forum (OEBF)
http://www.openebook.org
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy Darcy Burnard
` audiogalaxy randy turner
@ ` randy turner
` audiogalaxy Toby Fisher
` audiogalaxy randy turner
2 siblings, 1 reply; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: Speakup Mailing-list
hi darcey,
i tried a script like yours several nights even during non peek times
and still i am unable to connect to there service.
i am writing audiogalaxy to see if my password is still ok with them.
i assume that it should be because when i log in to there web page it
logs me in so not sure what the problem is
thanks
randy
On Fri, 1 Mar 2002, Darcy Burnard wrote:
> Hi Randy. Yes, for some reason, audiogalaxy does this, but it does still
> work. According to the web site, you've now got to put the ip address and
> port number for the audiogalaxy server on the command line. However, even
> when you do this, often it will still say invalid account and delete your
> account.txt file. But if you're persistant, it will eventually work. You
> might want to backup that file, and put something like the following in to
> a script.
> rm logv520.txt
> cp .account.bak account.txt
> ../AGSatellite 64.245.58.81 21 &
>
> Note that I put the command to delete the log file in there because it
> does get rather large after a while.
> HTH
> Darcy
>
> On Fri, 1 Mar 2002, randy turner wrote:
>
> >
> >
> > hi all,
> > i was running the audiogalaxy for linux until a few months ago
> > can someone who is running it under linux
> > tell me if it still works under linux?
> > i downloaded the latest version of it
> > built the account.txt file and the shares.txt file
> > but it deletes the account file and tells me invalid account
> > i am able to log on to the web site ok
> > with my user name and password
> > so that proves that i am still active with them.
> > thanks in advance
> > randy
> >
> >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy randy turner
@ ` Toby Fisher
0 siblings, 0 replies; 30+ messages in thread
From: Toby Fisher @ UTC (permalink / raw)
To: Speakup Mailing-list
On Mon, 4 Mar 2002, randy turner wrote:
>
> i tried a script like yours several nights even during non peek times
> and still i am unable to connect to there service.
> i am writing audiogalaxy to see if my password is still ok with them.
> i assume that it should be because when i log in to there web page it
> logs me in so not sure what the problem is
Don't know if it's the smae for the Linux client, but under ineblows it
could take several attempts to get signed in, because the server seemed to
be very loaded. Once I'd actually done this once, and the account was set
up in the client, all seemed to go fine and I could get in no problem.
Cheers.
--
Toby Fisher Email: toby@g0ucu.freeserve.co.uk
Tel.: +44(0)1480 417272 Mobile: +44(0)7974 363239
ICQ: #61744808
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy Darcy Burnard
` audiogalaxy randy turner
` audiogalaxy randy turner
@ ` randy turner
` audiogalaxy Gregory Nowak
2 siblings, 1 reply; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: Darcy Burnard; +Cc: Speakup Mailing-list
hi darcy,
just want to tell you that the file format is not correct in there
instructions
for the account.txt file the format should be
user name
password
email
thanks to all for there help
randy
On Fri, 1 Mar 2002, Darcy Burnard wrote:
> Hi Randy. Yes, for some reason, audiogalaxy does this, but it does still
> work. According to the web site, you've now got to put the ip address and
> port number for the audiogalaxy server on the command line. However, even
> when you do this, often it will still say invalid account and delete your
> account.txt file. But if you're persistant, it will eventually work. You
> might want to backup that file, and put something like the following in to
> a script.
> rm logv520.txt
> cp .account.bak account.txt
> ../AGSatellite 64.245.58.81 21 &
>
> Note that I put the command to delete the log file in there because it
> does get rather large after a while.
> HTH
> Darcy
>
> On Fri, 1 Mar 2002, randy turner wrote:
>
> >
> >
> > hi all,
> > i was running the audiogalaxy for linux until a few months ago
> > can someone who is running it under linux
> > tell me if it still works under linux?
> > i downloaded the latest version of it
> > built the account.txt file and the shares.txt file
> > but it deletes the account file and tells me invalid account
> > i am able to log on to the web site ok
> > with my user name and password
> > so that proves that i am still active with them.
> > thanks in advance
> > randy
> >
> >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy randy turner
@ ` Gregory Nowak
` audiogalaxy randy turner
0 siblings, 1 reply; 30+ messages in thread
From: Gregory Nowak @ UTC (permalink / raw)
To: speakup
I created my account.txt according to their instructions. Specifically, it has just the username and password on separate lines, and the satellite works just fine.
Greg
On Tue, Mar 05, 2002 at 03:07:29PM -0600, randy turner wrote:
>
>
> hi darcy,
> just want to tell you that the file format is not correct in there
> instructions
> for the account.txt file the format should be
> user name
> password
> email
>
> thanks to all for there help
> randy
>
> On Fri, 1 Mar 2002, Darcy Burnard wrote:
>
> > Hi Randy. Yes, for some reason, audiogalaxy does this, but it does still
> > work. According to the web site, you've now got to put the ip address and
> > port number for the audiogalaxy server on the command line. However, even
> > when you do this, often it will still say invalid account and delete your
> > account.txt file. But if you're persistant, it will eventually work. You
> > might want to backup that file, and put something like the following in to
> > a script.
> > rm logv520.txt
> > cp .account.bak account.txt
> > ../AGSatellite 64.245.58.81 21 &
> >
> > Note that I put the command to delete the log file in there because it
> > does get rather large after a while.
> > HTH
> > Darcy
> >
> > On Fri, 1 Mar 2002, randy turner wrote:
> >
> > >
> > >
> > > hi all,
> > > i was running the audiogalaxy for linux until a few months ago
> > > can someone who is running it under linux
> > > tell me if it still works under linux?
> > > i downloaded the latest version of it
> > > built the account.txt file and the shares.txt file
> > > but it deletes the account file and tells me invalid account
> > > i am able to log on to the web site ok
> > > with my user name and password
> > > so that proves that i am still active with them.
> > > thanks in advance
> > > randy
> > >
> > >
> > >
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> >
>
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
^ permalink raw reply [flat|nested] 30+ messages in thread
* Re: audiogalaxy
` audiogalaxy Gregory Nowak
@ ` randy turner
0 siblings, 0 replies; 30+ messages in thread
From: randy turner @ UTC (permalink / raw)
To: speakup
thanks for the help
randy
On Tue, 5 Mar 2002, Gregory Nowak wrote:
> I created my account.txt according to their instructions. Specifically, it has just the username and password on separate lines, and the satellite works just fine.
> Greg
>
>
> On Tue, Mar 05, 2002 at 03:07:29PM -0600, randy turner wrote:
> >
> >
> > hi darcy,
> > just want to tell you that the file format is not correct in there
> > instructions
> > for the account.txt file the format should be
> > user name
> > password
> > email
> >
> > thanks to all for there help
> > randy
> >
> > On Fri, 1 Mar 2002, Darcy Burnard wrote:
> >
> > > Hi Randy. Yes, for some reason, audiogalaxy does this, but it does still
> > > work. According to the web site, you've now got to put the ip address and
> > > port number for the audiogalaxy server on the command line. However, even
> > > when you do this, often it will still say invalid account and delete your
> > > account.txt file. But if you're persistant, it will eventually work. You
> > > might want to backup that file, and put something like the following in to
> > > a script.
> > > rm logv520.txt
> > > cp .account.bak account.txt
> > > ../AGSatellite 64.245.58.81 21 &
> > >
> > > Note that I put the command to delete the log file in there because it
> > > does get rather large after a while.
> > > HTH
> > > Darcy
> > >
> > > On Fri, 1 Mar 2002, randy turner wrote:
> > >
> > > >
> > > >
> > > > hi all,
> > > > i was running the audiogalaxy for linux until a few months ago
> > > > can someone who is running it under linux
> > > > tell me if it still works under linux?
> > > > i downloaded the latest version of it
> > > > built the account.txt file and the shares.txt file
> > > > but it deletes the account file and tells me invalid account
> > > > i am able to log on to the web site ok
> > > > with my user name and password
> > > > so that proves that i am still active with them.
> > > > thanks in advance
> > > > randy
> > > >
> > > >
> > > >
> > > >
> > > > _______________________________________________
> > > > Speakup mailing list
> > > > Speakup@braille.uwo.ca
> > > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > > >
> > >
> > >
> > > _______________________________________________
> > > Speakup mailing list
> > > Speakup@braille.uwo.ca
> > > http://speech.braille.uwo.ca/mailman/listinfo/speakup
> > >
> >
> >
> > _______________________________________________
> > Speakup mailing list
> > Speakup@braille.uwo.ca
> > http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
> _______________________________________________
> Speakup mailing list
> Speakup@braille.uwo.ca
> http://speech.braille.uwo.ca/mailman/listinfo/speakup
>
^ permalink raw reply [flat|nested] 30+ messages in thread
end of thread, other threads:[~ UTC | newest]
Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
weather from shell Raul A. Gallegos
` Ann Parsons
` Janina Sajka
` randy turner
` Janina Sajka
` randy turner
` randy turner
` audiogalaxy randy turner
` audiogalaxy Gregory Nowak
` audiogalaxy randy turner
` audiogalaxy Darcy Burnard
` audiogalaxy randy turner
` audiogalaxy randy turner
` audiogalaxy Toby Fisher
` audiogalaxy randy turner
` audiogalaxy Gregory Nowak
` audiogalaxy randy turner
` weather from shell Charles Hallenbeck
` Raul A. Gallegos
` Charles Hallenbeck
` Steve Holmes
` Gregory Nowak
` Raul A. Gallegos
` Ryan Mann
` Janina Sajka
` Steve Holmes
` Janina Sajka
` Gregory Nowak
` Janina Sajka
` Janina Sajka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).