
Simple eye catching link effect
We used this simple effect to immediately draw attention to a link. Here is the jsfiddle
Postgresql – Drop connections script
Select another database in pgadmin and execute this script to drop all connected users. Script — view active connections SELECT * FROM pg_stat_activity WHERE datname=’DBNAME’; — drop active connections SELECT pg_terminate_backend(procpid) FROM pg_stat_activity WHERE datname=’DBNAME’;– view active connections select *…

Tumblr jQuery Plugin
So youâve got a Tumblr account and want to display it on your website. This script will allow you to put a tumblr feed onto your website using jQuery. Head on over too http://www.tumblr.com/goodies to check out their API. Fortunately, the…