Tariq Ali
Tariq Ali
Sayre's Law helps illustrate the mis-match between "the amount of passion associated with an issue" and the "importance of said issue". But I have a hard time figuring out where...
To replicate: ``` >cat add_two_arrays.py def add_two_arrays(arrayA, arrayB): return arrayA + arrayB print(add_two_arrays([1,2,3], [4,5,6])) >pseudo-python add_two_arrays.py OK saved pseudo ast as add_two_arrays.pseudo.yaml >pseudo add_two_arrays.pseudo.yaml go Traceback (most recent call last):...
```ruby require 'classifier-reborn' lsi = ClassifierReborn::LSI.new strings = [ "This is filler text that I invented.This is also a paragraph that could be used", "This post is amazing. Please take...
>... [N]ew directors often work with low-budget horror movies. Witness Sam Raimi - he did Evil Dead not for any particular love of the genre, but for most-likely return on...
The [Story Compiler](https://gist.github.com/cpressey/6324fff6ef0dfdf69b96) approach defined by Chris Pressey is interesting, particularly for its unique method of story generation...You start with a "null story"... ``` [IntroduceCharacters, *, CharactersConvalesce] ``` And you...
- [Code](https://gist.github.com/tra38/3f44489b31d9798c63dcdd79bdad0d16) - [Novel](https://gist.github.com/tra38/500a97df85f8bd866ad74c0f326351bb) Uses a corpus from #84 to generate filler, pseudo-philosophical paragraphs. Preview (quotes came from a previously-generated novel - not the one linked here): >I am so...
>AI Dungeon is a free-to-play single-player and multiplayer text adventure game which uses artificial intelligence to generate unlimited content.---[Wikipedia](https://en.wikipedia.org/wiki/AI_Dungeon) The important thing about AI Dungeon is that it currently uses...
The good news is that I am right now using Calyx in a real-world project. The bad news is that doing so means you quickly encounter edge cases... Sometimes, your...
In commit [c83376](https://github.com/maetl/calyx/commit/c83376ea000d8feb8a00073ea5f9e04833ca65bb), you mentioned that it might be good "to test every block of code in the README so that any additional problems like this can be fixed straight...
Should Calyx support files written in Tracery? It seems that Tracery grammars are more common lately, and Calyx should probably support them to stay relevant (especially as one of the...