Search found 2 matches

by Alvin Littell
Thu Nov 08, 2018 1:41 pm
Forum: Conlangery
Topic: Things Decided for Stupid Reasons
Replies: 86
Views: 62660

Re: Things Decided for Stupid Reasons

I've decreased the number of phonemes because both LibreOffice and GoogleDocs did a poor job sorting words containing digraphs and letters with diacritics. Today I sort manually anyway, but it's too late, the vocabulary is big and I don't want radical changes.
by Alvin Littell
Thu Nov 08, 2018 1:16 pm
Forum: Conlangery
Topic: Do you know conlang software tools?
Replies: 33
Views: 25554

Re: Do you know conlang software tools?

To generate a random root I use a python program: import random def rc(): return random.choice("bccdffghhjkklllmmmnnnppqqrrrssttvvwxxyz") def rv(): return random.choice("aeiou") if 3 == random.randint(1, 3): print(''.join( [rc(), rv(), rc(), rv(), rc()] )) else: print(''.join( [r...