Want a change to win $1,000 and a bunch of other prizes? How about an iPod Touch 16GB? Or a $100 giftcard to Best Buy? How? Listen up.
Details:
Each user will get his/her own unique link to spread around the net. The person that has the most hits with their link wins. The contest will last for 30 days. There will be 8 winners total. 3 based on highest click points and 5 based on a random name drawing.
How to enter?
Reply to @lifeofajackasson Twitter with the text “LinkMe” or,
Send an email to dremation@gmail.com with subject line “LinkMe”.
I will then return your email with your personalized link and more details.
Why not an automated form? To many bots out there.
So what are you waiting on? Get going! Win some prizes!
Popularity: unranked [?]
I was called upon today by a new friend to write a small script to detect the streaming status of a uStream.tv channel. I thought I”d share the script with everyone.
****OK OK, My CodeBox plugin is not working, please be patient.****
<!--Place this code where you want the status to appear. -->
<font color='red'><span id="status">status</span></font>
<!--Place this code anywhere in the page. -->
<script type="text/javascript">
function set_status(status)
{
if (status == "offline")
{ <!-- replace the img html with any html that you need -->
document.getElementById("status").innerHTML = "<img src='http://lifeofajackass.com/offline.png'/>";
}
else if (status == "live")
{ <!-- replace the img html with any html that you need -->
document.getElementById("status").innerHTML = "<img src='http://lifeofajackass.com/online.png'/>";
}
else
{ <!-- Let's do this just in case the service is down or something. You could show an error image as well -->
document.getElementById("status").innerHTML = "Error getting stream status!";
}
}
</script>
<!--Make sure to replace the channel name and API key. -->
<script type="text/javascript" src="http://api.ustream.tv/json/channel/CHANNELNAME/getValueOf/status?key=YOURAPIKEY&callback=set_status">
</script>
Popularity: unranked [?]