I want a refund
by v_Enhance, Jun 13, 2010, 5:50 AM
Today my mom dragged me to go cherry picking.
I don't like summer temperatures....
When I got home I didn't feel like doing anything so I got onto my computer. I decided to waste time, and these are the results:
Can I get a refund for the cherry picking?
I don't like summer temperatures....

When I got home I didn't feel like doing anything so I got onto my computer. I decided to waste time, and these are the results:
- Concoction for trying to make blog titles at the top of a browser look nicer (yay Google. Thanks so much to this) I ended up with this Greasemonkey script. It worked (so far)
String.prototype.unescapeHtml = function () { var temp = document.createElement("div"); temp.innerHTML = this; var result = temp.childNodes[0].nodeValue; temp.removeChild(temp.firstChild); return result; } var blogH1 = document.getElementsByTagName('h1')[0]; var theBlogTitle = blogH1.innerHTML; var bullet = "• " var aops = "AoPS "; var coolBullet = bullet.unescapeHtml() document.title = aops + coolBullet + theBlogTitle + document.title;
- Then I decided that my blog was slightly too boring in that there was nothing nontrivial on it so I used CSSand a custom widget
/* custom stylesheet */ div.entry{ opacity:0.7; filter:alpha(opacity=70); } div.entry:hover{ opacity:1.0; filter:alpha(opacity=100); } body { font: "comic sans ms" /* For stupid IE */ behavior: url(http://dl.dropbox.com/u/4538665/csshover3.htc); } div#custom_block_cb53544 { position: absolute; left: 20%; top: 0.7in; border: thin solid red; background-color: #DDDDDD; opacity:0.5; filter:alpha(opacity=50); font-size:20px; } div#custom_block_cb53544:hover { opacity: 1.0; filter:alpha(opacity=100); } #shout_post { height:20%; overflow:scroll;} #shout_post:focus { min-height:200%; height:200%;} #shout_post:hover { min-height:200%; height:200%;}
to try and liven things up.[hide="Pichu!!"] [img]http://i12.photobucket.com/albums/a238/cutenumel/Presents/evanbday.png[/img] [/hide] *smiles omitted*
- I wrote this in the Test Forum just to get to 200 posts (then I went back to 199... ) .
- Then when I previewed this and decided the code environments looked ugly so I added more CSS
div.codecontent { background-color: #FFF7D7; border: thin solid blue; position: relative; left: 5px; padding:6px; }
- Then I added even more CSSbecause I felt the list was too ugly.
ul { list-style: url(http://www.aopskids.com/views/aops/imageset/green_bulletpoint.gif) }
- Then I (finally) posted this entry.
Can I get a refund for the cherry picking?

This post has been edited 3 times. Last edited by v_Enhance, Jun 17, 2010, 4:12 AM