Archive for March, 2009

When I found out about Delicious, I couldn’t see the attraction.

I mean … bookmarks? I’m going to use a Social Media site to store URL’s ?

I finally got a second pc (Asus Eee), and wanted to be able to access my Desktop bookmarks, so I was at first doing the whole Firefox export hassle, and copying it to the notebook via a USB drive, but then started using Delicious along with the Firefox plugin for it - keep it all on the Net, very easy.

The main reason for mentioning Delicious, though, is its usage along with the FF plugin.

Read the rest of this entry »



When using jQuery, it’s almost a given that you are using the
$(document).ready(function() {} )
functionality in order to immediately, upon page load, attach events to controls - things like attaching a check-all-boxes() function to the checkbox input. I thought I had everything organized correctly when I simply had the django blocks {* *}, to only include the associated javascript so that the base.html template file would have it.

base.html
  - items.html (inherits base.html)
  - mealplans.html (inherits base.html)

And then in each of those:
  - items.html
    {% block js_ready %}
              massive amount of javascript,
             (especially since my latest site,
             fridgeclick.com has a lot of ajax)
    {% endblock %}
 - mealplans.html  ( the same here )

However modularized I thought this was, when I did a “view source” in the browser after navigating to either of these pages, there was a big mess, way too much javascript looking back at me.

Read the rest of this entry »