Category Archives: Web stuff

Musings on client-side web code: (X)HTML/CSS/JavaScript

CSS: Don’t Do This

If you look at the 8086 opcode map I put together a few weeks ago, you’ll notice that the left margins of the introductory text area and the “bodies” of the opcode tables are aligned. I like this effect. Unfortunately, … Continue reading

Posted in Web stuff | Comments Off

Generating HTML from Python

Occasionally I will write scripts which generate HTML documents. I understand the view that HTML is “object code”, and that its formatting doesn’t matter, but I’ve never been completely able to adopt that position. As a result, I usually try … Continue reading

Posted in Planet Microsoft, Python, UNIX, Web stuff | Comments Off

Installing Django on EC2 & EBS

This is a quick guide to setting up an Amazon EC2 instance as a Django server. There are many other guides along these lines, but this one includes a “turn-key” script to get everything up and running, as well as … Continue reading

Posted in Web stuff | Comments Off

Extracting bitmaps from Flash

Flash content is pretty common on the Web, but it is considerably less transparent than traditional HTML-based content. Whereas HTML-based content is built from human-readable script files and URL resource definitions, Flash content is locked inside a binary file format. … Continue reading

Posted in Reverse Engineering, Web stuff | Comments Off

EC2 Instance Performance

I’ve been working with a large-ish MySQL table on an EC2 instance. This table has approximately 147MM rows, and I’ve been disappointed with the performance I’ve seen. I took a look at how much performance I could gain by moving … Continue reading

Posted in Web stuff | Comments Off

Configuring EC2

As I work with Amazon EC2, I find that I need to configure machine images for specific tasks. In general, I’ve preferred to perform this configuration by running brief install scripts on the standard Amazon-owned images, rather than using more … Continue reading

Posted in Web stuff | Comments Off

Updating PHP on EC2 (for phpMyAdmin)

I recently installed phpMyAdmin on one of my EC2 machine images. In the course of doing so, I found it necessary to upgrade the PHP interpreter. I did not think that the best way to perform this upgrade was obvious, … Continue reading

Posted in Web stuff | Comments Off

JSON Data Formats (Bloxorz)

After writing last week’s post on a Bloxorz solution algorithm, I was inspired to revisit the solver to make it a little more useful. In addition to cleaning up a few minor bugs, I preloaded it with all 33 levels … Continue reading

Posted in Web stuff | Comments Off

Importing JS into the MochiKit Interpreter

I find the JS interpreter demo that the MochiKit folks put out to be quite useful. It makes it easy to do little JS experiments from any web browser. Many times, however, I’d like to import some external JS libraries … Continue reading

Posted in Web stuff | Comments Off

S3 Bandwidth Costs

I’ve been looking at Amazon’s S3 service recently. S3 is a great deal for storage, but I wondered how cost-effective it is at serving content. After a little computation, the answer seems to be: “It’s not that great”.

Posted in Web stuff | Comments Off