You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

ChristianKl comments on The rational way to name rivers - Less Wrong Discussion

2 Post author: PhilGoetz 06 August 2014 03:41PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (42)

You are viewing a single comment's thread. Show more comments above.

Comment author: ChristianKl 09 August 2014 10:18:48PM 0 points [-]

That would be difficult. Deseret script is phonetic, so you'd have to either look up the pronunciation for each word or eat the imperfection from the ~40% of words that can't be easily predicted.

Yes you need a phonetic dictionary. eSpeak is a project where people already dealt with the problem of predicting phonetics. You could start with the values that eSpeak produces and allow users to edit them in some sort of Wiki to improve on the eSpeak IPA values.

It would be possible to automatically convert Latin to Deseret (or Shavian) and back, but it wouldn't be easy, and it probably couldn't be done quickly enough to have a browser plugin do it.

Local database lookups are very fast I don't see how speed on a client side browser plugin would be an issue.

Comment author: [deleted] 09 August 2014 10:54:40PM 0 points [-]

Local database lookups are very fast I don't see how speed on a client side browser plugin would be an issue.

Fast enough that you can do a few hundred of them per page? (Not rhetorical; I don't know.)

Textspeak substitution wouldn't actually be a problem; I don't know why I thought otherwise. And back-conversion to Latin would just require brute-forcing words that don't show up in the dictionary.

Comment author: ChristianKl 10 August 2014 12:05:42AM 0 points [-]

Fast enough that you can do a few hundred of them per page? (Not rhetorical; I don't know.)

Yes, select queries don't take much time when you have an index. Thank Moore's law.