lullabytes.net

This site came about while listening to the latest Lullabot podcast: Episode 48, when eaton made the profound statement, ā€œWhat are you, like, some kind of taxonomy nazi?ā€. This got me to thinking that Iā€™d like that for a sound on my iPhoneā€¦ wouldnā€™t it be cool to have some sound bytes from all the crazy things eaton says on those podcasts? How about eatonbytes.com? Why stop there? How about lullabytes.com? Unfortunately lullabytes.com was taken, but lullabytes.net wasnā€™t! ;) Check it out, upload some of your favs and share some ideas for the site here. Thanks!

read on

Open Source Pimp

A friend at work heard a story about my friend Dave and I and thought this was appropriate. LMAO.

read on

Try, Learn, Know and then Teach

I make cool stuff at work. I learn something every day that makes me excited and in awe that I get paid to learn, and use, while being taught by the most enigmatic geniuses that I could even call friend, after a month or so of work comradere. Darkness turns to light with the slightest of gestures from the hands of such as these, that one might stopā€¦ and wonders how they, themselves could become something of such magnitudeā€¦ if only they try, learn, know and then teach.

Try, Learn, Know and then Teach.

I am a Drupal Developer, and I love my job. And though itā€™s good to be paid to do what I do, so that I might live in our world, and survive, it is so much more rewarding to live by a Basic Standard in a community of individuals that live by a basic oath, simple, plain, and yet ohā€¦ so full of meaning. Try, Learn, Know, and then Teach. A creed of this simplicity and magnitude has yet to be developed and aspired to, other then by so many as those that see Open Source as a way of life, a desire, and a monologue to happiness. The principles not only can be seen, and used well, within software development, but of your life in general. An that is what intrigued me the most when I found Drupal.

Come again?

I know it sounds somewhat fanatical and naive, but if you think back to your kindergarten rules, what is there NOT in Drupalā€™s Open Source Way of Life that could not be applied to a life and how it should be lived? Drupalā€™s success has been attribute to that and succinctly profound. So live on Open Source, live onā€¦ those that thought up Open Source, and please, participate and become someone you respect in a community that truly appreciates those that try, learn, know and then teach.

read on

Jerad goes to New York

So itā€™s been a long time since Iā€™ve posted, and there has been so much going on in my life. Iā€™ve moved to New York City to work with Sony BMG making websites for rockstars. I gotta say, itā€™s been a HUGE change for me. My calm, collected country life where I lived all alone in the woods with the ability to go camping in my back yard was replaced by the hustle and bustle of New York City, staying in a studio apartment next to the Empire State building.

read on

jQuery checkbox goodness

I was working on a select all feature today and just wanted to share this with the world. (a.k.a. keep it for later)

$(document).ready( function() {
  $('a#select_all').click( function() {
    $('input:checkbox').each( function() {
      this.checked = !this.checked;
    });
    return false;
  });
});

The first item to note is that jQuery created pseudo classes for input.

$('input:checkbox');
...
$('input:textbox');
... etc.

The second item to note, which I thought was ingenious, was setting the value of the checkbox to the inverse of itā€™s current value.

this.checked = !this.checked;

Works great and itā€™s short and sweet. Who loves jQuery?

read on