Pulls text from thefuckingweather.com
I use it in unison with wrecker14's Weather Icon and Info for temp, conditions, and icon as this geeklet pulls only the comment from the site.
Probably should've searched the site for this before going at it myself, as it looks like there's already a geeklet posted here for it. This is my first attempt at a geeklet and I am a command line noob, so any comments or suggestions are appreciated.
curl -silent http://www.thefuckingweather.com/?zipcode=80112 | sed -n 140,141p | sed -e :a -e 's/<[^>]*>//g;/</N;//ba'
Just replace the zipcode (80112) with your own!