Submissions from 2015-02-01 to 2015-02-02 (5 total)

Just polished up/commented a bunch of code, some minor bug fixes, etc.

So after a few days away on the South coast for awesome roleplaying event I wanted to get back to the space larp but I'm tired from Travel so been coding up some card games for an IRC bot we share in a chatroom with some friends in Python.

The exercise 8-7 was Tic-Tac-Toe, so I decided to give that one a shot. It ended up being pretty easy based on the requirements they gave in the example. I didn't really like the the 1-9 placement, so I decided to do x, y top left as 0, 0 and bottom right as 2, 2 instead. It was pretty nice to see that the code I came up with wasn't vastly different than the answer they provided.


I also completed exercise 7-9 which was to display numbers 0-16 in bases 2, 10, & 16. This one was pretty trivial.

7-9.fth158 bytes
6 downloads
8-7.fth490 bytes
4 downloads

Ah! I missed posting yesterday!

No problem though, I promise I actually did some more work on the compiler. I unfortunately wasted a bit of time trying to design how my code generation would work instead of just getting stuck into the code and re-factoring later.

Today (so far) I've gotten variables from components passing into the sub-components used for the layout, which is really neat! My next goal will be to hopefully get my code generation working again with this new system! Then I'll continue building a website to see what other features would be nice for web development.