November 25, 2007
I am working on something that needs a list of words, without regard to american vs. british or accents or anything: just has to be as many words as possible. There are a whole bunch of aspell dictionaries available. First expand the files:
preunzip *.wl
Then merge into a single list, eliminating duplicates:
sort –unique –ignore-case *.wl >list.txt
In additon, I want everything to be UTF-8:
iconv -f ISO8859-1 -t UTF-8 list.txt >ulist.txt
Pretty simple. The merged english word list has 137,883 words.
1 Comment |
Uncategorized | Tagged: aspell, iconv, sort, wordlist, words |
Permalink
Posted by fileformat
November 22, 2007
I use Debian’s “Places -> connect to server…” dialog to setup connections to a couple FTP servers. Copying and such like work fine, but when I try to use GEdit, it always opens the file read-only. I can “Save As” to the exact file, so it wasn’t a permission problem. The trick is in some totally obscure config file. Here’s the (in GUI) steps to fix it:
- Run gconf-editor
- Open the tree to /apps/gedit-2/preferences/editor/save
- Edit writable_vfs_schemes
- Add ftp to the list
Voila. Gedit saving FTP. Via the kaylus on the Ubuntu Forums, but it is the same in Debian Etch.
5 Comments |
Uncategorized | Tagged: debian, etch, ftp, gedit |
Permalink
Posted by fileformat
November 19, 2007
I recently had to install VMWare Server on a server that didn’t have the GUI bits installed. This is the list of additional packages that need to be installed for VMWare to install:
apt-get install psmisc libxrender1 libxt6
Then it will install, and the VMs can have GUI even though the host doesn’t!
Leave a Comment » |
Uncategorized | Tagged: debian, etch, vmware |
Permalink
Posted by fileformat