<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>gamaroff.org</title>
    <description>Social Geekery</description>
    <link>http://www.gamaroff.org/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.NET 1.4.5.0</generator>
    <language>en-US</language>
    <blogChannel:blogRoll>http://www.gamaroff.org/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://www.gamaroff.org/syndication.axd</blogChannel:blink>
    <dc:creator>Lorien Gamaroff</dc:creator>
    <dc:title>gamaroff.org</dc:title>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Gamaroff" type="application/rss+xml" /><item>
      <title>Using Ajax with FBJS in Facebook FBML Applications</title>
      <description>&lt;p&gt;
I recently had to develop an application which was to be hosted in an &lt;em&gt;Application Tab&lt;/em&gt; on a Facebook Profile. The application needed to display a navigation menu and display different pages of information. Using an iFrame would have been anybody&amp;#39;s first choice but &lt;em&gt;Application Tabs&lt;/em&gt; can&amp;#39;t host iFrames. 
&lt;/p&gt;
&lt;p&gt;
That&amp;#39;s where Ajax came to the rescue. I created a &lt;font face="courier new,courier"&gt;&amp;lt;DIV&amp;gt;&lt;/font&gt; tag to host the various bits of &lt;em&gt;FBML &lt;/em&gt;that was required for each Menu Option and changed the &lt;font face="courier new,courier"&gt;InnerHTML &lt;/font&gt;with Ajax. Here is a simplified version of what I did: 
&lt;/p&gt;
&lt;h4&gt;HTML Page&lt;/h4&gt;
&lt;p&gt;
Create a link with an onClick event handler: 
&lt;/p&gt;
&lt;pre class="csharpcode"&gt;
&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;a&lt;/span&gt; &lt;span class="attr"&gt;href&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;#&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;onclick&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;getFBML(); return false;&amp;quot;&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;Get FBML&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;a&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;
Add your &amp;lt;DIV&amp;gt;: 
&lt;/p&gt;
&lt;pre class="csharpcode"&gt;
&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;div&lt;/span&gt; &lt;span class="attr"&gt;id&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;Content&amp;quot;&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;div&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;
Create your Javascript function:
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;pre class="csharpcode"&gt;
&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt; &lt;span class="attr"&gt;language&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;javascript&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;type&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;text/javascript&amp;quot;&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="kwrd"&gt;function&lt;/span&gt; getFBML() {
&amp;nbsp;&amp;nbsp;&lt;span class="kwrd"&gt;var&lt;/span&gt; ajax = &lt;span class="kwrd"&gt;new&lt;/span&gt; Ajax();
&amp;nbsp;&amp;nbsp;ajax.ondone = &lt;span class="kwrd"&gt;function&lt;/span&gt;(data) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;document.getElementById(&lt;span class="str"&gt;&amp;#39;Content&amp;#39;&lt;/span&gt;).setInnerFBML(data);
&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&lt;span class="rem"&gt;// Specify whether the user must login before accessing this data&lt;/span&gt;
&amp;nbsp;&amp;nbsp;ajax.requireLogin = 1;
&amp;nbsp;&amp;nbsp;&lt;span class="rem"&gt;// Specify what type of data is being returned (Ajax.FBML, Ajax.RAW, Ajax.JSON)&lt;/span&gt;
&amp;nbsp;&amp;nbsp;ajax.responseType = Ajax.FBML;
&amp;nbsp;&amp;nbsp;&lt;span class="rem"&gt;// dummy Request Parameter (to demonstrate passing Params)&lt;/span&gt;
&amp;nbsp;&amp;nbsp;&lt;span class="kwrd"&gt;var&lt;/span&gt; queryParams = { &lt;span class="str"&gt;&amp;quot;param1&amp;quot;&lt;/span&gt;: &lt;span class="str"&gt;&amp;quot;0&amp;quot;&lt;/span&gt; }; 
&amp;nbsp;&amp;nbsp;ajax.post(&lt;span class="str"&gt;&amp;quot;http://www.example.com/DataPage.aspx&amp;quot;&lt;/span&gt;, queryParams);
}
&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://www.gamaroff.org/post/Using-Ajax-with-FBJS-in-Facebook-FBML-Applications.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/pics/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://www.gamaroff.org/post/Using-Ajax-with-FBJS-in-Facebook-FBML-Applications.aspx&amp;amp;title=Using Ajax with FBJS in Facebook FBML Applications" target="_blank" title="DZone It!"&gt;&lt;img src="/pics/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://www.gamaroff.org/post/Using-Ajax-with-FBJS-in-Facebook-FBML-Applications.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/pics/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://www.gamaroff.org/" target="_blank" title="Technorati"&gt;&lt;img src="/pics/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://www.gamaroff.org/post/Using-Ajax-with-FBJS-in-Facebook-FBML-Applications.aspx&amp;amp;title=Using Ajax with FBJS in Facebook FBML Applications" target="_blank" title="Reddit"&gt;&lt;img src="/pics/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://www.gamaroff.org/post/Using-Ajax-with-FBJS-in-Facebook-FBML-Applications.aspx&amp;amp;title=Using Ajax with FBJS in Facebook FBML Applications" target="_blank" title="Del.icio.us"&gt;&lt;img src="/pics/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://www.gamaroff.org/post/Using-Ajax-with-FBJS-in-Facebook-FBML-Applications.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/pics/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/pics/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/pics/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Gamaroff/~4/QoCHYi4YHko" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/Gamaroff/~3/QoCHYi4YHko/post.aspx</link>
      <author>lorien.nospam@nospam.gamaroff.org (lorien)</author>
      <comments>http://www.gamaroff.org/post/Using-Ajax-with-FBJS-in-Facebook-FBML-Applications.aspx#comment</comments>
      <guid isPermaLink="false">http://www.gamaroff.org/post.aspx?id=345e5a5e-b15d-4cf1-a2f2-19e0a5e48123</guid>
      <pubDate>Tue, 23 Jun 2009 15:54:00 +0200</pubDate>
      <category>Facebook</category>
      <category>Software Development</category>
      <dc:publisher>lorien</dc:publisher>
      <pingback:server>http://www.gamaroff.org/pingback.axd</pingback:server>
      <pingback:target>http://www.gamaroff.org/post.aspx?id=345e5a5e-b15d-4cf1-a2f2-19e0a5e48123</pingback:target>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.gamaroff.org/trackback.axd?id=345e5a5e-b15d-4cf1-a2f2-19e0a5e48123</trackback:ping>
      <wfw:comment>http://www.gamaroff.org/post/Using-Ajax-with-FBJS-in-Facebook-FBML-Applications.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.gamaroff.org/syndication.axd?post=345e5a5e-b15d-4cf1-a2f2-19e0a5e48123</wfw:commentRss>
    <feedburner:origLink>http://www.gamaroff.org/post.aspx?id=345e5a5e-b15d-4cf1-a2f2-19e0a5e48123</feedburner:origLink></item>
    <item>
      <title>FizzBoost 2.5 Ready for Download</title>
      <description>&lt;p&gt;
&lt;strong&gt;FizzBoost 2.5 has been released.&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.fizzboost.com/fizzboost.exe"&gt;&lt;img src="http://www.gamaroff.org/image.axd?picture=2009%2f4%2fdownload.jpg" border="0" alt="Download Fizzboost" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;font size="2"&gt;Check out the &lt;a href="http://www.facebook.com/apps/application.php?id=4148964532" title="FizzBoost on Facebook"&gt;Facebook Application Page&lt;/a&gt; and the &lt;a href="http://www.facebook.com/group.php?gid=7776700805" title="FizzBoost Group on Facebook"&gt;Facebook Group Page&lt;/a&gt;. &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
The new interface is cleaner and more compact. The Window can now be resized and moved.
&lt;/p&gt;
&lt;p&gt;
The usual features such as Friends, Events, Groups, Notifications and Feeds have been refined and improved. 
&lt;/p&gt;
&lt;p&gt;
More emphasis has been placed on turning FizzBoost into a fully functioning Twitter Client. Status updates can be made for both Facebook and Twitter. With this release it is possible to view your friend&amp;#39;s Tweets. The next release, which will be available as an automatic update, will enable you to send direct messages to your Twitter friends. 
&lt;/p&gt;
&lt;p&gt;
You can view Events, Groups and Photo albums. Facebook feeds are available as well as standard Facebook Notifications.
&lt;/p&gt;
&lt;p&gt;
The next release which is planned to be ready in the next few weeks will allow you to RSVP to Events, view your Friend&amp;#39;s Photos, see photo tags, see Group and Event Members and write Notes. Whew! 
&lt;/p&gt;
&lt;p&gt;
Here are some screenshots: 
&lt;/p&gt;
&lt;div align="center"&gt;
&lt;strong&gt;Events&lt;/strong&gt;
&lt;/div&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div style="text-align: center"&gt;
&lt;img src="http://www.gamaroff.org/image.axd?picture=2009%2f4%2fEvents.png" alt="" /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div align="center"&gt;
&lt;strong&gt;Event Info&lt;/strong&gt;
&lt;/div&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div style="text-align: center"&gt;
&lt;img src="http://www.gamaroff.org/image.axd?picture=2009%2f4%2fEventInfo.png" alt="" /&gt;
&lt;/div&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div align="center"&gt;
&lt;strong&gt;Photo Album&lt;/strong&gt;
&lt;/div&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div style="text-align: center"&gt;
&lt;img src="http://www.gamaroff.org/image.axd?picture=2009%2f4%2fPhotoAlbum.png" alt="" /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div align="center"&gt;
&lt;strong&gt;Twitter and Status Updates&lt;/strong&gt;
&lt;/div&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div style="text-align: center"&gt;
&lt;img src="http://www.gamaroff.org/image.axd?picture=2009%2f4%2fTwitter.png" alt="" /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;p&gt;
&lt;a href="http://www.gamaroff.org/file.axd?file=2009%2f4%2fFizzBoost.zip"&gt;&lt;br /&gt;
&lt;/a&gt;
&lt;/p&gt;
&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://www.gamaroff.org/post/FizzBoost-25.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/pics/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://www.gamaroff.org/post/FizzBoost-25.aspx&amp;amp;title=FizzBoost 2.5 Ready for Download" target="_blank" title="DZone It!"&gt;&lt;img src="/pics/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://www.gamaroff.org/post/FizzBoost-25.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/pics/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://www.gamaroff.org/" target="_blank" title="Technorati"&gt;&lt;img src="/pics/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://www.gamaroff.org/post/FizzBoost-25.aspx&amp;amp;title=FizzBoost 2.5 Ready for Download" target="_blank" title="Reddit"&gt;&lt;img src="/pics/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://www.gamaroff.org/post/FizzBoost-25.aspx&amp;amp;title=FizzBoost 2.5 Ready for Download" target="_blank" title="Del.icio.us"&gt;&lt;img src="/pics/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://www.gamaroff.org/post/FizzBoost-25.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/pics/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/pics/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/pics/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Gamaroff/~4/bxnGgaG4-KQ" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/Gamaroff/~3/bxnGgaG4-KQ/post.aspx</link>
      <author>lorien.nospam@nospam.gamaroff.org (lorien)</author>
      <comments>http://www.gamaroff.org/post/FizzBoost-25.aspx#comment</comments>
      <guid isPermaLink="false">http://www.gamaroff.org/post.aspx?id=895adb12-f509-4f8f-8572-57f18012f592</guid>
      <pubDate>Fri, 03 Apr 2009 23:35:00 +0200</pubDate>
      <category>Social Networking</category>
      <category>Facebook</category>
      <category>Twitter</category>
      <dc:publisher>lorien</dc:publisher>
      <pingback:server>http://www.gamaroff.org/pingback.axd</pingback:server>
      <pingback:target>http://www.gamaroff.org/post.aspx?id=895adb12-f509-4f8f-8572-57f18012f592</pingback:target>
      <slash:comments>15</slash:comments>
      <trackback:ping>http://www.gamaroff.org/trackback.axd?id=895adb12-f509-4f8f-8572-57f18012f592</trackback:ping>
      <wfw:comment>http://www.gamaroff.org/post/FizzBoost-25.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.gamaroff.org/syndication.axd?post=895adb12-f509-4f8f-8572-57f18012f592</wfw:commentRss>
    <feedburner:origLink>http://www.gamaroff.org/post.aspx?id=895adb12-f509-4f8f-8572-57f18012f592</feedburner:origLink></item>
    <item>
      <title>Bebo.NET</title>
      <description>&lt;p style="text-align: left"&gt;
&lt;img src="/BlogEngine.Web/image.axd?picture=2009%2f2%2fBeboNetLogo.gif" alt="" hspace="10" vspace="10" align="left" /&gt;&amp;nbsp;I have just released the first version of &lt;span class="Apple-style-span" style="font-weight: bold"&gt;Bebo.NET&lt;/span&gt;.&amp;nbsp;It is written in C# for .NET 2.0.&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;&lt;span class="Apple-style-span" style="font-weight: bold"&gt;Bebo.NET&lt;/span&gt; is a set of .NET class libraries which can be used to wrap calls to the&amp;nbsp;&lt;a href="http://www.bebo.com" title="Bebo"&gt;Bebo.com&lt;/a&gt;&amp;nbsp;APIs. It is based on&amp;nbsp;&lt;a href="http://www.nikhilk.net/Category.Facebook.aspx" target="_blank" title="Nikhil Kothari's Facebook.NET project"&gt;Nikhil Kothari&amp;#39;s Facebook.NET project&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;It is hosted on CodePlex and you can find it&amp;nbsp;&lt;a href="http://www.codeplex.com/bebonet" title="Bebo.NET Codeplex Project"&gt;here&lt;/a&gt;. It is a straightforward port of Facebook.NET and so any documentation relatiing to that project is pertinent to this one. Bebo might have some differences that have not been considered but, as this project is now open-source, hopefully other developers will take up the torch and carry it forward. I will be updating it on a regular basis as I am spending a lot of time, at the moment, writing applications for Bebo.&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;I spent a lot of time looking around for other projects like this but since Bebo is not as popular as Facebook there hasn&amp;#39;t been much to go on. So.. I hope this helps those that are interested.&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.codeplex.com/bebonet" title="Bebo.NET Codeplex Project"&gt;&lt;img src="/BlogEngine.Web/image.axd?picture=2009%2f2%2flogo-home.png" border="0" alt="Bebo.NET project on Codeplex" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://www.gamaroff.org/post/BeboNET.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/pics/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://www.gamaroff.org/post/BeboNET.aspx&amp;amp;title=Bebo.NET" target="_blank" title="DZone It!"&gt;&lt;img src="/pics/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://www.gamaroff.org/post/BeboNET.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/pics/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://www.gamaroff.org/" target="_blank" title="Technorati"&gt;&lt;img src="/pics/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://www.gamaroff.org/post/BeboNET.aspx&amp;amp;title=Bebo.NET" target="_blank" title="Reddit"&gt;&lt;img src="/pics/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://www.gamaroff.org/post/BeboNET.aspx&amp;amp;title=Bebo.NET" target="_blank" title="Del.icio.us"&gt;&lt;img src="/pics/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://www.gamaroff.org/post/BeboNET.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/pics/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/pics/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/pics/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Gamaroff/~4/7MVYLibwPh4" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/Gamaroff/~3/7MVYLibwPh4/post.aspx</link>
      <author>lorien.nospam@nospam.gamaroff.org (lorien)</author>
      <comments>http://www.gamaroff.org/post/BeboNET.aspx#comment</comments>
      <guid isPermaLink="false">http://www.gamaroff.org/post.aspx?id=3a5dd67c-0f92-46b3-84d8-d64ee5750f29</guid>
      <pubDate>Wed, 18 Feb 2009 07:52:00 +0200</pubDate>
      <category>Bebo</category>
      <category>Software Development</category>
      <dc:publisher>lorien</dc:publisher>
      <pingback:server>http://www.gamaroff.org/pingback.axd</pingback:server>
      <pingback:target>http://www.gamaroff.org/post.aspx?id=3a5dd67c-0f92-46b3-84d8-d64ee5750f29</pingback:target>
      <slash:comments>10</slash:comments>
      <trackback:ping>http://www.gamaroff.org/trackback.axd?id=3a5dd67c-0f92-46b3-84d8-d64ee5750f29</trackback:ping>
      <wfw:comment>http://www.gamaroff.org/post/BeboNET.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.gamaroff.org/syndication.axd?post=3a5dd67c-0f92-46b3-84d8-d64ee5750f29</wfw:commentRss>
    <feedburner:origLink>http://www.gamaroff.org/post.aspx?id=3a5dd67c-0f92-46b3-84d8-d64ee5750f29</feedburner:origLink></item>
    <item>
      <title>Fizzboost 2.0</title>
      <description>&lt;p style="text-align: left"&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p style="text-align: left"&gt;
&lt;font size="2"&gt;&lt;strong&gt;&lt;a href="http://www.gamaroff.org/page/FizzBoost-25.aspx" title="FizzBoost 2.5"&gt;FizzBoost 2.5&lt;/a&gt; has just been released so please &lt;a href="http://www.gamaroff.org/page/FizzBoost-25.aspx" title="FizzBoost 2.5"&gt;head over to the 2.5 post&lt;/a&gt; to download and for more information.&lt;/strong&gt;&lt;/font&gt; 
&lt;/p&gt;
&lt;p style="text-align: left"&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p style="text-align: left"&gt;
&lt;span class="Apple-style-span" style="font-size: 13px"&gt;Fizzboost is a Facebook Notifier that was developed a few months ago. Facebook has since made many changes to their underlying architecture and so some features do not work as well as they used to.&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-style-span" style="font-size: small"&gt;A new version is in the wings and hopefully I will be able to get a release out shortly.&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;span class="Apple-style-span" style="font-size: small"&gt;It is difficult to spend much time on it because, as we all know, time is money. If enough people suggest putting a Paypal button up to support the project then I&amp;#39;ll do that will absolute pleasure. I would love to see Fizzboost become the greatest all-time notifer.&lt;/span&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p style="text-align: center"&gt;
&amp;nbsp;&lt;img src="/BlogEngine.Web/image.axd?picture=2009%2f2%2fFizzboostImage.gif" alt="Fizzboost for Facebook" /&gt;
&lt;/p&gt;
&lt;p style="text-align: center"&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p style="text-align: left"&gt;
&lt;strong&gt;Features&lt;/strong&gt;
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;font size="2"&gt;Status updates can be made directly in FizzBoost now. If it is the first time you are updating your status in FizzBoost then it will load the Facebook permission request into your browser. This will only happen once. &lt;/font&gt;&lt;/li&gt;									
	&lt;li&gt;&lt;font size="2"&gt;You can now update Twitter Status directly in FizzBoost. You can also tell FizzBoost to keep your Twitter Status in Sync. So when updating your Facebook Status it will also update your Twitter Status.&lt;/font&gt;&lt;/li&gt;									
	&lt;li&gt;&lt;font size="2"&gt;FizzBoost now plays sounds when there are Notifications. You can play the default or customize the sound.&lt;/font&gt;&lt;/li&gt;									
	&lt;li&gt;&lt;font size="2"&gt;View your Facebook Feeds directly in FizzBoost&lt;/font&gt;&lt;br /&gt;
	&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;font size="2"&gt;Visit the &lt;a href="http://www.facebook.com/apps/application.php?id=4148964532&amp;amp;ref=s" title="Official FizzBoost Page"&gt;official Facebook Application page&lt;/a&gt;.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font size="2"&gt;&lt;a href="http://www.gamaroff.org/file.axd?file=2009%2f2%2fFizzBoost.msi"&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://www.gamaroff.org/post/Fizzboost-20.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/pics/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://www.gamaroff.org/post/Fizzboost-20.aspx&amp;amp;title=Fizzboost 2.0" target="_blank" title="DZone It!"&gt;&lt;img src="/pics/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://www.gamaroff.org/post/Fizzboost-20.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/pics/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://www.gamaroff.org/" target="_blank" title="Technorati"&gt;&lt;img src="/pics/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://www.gamaroff.org/post/Fizzboost-20.aspx&amp;amp;title=Fizzboost 2.0" target="_blank" title="Reddit"&gt;&lt;img src="/pics/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://www.gamaroff.org/post/Fizzboost-20.aspx&amp;amp;title=Fizzboost 2.0" target="_blank" title="Del.icio.us"&gt;&lt;img src="/pics/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://www.gamaroff.org/post/Fizzboost-20.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/pics/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/pics/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/pics/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Gamaroff/~4/13KsjWP83cU" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/Gamaroff/~3/13KsjWP83cU/post.aspx</link>
      <author>lorien.nospam@nospam.gamaroff.org (lorien)</author>
      <comments>http://www.gamaroff.org/post/Fizzboost-20.aspx#comment</comments>
      <guid isPermaLink="false">http://www.gamaroff.org/post.aspx?id=0c9f4485-dde4-4766-888c-c9fc7a660ba9</guid>
      <pubDate>Wed, 19 Nov 2008 06:56:00 +0200</pubDate>
      <category>Facebook</category>
      <dc:publisher>lorien</dc:publisher>
      <pingback:server>http://www.gamaroff.org/pingback.axd</pingback:server>
      <pingback:target>http://www.gamaroff.org/post.aspx?id=0c9f4485-dde4-4766-888c-c9fc7a660ba9</pingback:target>
      <slash:comments>15</slash:comments>
      <trackback:ping>http://www.gamaroff.org/trackback.axd?id=0c9f4485-dde4-4766-888c-c9fc7a660ba9</trackback:ping>
      <wfw:comment>http://www.gamaroff.org/post/Fizzboost-20.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.gamaroff.org/syndication.axd?post=0c9f4485-dde4-4766-888c-c9fc7a660ba9</wfw:commentRss>
    <feedburner:origLink>http://www.gamaroff.org/post.aspx?id=0c9f4485-dde4-4766-888c-c9fc7a660ba9</feedburner:origLink></item>
  </channel>
</rss>
