Write script compiler
Skills: C# programming.
One of the larger chunks of work which needs to be completed at some point, that's pretty interesting and stand alone, is the creation of Twipler Script.
If you grab the source code, and look at the HTML demos you'll see I've implemented a simple "machine environment" as well as a list of stack mnumonic instructions. This allows a theme developer to evaluate expressions like; pushi 3 pushi 2 addi pushi 5 eqi (does 3 + 2 = 5 ? )
The instructions also include the ability to call into a predefined set of functions (for example Math.Random). The idea would be to extend this to allow a theme developer to perform a function such as showing all followers who have 10 times more following than followers. Me.Followers.Where(them.Following > them.Followers *10)
So if you fancy writing a complier, let me know.
blog comments powered by Disqus
If you grab the source code, and look at the HTML demos you'll see I've implemented a simple "machine environment" as well as a list of stack mnumonic instructions. This allows a theme developer to evaluate expressions like; pushi 3 pushi 2 addi pushi 5 eqi (does 3 + 2 = 5 ? )
The instructions also include the ability to call into a predefined set of functions (for example Math.Random). The idea would be to extend this to allow a theme developer to perform a function such as showing all followers who have 10 times more following than followers. Me.Followers.Where(them.Following > them.Followers *10)
So if you fancy writing a complier, let me know.
