Posted by admin on February 24, 2010 – 11:57 pm
Author: slac3dork
Site: http://snippet.c0de.me
Summary: Click counter with jQuery framework.
<html>
<head>
<title>Twitter like text area</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
var total_click = 0;
$("#clickMe").click(function(){
total_click = total_click + 1;
$("#counter").text("Total Click: " + total_click);
return false;
});
});
</script>
</head>
<body>
<form>
<div id="counter">Total Click: 0</div><br />
<a id="clickMe" href="#">click me!</a>
</form>
</body>
</html>

Posted by admin on January 30, 2010 – 1:12 pm
Author: slac3dork
Site: http://snippet.c0de.me
Summary: Python script to get total subscriber from Feedburner. Before run this script, Feedburner awareness API must be activated. This is script is inspired by Eric Wendelin.
Usage: python filename.py
#!/usr/bin/python
#
# _________ .__ .____ _______
# / _____/ ____ |__|_____ | | \ _ \ ____
# \_____ \ / \| \____ \| | / /_\ \ / ___\
# / \ | \ | |_> > |__\ \_/ \/ /_/ >
#/_______ /___| /__| __/|_______ \_____ /\___ /
# \/ \/ |__| \/ \//_____/
# http://snippet.c0de.me
# slac3dork[at]gmail[dot]com
#!/usr/bin/env python
# IMPORTANT: Feedburner awareness API must be activated
# Replace with your own name
feedburner_name = "c0deme"
import urllib
from xml.dom import minidom
try:
dom = minidom.parse(urllib.urlopen('https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri='+feedburner_name))
entry = dom.getElementsByTagName('entry')[0]
count = entry.getAttribute('circulation')
print "total subscriber:",count
except:
print "Oops! Something went wrong. Check your feedburner's name or your internet connection."

Posted by admin on January 16, 2010 – 6:21 pm
Author: slac3dork
Site: http://snippet.c0de.me
Summary: This script will disable “Go!” button if total characters more than 140 or have no character using jQuery framework.
<html>
<head>
<title>Twitter like text area</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$("#my-submit-id").attr("disabled", "disabled");
var chars = 0;
$("#my-text-id").keyup(function(){
chars = $(this).val().length;
if ((chars < 1) || (chars > 140)){
$("#my-submit-id").attr("disabled", "disabled");
}
else {
$("#my-submit-id").removeAttr("disabled");
}
$("#my-label").text("Total characters: " + chars);
});
});
</script>
</head>
<body>
<form>
<label id="my-label">Total characters: 0</label><br />
<textarea id="my-text-id" name="my-text" rows="5" cols="20">
</textarea><br />
<input id="my-submit-id" type="submit" value="Go!" />
</form>
</body>
</html>
