
Originally Posted by
keyboard1333
*this is my entry in a competition for "understatement of the year." isn't a vote of confidence

That particular line wasn't my "vote of confidence," nor a vote of "no confidence" - just asserting that it's a very difficult undertaking, almost certainly many times more difficult than you might imagine. Not because of any shortcomings in your imagination, but because you're trying to convince yourself that you can do it. I'm not saying you can't, but that fact does distort your judgement at least a little bit.
Personally, I'd love to see this. It'd be quite interesting, and I'd enjoy helping out where I could. Daniel's right, though; you'd need to do a lot of tedious, complex theoretical work before you started writing any code.
Can you distill your code examples into a basic syntax? e.g.,
PHP Code:
$message = $logged_in? 'you are logged in': 'please log in';
translates to
Code:
{handle}{assignment_operator}{condition}?{value if condition is true}:{value if condition is false};
and that's not even a particularly complete representation.
Bookmarks