Guess my word
simbase.org
Guess my word
1–10 of 60 posts
Re: Guess my word
#2I got up early in the morning, made a nice breakfast (today? roasted turkey legs seasoned with my own personal italian blend, with a carrot and rutabaga mash, and a glass of whatever white wine was open and in my fridge, wasn't bad for a $7 bottle), had a cup of coffee (fresh ground, brewed using the inverted Aeropress method), cleaned the catbox, fed the cat (even though he probably ate as much as I did off the turkey legs, fat bastard he is), did my morning strength training routine, and was just waiting for it to warm up more outside so I could go for my morning walk (September in Maine means it dips into the 40s at night and doesn't warm up into the 60s until 9am), and was otherwise doing work (just because its Saturday doesn't mean I'm off the clock)...
... and then I check HN and find this at the top. Now I know what I'm going to be doing for the next few hours.
Re: Guess my word
#3Hey - That's straight from /usr/share/dict/words
Re: Guess my word
#4I love HN. I got up early in the morning, made a nice breakfast (today? roasted turkey legs seasoned with my own personal italian blend, with a carrot and rutabaga mash, and a glass of whatever white wine was open and in my fridge, wasn't bad for a $7 bottle), had a cup of coffee (fresh ground, brewed using the inverted Aeropress method), cleaned the catbox, fed the cat (even though he probably ate as much as I did o…
Re: Guess my word
#5lines = tuple(open('english_words.txt', 'r'))
min = 0;
max = len(lines)
while True :
index = min + (max-min)//2
print lines[index];
before = raw_input("Before? y/n")
if before == "y" :
max = index-1
elif before == "n" :
min = index+1
else :
break
english_words.txt can be downloaded here:
http://www.mieliestronk.com/corncob_lowercase.txtRe: Guess my word
#6Re: Guess my word
#7I love HN. I got up early in the morning, made a nice breakfast (today? roasted turkey legs seasoned with my own personal italian blend, with a carrot and rutabaga mash, and a glass of whatever white wine was open and in my fridge, wasn't bad for a $7 bottle), had a cup of coffee (fresh ground, brewed using the inverted Aeropress method), cleaned the catbox, fed the cat (even though he probably ate as much as I did o…
Re: Guess my word
#8(I got the first in 24 tries and the second in 22 with the help of a dictionary!)
Re: Guess my word
#9I love HN. I got up early in the morning, made a nice breakfast (today? roasted turkey legs seasoned with my own personal italian blend, with a carrot and rutabaga mash, and a glass of whatever white wine was open and in my fridge, wasn't bad for a $7 bottle), had a cup of coffee (fresh ground, brewed using the inverted Aeropress method), cleaned the catbox, fed the cat (even though he probably ate as much as I did o…
Re: Guess my word
#10Note: I believe that the word stays the same each day, so there may be limited replayability. There are two words by "joon" and "mike" to find everyday. (I got the first in 24 tries and the second in 22 with the help of a dictionary!)