473,326 Members | 2,012 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

newb ?

Hey guys,

I am back. Trying to expand on a program that was given in the book I am
studying.

No I am not a high school or college student. Doing this on my own. and
having way to much trouble

I am trying to add a hint section to a word jumble program.

I get a traceback error that the word in the jumble is not defined.
Can anyone help?
thanks,

import random

# create a sequence of words to choose from
WORDS = ("python", "easy")
# pick one word randomly from the sequence
word = random.choice(WORDS)
# create a variable to use later to see if the guess is correct
correct = word
# create variable to use for hint if needed
# create a jumbled version of the word
jumble =""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]

# start the game
print \
"""
Welcome to Word Jumble!

Unscramble the letters to make a word.
(Press the enter key at the prompt to quit.)
"""
print "The jumble is:", jumble
print "If you need a hint type 'hint' and Hit enter."

guess = raw_input("\nYour guess: ")
guess = guess.lower()
while (guess != correct) and (guess != "")and (guess != hint): ##not sure
about this either##
print "Sorry, that's not it."
guess = raw_input("Your guess: ")
guess = guess.lower()
###I don"t lnow how to set up this part correct so that when they ask for
the hint it will give it to them###
while word == easy:
if guess == hint:
print "not hard but"
guess = raw_input("Your guess: ")
guess = guess.lower()

while word == python:
if guess == hint:
print "snake"
guess = raw_input("Your guess: ")
guess = guess.lower()

if guess == correct:
print "That's it! You guessed it!\n"

print "Thanks for playing."

raw_input("\n\nPress the enter key to exit.")
Nov 22 '05 #1
24 1704

Chad Everett wrote:
Hey guys,

I am back. Trying to expand on a program that was given in the book I am
studying.

No I am not a high school or college student. Doing this on my own. and
having way to much trouble

I am trying to add a hint section to a word jumble program.

I get a traceback error that the word in the jumble is not defined.
Can anyone help?
You have several errors.
thanks,

import random

# create a sequence of words to choose from
WORDS = ("python", "easy")
# pick one word randomly from the sequence
word = random.choice(WORDS)
# create a variable to use later to see if the guess is correct
correct = word
# create variable to use for hint if needed
You didn't create a variable here. Something like

hint = "hint"

And this is the core of your problems. You are confusing a
variable name with the value assigned to it.

# create a jumbled version of the word
jumble =""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]

# start the game
print \
"""
Welcome to Word Jumble!

Unscramble the letters to make a word.
(Press the enter key at the prompt to quit.)
"""
print "The jumble is:", jumble
print "If you need a hint type 'hint' and Hit enter."
Here you have specifically told the user that the hint word is "hint".

guess = raw_input("\nYour guess: ")
guess = guess.lower()
while (guess != correct) and (guess != "")and (guess != hint): ##not sure
about this either##
It will fail because you did not define the hint variable.
Note you actually don't need a hint variable (because the
hint word never changes), you could have said

.... and (guess != "hint")

whereas (guess != correct) needs to compare against a variable
because correct does change.
print "Sorry, that's not it."
guess = raw_input("Your guess: ")
guess = guess.lower()
###I don"t lnow how to set up this part correct so that when they ask for
the hint it will give it to them###
while word == easy:
Same problem here, easy is a variable (which you haven't defined).
What you meant to say was

while word == "easy":

if guess == hint:
print "not hard but"
guess = raw_input("Your guess: ")
guess = guess.lower()

while word == python:
Ditto. But this is going to get tedious when your word list gets large.
You should have your words and their hints stored in a dictionary:

hints = {'easy':'not hard but','python':'snake'}

then you need just a single code block that can print the hint
by using the correct word to look up the hint in the dictionary.

if guess == hint:
print hints[correct]
guess = raw_input("Your guess: ")
guess = guess.lower()
if guess == correct:
print "That's it! You guessed it!\n"

print "Thanks for playing."

raw_input("\n\nPress the enter key to exit.")


Nov 22 '05 #2

Chad Everett wrote:
Hey guys,

I am back. Trying to expand on a program that was given in the book I am
studying.

No I am not a high school or college student. Doing this on my own. and
having way to much trouble

I am trying to add a hint section to a word jumble program.

I get a traceback error that the word in the jumble is not defined.
Can anyone help?
You have several errors.
thanks,

import random

# create a sequence of words to choose from
WORDS = ("python", "easy")
# pick one word randomly from the sequence
word = random.choice(WORDS)
# create a variable to use later to see if the guess is correct
correct = word
# create variable to use for hint if needed
You didn't create a variable here. Something like

hint = "hint"

And this is the core of your problems. You are confusing a
variable name with the value assigned to it.

# create a jumbled version of the word
jumble =""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]

