mi tumblr
joaquin núñez
March 12, 2010
disabling a input without using disabled=”disabled” with jquery

$(‘.you_cant_change_this_input_unless_you_have_linux_and_you_use_the_middle_mouse_button_or_you_use_a_javascript_console_a_bookmarklet_or_something_like_that’).keydown(function(){
  return false;
}).mousedown(function(){
  return false;
});

March 11, 2010

un excelente corto chileno para reir con ganas

January 13, 2010

WTF!

January 4, 2010
the lightbox is behind the flash …

solution:

<param name=”wmode” value=”transparent”>

December 31, 2009

Everybody was kung-fu fighting!

a por ese pastel!

July 13, 2009

1234567890

yajuuuuu!

felicidades

esa materia fecal será calida?

esa materia fecal será calida?

July 3, 2009
muy bueno

muy bueno

June 8, 2009
horizontal ul li menu

<style>
<!--
ul li{
display:inline;
list-style-type:none;
} -->
</style>

how to get a background image into an html link

<style>
<!--
a {
background:#FFFFFF none no-repeat scroll 5% 40%;
border:0 none;
color:#666666;
font-size:11px;
padding:2px 4px 3px 26px;
background-image: url(/images/email.png);
}
-->
</style>


<a href="email.html">Enviar email</a>

Es con una imagen de 16x16 se ve bastante bien

April 30, 2009
psql to cvs

psql -F\; -A --pset footer -f input_file.sql -o output_file.csv database_name

how to fix Zend Studio for Eclipse after a fall … when it hangs and displays the message “Loading org.eclipse.php.core”

rm -rf /path/to/your/workspace/.metadata/.plugins/org.eclipse.core.resources/

April 23, 2009
how to mount an iso image

As root type:

mount -o loop some-image.iso /some/directory

via cyberciti.biz

April 20, 2009
how to donwload entire websites with wget

wget -r -p -U Mozilla http://www.website.com/

via linuxreviews quicktips