<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>MyBlogSG.com &#187; Social Bookmarking</title> <atom:link href="http://myblogsg.com/category/social-bookmarking/feed/" rel="self" type="application/rss+xml" /><link>http://myblogsg.com</link> <description>My Thoughts on Wat&#039;s Up Around Me</description> <lastBuildDate>Mon, 06 Feb 2012 12:38:57 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Change Stumbleupon Password</title><link>http://myblogsg.com/change-stumbleupon-password/</link> <comments>http://myblogsg.com/change-stumbleupon-password/#comments</comments> <pubDate>Mon, 03 Mar 2008 14:54:18 +0000</pubDate> <dc:creator>Wassup</dc:creator> <category><![CDATA[Social Bookmarking]]></category> <category><![CDATA[Stumbleupon]]></category> <category><![CDATA[Yahoo Answer]]></category><guid isPermaLink="false">http://myblogsg.com/change-stumbleupon-password</guid> <description><![CDATA[I finally learned how to change my default Stumbleupon password. I think the Stumpbleupon user account page sux! Anyway, I googled for how to change stumbleupon password and followed a link to Yahoo answer which points you to StumbleUpon Help page! Here&#8217;s my version of a Simple 3-Step Guide on How To Change Stumbleupon Password: [...]]]></description> <content:encoded><![CDATA[<p></p><p>I finally learned how to change my default Stumbleupon password. <span id="more-33"></span>I think the Stumpbleupon user account page sux!</p><p>Anyway, I googled for <em>how to change stumbleupon password</em> and followed a link to <a rel="nofollow" href="http://answers.yahoo.com/question/index?qid=20071227011509AA45Yi5" target="_blank">Yahoo answer</a> which points you to <a rel="nofollow" href="http://www.stumbleupon.com/help.html#changepassword" target="_blank">StumbleUpon Help</a> page!</p><div align="center"> <img src='http://cloudfront.myblogsg.com/wp-content/uploads/2008/03/yahoo_answer_001.jpg' alt='Yahoo Answer' /></div><p>Here&#8217;s my version of a Simple 3-Step Guide on <strong>How To Change Stumbleupon Password</strong>:</p><p>1. Go download the <a rel="nofollow" href="http://www.stumbleupon.com/download.php" target="_blank">StumbleUpon Toolbar</a></p><p>2. Install toolbar and look for the Tools drop-down menu</p><p>3. Select <strong>Change Passwords</strong>&#8230;</p><div align="center"> <img src='http://cloudfront.myblogsg.com/wp-content/uploads/2008/03/stumbleupon_change_password.jpg' alt='How to change Stumbleupon password' border='0' /></div><p><div style="text-align:center"><script type="text/javascript"><!--
google_ad_client = "pub-3169393782861942";
/* wassup.myblog_336x280single */
google_ad_slot = "1091554011";
google_ad_width = 336;
google_ad_height = 280;
//--></script><script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div></p><p>I also created a <a href="http://www.squidoo.com/stumbleupon_password" target="_blank">Squidoo on How to Change StumbleUpon Password</a>.</p> ]]></content:encoded> <wfw:commentRss>http://myblogsg.com/change-stumbleupon-password/feed/</wfw:commentRss> <slash:comments>20</slash:comments> </item> <item><title>Social Bookmarking Widget</title><link>http://myblogsg.com/social-bookmarking-widget/</link> <comments>http://myblogsg.com/social-bookmarking-widget/#comments</comments> <pubDate>Thu, 28 Feb 2008 17:23:31 +0000</pubDate> <dc:creator>Wassup</dc:creator> <category><![CDATA[Social Bookmarking]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[Wordpress]]></category><guid isPermaLink="false">http://myblogsg.com/social-bookmarking-widget</guid> <description><![CDATA[After a couple hours of hacking with JavaScript, I finally created my very first SEO-friendly social bookmarking widget specially for this blog. As you can see, I&#8217;ve positioned the bookmark widget right at the top of the post to get the most attention and clicks. The widget is constructed with JavaScript. It is a very [...]]]></description> <content:encoded><![CDATA[<p></p><p>After a couple hours of hacking with JavaScript, I finally created my very first SEO-friendly <strong>social bookmarking widget</strong> specially for this blog. <span id="more-29"></span>As you can see, I&#8217;ve positioned the bookmark widget right at the top of the post to get the most attention and clicks.</p><div align="center"><img src='http://cloudfront.myblogsg.com/wp-content/uploads/2008/02/social_bookmarking_widget_001.jpg' alt='Social Bookmarking Widget' border="0"></div><p>The widget is constructed with JavaScript. It is a very simple script which I modified from &#8220;<a href="http://gathadams.com/2007/04/22/build-your-own-social-bookmark-widget/" target="_blank">Build Your Own Social Bookmark Widget</a>&#8221; by Gath Adams.</p><pre>
// JavaScript - bookmarking_widget.js
var theTitle = encodeURIComponent(document.title)
var theURL = encodeURIComponent(document.location)
document.write('&lt;style type="text/css"&gt;
  .bookmark_widget{margin:15px 0 10px;font-size:12px;
  font-family:arial,verdana,san serif}
  .bookmark_widget a{font-weight:normal;margin-left:5px}
  &lt;/style&gt;')
document.write('&lt;div class="bookmark_widget"&gt;')
document.write('&lt;a href="http://del.icio.us/post?url='
  +theURL+'&amp;title='+theTitle+'"
  title="See who bookmarked at del.icio.us" &gt;
  &lt;img src="http://images.del.icio.us/static/img/
  delicious.gif" alt=" " height="16" width="16"
  border="0" /&gt;&amp;nbsp;del.icio.us&lt;/a&gt; ')
document.write('&lt;a href="http://technorati.com/
  faves/?add='+theURL+'" title="Favorite it at
  Technorati" &gt;
  &lt;img src="http://static.technorati.com/x/static/
  images/buttons/fave.png" alt=" " height="13"
  width="18" border="0" /&gt;&amp;nbsp;fave it&lt;/a&gt; ')
document.write('&lt;a href="http://reddit.com/submit?url='
  +theURL+'&amp;title='+theTitle+'") title="Add To
  Reddit"&gt;&lt;img src="http://sp.reddit.com/
  reddithead4.gif" alt="Reddit" height="16" width="16"
  border="0" /&gt;&amp;nbsp;reddit&lt;/a&gt;')
document.write('&lt;a href="

http://www.stumbleupon.com/submit?url='+theURL+

  '&amp;title='+theTitle+'") title="StumbleUpon - I like
  it"&gt;&lt;img src="http://www.stumbleupon.com/
  images/icon_su.gif" alt=" " height="16" width="16"
  border="0" /&gt;&amp;nbsp;StumbleUpon&lt;/a&gt;')
document.write("&lt;/div&gt;")
</pre><p>And I modified the file single.php of the Prologue theme.</p><pre>
&lt;div id="widget_digg"&gt;
  &lt;script type="text/javascript"
  src="http://digg.com/tools/diggthis.js"&gt;&lt;/script&gt;
&lt;/div&gt;
&lt;script type="text/javascript"
  src="&lt;?php bloginfo('template_url'); ?&gt;
  /bookmark_widget.js"&gt;&lt;/script&gt;
&lt;?php the_content( __( '[More...]' ) ); ?&gt;
</pre><p>From the source codes above, you can see that I placed the bookmarking widget after the Digg It Submit Button. I think this layout looks pretty neat.</p><p>Beside adding the social bookmarking widget at this blog, I also installed it at <a href="http://shihengcheong.com/blog/" target="_blank">http://shihengcheong.com/blog/</a> and <a href="http://www.timmguru.com" target="_blank">http://www.timmguru.com</a>. As I have a wider column in both of these blogs, I was able to squeeze in a few more <em>social bookmarking sites</em>: Furl, Reddit and also friendfeed.</p><div align="center"><img src='http://cloudfront.myblogsg.com/wp-content/uploads/2008/02/social_bookmarking_widget_002.jpg' alt='Social bookmarking widget plus' border="0" /></div><p><a rel="nofollow" href="http://cloudfront.myblogsg.com/wp-content/uploads/2008/02/bookmark_widget.js.txt" target="_blank">Click here to download bookmark_widget.js.txt</a><br /> (You will need to rename the file and remove .txt)</p><h3>&#8220;But I don&#8217;t know JavaScript&#8221;</h3><p><img class="alignleft" src="http://sharethis.com/images/share-icon-32x32.png" alt="Share This" />If you are not familiar with JavaScript or just don&#8217;t like to DIY, then you can try using <a href="http://sharethis.com/wordpress" target="_blank">Share This WordPress Plugin</a> instead.</p> ]]></content:encoded> <wfw:commentRss>http://myblogsg.com/social-bookmarking-widget/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>FriendFeed Officially Launched</title><link>http://myblogsg.com/friendfeed-officially-launched/</link> <comments>http://myblogsg.com/friendfeed-officially-launched/#comments</comments> <pubDate>Thu, 28 Feb 2008 05:06:51 +0000</pubDate> <dc:creator>Wassup</dc:creator> <category><![CDATA[Social Bookmarking]]></category> <category><![CDATA[Social Media]]></category> <category><![CDATA[Friendfeed]]></category> <category><![CDATA[Social Networking]]></category><guid isPermaLink="false">http://myblogsg.com/friendfeed-officially-launched</guid> <description><![CDATA[Found out at Unique Frequency that FriendFeed was out of beta. After reading what Daryl said about the new service, I registered &#8211; http://friendfeed.com/shihengcheong I think FriendFeed is quite cool. Now, I have all my social networking virtual properties all assembled at one location. It&#8217;ll be easier for me to connect with all my friends [...]]]></description> <content:encoded><![CDATA[<p></p><p><a href="http://friendfeed.com/shihengcheong" title="Click to find out more FriendFeed - Shi Heng Cheong"><img class="alignright" src='http://cloudfront.myblogsg.com/wp-content/uploads/2008/02/friendfeed_chicklet.gif' alt='Friendfeed - Shi Heng Cheong' border='0' /></a>Found out at <a href="http://uniquefrequency.wordpress.com/2008/02/28/friendfeed-is-open/" target="_blank">Unique Frequency</a> that FriendFeed was out of beta. <span id="more-28"></span></p><p>After reading what Daryl said about the new service, I registered  &#8211; <a href="http://friendfeed.com/shihengcheong">http://friendfeed.com/shihengcheong</a></p><p>I think FriendFeed is quite cool.</p><p>Now, I have all my social networking virtual properties all assembled at one location. It&#8217;ll be easier for me to connect with all my friends and networks. I would highly recommend that you give it a spin and I am sure you&#8217;ll like it.</p><p>Go grab the name now before some else registered it&#8230;</p> ]]></content:encoded> <wfw:commentRss>http://myblogsg.com/friendfeed-officially-launched/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using apc
Object Caching 431/498 objects using apc
Content Delivery Network via Amazon Web Services: CloudFront: cloudfront.myblogsg.com

Served from: myblogsg.com @ 2012-02-08 23:31:45 -->
