Category Archives: Web stuff

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

CANVAS Gotcha (Precision)

Been playing around with the <CANVAS> tag. Overall, it works pretty well. However, there was this little bit o’ joy: The transforms are all based on 32-bit floats. (See the WebKit code, e.g. translate, transform, &c.) Since 32-bit floats only … Continue reading

Posted in Web stuff | Comments Off

EMs

A reader writes: Can you add option to print in larger print? I print puzzles, and need larger squares for possible choices, mostly 8’s and 9’s. As it turns out, this was pretty easy to do. If you visit my … Continue reading

Posted in Web stuff | Comments Off

NSURL, Trailing Slashes, and OAuth

Here’s a surprisingly important note from the documentation for the NSURL class’ path method: Return Value The path of the URL, unescaped with the stringByReplacingPercentEscapesUsingEncoding: method. If the receiver does not conform to RFC 1808, returns nil. If this URL … Continue reading

Posted in iPhone, Python, Web stuff | Comments Off

Django Project Layout

As a sort-of-followup to my brief remarks of last week, today I’m going to say a few words about how I lay out my Django projects, and how I configure the Apache server to present them. There’s nothing too surprising … Continue reading

Posted in Python, Web stuff | Comments Off

IE6 Hacks

Internet Explorer 6 is (finally) disappearing. This is a good thing. Whether you can consider it dead at this point is a question for the individual web developer. When I was putting together a page for Fightcard I decided to … Continue reading

Posted in Web stuff | Comments Off

Twitter, OAuth, and Custom URL Schemes

If you want to access the Twitter API from your iPhone app, you’re going to have to use OAuth. (Twitter is turning off Basic Authentication support at the end of June.) To use OAuth, you need to follow these basic … Continue reading

Posted in iPhone, Web stuff | Comments Off

Projections

Today I’d like to present a little Python script that extrapolates Webalizer reports. Webalizer is a “fast, free web server log file analysis program” that my webhost uses to produce HTML traffic reports. These reports include month-by-month totals for the … Continue reading

Posted in Python, Web stuff | Comments Off

Licenses

Last week, a reader wrote in with this question: [Y]ou’ve got all this great code, but you haven’t declared a license. Is it public domain, or BSD? This is, as they say, a fair question. I address it today.

Posted in iPhone, Planet Microsoft, Projects, Python, Reverse Engineering, UNIX, Web stuff | Comments Off

Labor Day

Since it’s Labor Day in the U.S. today, and since I just did an upgrade of WP to 2.8.4 (please do write if you see anything wonky) I though I’d do something short: A quick check on bandwidth pricing, which … Continue reading

Posted in Web stuff | Comments Off

Load/Save

When I implemented my web-based port of Taipan!, I added one minor feature: I let the user save (and load) a game to (or from) a single savegame ‘slot’. It can take a few hours to work your score up … Continue reading

Posted in Projects, Web stuff | Comments Off