This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* August 27, 2012 error fixes: | |
* | |
* Fixed + compilation to work properly with | |
* proper epsilon nodes. Fixed evaluator infinite | |
* loop check to work well with this. | |
* Some comments on the new messy (but better-working) | |
* + / * nodes/edges. | |
* (Yeah, I know, it's mostly similar to yesterday). | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* August 26, 2012 error fixes: | |
* | |
* Fixed * compilation to work properly with | |
* proper epsilon nodes. Fixed evaluator infinite | |
* loop check to work well with this. | |
* Removed large stack allocation in main(). | |
*/ | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Wannabe regex (egrep-style) | |
* Wannabe automatic regex tokenizer | |
* Wannabe egrep command (./a.out --wgr 'pattern') | |
* | |
* The wannabe egrep can make a picture of the compiled NFA | |
* this way: | |
* ./a.out --wgr 'pattern' --pic | pic | troff -ms | |
* | |
* Supported 'special' characters: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ChromakeyMan v2.2 | |
* by 'Bl0ckeduser' | |
* | |
* A simple chroma-key effect program | |
* | |
* Originally written in METAL Basic | |
* (on Mac OS 9) in 2007-2008 for ad-hoc | |
* use in a little VFX project. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ChromakeyMan v2.1 | |
* by 'Bl0ckeduser' | |
* | |
* A simple chroma-key effect program | |
* | |
* Originally written in METAL Basic | |
* (on Mac OS 9) in 2007-2008 for ad-hoc | |
* use in a little VFX project. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Print all permutations of a string, | |
* using a tree-recursive routine. I | |
* bet there are smart algorithms out | |
* there that beat this. I did not look | |
* up an algorithm when writing this. | |
* | |
* Bl0ckeduser | |
* June 26, 2012 | |
*/ |
NewerOlder