I spent way too much time today working on bits of my dictionary.
A patch to dictfmt(1)
fixed the index pages that never loaded. There’s a new version of dictd
running now. Regular expressions work again. I guess they’ve been broken for a long time. I guess no one uses them anymore. Does anyone use the dictionary at all? I’ve been meaning to add it to the main antiflux page, but I can’t think of a heading for it. Sad but true.
Finally, I added two new dictionaries: Who Was Who: 5000 B. C. to Date and the CIA World Factbook 2003.
17 November 2003The regexs were being used mostly for crosswords last time I checked. Maybe everyone has decided that’s cheating.
grant17 November 2003I probably use the dictionary a couple times a week. I have the following in my (Mozilla-based browser) bookmarks.
Name: dictionary Location: http://antiflux.org/dictionary?define=%s&strategy=* Keyword: d
So I can type “d foo” in my location bar to look up foo.
tim17 November 2003i still use it! and i was very sad when the regular expressions weren’t working. but they are now, so hooray! back to cheating at crosswords for me…
erin17 November 2003i did, remember? you told me how to use dict instead because it was broken.
which reminds me, you never did tell me what the syntax was for regular expressions…
Date: Wed, 24 Sep 2003 17:35:51 -0600
From: Grant Hollingworth
To: Erin Lee
Subject: Re: dictionary
* Erin Lee [2003-09-24 16:58]:
> how do i use your dictionary to find words that match a certain length?
> like o______?
you use regular expressions, but that seems broken. try the
command-line program 'dict'.
dict -m -s re '^o[a-z]{6}$'
that means: start of word, an o, 6 letters, end of word.
> i forget what the syntax is ...
you probably will again...
erin18 November 2003
well fuck. now i feel really dumb.
you could try perldoc perlre, keeping in mind that not everything in perl regexs is present in posix regexs…
or read mastering regular expressions.
grant18 November 2003had I known your dictionary was so spectacular, I would have been using it. my icab address bar search used to go to http://dictionary.reference.com/search?db=*&q=, but now it goes to antiflux/dictionary. hooray.! for advertising-free antiflux.
if you’re feeling adventurous, an antiflux mirror of makeashorterlink.com would be handy, especially since antiflux is easier to type than makeashorterlink.
r.
r.19 November 2003
Yes, I find your dictionary quite useful.
I have not tried to use regular expressions, though; it seems to figure out what I’m trying to spell every time.
warcode17 November 2003