Skip to content

Instantly share code, notes, and snippets.

@aczid
aczid / Myspace profile table break (put this under bandmembers)
Created August 29, 2010 12:18
Myspace profile table break (no longer works)
</td></tr></table></td></tr></table></td></tr></table></div>
<style>
.bigdiv {
background-color:000000;
width:1400x; height:2000px; overflow:hidden;
margin-left:-400px;
position: absolute; left:50%; top:0%;margin-top:120px; z-index:2; text-align:left;
visibility:visible;
@aczid
aczid / gist:112457
Created May 15, 2009 21:56
Four ways to use find with rm
rm `find . -name foo`
find . -name foo | xargs rm
find . -name foo -exec rm {} \;
for i in `find . -name foo`; do rm $i; done
@aczid
aczid / css transparency
Created January 23, 2009 16:44
Opacity settings for different browsers
opacity: 0.90; /* Safari, Opera */
-moz-opacity:0.90; /* FireFox */
filter: alpha(opacity=90); /* IE */
-khtml-opacity:.90; /* Old safari */
-ms-filter:”alpha(opacity=90)”; /* IE 8*/