Skip to content

Instantly share code, notes, and snippets.

View masasdani's full-sized avatar

Masas Dani masasdani

View GitHub Profile
@masasdani
masasdani / symlink
Created February 4, 2012 23:21
symlink to different target directory name
@masasdani
masasdani / openClose
Created November 14, 2011 04:09
Event to manipulate Visibility Element HTML
function tutup(id){
document.getElementById(id).style.visibility='hidden';
}
function buka(id){
document.getElementById(id).style.visibility='visible';
}
@masasdani
masasdani / scriptpermission
Created October 19, 2011 04:34
change default secure permission to /var/www/
#find /var/www/ -type d -print0 | xargs -0 chmod 755
#find /var/www/ -type f -print0 | xargs -0 chmod 644