PHP has this really neat function, json_encode(). It can take an object of whatever type, including my own class with child arrays/classes, and make a valid JSON string out of it. I was going to write this function myself but I found PHP already has it. There’s one concern I have about it – it …

Continue reading Scary json_encode()

I got to implementing one of the primary use cases for OSTD – user uploads a template .pot file and gets a bunch of .po files with as many translated strings as possible. From a design point of view this isn’t a big deal: parse the .pot into a data structure, make a query per …

Continue reading Translating template files

A set of circumstances have left me with a lot of time on my hands. I’ve spent some of several days reading back posts on Garth Turner’s blog. He got kicked out of the conservative party so probably isn’t a total asshole. I started reading it because of my interest in real estate, and the …

Continue reading Save your money? Impossible.

If someone updates a po file with 100 translations – I need to figure out whether each translation is already in the database, and if not – insert it. The result looks like this (more about “looks” later): This is just a snippet. I am concerned that running an SQL query like this: “SELECT Translation.TranslatedString …

Continue reading Number of SQL queries per page