# start the game
print \
"""
Welcome to Word Jumble!

Unscramble the letters to make a word.
(Press the enter key at the prompt to quit.)
"""
print "The jumble is:", jumble
print "If you need a hint type 'hint' and Hit enter."
Here you have specifically told the user that the hint word is "hint".

guess = raw_input("\nYour guess: ")
guess = guess.lower()
while (guess != correct) and (guess != "")and (guess != hint): ##not sure
about this either##
It will fail because you did not define the hint variable.
Note you actually don't need a hint variable (because the
hint word never changes), you could have said

.... and (guess != "hint")

whereas (guess != correct) needs to compare against a variable
because correct does change.
print "Sorry, that's not it."
guess = raw_input("Your guess: ")
guess = guess.lower()
###I don"t lnow how to set up this part correct so that when they ask for
the hint it will give it to them###
while word == easy:
Same problem here, easy is a variable (which you haven't defined).
What you meant to say was

while word == "easy":

if guess == hint:
print "not hard but"
guess = raw_input("Your guess: ")
guess = guess.lower()

while word == python:
Ditto. But this is going to get tedious when your word list gets large.
You should have your words and their hints stored in a dictionary:

hints = {'easy':'not hard but','python':'snake'}

then you need just a single code block that can print the hint
by using the correct word to look up the hint in the dictionary.

if guess == hint:
print hints[correct]
guess = raw_input("Your guess: ")
guess = guess.lower()
if guess == correct:
print "That's it! You guessed it!\n"

print "Thanks for playing."

raw_input("\n\nPress the enter key to exit.")


Nov 22 '05 #3
Mensanator,

Thanks for your help. That should get me along. I appreciate your time.

Chad
<me********@aol.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...

Chad Everett wrote:
Hey guys,

I am back. Trying to expand on a program that was given in the book I
am
studying.

No I am not a high school or college student. Doing this on my own. and
having way to much trouble

I am trying to add a hint section to a word jumble program.

I get a traceback error that the word in the jumble is not defined.
Can anyone help?


You have several errors.
thanks,

import random

# create a sequence of words to choose from
WORDS = ("python", "easy")
# pick one word randomly from the sequence
word = random.choice(WORDS)
# create a variable to use later to see if the guess is correct
correct = word
# create variable to use for hint if needed


You didn't create a variable here. Something like

hint = "hint"

And this is the core of your problems. You are confusing a
variable name with the value assigned to it.

# create a jumbled version of the word
jumble =""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]

# start the game
print \
"""
Welcome to Word Jumble!

Unscramble the letters to make a word.
(Press the enter key at the prompt to quit.)
"""
print "The jumble is:", jumble
print "If you need a hint type 'hint' and Hit enter."


Here you have specifically told the user that the hint word is "hint".

guess = raw_input("\nYour guess: ")
guess = guess.lower()
while (guess != correct) and (guess != "")and (guess != hint): ##not sure
about this either##


It will fail because you did not define the hint variable.
Note you actually don't need a hint variable (because the
hint word never changes), you could have said

... and (guess != "hint")

whereas (guess != correct) needs to compare against a variable
because correct does change.
print "Sorry, that's not it."
guess = raw_input("Your guess: ")
guess = guess.lower()
###I don"t lnow how to set up this part correct so that when they ask for
the hint it will give it to them###
while word == easy:


