got blog?
Thursday, September 13th, 2007Well, now that a blog is up and running, it would seem the appropriate thing to do is to write a post.
Wordpress software seems pretty nice, the post editor reminds me of the zoho editor.
So studying php is interesting; the language is quite simple and allows fast development, but I’m sure the horrors of php code written by novices is far worse than other languages. The language is not very solid, and it seems very special-case’ish in it’s handling of everything, for example: array(...)[key] is not valid — array(...) is not really a proper expression as it would be in other languages. Ack. I wonder how much value there is in just hacking things up in php, rather than following more correct software development procedures.
The wordpress interface allows you to edit posts in a ‘visual’ mode. It seems a little dodgy, for example, if you put a link, it gets the cursor stuck within the contents of the anchor tag. Writing code to handle style chunks like that in an editor is quite tricky. I once did something similar in Fury — how do you determine where a cursor is sitting, between two blocks of ’styles’ which contain no text? It is not really feasible to allow editing with such free style blocks, there is no way for a user to manipulate the cursor across those boundaries.
