Deactivate social services in Google Reader

There is a small piece of code (“bookmarklet”), which deactivates social services in Google Reader.

Just go to Google Reader and put into the browser command line the following:

javascript:antisocial(’true’)

If it’s necessary to reactivate it, use [...]

Template for proxy auto-config file

Proxy autoconfig file could be used in browser (Opera,FireFox,IE) to change the proxy dynamically.

var ALLOWED = "DIRECT";
var DISALLOWED = "PROXY 0.0.0.0:1234";

function FindProxyForURL(url, host)
{
if (shExpMatch(url,"*.badsite.com/*"))  {return DISALLOWED;}
var currentTime = new Date();// convert the current time to minutes
var now = 60*currentTime.getHours() + currentTime.getMinutes();

// Do not allow the access before 18:00
if (now < 18 * 60 ) {
return DISALLOWED [...]

Code for adding the project to bookmarks

Add the project to del.icio.us

http://del.icio.us/post?title=www.memosoup.com&url=http://www.memosoup.com

Post a project on digg.com

http://digg.com/submit?phase=2&url=http://www.memosoup.com

Add the site to bookmarks:

function add2Bookmarks(title,url) {
  if (window.sidebar) {
   window.sidebar.addPanel(title, url,"");
 } else if( document.all ) {
    window.external.AddFavorite( url, title);
 } else if( window.opera && window.print ) {
    return true;
 }
}
<a href="#" onmousedown="add2Bookmarks(‘www.memosoup.com’,'http://www.memosoup.com’)">
<img src="project.gif" alt="bookmark" border="0">
Put this site to [...]