Same problem here, easy is a variable (which you haven't defined).
What you meant to say was

while word == "easy":

if guess == hint:
print "not hard but"
guess = raw_input("Your guess: ")
guess = guess.lower()

while word == python:


Ditto. But this is going to get tedious when your word list gets large.
You should have your words and their hints stored in a dictionary:

hints = {'easy':'not hard but','python':'snake'}

then you need just a single code block that can print the hint
by using the correct word to look up the hint in the dictionary.

if guess == hint:
print hints[correct]
guess = raw_input("Your guess: ")
guess = guess.lower()

if guess == correct:
print "That's it! You guessed it!\n"

print "Thanks for playing."

raw_input("\n\nPress the enter key to exit.")

Nov 22 '05 #4
Mensanator,

Thanks for your help. That should get me along. I appreciate your time.

Chad
<me********@aol.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...

Chad Everett wrote:
Hey guys,

I am back. Trying to expand on a program that was given in the book I
am
studying.

No I am not a high school or college student. Doing this on my own. and
having way to much trouble

I am trying to add a hint section to a word jumble program.

I get a traceback error that the word in the jumble is not defined.
Can anyone help?


You have several errors.
thanks,

import random

# create a sequence of words to choose from
WORDS = ("python", "easy")
# pick one word randomly from the sequence
word = random.choice(WORDS)
# create a variable to use later to see if the guess is correct
correct = word
# create variable to use for hint if needed


You didn't create a variable here. Something like

hint = "hint"

And this is the core of your problems. You are confusing a
variable name with the value assigned to it.

# create a jumbled version of the word
jumble =""
while word:
position = random.randrange(len(word))
jumble += word[position]
word = word[:position] + word[(position + 1):]

# start the game
print \
"""
Welcome to Word Jumble!

Unscramble the letters to make a word.
(Press the enter key at the prompt to quit.)
"""
print "The jumble is:", jumble
print "If you need a hint type 'hint' and Hit enter."


Here you have specifically told the user that the hint word is "hint".

guess = raw_input("\nYour guess: ")
guess = guess.lower()
while (guess != correct) and (guess != "")and (guess != hint): ##not sure
about this either##


It will fail because you did not define the hint variable.
Note you actually don't need a hint variable (because the
hint word never changes), you could have said

... and (guess != "hint")

whereas (guess != correct) needs to compare against a variable
because correct does change.
print "Sorry, that's not it."
guess = raw_input("Your guess: ")
guess = guess.lower()
###I don"t lnow how to set up this part correct so that when they ask for
the hint it will give it to them###
while word == easy:


