Bookmarklets

The "keyword" is what I use with Firefox for faster access.

Action: Quickly add current page to del.icio.us
Keyword: da
URL: javascript:(function(){l=location.href;t=document.title;if(!t) t = prompt('title:');tags=prompt('tags:');location.href='https://api.del.icio.us/v1/posts/add?url='+escape(l)+'&description='+escape(t)+'&tags='+escape(tags);})()
Notes: This will prompt you for tags (space-separated).

Action: Quickly add current page to del.icio.us (with notes)
Keyword: das
URL: javascript:(function(){l=location.href;t=document.title;if(!t) t = prompt('title:');s=prompt('notes:');tags=prompt('tags:');location.href='https://api.del.icio.us/v1/posts/add?url='+escape(l)+'&description='+escape(t)+'&extended='+escape(s)+'&tags='+escape(tags);})()
Notes: This will prompt you for tags and will ask you to fill in the notes field.

Action: Add current page to Shifd (iPhone)
URL: javascript:(function(){l=location.href;location.href='http://shifd.com/api/content/add?type_id=3&content='+escape(l);})() Notes: This code is a bit raw (ie, no support for logging in, no pretty visuals) but is light enough to be used from iPhone. To get this bookmarklet into iPhone, add it to Safari first and then sync your bookmarks with your handset.