Tag Archives: JavaScript

Dynamic Animations

I’ve been making some pretty cool (in my opinion) animations lately using no images, no Flash, and no Silverlight.  All I’ve been using is JavaScript, CSS, and a tiny bit of SVG. You can see the first two I made … Continue reading

Posted in Technology | Tagged , | Comments Off

LlamaWorld

Although there are no llamas in LlamaWorld, there is plenty of JavaScript.  In fact, almost the entire world is JavaScript. At the moment, most of LlamaWorld‘s code is directly taken from an example on the Mozilla Developer Center. If you beat … Continue reading

Posted in Technology | Tagged , , , | Comments Off

VKitty

An online friend of mine has tried to make a virtual cat game several times and gave up each time.  But this time is different.  This time, she has the support of a programmer, and I won’t let her give … Continue reading

Posted in Technology | Tagged , , , | Comments Off

Unpacking /packer/

Ever since I started working on the mostly Ajax app “VKitty“, I’ve been looking into JavaScript compression, and trying to figure out how it works.  Most compressors have very simple ways to compress JavaScript, by simply removing whitespace, but Dean … Continue reading

Posted in Technology | Tagged , , | 1 Comment

The ultimate site redirect

Add the following lines to your .htaccess file: RewriteCond %{HTTP_HOST} !^example\.com$ [NC] RewriteRule ^(.*)$ http://example.com/$1 [L,R=301] of course, you would change example.com to your domain name, and example\.com to your domain name with backslashes before the dots. Add the following … Continue reading

Posted in Technology | Tagged , , , | 1 Comment