Same problem here, easy is a variable (which you haven't defined).
What you meant to say was

while word == "easy":

if guess == hint:
print "not hard but"
guess = raw_input("Your guess: ")
guess = guess.lower()

while word == python:


Ditto. But this is going to get tedious when your word list gets large.
You should have your words and their hints stored in a dictionary:

hints = {'easy':'not hard but','python':'snake'}

then you need just a single code block that can print the hint
by using the correct word to look up the hint in the dictionary.

if guess == hint:
print hints[correct]
guess = raw_input("Your guess: ")
guess = guess.lower()

if guess == correct:
print "That's it! You guessed it!\n"

print "Thanks for playing."

raw_input("\n\nPress the enter key to exit.")

Nov 22 '05 #5
Chad Everett wrote:
I am back. No I am not a high school or college student.


your subject lines still suck. please read this

http://www.catb.org/~esr/faqs/smart-...tml#bespecific

before you post your next question.

(the entire article is worth reading, if you haven't done so already)

</F>

Nov 22 '05 #6
Chad Everett wrote:
I am back. No I am not a high school or college student.


your subject lines still suck. please read this

http://www.catb.org/~esr/faqs/smart-...tml#bespecific

before you post your next question.

(the entire article is worth reading, if you haven't done so already)

</F>

Nov 22 '05 #7
Fredrik Lundh wrote:
Chad Everett wrote:

I am back.


No I am not a high school or college student.

your subject lines still suck. please read this

http://www.catb.org/~esr/faqs/smart-...tml#bespecific

before you post your next question.

(the entire article is worth reading, if you haven't done so already)

Note also that the subject line on an existing thread can be changed,
though not everyone's software will track the changes, unfortunately.
It's always worth taking the time to make sure the subject line really
does describe the subject of your message - that way people with an
interest in your problem are much more likely to read it instead of
skipping over your posts.

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC www.holdenweb.com
PyCon TX 2006 www.python.org/pycon/

Nov 22 '05 #8
Fredrik Lundh wrote:
Chad Everett wrote:

I am back.


No I am not a high school or college student.

your subject lines still suck. please read this

http://www.catb.org/~esr/faqs/smart-...tml#bespecific

before you post your next question.

(the entire article is worth reading, if you haven't done so already)

Note also that the subject line on an existing thread can be changed,
though not everyone's software will track the changes, unfortunately.
It's always worth taking the time to make sure the subject line really
does describe the subject of your message - that way people with an
interest in your problem are much more likely to read it instead of
skipping over your posts.

regards
Steve
--
Steve Holden +44 150 684 7255 +1 800 494 3119
Holden Web LLC www.holdenweb.com
PyCon TX 2006 www.python.org/pycon/

Nov 22 '05 #9
Steve Holden <st***@holdenweb.com> writes:
Fredrik Lundh wrote:
Chad Everett wrote:
I am back.
No I am not a high school or college student.

your subject lines still suck. please read this
http://www.catb.org/~esr/faqs/smart-...tml#bespecific
before you post your next question.
(the entire article is worth reading, if you haven't done so already)

Note also that the subject line on an existing thread can be changed,
though not everyone's software will track the changes,
unfortunately. It's always worth taking the time to make sure the
subject line really does describe the subject of your message


[Since we're giving posting advice.]

By the same token, don't use a reply to start a new thread. Some
software *will* keep it in the thread, and if they had killed the
thread, they won't see your posts.

<mike
--
Mike Meyer <mw*@mired.org> http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.
Nov 22 '05 #10
Steve Holden <st***@holdenweb.com> writes:
Fredrik Lundh wrote:
Chad Everett wrote:
I am back.
No I am not a high school or college student.

your subject lines still suck. please read this
http://www.catb.org/~esr/faqs/smart-...tml#bespecific
before you post your next question.
(the entire article is worth reading, if you haven't done so already)

Note also that the subject line on an existing thread can be changed,
though not everyone's software will track the changes,
unfortunately. It's always worth taking the time to make sure the
subject line really does describe the subject of your message


[Since we're giving posting advice.]

By the same token, don't use a reply to start a new thread. Some
software *will* keep it in the thread, and if they had killed the
thread, they won't see your posts.

<mike
--
Mike Meyer <mw*@mired.org> http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.
Nov 22 '05 #11
On 2005-11-18, Mike Meyer <mw*@mired.org> wrote:
http://www.catb.org/~esr/faqs/smart-...tml#bespecific
before you post your next question.

If I can't tell from the subject line what the thread is about, I almost
never read it.
Note also that the subject line on an existing thread can be changed,
though not everyone's software will track the changes, unfortunately. It's
always worth taking the time to make sure the subject line really does
describe the subject of your message


[Since we're giving posting advice.]

By the same token, don't use a reply to start a new thread. Some software
*will* keep it in the thread, and if they had killed the thread, they won't
see your posts.


They don't even have to kill the original thread. By just not expanding the
thread they won't see the "new" thread hidden inside the old one.

This problem seems to be especially prevelent in c.l.p. (as are fractured
threads). I think it's due to people who read the group via an e-mail
gateway (particularly the ones who get the digest service).

Obligatory aside: I'm completely baffled why anybody would choose the
mailing list format over Usenet. I don't even read mailing lists via
mailing lists. I recommend gmane.org's NNTP server for all your mailing
list needs.

--
Grant Edwards grante Yow! It's so OBVIOUS!!
at
visi.com
Nov 22 '05 #12
On 2005-11-18, Mike Meyer <mw*@mired.org> wrote:
http://www.catb.org/~esr/faqs/smart-...tml#bespecific
before you post your next question.

If I can't tell from the subject line what the thread is about, I almost
never read it.
Note also that the subject line on an existing thread can be changed,
though not everyone's software will track the changes, unfortunately. It's
always worth taking the time to make sure the subject line really does
describe the subject of your message


[Since we're giving posting advice.]

By the same token, don't use a reply to start a new thread. Some software
*will* keep it in the thread, and if they had killed the thread, they won't
see your posts.


They don't even have to kill the original thread. By just not expanding the
thread they won't see the "new" thread hidden inside the old one.

This problem seems to be especially prevelent in c.l.p. (as are fractured
threads). I think it's due to people who read the group via an e-mail
gateway (particularly the ones who get the digest service).

Obligatory aside: I'm completely baffled why anybody would choose the
mailing list format over Usenet. I don't even read mailing lists via
mailing lists. I recommend gmane.org's NNTP server for all your mailing
list needs.

--
Grant Edwards grante Yow! It's so OBVIOUS!!
at
visi.com
Nov 22 '05 #13

Grant> Obligatory aside: I'm completely baffled why anybody would choose
Grant> the mailing list format over Usenet. I don't even read mailing
Grant> lists via mailing lists. I recommend gmane.org's NNTP server for
Grant> all your mailing list needs.

For the same reason I don't like web forums as a means of communication. I
would much rather operate in an interrupt-driven mode than have to remember
to poll some external service to get my daily helping of information.

Skip
Nov 22 '05 #14

Grant> Obligatory aside: I'm completely baffled why anybody would choose
Grant> the mailing list format over Usenet. I don't even read mailing
Grant> lists via mailing lists. I recommend gmane.org's NNTP server for
Grant> all your mailing list needs.

For the same reason I don't like web forums as a means of communication. I
would much rather operate in an interrupt-driven mode than have to remember
to poll some external service to get my daily helping of information.

Skip
Nov 22 '05 #15
On Nov 18, sk**@pobox.com wrote:
Grant> Obligatory aside: I'm completely baffled why anybody would choose
Grant> the mailing list format over Usenet. I don't even read mailing
Grant> lists via mailing lists. I recommend gmane.org's NNTP server for
Grant> all your mailing list needs.

For the same reason I don't like web forums as a means of
communication. I would much rather operate in an interrupt-driven
mode than have to remember to poll some external service to get my
daily helping of information.


Agreed!

I notice that a lot of people post here from google. I did it too
before I discovered the mailing list, which I now use because I
haven't found a news reader that I like nearly as much as mutt. It's
quite nice to combine email and news into one.

If you have any suggestions for console-based newsreaders, I'm all
ears. I have tried to setup "tin" in the past but the voluminosity of
its documentation made me give up.

--
_ _ ___
|V|icah |- lliott <>< md*@micah.elliott.name
" " """
Nov 22 '05 #16
On Nov 18, sk**@pobox.com wrote:
Grant> Obligatory aside: I'm completely baffled why anybody would choose
Grant> the mailing list format over Usenet. I don't even read mailing
Grant> lists via mailing lists. I recommend gmane.org's NNTP server for
Grant> all your mailing list needs.

For the same reason I don't like web forums as a means of
communication. I would much rather operate in an interrupt-driven
mode than have to remember to poll some external service to get my
daily helping of information.


Agreed!

I notice that a lot of people post here from google. I did it too
before I discovered the mailing list, which I now use because I
haven't found a news reader that I like nearly as much as mutt. It's
quite nice to combine email and news into one.

If you have any suggestions for console-based newsreaders, I'm all
ears. I have tried to setup "tin" in the past but the voluminosity of
its documentation made me give up.

--
_ _ ___
|V|icah |- lliott <>< md*@micah.elliott.name
" " """
Nov 22 '05 #17
On 2005-11-18, Micah Elliott <md*@micah.elliott.name> wrote:
On Nov 18, sk**@pobox.com wrote:
Grant> Obligatory aside: I'm completely baffled why anybody would choose
Grant> the mailing list format over Usenet. I don't even read mailing
Grant> lists via mailing lists. I recommend gmane.org's NNTP server for
Grant> all your mailing list needs.

For the same reason I don't like web forums as a means of
communication. I would much rather operate in an
interrupt-driven mode than have to remember to poll some
external service to get my daily helping of information.
Agreed!


If I allowed news posts to interrupt me, I'd never get anything
done. I limit e-mail to things that really do require fairly
immediate attention.
I notice that a lot of people post here from google.
Ick! Posting to usenet from google. Nasty.
I did it too before I discovered the mailing list, which I now
use because I haven't found a news reader that I like nearly
as much as mutt.
There is an NNTP patch to allow you to use mutt to read Usenet
via an NNTP server.

Mutt users who don't do that seem to like slrn -- it has a very
similar look and feel. One thing significant difference is
slrn's scoring facilities: there's nothing similar in mutt.
It's quite nice to combine email and news into one.
I actually prefer to keep them separate. for me, e-mail is for
stuff that "needs attention", and news is more of a background
thing that I glance through while waiting for a test to finish
or a make to complete.
If you have any suggestions for console-based newsreaders, I'm
all ears.
slrn is the definitive choice -- especially for a mutt user. :)
I have tried to setup "tin" in the past but the voluminosity
of its documentation made me give up.


I used tin for a couple years back in the early 90's, but I
find slrn much more efficient.

--
Grant Edwards grante Yow! My pants just went to
at high school in the Carlsbad
visi.com Caverns!!!
Nov 22 '05 #18
On 2005-11-18, Micah Elliott <md*@micah.elliott.name> wrote:
On Nov 18, sk**@pobox.com wrote:
Grant> Obligatory aside: I'm completely baffled why anybody would choose
Grant> the mailing list format over Usenet. I don't even read mailing
Grant> lists via mailing lists. I recommend gmane.org's NNTP server for
Grant> all your mailing list needs.

For the same reason I don't like web forums as a means of
communication. I would much rather operate in an
interrupt-driven mode than have to remember to poll some
external service to get my daily helping of information.
Agreed!


If I allowed news posts to interrupt me, I'd never get anything
done. I limit e-mail to things that really do require fairly
immediate attention.
I notice that a lot of people post here from google.
Ick! Posting to usenet from google. Nasty.
I did it too before I discovered the mailing list, which I now
use because I haven't found a news reader that I like nearly
as much as mutt.
There is an NNTP patch to allow you to use mutt to read Usenet
via an NNTP server.

Mutt users who don't do that seem to like slrn -- it has a very
similar look and feel. One thing significant difference is
slrn's scoring facilities: there's nothing similar in mutt.
It's quite nice to combine email and news into one.
I actually prefer to keep them separate. for me, e-mail is for
stuff that "needs attention", and news is more of a background
thing that I glance through while waiting for a test to finish
or a make to complete.
If you have any suggestions for console-based newsreaders, I'm
all ears.
slrn is the definitive choice -- especially for a mutt user. :)
I have tried to setup "tin" in the past but the voluminosity
of its documentation made me give up.


I used tin for a couple years back in the early 90's, but I
find slrn much more efficient.

--
Grant Edwards grante Yow! My pants just went to
at high school in the Carlsbad
visi.com Caverns!!!
Nov 22 '05 #19
On Nov 18, Grant Edwards wrote:
There is an NNTP patch to allow you to use mutt to read Usenet
via an NNTP server.
Yes, I'm aware of it; it's last (alpha) update was in 1999 and
it probably has some fleas. :-)
Mutt users who don't do that seem to like slrn -- it has a very
similar look and feel.


Cool! Thanks for the info. I might give it a try.

--
_ _ ___
|V|icah |- lliott <>< md*@micah.elliott.name
" " """
Nov 22 '05 #20
On Nov 18, Grant Edwards wrote:
There is an NNTP patch to allow you to use mutt to read Usenet
via an NNTP server.
Yes, I'm aware of it; it's last (alpha) update was in 1999 and
it probably has some fleas. :-)
Mutt users who don't do that seem to like slrn -- it has a very
similar look and feel.


Cool! Thanks for the info. I might give it a try.

--
_ _ ___
|V|icah |- lliott <>< md*@micah.elliott.name
" " """
Nov 22 '05 #21

Grant> If I allowed news posts to interrupt me, I'd never get anything
Grant> done. I limit e-mail to things that really do require fairly
Grant> immediate attention.

Well, I do try to limit the number of things I pay attention to. However,
as the "Python guy" at work, participating in this group and the python-dev
mailing list overlap my daytime duties. There are a few other things I
watch as well (matplotlib, pygtk, moin, scipy, etc). Running through all of
them in one place simplifies my life. Last time I checked, most of Usenet
was crap (overrun with spam), so on those few occasions where I need
something I just use Google to search for help and post via Google or Gmane.
I never have to worry about NNTP. I have no idea if my ISP (Comcast) even
provides NNTP access.

Skip
Nov 22 '05 #22

Grant> If I allowed news posts to interrupt me, I'd never get anything
Grant> done. I limit e-mail to things that really do require fairly
Grant> immediate attention.

Well, I do try to limit the number of things I pay attention to. However,
as the "Python guy" at work, participating in this group and the python-dev
mailing list overlap my daytime duties. There are a few other things I
watch as well (matplotlib, pygtk, moin, scipy, etc). Running through all of
them in one place simplifies my life. Last time I checked, most of Usenet
was crap (overrun with spam), so on those few occasions where I need
something I just use Google to search for help and post via Google or Gmane.
I never have to worry about NNTP. I have no idea if my ISP (Comcast) even
provides NNTP access.

Skip
Nov 22 '05 #23
Micah Elliott <md*@micah.elliott.name> writes:
On Nov 18, sk**@pobox.com wrote:
Grant> Obligatory aside: I'm completely baffled why anybody would choose
Grant> the mailing list format over Usenet. I don't even read mailing
Grant> lists via mailing lists. I recommend gmane.org's NNTP server for
Grant> all your mailing list needs.
For the same reason I don't like web forums as a means of
communication. I would much rather operate in an interrupt-driven
mode than have to remember to poll some external service to get my
daily helping of information. Agreed!


That's actually how I decide which form I want to use. Mail lists for
thigns I want to interrupt me, newsgroups for things I want to poll.
If you have any suggestions for console-based newsreaders, I'm all
ears. I have tried to setup "tin" in the past but the voluminosity of
its documentation made me give up.


Gnus. Not only will it run in a console, but when run in an X
environment, it'll give you (user-configurable) menu bars, tool bars,
and clickable articles.

<mike
--
Mike Meyer <mw*@mired.org> http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.
Nov 22 '05 #24
Micah Elliott <md*@micah.elliott.name> writes:
On Nov 18, sk**@pobox.com wrote:
Grant> Obligatory aside: I'm completely baffled why anybody would choose
Grant> the mailing list format over Usenet. I don't even read mailing
Grant> lists via mailing lists. I recommend gmane.org's NNTP server for
Grant> all your mailing list needs.
For the same reason I don't like web forums as a means of
communication. I would much rather operate in an interrupt-driven
mode than have to remember to poll some external service to get my
daily helping of information. Agreed!


That's actually how I decide which form I want to use. Mail lists for
thigns I want to interrupt me, newsgroups for things I want to poll.
If you have any suggestions for console-based newsreaders, I'm all
ears. I have tried to setup "tin" in the past but the voluminosity of
its documentation made me give up.


Gnus. Not only will it run in a console, but when run in an X
environment, it'll give you (user-configurable) menu bars, tool bars,
and clickable articles.

<mike
--
Mike Meyer <mw*@mired.org> http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.
Nov 22 '05 #25

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: claudel | last post by:
Hi I have a newb PHP/Javascript question regarding checkbox processing I'm not sure which area it falls into so I crossposted to comp.lang.php and comp.lang.javascript. I'm trying to...
4
by: Hari | last post by:
Basically I would like to downlod the visual basic 6.0 compiler, but i already have the vb.net compiler. I had to pay for the VB.net IDE, just wondering if I can get the vb 6.0 IDE for free or not....
0
by: David E. | last post by:
So as a programmer, what's the best thing to study? EJB? How much of the J2EE or Enterprise architecture is necessary to no? I guess I need a good overview for a newb like me... thanks.. --...
5
by: Alexandre | last post by:
Hi, Im a newb to dev and python... my first sefl assigned mission was to read a pickled file containing a list with DB like data and convert this to MySQL... So i wrote my first module which...
3
by: Walter | last post by:
But I'm stumped..... I've got a windows 2000 server and I am trying to set up PHPBB on it using a mysql database.. I am very inexperienced on this..... Ive installed mysql V4.0.20d and I can...
3
by: claudel | last post by:
Hi I have a newb PHP/Javascript question regarding checkbox processing I'm not sure which area it falls into so I crossposted to comp.lang.php and comp.lang.javascript. I'm trying to...
1
by: notbob | last post by:
Newb here! Using 4.0.20 on Slack. Slogging through the official manual. At 2.4.3 Securing the Initial MySQL Accounts, I'm finally stopped cold while trying to follow instructions. Here's what I...
4
by: Donald Newcomb | last post by:
I'm a real Python NEWB and am intrigued by some of Python's features, so I'm starting to write code to do some things to see how it works. So far I really like the lists and dictionaries since I...
6
by: Sean Berry | last post by:
Hello all I have build a list that contains data in the form below -- simplified for question -- myList = ,, ...] I have a function which takes value3 from the lists above and returns...
11
by: The_Kingpin | last post by:
Hi all, I'm new to C programming and looking for some help. I have a homework project to do and could use every tips, advises, code sample and references I can get. Here's what I need to do....
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.