Never been to DZone Snippets before?

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

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Digg Del.icio.us DotNetKicks javascript snippets

// description of your code here

<DIV class=diggbutton>
<SCRIPT type=text/javascript>
digg_url = 'http://digg.com/software/IE7_Pain';
</SCRIPT>

<SCRIPT src="http://digg.com/api/diggthis.js" type=text/javascript></SCRIPT>
</DIV>
<p><a  href="http://vaultofthoughts.net/ct.ashx?id=f3f92dc0-810e-45fc-a82e-3d6a761af198&url=http%3a%2f%2fwww.dotnetkicks.com%2fkick%2f%3furl%3dhttp%3a%2f%2fvaultofthoughts.net%2fIE7Pain.aspx""><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://vaultofthoughts.net/IE7Pain.aspx" border="0" alt="kick it on DotNetKicks.com" /></a></p>
		<div>
			<a href="http://del.icio.us/post" onclick="window.open('http://del.icio.us/post?v=4&noui&jump=close&url='+encodeURIComponent('http://VaultOfThoughts.net/IE7Pain.aspx')+'&title='+encodeURIComponent('IE7 Pain'), 'delicious','toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/static/img/delicious.small.gif" alt="Add to del.icio.us" border="0" />Add to del.icio.us</a>
		</div>

Digg/RSS Reader

Grabs the RSS-feed from digg.com and reads it out
loud using festival.

#!/bin/sh
# Copyright (c) 2005 Davor Babic <davorb@gmail.com>
# All rights reserved.
# Usage of the works is permitted provided that this
# instrument is retained with the works, so that any
# entity that uses the works is notified of this
# instrument.
# DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.

url="http://digg.com/rss/index.xml"

echo "Parsing RSS..."
curl --silent "$url" | grep -E '(title>|description>)' | \
        sed -n '4,$p' | \
	sed -e 's/<title>//' -e 's/<\/title>//' -e 's/<description>/  /' \
	    -e 's/<\/description>//' | head -5 > digg 
echo "Reading..."
festival --tts digg
rm -rf ./digg
echo "Done."
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS