Open Source Pimp
A friend at work heard a story about my friend Dave and I and thought this was appropriate. LMAO.
read onA friend at work heard a story about my friend Dave and I and thought this was appropriate. LMAO.
read onI 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.
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.
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 onSo 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 onI 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 onI’ve create a new background image today and think I’ll make a shirt out of it. It pretty much summarizes my day today. You can get this background image in 800x600 or 1024x768. If you want it in another size just let me know. For those of you who don’t understand it, be glad. For those of you who do, ‘nuff said.
read on