Eye-candy statistics

I was a bit bored a while ago, so I thought I’d just try to duplicate how this certain guy made his really cool pie-charts. There were so many comments asking how he did it even if they looked pretty simple to do (aside from having to actually conceptualize them of course). I even ended up making a template for it – for when I’ll use it (of which I have no friggin’ idea hahaha). In any case, just like the original guy did, I took information of visitors’ browser resolutions 1 I guess for the image to have some value however small – to prove that my decision to abandon 800×600 was the correct choice. from Mint’s Agent 007 pepper 2 A Mint plugin is called a “Pepper.”. I just did one chart though, since it was time consuming.

Notes

Notes
1 I guess for the image to have some value however small – to prove that my decision to abandon 800×600 was the correct choice.
2 A Mint plugin is called a “Pepper.”

How evil the RIAA is

On a more serious note, here’s a an audio sample of Ray Beckerman talking about the RIAA law suits. DefectiveByDesign.org, as it’s name implies is also against DRM 1 Digital Rights Management itself, on grounds that I will not discuss in this post. But the bigger issue of the RIAA suing innocent people is what’s being discussed. You can skip the introduction by Peter Brown and go directly to what Mr. Beckerman is saying (at about a minute and 47 seconds into the clip)

In case you need it, the transcript’s available here. If you live in the United States, please spread the word. Hell, even if you aren’t, spread it anyways. Digital copyright laws are bound to affect us one way or the other no matter where we live. Read More

Notes

Notes
1 Digital Rights Management

Jack Black is Computerman!

Ever wonder how Jack Black would be like in a low budget, awful (yet hilarious) home-made(ish) video? It even has its own theme song which incidentally, if you listen closely – he hums in one part of the movie School of Rock

Instant AJAX on your site

I went back to the music section, and redid the AJAX code I used. I remembered the Prototype library (prototype.js) I was using for the lightbox had its own AJAX object class – which was much more comprehensive than my implementation (error handling, browser support, etc).

I thought that since I was already using the framework anyways, might as well redo my functions altogether to utilize it. While the documentation had example codes, like any other site, I noticed that usually they always include a fixed “target” in the function. Meaning if you have a certain AJAX operation you wish to perform, the function usually took in the URL which you specify, but plugs it into a set target. While this is easily fixed, I was simply baffled as to why they don’t make it a standard to “assume” people would want at least to specify both the url and target as a default.

So I came up with code which I dubbed “InstA-JAX” to do just that. I’m sharing it here since I figured that anyone I know who is remotely interested in implementing rudimentary AJAX functionality might find it very useful as it doesn’t require them to “think” anymore hehehehe. – just plug it in, markup your HTML the proper way and you should be good to go.

Read More