Top 5 things categories (because I ended up with too many and couldn’t figure out which ones to delete) I found on the web that I thought you should see:
Sustainability:
- Cool house in the middle of a hill (Hat tip Path to Freedom) – don’t think Susan would let me live in something like this.
Adoption:
- Adoption is coming to Sesame Street Nov 6-7 (Hat tip Birth/First Parent Blog).
- Avery reposts his WIBMAID (Well Intentioned But Misinformed Adoption Ignorance Disorder) post; still funny the second time
- Melisa Fay Greene on NPR’s All Things Considered talks about Madona’s adoption.
Blogging:
- In the spirit of my obsession with my stats, here’s how to get the most out of your digg traffic (note Digg=reddit for techies)
Halloween:
- Carve a pumpkin on-line (Hat tip Rocks in my dryer)
- LAPD respond to halloween display thinking it’s a real plane crash (pic) (reddit)
Fun with javascript:
- OK, last one, this is really cool. Go to a web page with a lot of images on the screen (Like here if you can’t think of anywhere). Then copy and paste this into the address bar (these guys showed me how):
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName(“img”); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position=’absolute’; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+”px”; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+”px”}R++}setInterval(‘A()’,5); void(0);