Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more. It’s translated to well-formatted, standard CSS using the command line tool or a web-framework plugin.
http://sass-lang.com/
These are my personal notes that I am making on my journey through computer science. It's just a great way for me to organize my thoughts and just maybe, I'll help someone else along the way. If this was any help, leave a comment.
Saturday, September 17, 2011
Thursday, August 25, 2011
Saturday, June 11, 2011
jQuery Image RollOver
Here is the JQuery Script
$(function() {
$('img[data-hover]').hover(function() {
$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
}).each(function() {
$('
').attr('src', $(this).attr('data-hover'));
});;
});
Here is the var you add to the img

Here is the original link
http://www.selfcontained.us/2008/03/08/simple-jquery-image-rollover-script/
$(function() {
$('img[data-hover]').hover(function() {
$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
}).each(function() {
$('
});;
});
Here is the var you add to the img

Here is the original link
http://www.selfcontained.us/2008/03/08/simple-jquery-image-rollover-script/
jQuery Image RollOver
$(function() {
$('img[data-hover]').hover(function() {
$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
}).each(function() {
$('
});;
});

jQuery Image RollOver
$(function() {
$('img[data-hover]').hover(function() {
$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
}).each(function() {
$('
').attr('src', $(this).attr('data-hover'));
});;
});

Tuesday, April 26, 2011
How to grep in unix
The "grep" command allows you to find text within a file
grep [options] [search query / pattern] [where]
Some options
-r / recursive: read all files under each directory, recursively
-i / ignore case: upper - lower case friendly
Wednesday, February 16, 2011
Subscribe to:
Posts (Atom)