List running processes on shared acceelrator
prstat -Z
2701 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
Austin Govella http://thinkingandmaking.com
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="imagetoolbar" content="no" /><!-- kills IE's img toolbar --> <meta name="MSSmartTagsPreventParsing" content="true" /><!-- kills related links in XP --> <link rel="stylesheet" type="text/css" href="/styles/main.css" type="text/css" media="screen, projection" /> <!--[if lt IE 7]> <link rel="stylesheet" href="-/css/screen/patches/win-ie-old.css" type="text/css" media="screen, projection" /> <![endif]--> <!--[if gte IE 7]> <link rel="stylesheet" href="-/css/screen/patches/win-ie7-up.css" type="text/css" media="screen, projection" /> <![endif]--> <link rel="stylesheet" type="text/css" href="/styles/print.css" type="text/css" media="print" /> </head><body><div id="page"> <div id="header"> <h1>Header</h1> </div><!--END #header--> <div id="content"> </div><!--END #content --> <div id="footer"> <h1>Footer</h1> </div><!--END #footer --> </div><!--END #page --></body></html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="imagetoolbar" content="no" /><!-- kills IE's img toolbar --> <meta name="MSSmartTagsPreventParsing" content="true" /><!-- kills related links in XP --> <link rel="stylesheet" type="text/css" href="/styles/main.css" /> </head><body><div id="page"> <div id="header"> <h1>Header</h1> </div><!--END #header--> <div id="content"> </div><!--END #content --> <div id="footer"> <h1>Footer</h1> </div><!--END #footer --> </div><!--END #page --></body></html>
<input type="text" />
<input type="text" class="text" />
/* form.js AUTH: Austin Govella ([email protected]) DATE: 2006-07-01 DESC: Includes form specific javascripts. NOTE: Stolen from Jeremy Keith and Dustin Diaz: http://domscripting.com/blog/display/38 REVS: */ function appendInputTypeClasses() { /* adds input type as the inputs class */ if ( !document.getElementsByTagName ) return; var inputs = document.getElementsByTagName('input'); var inputLen = inputs.length; for ( i=0; i < inputLen; i++ ) { if ( inputs[i].getAttribute('type') ) { inputs[i].className += ' '+inputs[i].getAttribute('type'); } } }
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;} table{border-collapse:collapse;border-spacing:0;} fieldset,img{border:0;} cite,code,em,strong,th{font-style:normal;font-weight:normal;} ol,ul{list-style:none;} th{text-align:left;} h1,h2,h3,h4{font-size:100%;} q:before,q:after{content:'';} body{font:13px verdana,sans-serif;*font-size:small;*font:x-small;} table{font-size:inherit;font:100%;} select,input,textarea{font:99% verdana,sans-serif;} pre,code{font:115% monospace;*font-size:100%;} body*{line-height:1.22em;}
/* Reset default styles // base.css AUTH: Austin Govella (austin.govella@gmail.com) DATE: 2006-05-11 DESC: Resets default styles for all browsers (merges Tantek Celik's undohtml.css and Yahoo's reset.css), and sets base font size to 13px verdana (based on Y!'s fonts.css). NOTE: Included in main.css w/ @import REVS: 2006-05-12 - Removed elements not commonly used - ACG 2006-07-01 - Added base font sizing - ACG */ /* Reset default styles across browsers ---------------------------------------- */ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;} table{border-collapse:collapse;border-spacing:0;} fieldset,img{border:0;} cite,code,em,strong,th{font-style:normal;font-weight:normal;} ol,ul{list-style:none;} th{text-align:left;} h1,h2,h3,h4{font-size:100%;} q:before,q:after{content:'';} /* Set uniform base font size ---------------------------------------- */ body{font:13px verdana,sans-serif;*font-size:small;*font:x-small;} table{font-size:inherit;font:100%;} select,input,textarea{font:99% verdana,sans-serif;} pre,code{font:115% monospace;*font-size:100%;} body * {line-height:1.22em;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;} table{border-collapse:collapse;border-spacing:0;} fieldset,img{border:0;} cite,code,em,strong,th{font-style:normal;font-weight:normal;} ol,ul{list-style:none;} th{text-align:left;} h1,h2,h3,h4{font-size:100%;} q:before,q:after{content:'';}