Neia Finch

Results 19 comments of Neia Finch

Apparently older versions of gitea required authentication for everything. https://git.ikeran.org/api/v1/repos/dhasenan/webkit-d for instance said 401 Unauthorized. Upgrading from 1.1.3 to the most recent version fixes this. There's still no list files...

Right. It's a *bit* of a problem, not a show-stopper. It means that dub needs to use more bandwidth (for itself and for the remote gitea server), time, and disk...

Yes, I added a cron job to download and unzip the file and set the mirror to a local file. The platform is ubuntu-16.04 x86_64, which is probably the most...

Each verse in the output is currently a modified version of a verse in the input. I tried using a per-word markov chain, but that produced rather terrible results, as...

I did in fact make 50k words. I wanted better, but it's at least more interesting than `for a in $(seq 1 50000); do echo "word!" >> book; done`. https://github.com/dhasenan/newer_testament/blob/master/web-nt-narrative-small%20big-gen.epub

Wikimedia data dumps: https://dumps.wikimedia.org/ Useful if you want, for instance, to build a dictionary with pronunciations: you can grab the whole of Wiktionary for the desired language, then parse each...

Wikidata: https://dumps.wikimedia.org/wikidatawiki/entities/ This has a[n annoyingly indirect] data model holding information about a lot of entities in machine-readable format. If you want a travelog mentioning the various types of plants...

> For a resource to preview and share your NaNoGenMo project, I'd like to recommend Write.as. It seems to support Markdown, which is pretty handy. If you're using Markdown or...

The way to do this today is: ``` D class Foo { struct Sub { int b; } int b; mixin JsonizeMe; @jsonize @property { Sub sub() { return Sub(b);...