<?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/"
	>

<channel>
	<title>Straight from the mind</title>
	<atom:link href="http://blog.roystonolivera.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.roystonolivera.com</link>
	<description>by Royston Olivera</description>
	<pubDate>Sat, 28 Aug 2010 19:19:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Getting the Autosuggest/Autocomplete jQuery plugin to work on Multilingual Sites</title>
		<link>http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/</link>
		<comments>http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 19:06:12 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<category><![CDATA[autocomplete]]></category>

		<category><![CDATA[autosuggest]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[multilingual site development]]></category>

		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=233</guid>
		<description><![CDATA[I have been a big fan of DevBridge&#8217;s Autocomplete jQuery plugin and have used it on most of the sites that I have developed.  But this plugin did not work for an Arabic site that I was developing. Just by monitoring the Ajax calls made by the plugin I noticed that the plugin wasn&#8217;t UTF [...]]]></description>
			<content:encoded><![CDATA[<p>I have been a big fan of <a title="Ajax AutoComplete for jQuery" href="http://www.devbridge.com/projects/autocomplete/jquery/" target="_blank">DevBridge&#8217;s Autocomplete jQuery</a> plugin and have used it on most of the sites that I have developed.  But this plugin did not work for an Arabic site that I was developing. Just by monitoring the Ajax calls made by the plugin I noticed that the plugin wasn&#8217;t <a title="Unicode" href="http://en.wikipedia.org/wiki/Unicode" target="_blank">UTF</a> encoding the arabic string before making the request. A minor tweak to the plugin and it started working fine.</p>
<p>All I did was that I edited the plugin to UTF-8 encode the string before it makes the Ajax call.</p>
<p>Once you have downloaded the plugin from DevBridge open the <strong>jquery.autocomplete.js</strong> file in your favorite editor and scroll down to the <strong>getSuggestions</strong> function. Now just replace the line</p>
<pre>me.options.params.query = q;</pre>
<p>with</p>
<pre>me.options.params.query = unescape(encodeURIComponent(q));</pre>
<p>In the server side script to which the ajax request is being made UTF-8 decode(in PHP use the  <a title="UTF-8 Decode" href="http://php.net/manual/en/function.utf8-decode.php" target="_blank">utf8_decode( string $data  )</a> function) the string before querying your DB for the string. Now your autosuggest will work smoothly for all the writing systems on the web.</p>
<p>Hope this post helps other developers. <img src='http://blog.roystonolivera.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;title=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;title=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;title=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;submitHeadline=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+&amp;submitSummary=I%20have%20been%20a%20big%20fan%20of%20DevBridge%27s%20Autocomplete%20jQuery%20plugin%20and%20have%20used%20it%20on%20most%20of%20the%20sites%20that%20I%20have%20developed.%20%C2%A0But%20this%20plugin%20did%20not%20work%20for%20an%20Arabic%20site%20that%20I%20was%20developing.%20Just%20by%20monitoring%20the%20Ajax%20calls%20made%20by%20the%20plugin%20I%20noticed%20that%20the%20plugin%20wasn%27t%20UTF%20encoding%20the&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;title=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;t=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;t=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites%5B..%5D+-+http://bit.ly/cInZwk" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;title=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+&amp;summary=I%20have%20been%20a%20big%20fan%20of%20DevBridge%27s%20Autocomplete%20jQuery%20plugin%20and%20have%20used%20it%20on%20most%20of%20the%20sites%20that%20I%20have%20developed.%20%C2%A0But%20this%20plugin%20did%20not%20work%20for%20an%20Arabic%20site%20that%20I%20was%20developing.%20Just%20by%20monitoring%20the%20Ajax%20calls%20made%20by%20the%20plugin%20I%20noticed%20that%20the%20plugin%20wasn%27t%20UTF%20encoding%20the&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/&amp;h=Getting+the+Autosuggest%2FAutocomplete+jQuery+plugin+to+work+on+Multilingual+Sites+" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2010/08/28/jquery-autosuggest-plugin-multilingual-sites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lessons I learnt&#8230;</title>
		<link>http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/</link>
		<comments>http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 17:28:48 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<category><![CDATA[lessons]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[profession]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=207</guid>
		<description><![CDATA[
Now with two years into professional life, things have been really awesome, thanks to my 1st company that I was working with till late last month. I have now moved on to see how a change would make a difference to my career and life. Change is difficult(and this change was indeed difficult), but it [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Now with two years into professional life, things have been really awesome, thanks to my 1st company that I was working with till late last month. I have now moved on to see how a change would make a difference to my career and life. Change is difficult(and this change was indeed difficult), but it is  said that if you look back at life, the most rewarding experiences were when you were open to change. So as I look forward to my future rewards, I thought of doing some retrospection and putting down the lessons I learnt till date in my professional life. These are the lessons I learnt from my colleagues, by making mistakes and by watching others make mistakes.</p>
<p><strong>Small Company vs Big Company&#8230;</strong><br />
<span style="font-weight: normal;">The above comparison shouldn&#8217;t bother you, what should bother you is the WORK you get at the company. It could happen that you get the best and most challenging job at an small-mid size company while a mere documentation or QC job at an big company.</span></p>
<p><strong>Stay Hungry&#8230;</strong><br />
<span style="font-weight: normal;">Set targets not limits to the work that your doing. Be restless to learn what your colleague knows and you do not. Having and doing loads of work is good as it helps keep the fire burning within us.</span></p>
<p><strong>Be on the right side of the rotten apple&#8230;</strong><br />
You may have that arrogant creative guy or lethargic technical lead in your team, but remember that they hold that position because they  have some talent. Isolating yourself from them is a loss to your growth. Be on the right side of the rotten apple, learn what makes that other guy a good tech. lead or creative person and try to become a non-lethargic non-arrogant creative tech. lead. <img src='http://blog.roystonolivera.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Get into complexity before your pushed into it&#8230;</strong><br />
I have seen a lot of this happening, when a team is asked to pick up their own tasks there a major set of people that pick the simpler one&#8217;s first and leave the complex tasks to that small set of people who always do it and love to do it. If you belong to that major set, its high time that you move to the smaller set. Coz the day when you do not have that small set of people around you and your manager assigns the task to you, that complex task may seem to be an impossible task.</p>
<p><strong>Don&#8217;t Expect Training&#8230;</strong><br />
I have seen a lot of freshers ask this question as they join their first company  &#8217;Do we get training here?&#8217; referring to 3-6 months of training that most of the Indian IT companies provide to freshers. My question to them has always been, What have you done in the past 3-4 years? Isn&#8217;t 4 years enough of time to train yourself? If you couldn&#8217;t train yourself in 4years, are you expecting some kind of miracle in the 3 months of training. I am not against training but there is a different kind of a joy in molding yourself than being molded by others, coz in the former you get to choose what you like, which mostly is not possible in the later. I have always looked at my career as one big training class and that has helped me big time.</p>
<p><strong>Give back&#8230;</strong><br />
Remember it is your seniors who helped you when you were a junior and now its your responsibility to help your  juniors. And this would help you too to revise your basics. I realized that I had forgot the basics and history of PHP when I was preparing <a target="_blank" href="http://www.slideshare.net/rolipoli85/php-history-introduction-summary-extensions-and-frameworks">slides for a PHP talk</a> to be given at a college Techfest.</p>
<p><strong>Measure of Success&#8230;</strong><br />
Before you party on your weekend, look back at the week gone by and see have learned enough?  Was your week fruitful? Are you tired? If you have a positive answer to all these questions then go ahead party/relax else, get back to work. The best way to measure your success at the end of the year is not by checking the CTC you draw, but by counting the number of weekends you partied/relaxed and your achievements for the year. Your CTC will always be proportional to your professional achievements, so strive to achieve more.</p>
<p><strong>Network&#8230;</strong><br />
One of  the biggest mistake in the first 2 years of my career was to be an introvert and confining my network to just friends and office colleagues. If you go beyond this, you will find that there are a hell lot of amazing and like minded people out there to connect with and learn from.  Facebook, LinkedIn and other forums were mainly built to facilitate this connect( not play silly games) and these channels have truly helped me meet and connect with some really good people in the past 6 months. Infact, some of the job offers that I got were via LinkedIn <img src='http://blog.roystonolivera.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>These are some of the lessons that I have learnt from my professional life  so far. Some people may differ from my thoughts and without doubt they have every right to do so.</p>
<p>What lessons have you learnt? Share it with me in the comments :)</p></div>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;title=Lessons+I+learnt..." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;title=Lessons+I+learnt..." rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;title=Lessons+I+learnt..." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;submitHeadline=Lessons+I+learnt...&amp;submitSummary=%0D%0A%0D%0ANow%20with%20two%20years%20into%20professional%20life%2C%20things%20have%20been%20really%20awesome%2C%20thanks%20to%20my%201st%20company%20that%20I%20was%20working%20with%20till%20late%20last%20month.%20I%20have%20now%20moved%20on%20to%20see%20how%20a%20change%20would%20make%20a%20difference%20to%20my%20career%20and%20life.%20Change%20is%20difficult%28and%20this%20change%20was%20indeed%20difficult%29%2C%20but&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;title=Lessons+I+learnt..." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;t=Lessons+I+learnt..." rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;t=Lessons+I+learnt..." rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+Lessons+I+learnt...+-+http://bit.ly/dqHgpO" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;title=Lessons+I+learnt...&amp;summary=%0D%0A%0D%0ANow%20with%20two%20years%20into%20professional%20life%2C%20things%20have%20been%20really%20awesome%2C%20thanks%20to%20my%201st%20company%20that%20I%20was%20working%20with%20till%20late%20last%20month.%20I%20have%20now%20moved%20on%20to%20see%20how%20a%20change%20would%20make%20a%20difference%20to%20my%20career%20and%20life.%20Change%20is%20difficult%28and%20this%20change%20was%20indeed%20difficult%29%2C%20but&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/&amp;h=Lessons+I+learnt..." rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2010/02/17/lessons-i-learnt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HOW TO : As a Company/Business make best use of SlideShare</title>
		<link>http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/</link>
		<comments>http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 16:04:02 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Social Media]]></category>

		<category><![CDATA[B2B Marketing]]></category>

		<category><![CDATA[Inbound Marketing]]></category>

		<category><![CDATA[SlideShare]]></category>

		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=174</guid>
		<description><![CDATA[In my 1st post on SlideShare, I tried giving a low down on what SlideShare has in store for all and why it becomes an upcoming Social Media channel. In this post, I will try and put together a set of steps that businesses/companies could follow to make the best use of SlideShare to share [...]]]></description>
			<content:encoded><![CDATA[<p>In my <a title="SlideShare : A Professional Social Media Channel" href="http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/" target="_blank">1st post on SlideShare</a>, I tried giving a low down on what SlideShare has in store for all and why it becomes an upcoming Social Media channel. In this post, I will try and put together a set of steps that businesses/companies could follow to make the best use of SlideShare to share information and their branding.</p>
<p><strong>Create your Profile&#8230;</strong><br />
You need to start off by first <a title="Join SlideShare" href="http://www.slideshare.net/signup" target="_blank">creating your account</a> and selecting the appropriate Account Type. For a business it would mostly be &#8220;company&#8221;, unless your a Marketing/PR firm or a Non-Profit who have their specific account types. Once you have confirmed your account, login and complete your profile by giving the description of your company, uploading your logo and entering the tags that best describe your company and the work done. It would be best to fill in every information in a detailed manner, as that is what people are going to look at first when they stumble upon your company on SlideShare.</p>
<p><strong>Upload Great Content&#8230;</strong><br />
Now its time to dig out all the content(Tuesday TechTalk slides, White papers written by your employees, presentations that you made to your clients) that your company has generated over the years and is just lying under virtual dust in your Content Management System and post it to SlideShare. Any content that you think would be of great help to others and could draw some eyeballs to your account is a good post. Post content that acts as a proof to the profile information that you provided. Remember we are trying to use SlideShare not only as a knowledge sharing medium but also for your branding, so before you upload your content you need to dress it up.</p>
<ol>
<li> Design 1 or 2 good templates and push your presentations in these templates before uploading them to SlideShare. By doing this people who have already viewed and liked some of your presentations before will be able to identify your other presentations in the search listings and prefer to pick them over others.</li>
<li>Let the first slide of your presentations have the company logo, authors name and company website along with the subject of the presentation.</li>
<li>Make sure your template has your company logo and/or your  company name in the footnote on every slide, certifying that the content is yours and at the same time giving it a professional look.</li>
<li>The last slide of each presentation could have a citation to the author, when and where was this presented, a link to the blog or document that briefly describes this presentation and the email id for feedback or more information on this presentation.</li>
</ol>
<p>Publish your presentations with the appropriate title, description and tags so that people get a good idea of the presentation before they scan it slide-by-slide.</p>
<p><strong>Socialize&#8230;</strong><br />
SlideShare provides quiet a few social networking features that would help you build your social graph. Start of by searching for people and company profiles in your field and start following them. Review their content and provide them with feedback, favorite presentations that you really liked, comment on them, provide them with a link to your own presentations on the same topic and ask for feedback. Basically you need to start a conversation, social media is all about starting a conversation, collaborating with people and  building communities.</p>
<p><strong>Share your Content&#8230;</strong><br />
Socializing within SlideShare is a good thing to do, but you can even attract people from outside SlideShare by embedding and sharing your presentations on blogs and other social networking platforms. Make sure that you blog about each of your presentation giving in-depth explanation of your presentation and using the embed code provided by SlideShare to embed your presentation in your blog post. SlideShare has even built apps. on <a title="Add SlideShare to your Facebook profile" href="http://apps.facebook.com/slideshare" target="_blank">Facebook</a> and <a title="Add SlideShare to your Linkedin profile" href="http://www.linkedin.com/opensocialInstallation/preview?_ch_panel_id=1&amp;_applicationId=1200&amp;trk=p_slideshare" target="_blank">LinkedIn</a>, so you could even add these apps to display your content on your companies profile or fan page on these social networks.</p>
<p>One of my personal favorite offerings from SlideShare are their wide range of <a title="SlideShare Widget" href="http://www.slideshare.net/widgets/blogbadge" target="_blank">widgets and presentation playlists</a> that you can embed on your blog and website to display a feed of your presentations.</p>
<p><strong>SlideShare Business&#8230;</strong><br />
SlideShare recently launched <a title="SlideShare Business" href="http://www.slideshare.net/business" target="_blank">SlideShare Business</a> that provides a new way to reach professional audience, connect with more and the right people by advertising your content to them, but I would recommend to go for this only after you have built a good profile by following the above few steps.</p>
<p>The above steps provided by me are by no means exhaustive, there would be many other ways by which you could make use of SlideShare as a social media channel to promote your company and its work.</p>
<p>How are you using SlideShare to promote your business? Share it with me in the comments <img src='http://blog.roystonolivera.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;title=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;title=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;title=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;submitHeadline=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare&amp;submitSummary=In%20my%201st%20post%20on%20SlideShare%2C%20I%20tried%20giving%20a%20low%20down%20on%20what%20SlideShare%20has%20in%20store%20for%20all%20and%20why%20it%20becomes%20an%20upcoming%20Social%20Media%20channel.%20In%20this%20post%2C%20I%20will%20try%20and%20put%20together%20a%20set%20of%20steps%20that%20businesses%2Fcompanies%20could%20follow%20to%20make%20the%20best%20use%20of%20SlideShare%20to%20share%20information&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;title=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;t=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;t=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare+-+http://bit.ly/6gMgeZ" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;title=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare&amp;summary=In%20my%201st%20post%20on%20SlideShare%2C%20I%20tried%20giving%20a%20low%20down%20on%20what%20SlideShare%20has%20in%20store%20for%20all%20and%20why%20it%20becomes%20an%20upcoming%20Social%20Media%20channel.%20In%20this%20post%2C%20I%20will%20try%20and%20put%20together%20a%20set%20of%20steps%20that%20businesses%2Fcompanies%20could%20follow%20to%20make%20the%20best%20use%20of%20SlideShare%20to%20share%20information&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/&amp;h=HOW+TO+%3A+As+a+Company%2FBusiness+make+best+use+of+SlideShare" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2009/12/13/how-to-as-a-company-make-best-use-of-slideshare/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SlideShare : A Professional Social Media Channel</title>
		<link>http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/</link>
		<comments>http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 07:36:08 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Social Media]]></category>

		<category><![CDATA[AdShare]]></category>

		<category><![CDATA[LeadShare]]></category>

		<category><![CDATA[Slidecasting]]></category>

		<category><![CDATA[SlideShare]]></category>

		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=150</guid>
		<description><![CDATA[A lot has been said and written about how businesses are using the stalwarts of social media like Facebook, Twitter and You Tube to build their brand name and connect with the masses. All these channels being consumer facing portals have proven to be the best for businesses that directly serve individual consumers with products [...]]]></description>
			<content:encoded><![CDATA[<p>A lot has been said and <a title="Mashable - Social Media for Business: The Dos &amp; Don’ts of Sharing" href="http://mashable.com/2009/02/27/social-media-for-business-2/" target="_blank">written</a> about how businesses are using the stalwarts of social media like Facebook, Twitter and You Tube to build their brand name and connect with the masses. All these channels being consumer facing portals have proven to be the best for businesses that directly serve individual consumers with products and services. When it comes to the Business to Business angle, it is the more professional network LinkedIn that has helped businesses leverage on its social graph of professionals. But it seems like there is a new player on the block in the form of SlideShare.</p>
<p><a title="SlideShare" href="http://www.slideshare.net/" target="_blank">SlideShare</a> is a business media site for managing and sharing presentations and documents and currently boasts of having over 23 million visitors that view over 60 million pages every month. Going ahead in this post, I will be giving you a low down about SlideShare and why it becomes a critical element of the Professional Social Media Channels</p>
<p><strong>Storing and Sharing&#8230;</strong><br />
SlideShare allows you to upload and share presentations, documents and spreadsheets of a wide variety of formats whether its from Microsoft Office or OpenOffice. It even supports upload via email and import from Google docs. Your files can be shared publicly  to all on the web or privately to some SlideShare users. You or the people your sharing the file with can even download your file in the same format as uploaded. Each presentation also comes with and embed code which can be used to embed it on blogs or other websites.</p>
<p><strong>Accounts&#8230;</strong><br />
SlideShare started of with accounts for individuals but has recently launched <a title="Seven new account types on SlideShare" href="http://blog.slideshare.net/2009/11/09/introducing-seven-new-account-types-on-slideshare/" target="_blank">7 new account types</a> for Companies, Non-Profits, Universities etc. So unlike before when companies created accounts and had to even specify DOB and gender of the company, now they can switch to the company account type where their profile page will have company specific options. Very soon SlideShare would be launching custom features for different account.</p>
<p><strong>Networking&#8230;</strong><br />
SlideShare has a decent set of networking tools that you can leverage upon to build your social graph. You can follow like minded people to get their latest updates. You can favorite a presentation for future reference. You can create or join groups of users that share similar interests as you and interact with them by posting on the profile wall.</p>
<p><strong>Widgets and Applications&#8230;</strong><br />
SlideShare has an simple interface to create <a title="SlideShare Widgets" href="http://www.slideshare.net/widgets" target="_blank">Widgets</a> and Presentation Packs that can be embedded on your blog or website to provide a feed of your presentations to your visitors. The Facebook and LinkedIn Applications allow you add a presentation gallery box on your profile and can be viewed by your connections.</p>
<p><strong>Slidecasting&#8230;</strong><br />
Slidecasts are nothing but mashups of SlideShare presentations and streaming MP3.On SlideShare, in a few simple steps you can  <a title="Slidecasting" href="http://www.slideshare.net/faqs/slidecast" target="_blank">create a Slidecast</a> thus making your slides more meaning full and sending the right message to the viewers.</p>
<p><strong>SlideShare Business&#8230;</strong><br />
SlideShare recently launched SlideShare Business that provides a new way to reach professional audience, connect with more and the right people by advertising your content to them. With <a title="AdShare" href="http://www.slideshare.net/business/adshare" target="_blank">AdShare</a> you can promote your content to a community of professionals, by displaying your document next to documents on SlideShare that are from the same category or of similar content. <a title="LeadShare" href="http://www.slideshare.net/business/leadshare" target="_blank">LeadShare</a> converts your content visitors into leads by enabling you to add a lead form within your presentations. This is more like a replacement of the traditional white paper and micro site campaigns.</p>
<p>You may find many file storing/sharing applications online, but the wide variety of features and the huge open community that you can share your content with makes SlideShare a great social media channel to try out.</p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;title=SlideShare+%3A+A+Professional+Social+Media+Channel" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;title=SlideShare+%3A+A+Professional+Social+Media+Channel" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;title=SlideShare+%3A+A+Professional+Social+Media+Channel" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;submitHeadline=SlideShare+%3A+A+Professional+Social+Media+Channel&amp;submitSummary=A%20lot%20has%20been%20said%20and%20written%20about%20how%20businesses%20are%20using%20the%20stalwarts%20of%20social%20media%20like%20Facebook%2C%20Twitter%20and%20You%20Tube%20to%20build%20their%20brand%20name%20and%20connect%20with%20the%20masses.%20All%20these%20channels%20being%20consumer%20facing%20portals%20have%20proven%20to%20be%20the%20best%20for%20businesses%20that%20directly%20serve%20indiv&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;title=SlideShare+%3A+A+Professional+Social+Media+Channel" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;t=SlideShare+%3A+A+Professional+Social+Media+Channel" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;t=SlideShare+%3A+A+Professional+Social+Media+Channel" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+SlideShare+%3A+A+Professional+Social+Media+Channel+-+http://bit.ly/7KGst3" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;title=SlideShare+%3A+A+Professional+Social+Media+Channel&amp;summary=A%20lot%20has%20been%20said%20and%20written%20about%20how%20businesses%20are%20using%20the%20stalwarts%20of%20social%20media%20like%20Facebook%2C%20Twitter%20and%20You%20Tube%20to%20build%20their%20brand%20name%20and%20connect%20with%20the%20masses.%20All%20these%20channels%20being%20consumer%20facing%20portals%20have%20proven%20to%20be%20the%20best%20for%20businesses%20that%20directly%20serve%20indiv&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/&amp;h=SlideShare+%3A+A+Professional+Social+Media+Channel" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2009/11/27/slideshare-the-professional-social-media-channel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Peek into Social Networking Developer Ecosystems</title>
		<link>http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/</link>
		<comments>http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 16:04:20 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[Facebook Connect]]></category>

		<category><![CDATA[MySpace]]></category>

		<category><![CDATA[Social Networking]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=134</guid>
		<description><![CDATA[This post originally appeared on Xoriant&#8217;s Blog, this is my 1st contribution to their official Blog.
Over the past decade the explosion of Social Networking sites like Facebook, MySpace and Twitter has drastically changed the way how people interact socially.  The spectrum of its usability has grown widely since its inception, from users just building profiles [...]]]></description>
			<content:encoded><![CDATA[<p><small><strong><em><a title="A Peek into Social Networking Developer Ecosystems" href="http://www.xoriant.com/blog/?p=119" target="_blank">This post</a> originally appeared on <a title="Xoriant's Official Blog" href="http://www.xoriant.com/blog/" target="_blank">Xoriant&#8217;s Blog</a>, this is my 1st contribution to their official Blog.</em></strong></small></p>
<p>Over the past decade the explosion of Social Networking sites like Facebook, MySpace and Twitter has drastically changed the way how people interact socially.  The spectrum of its usability has grown widely since its inception, from users just building profiles and making friends to businesses using it for branding &amp; interacting with their consumers, recruitment firms to find potential employees, science communities for exchange of ideas, non-profits for spreading social good and by students &amp; teachers as a communication tool.This growth in its usability is due the hundreds of millions of active users together spending billions of minutes everyday on these sites building profiles, making status updates, uploading photos and building social graphs making them information rich.</p>
<p>While these sites have built some of the best tools on the world wide web, the opening up of their product to developers via APIs in the past 3 years have spawned &#8220;developer ecosystems&#8221; that build applications over popular services like Twitter and Facebook that help a person do everything from network with travelers to play social online games. Given below is a brief of 3 Social Networking Developer Ecosystems that would help you to better understand your options.</p>
<p><strong>Facebook</strong>:<br />
Facebook launched the <a href="http://developers.facebook.com/">Facebook platform</a><a name="jygh"></a> in May 2007 for application developers that provides a framework to develop applications that would render within facebook.com and interact with core Facebook features.  Simultaineously a markup language called the <a href="http://wiki.developers.facebook.com/index.php/FBML" target="_blank">Facebook Markup Language</a><a name="tgkl"></a>(FBML) was also introduced that is used to give applications the Facebook &#8220;look and feel&#8221;  and hook into several Facebook integration points, including the profile, profile actions, Facebook canvas, News Feed and Mini-Feed.  Since then, tens of thousands of applications have been built on top of the Facebook platform. Later on, <a href="http://wiki.developers.facebook.com/index.php/FQL" target="_blank">Facebook Query Language</a><a name="ra8o"></a> (FQL) was introduced that allows you to use a SQL-style interface to  query Facebook social data without using the API. While most platforms force developers to use iFrames if they want to embed javascript within the application, Facebook answered this question with the introduction of <a href="http://wiki.developers.facebook.com/index.php/FBJS">FBJS</a><a name="n5.d"></a> that allowed developers to manipulate markup on the fly, animation and AJAX making applications more dynamic. Today, Facebook has over 350,000+ applications that play a critical role in maximizing Facebook&#8217;s active user base. Being the most popular application on Facebook, &#8220;Farmville&#8221; currently has over 60 million monthly active users.</p>
<p>In late 2008, Facebook announced <a href="http://wiki.developers.facebook.com/index.php/Facebook_Connect" target="_blank">Facebook Connect</a><a name="ofr_"></a> that allows developers to let users login to their websites with their Facebook credentials. It even allows other Facebook features, like your friend list and friend invite features to be implemented on your website, which can in turn send data back to Facebook as News Feeds. With over 15K websites already utilizing Facebook Connect, it has now become a must have feature for every social website for 2 main reasons : (1) Users do not have to go through the process of registering on your website if they are a Facebook user, your website can directly pull info from the users Facebook profile and (2) Your web site gets tons of exposure on Facebook as the users actvities on your site get posted to his Facebook profile.</p>
<p>Facebook has even gone a step further in encouraging developers by introducing the <a href="http://developers.facebook.com/fbFund.php" target="_blank">fbFund</a><a name="ibd:"></a> where developers can submit their applications to qualify for investments to grow their venture.</p>
<p><strong>Twitter:</strong><br />
Twitter is one of the best examples of an very Open API and has provided developers a opportunity to build a full-fledged business by using it. Within a short span of time this ecosystem has transformed into a mainstream phenomenon with the development of Twitter apps that do everything from managing your twitter profile to analyzing tweets for real world trends. The <a href="http://apiwiki.twitter.com/" target="_blank">Twitter API</a><a name="l-50"></a> is nothing but a simple service that provides RESTfull access to the Twitter database and activity streams. Twitter initially started of with the basic authentication by which developers send the users credentials in the header of the HTTP request. But this being insecure and difficult to track hence in early 2009 they integrated the <a href="http://apiwiki.twitter.com/OAuth-FAQ" target="_blank">OAuth</a><a name="mhsj"></a> pattern of integration into the REST API permitting users a seamless experience of login into a 3rd party website using their Twitter account.</p>
<p>Twitter lacks many features in its pursuit of for simplicity and this gives openings to developers to fill the holes. Currently around 80% of Twitter&#8217;s usage is via 3rd party apps. and the Twitter API has <a href="http://blog.programmableweb.com/2007/09/10/twitter-api-traffic-is-10x-twitters-site/" target="_blank">10x the traffic</a><a name="brd-"></a> of its website. Twitter does not have 300+ million active user but it has momentum, excitement and virility which can cause your application to go from zero to a million users in a matter of days or weeks. Twitter is fast growing and new features are getting added regularly, requiring your application to adapt to it at the same time. A major problem with the Twitter ecosystem is its stability, so you have to make sure that your application doesn&#8217;t break and throw heaps of code when the API is down.</p>
<p><strong>MySpace:</strong><br />
MySpace first got into the platform party by teaming with Google and a number of other social networks against the Facebook platform and releasing <a href="http://code.google.com/apis/opensocial/" target="_blank">OpenSocial</a><a name="ux_n"></a> in November 2007, which were a set of API&#8217;s that would make applications interoperable with any social network system that supports it. The patnership spearheaded an initiative to standardize and simplify the development of social applications. Later on in early 2008 MySpace  independently launched the <a href="http://developer.myspace.com/community/" target="_blank">MySpace Developer Platform</a><a name="u-ua"></a>(MDP) that supports the OpenSocial model to enhance the overall experience of users through the development of Social Applications.</p>
<p>MySpace has undertaken a recent expansion of their platform through the <a href="http://wiki.developer.myspace.com/index.php?title=What_is_MySpaceID%3F" target="_blank">MySpaceID project</a><a name="df0_"></a>. MySpaceID provides Developers the opportunity to access user identities within the context of third-party environments. The main components of the MySpace platform are pretty similar to that of Facebook, but since MySpace supports the OpenSocial model the same application can be ported to any other social network with just a few minor tweaks to the code. With just around 15k apps in the MySpace apps Gallery and just a few websites integrating with MySpaceID, the Facebook ecosytem emerges as the clear winner in this case.</p>
<p>No doubt that these 3 ecosystems are the best and most established but they aren&#8217;t the only ones. Networks like Bebo, Yahoo, Friendster and the recently launched <a href="http://code.google.com/apis/wave/" target="_blank">Google Wave</a><a name="rp1b"></a> have opened up their set of API&#8217;s that would allow you to reach millions of users through your applications. All these platforms are fast-growing and frequently-changing for the good, so as a developer even though you have a lot of choice with the ecosystems, it is suggested that you pick one ecosystem that you are a big fan of and program for it as keeping pace with all the ecosystems would be a real challenging task.</p>
<h5>References : <a title="Mashable" href="http://www.mashable.com" target="_blank">Mashable</a></h5>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;title=A+Peek+into+Social+Networking+Developer+Ecosystems+" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;title=A+Peek+into+Social+Networking+Developer+Ecosystems+" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;title=A+Peek+into+Social+Networking+Developer+Ecosystems+" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;submitHeadline=A+Peek+into+Social+Networking+Developer+Ecosystems+&amp;submitSummary=This%20post%20originally%20appeared%20on%20Xoriant%27s%20Blog%2C%20this%20is%20my%201st%20contribution%20to%20their%20official%20Blog.%0D%0A%0D%0AOver%20the%20past%20decade%20the%20explosion%20of%20Social%20Networking%20sites%20like%20Facebook%2C%20MySpace%20and%20Twitter%20has%20drastically%20changed%20the%20way%20how%20people%20interact%20socially.%C2%A0%20The%20spectrum%20of%20its%20usability%20has%20g&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;title=A+Peek+into+Social+Networking+Developer+Ecosystems+" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;t=A+Peek+into+Social+Networking+Developer+Ecosystems+" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;t=A+Peek+into+Social+Networking+Developer+Ecosystems+" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+A+Peek+into+Social+Networking+Developer+Ecosystems++-+http://bit.ly/1KxDhT" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;title=A+Peek+into+Social+Networking+Developer+Ecosystems+&amp;summary=This%20post%20originally%20appeared%20on%20Xoriant%27s%20Blog%2C%20this%20is%20my%201st%20contribution%20to%20their%20official%20Blog.%0D%0A%0D%0AOver%20the%20past%20decade%20the%20explosion%20of%20Social%20Networking%20sites%20like%20Facebook%2C%20MySpace%20and%20Twitter%20has%20drastically%20changed%20the%20way%20how%20people%20interact%20socially.%C2%A0%20The%20spectrum%20of%20its%20usability%20has%20g&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/&amp;h=A+Peek+into+Social+Networking+Developer+Ecosystems+" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2009/11/17/a-peek-into-social-networking-developer-ecosystems/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Internet turns 40!</title>
		<link>http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/</link>
		<comments>http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 09:46:46 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<category><![CDATA[birthday]]></category>

		<category><![CDATA[internet]]></category>

		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=112</guid>
		<description><![CDATA[The Internet turned 40 last week. Its been more than 2 yrs now that I have been a web developer and that makes the Internet the source of my bread and butter. I have now been a part of teams that have built some of the best websites on the net. But i would like [...]]]></description>
			<content:encoded><![CDATA[<p>The <a title="Internet" href="http://en.wikipedia.org/wiki/Internet" target="_blank">Internet</a> turned 40 last week. Its been more than 2 yrs now that I have been a web developer and that makes the Internet the source of my bread and butter. I have now been a part of teams that have built some of the best websites on the net. But i would like to make an confession here, untill today,  I did not know how the Internet was born and how it evolved over the years and am even sure 9 out 10 developers too wouldn&#8217;t know even a bit of the history. So lets take a look on how the internet was born and how it has come of age.</p>
<p><strong>Birth and Naming&#8230;</strong></p>
<p>The research and development of the Internet spanned over 10 years and hence no exact date can be attributed to its birth, but the day October 29, 1969 stands as the first 2 nodes of what became <a title="ARPANET" href="http://en.wikipedia.org/wiki/ARPANET" target="_blank">ARPANET</a> were interconnected between UCLA&#8217;s School of Engineering and Applied Science and SRI International in Menlo Park, CA on this day. Based on ARPA&#8217;s research packet switching network standards were developed in the form of X.25 by <a title="International Telecommunication Union" href="http://en.wikipedia.org/wiki/International_Telecommunication_Union" target="_blank">ITU</a>. Later on UUCPnet was developed with the idea of using simple <a title="Bourne Shell" href="http://en.wikipedia.org/wiki/Bourne_shell" target="_blank">Bourne Shell</a> scripts to transfer news and messages on a serial line. TCP/IP unified the different network standards and became an important communication protocol for the internet. The term &#8220;internet&#8221; was coined in the first RFC published on the TCP protocol in 1974(5 years later)  as an abbrevation of the term &#8220;internetworking&#8221;. To keep it simple &#8220;<em>any network using TCP/IP was internet</em>&#8220;.</p>
<p><strong>The first steps&#8230;</strong></p>
<p>The progress in the 1st 12 years were really slow with only 213 computers being connected to the ARPANET network. From the mid 70&#8217;s to the mid 80&#8217;s Internet&#8217;s technologies spread world wide and many new applications(<a title="E-mail" href="http://en.wikipedia.org/wiki/E-mail" target="_blank">Email</a>, <a title="Telenet" href="http://en.wikipedia.org/wiki/Telenet" target="_blank">telenet</a>, <a title="Compuserve" href="http://en.wikipedia.org/wiki/Compuserve" target="_blank">compuserve</a> etc.) were developed for it out of the interest of many researchers in wide spread networking. Email became the most important and highly looked up application as it reached 16m users in 1985. Although most of the basic application that made the internet were developed, it was still used mostly by techies, geeks in research labs and had not gained much public face.</p>
<p><strong>Getting Young and Dynamic&#8230;</strong></p>
<p>As the internet grew, many people realized the increasing need to be able to find and organize files which lead to projects like <a title="Gopher" href="http://en.wikipedia.org/wiki/Gopher_(protocol)" target="_blank">Gopher</a>, <a title="Wide Area Information Server" href="http://en.wikipedia.org/wiki/Wide_area_information_server" target="_blank">WAIS</a>, FTP archive list etc. but all these fell short of full filling the scaling requirements. In 1989, <a title="Tim Berners Lee" href="http://en.wikipedia.org/wiki/Tim_Berners-Lee" target="_blank">Tim Berners Lee</a> invented the network based implementation of the hypertext concept via his project named <a title="World Wide Web (WWW)" href="http://en.wikipedia.org/wiki/World_Wide_Web" target="_blank">World Wide Web</a>. With the advent of the WWW things started moving faster and till today there has been no limit to the way the Internet is growing. With the arrival of web browsers and not to forget the <a title="Browser Wars" href="http://en.wikipedia.org/wiki/Browser_wars" target="_blank">browser wars</a> that still goes on we had 500m+ users online by 2001.</p>
<p><strong>Fast Forwarding to Today&#8230;</strong></p>
<p>Today the internet has over <a href="http://uk.news.yahoo.com/5/20091029/twl-internet-reaches-40th-birthday-miles-3fd0ae9.html" target="_blank">1.7 billion users</a> most of whom cannot think of life without emails, social networking, chatting, gaming etc. Today it is more like a virtual but required addition to the basic necessities list of  food, clothing, shelter and education of most developed countries. I cannot think of a day without access   to the internet; if not on the PC then from my mobile. The Internet has change the way people interact and socialize, thanks to social networking sites like Facebook, MySpace, Twitter etc. When the web was born it was just about digitizing content; web2.0 was driven by socializing, sharing content and has become the platform for the concept of linked data. Now concepts like <a title="Real-Time Web" href="http://www.readwriteweb.com/archives/introduction_to_the_real_time_web.php" target="_blank">Real-Time Web</a> and <a title="Internet of Things" href="http://en.wikipedia.org/wiki/Internet_of_Things" target="_blank">Internet of Things</a> are driving us into the Web3.0 generation.</p>
<p>I doubt 40 years ago anyone would have imagined that the successful connection between 2 nodes would go on to become one of the major and  fastest growing platforms in the field of technology. I would love to see how the internet evolves in the next 40 years but wouldn&#8217;t dare to imagine  coz whatever it may be, it will surely blow our imagination from today&#8217;s standpoint.</p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;title=The+Internet+turns+40%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;title=The+Internet+turns+40%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;title=The+Internet+turns+40%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;submitHeadline=The+Internet+turns+40%21&amp;submitSummary=The%20Internet%20turned%2040%20last%20week.%20Its%20been%20more%20than%202%20yrs%20now%20that%20I%20have%20been%20a%20web%20developer%20and%20that%20makes%20the%20Internet%20the%20source%20of%20my%20bread%20and%20butter.%20I%20have%20now%20been%20a%20part%20of%20teams%20that%20have%20built%20some%20of%20the%20best%20websites%20on%20the%20net.%20But%20i%20would%20like%20to%20make%20an%20confession%20here%2C%20untill%20tod&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;title=The+Internet+turns+40%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;t=The+Internet+turns+40%21" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;t=The+Internet+turns+40%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+The+Internet+turns+40%21+-+http://bit.ly/2kasCK" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;title=The+Internet+turns+40%21&amp;summary=The%20Internet%20turned%2040%20last%20week.%20Its%20been%20more%20than%202%20yrs%20now%20that%20I%20have%20been%20a%20web%20developer%20and%20that%20makes%20the%20Internet%20the%20source%20of%20my%20bread%20and%20butter.%20I%20have%20now%20been%20a%20part%20of%20teams%20that%20have%20built%20some%20of%20the%20best%20websites%20on%20the%20net.%20But%20i%20would%20like%20to%20make%20an%20confession%20here%2C%20untill%20tod&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/&amp;h=The+Internet+turns+40%21" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2009/11/07/the-internet-turns-40/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Discovering Mahabaleshwar : A Tour Guide</title>
		<link>http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/</link>
		<comments>http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 19:54:26 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Social Media]]></category>

		<category><![CDATA[mahabaleshwar]]></category>

		<category><![CDATA[mahabaleshwar travel]]></category>

		<category><![CDATA[mullberry and cream]]></category>

		<category><![CDATA[mumbai to mahabaleshwar]]></category>

		<category><![CDATA[panchgani]]></category>

		<category><![CDATA[pratapgad]]></category>

		<category><![CDATA[strawberry and cream]]></category>

		<category><![CDATA[venna lake]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=83</guid>
		<description><![CDATA[The past few months had been really boring, frustrating and anti-creative on the professional front and this break or mini vacation as I call it, was very much awaited by me. I have been to Mahabaleshwar quiet a few times before but this was the first time that I was going with my family. Thought [...]]]></description>
			<content:encoded><![CDATA[<p>The past few months had been really boring, frustrating and anti-creative on the professional front and this break or mini vacation as I call it, was very much awaited by me. I have been to <a title="Mahabaleshwar, Maharashtra, India" href="http://en.wikipedia.org/wiki/Mahabaleshwar" target="_blank">Mahabaleshwar</a> quiet a few times before but this was the first time that I was going with my family. Thought of writing this post to share my experiences about Mahabaleshwar, which could even act as a tour guide to others.</p>
<p><strong>Getting There &#8230;.</strong></p>
<p>Getting to <a title="Mahabaleshwar" href="http://en.wikipedia.org/wiki/Mahabaleshwar" target="_blank">Mahabaleshwar</a> from Mumbai is pretty easy and quick. It would take you around 6-7 hrs on a luxury bus for the complete journey . I would recommend taking a sleeper coach that departs late in the night from Mumbai and arrives early in the morning at Mahabaleshwar. The same is recommended while getting back to Mumbai. You even have other options like a Volvo bus or a tourist car which are equally comfortable. Bookings can be done at any travel agent in Mumbai.</p>
<p><strong>Where to stay&#8230;</strong></p>
<p>Mahabaleshwar has a plethora of <a title="Hotels in Mahabaleshwar" href="http://www.hotelsinmahabaleshwar.com/mahabaleshwar/hotels_mahabaleshwar/" target="_blank">small and large hotels</a> that you can stay in. If your not having your own vehicle to travel around Mahabaleshwar then i would recommend selecting a hotel in and around the market place. Nell&#8217;s House, <a href="http://www.hoteldreamland.com/" target="_blank">Hotel Dreamland</a>, Hotel Lakeview, Silverine being some of the good ones. If your very low on budget there are many small hotels on the market road. Staying in a hotel away from the market place comes with the added facilities of a peaceful environment and a beautiful scenic view from your room itself.</p>
<p>Hotel tariffs vary based on the season and type of hotel you check into. Mahabaleshwar experiences daily 2 hrs of load shedding, so if your very particular about your staying conditions make sure that your hotel has a good generator(most of them will have an inverter which is connected to only 1 lamp per room) and provide round the clock hot water through the tap.</p>
<p><strong>Where n What to eat&#8230;</strong></p>
<p>If your a vegetarian then Mahabaleshwar is a pleasure ground for you  and you need not worry, coz 75% of the food outlets out there are pure vegetarian. Meat eaters have quiet a few options around the market place which include Hotel Aman, Nukkad, Shere-e-Punjab that provide very good non-vegetarian food.</p>
<p>You would be sinning if you haven&#8217;t paid a daily visit to a ice cream parlour at Mahabaleshwar, which is famous for Strawberry n Cream,  Mulberry n Cream(my personal favorite) and many other fresh fruit ice creams. I would recommend going to Bageecha Ice Cream Parlour on the market road and trying out their entire menu as that is one of the best outlets I have been to out there. Another place that is a must visit is the <a title="Mapro Factory" href="http://www.maprofoods.com/" target="_blank">Mapro Factory</a>, the waffle cone ice creams and grilled sandwich out there are the best i have ever had and at the same time you can even shop for your favorite crushes, squashes and jelly sweets. Mahabaleshwar is even famous for chikki and fudge which you will get anywhere in the market place, Wilsons being one of the best shops to pich this stuff.</p>
<p><strong>What to see aka. Sightseeing&#8230;.</strong></p>
<p>Located in the Western Ghats<small>[<a title="Mahabaleshwar scenic view" href="http://twitpic.com/mv0kc" target="_blank">pic</a>]</small> and having one of the few evergreen forestsin the world it is one of the scenic beauties to be watched in India. The entire sightseeing at Mahabaleshwar can be divided into 4-5 tours, each having a duration of 3-4 hours and costing around 350 - 550 INR.</p>
<ul>
<li>Tour 1 - Pratapgad Darshan<small>[<a title="Pratapgad Fort" href="http://twitpic.com/muzz9" target="_blank">pic</a>]</small> [ Duration 150mins ]<br />
<a title="Pratapgad Fort" href="http://en.wikipedia.org/wiki/Pratapgad" target="_blank">Pratapgad Fort</a>, Bhawani Temple, Shivaji Statue<small>[<a title="Pratapgad Shivaji Statue" href="http://twitpic.com/mv034" target="_blank">pic</a>]</small>, Pratap Garden, Tomb of Afzal Khan<br />
The Pratapgad fort was one place where i could atleast see some kind of maintainence happening and efforts being made to keep the place clean which is very unlike other spots I visited</li>
<li>Tour 2 - Mahabaleshwar Darshan 1 [ Duration 150mins ]<br />
Panchgani Mandir, Window Point, Tiger Spring, Echo Point,  Savitri Point, Monkey Point, Marjori Point, Arthur&#8217;s Seat&#8230;<br />
The Arthur&#8217;s Seat is known as the pride of Mahabaleshwar as you get one of the best views of the valley from that platform. The rest of the points are either on the way or around this point.</li>
<li>Tour 3 - Mahabaleshwar Darshan 2 [Duration 150mins]<br />
Kate&#8217;s Point<small>[<a title="Kates's Point, Needle Hole Point, Elephant head point" href="http://twitpic.com/muz94" target="_blank">pic</a>]</small>, Needle Hole Point, Elephant Head Point, Strawberry Garden, Sunset Point<small>[<a title="Sunset Point" href="http://twitpic.com/muzfq" target="_blank">pic</a>]</small>, Lodwick Point<small>[<a title="Lodwick Point" href="http://twitpic.com/muzug" target="_blank">pic</a>]</small>, Venna Lake<br />
Needle Hole and Elephant Head point are nothing but Kate&#8217;s Point looked at from different directions. Venna Lake is a drop spot after the tour where you can go for boating and it even has a mini Chowpati. The lake is really big and very good for boating.</li>
<li>Tour 4 - Panchgani Darshan [Duration 150mins ]<br />
Table Land, Parsi Point, Jam Factory<br />
<a title="Panchgani : Table Land" href="http://en.wikipedia.org/wiki/Panchgani" target="_blank">Table land</a> is one of the biggest plateaus in the world and you can try your hand on hose riding and para-sailing. Insist on your tour guide to take you to the Mapro Factory and not any other factory, coz some tour guides would take you to some small factory to make the tour quick and get their commission from the factory owner for the products you buy.</li>
</ul>
<p>Other than these tours you can even go for the Wai Darshan if you like visiting temples and the Sunrise point for which you would have to wake up at 5:30 in the morning.</p>
<p>One spot which you would not find in any of the tours but is a must watch is the Roman Catholic Church<small>[<a title="Mahabaleshwar Church" href="http://twitpic.com/mv09h" target="_blank">pic</a>]</small> at Mahabaleshwar which is near the market place. Its more than a century that the church has been built and has one of the smallest parishes(10 families) in the world.</p>
<p>Do not depend on your credit card when you travel to Mahabaleshwar coz 8/10 shops or outlets do not accept credit cards, you would have to withdraw cash from one of the few ATMs hidden in the bylanes of the market.</p>
<p>I have had some the best and most memorable times of my life when i have been to Mahabaleshwar and i hope this post helps you to have a pleasant vacation too <img src='http://blog.roystonolivera.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;title=Discovering+Mahabaleshwar+%3A+A+Tour+Guide" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;title=Discovering+Mahabaleshwar+%3A+A+Tour+Guide" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;title=Discovering+Mahabaleshwar+%3A+A+Tour+Guide" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;submitHeadline=Discovering+Mahabaleshwar+%3A+A+Tour+Guide&amp;submitSummary=The%20past%20few%20months%20had%20been%20really%20boring%2C%20frustrating%20and%20anti-creative%20on%20the%20professional%20front%20and%20this%20break%20or%20mini%20vacation%20as%20I%20call%20it%2C%20was%20very%20much%20awaited%20by%20me.%20I%20have%20been%20to%20Mahabaleshwar%20quiet%20a%20few%20times%20before%20but%20this%20was%20the%20first%20time%20that%20I%20was%20going%20with%20my%20family.%20Thought%20of&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;title=Discovering+Mahabaleshwar+%3A+A+Tour+Guide" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;t=Discovering+Mahabaleshwar+%3A+A+Tour+Guide" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;t=Discovering+Mahabaleshwar+%3A+A+Tour+Guide" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+Discovering+Mahabaleshwar+%3A+A+Tour+Guide+-+http://bit.ly/1rC8Y3" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;title=Discovering+Mahabaleshwar+%3A+A+Tour+Guide&amp;summary=The%20past%20few%20months%20had%20been%20really%20boring%2C%20frustrating%20and%20anti-creative%20on%20the%20professional%20front%20and%20this%20break%20or%20mini%20vacation%20as%20I%20call%20it%2C%20was%20very%20much%20awaited%20by%20me.%20I%20have%20been%20to%20Mahabaleshwar%20quiet%20a%20few%20times%20before%20but%20this%20was%20the%20first%20time%20that%20I%20was%20going%20with%20my%20family.%20Thought%20of&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/&amp;h=Discovering+Mahabaleshwar+%3A+A+Tour+Guide" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2009/10/24/discovering-mahabaleshwar-tour-guide/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Summarizing and Extending PHP</title>
		<link>http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/</link>
		<comments>http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 14:09:53 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<category><![CDATA[PECL]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[php extensions]]></category>

		<category><![CDATA[php frameworks]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=60</guid>
		<description><![CDATA[In Part 1 of the this series, I introduced PHP and spoke about how it has evolved with every release into a mature language.

Summarizing PHP
Here I would be speaking more about the advantages of PHP.

The HTML relationship
PHP is always embedded in HTML in code islands. One key advantage to using PHP as opposed to some [...]]]></description>
			<content:encoded><![CDATA[<p>In <a title="PHP : History and Introduction" href="http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/" target="_blank">Part 1</a> of the this series, I introduced PHP and spoke about how it has evolved with every release into a mature language.<br />
<object width="550" height="400" data="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=phpsession-090903092715-phpapp02&amp;rel=0&amp;stripped_title=php-history-introduction-summary-extensions-and-frameworks" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=phpsession-090903092715-phpapp02&amp;rel=0&amp;stripped_title=php-history-introduction-summary-extensions-and-frameworks" /><param name="allowfullscreen" value="true" /></object></p>
<h2><span style="color: #ffffff;"><strong>Summarizing PHP</strong></span></h2>
<p>Here I would be speaking more about the advantages of PHP.</p>
<ul>
<li><strong>The HTML relationship</strong><br />
PHP is always embedded in <a href="http://www.w3schools.com/html/DEFAULT.asp" target="_blank">HTML</a> in code islands. One key advantage to using PHP as opposed to some other solutions is that PHP code is all executed at the server, with the client only receiving the results of the script. What this means is that users never see your PHP source code because they are never sent it: they only see what you want them to see.</li>
<li><strong>Interpreting vs Compiling</strong><br />
PHP uses a blend of <a href="http://www.j-paine.org/students/lectures/lect6/node20.html" target="_blank">interpretation and compilation</a> in order to provide the best mix of performance and flexibility to programmers. Behind the scenes, PHP compiles your script down to a series of instructions (called <a href="http://en.wikipedia.org/wiki/Opcode" target="_blank">opcodes</a>) whenever it is accessed, and these instructions are then executed one by one until the script terminates. PHP re-compiles your script each time it is requested. This constant recompilation may seem a waste of processor time, but it is actually not all that bad because you no longer need to worry about hand recompiling your scripts when you make any changes. The speed hit of regular compilation is nullified entirely by the use of PHP accelerators. One major advantage to having interpreted code is that all memory used by the script is managed by PHP, and the language automatically cleans up after every script has finished. This means that you do not need to worry about closing database links, freeing memory assigned to images, and so on, because PHP will do it for you.</li>
<li><strong>PHP is cross-platform, free, fast, capable, extendable, reliable and advancing</strong><br />
This may seem to be a simple point but it covers all the features that a superior programming language must possess.  It can be run on Windows, Linux, <a href="http://www.freebsd.org/" target="_blank">BSD</a>, Mac OS X, and <a href="http://en.wikipedia.org/wiki/Solaris_(operating_system)" target="_blank">Solaris</a>, as well as a variety of other platforms.<br />
In the majority of scripts, PHP will easily compete with both <a href="http://en.wikipedia.org/wiki/Perl" target="_blank">Perl</a> and <a href="http://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank">Python</a>, and usually pull ahead of Microsoft&#8217;s ASP.NET by about 10-15%. Add to that the fact that PHP code can be cached for execution.<br />
What makes PHP capable is the thousands of pre-written functions that perform a wide variety of helpful tasks like database handling, file uploads, FTP, email, graphical interfaces, generating Flash movies, and more.<br />
PHP is extendable. Writing your own extension to PHP is a common and easy way to implement speed-critical functionality, and PHP&#8217;s extension API is a particularly rich and flexible system.<br />
PHP is reliable. As an official <a href="http://www.apache.org/" target="_blank">Apache Foundation</a> software project, PHP is brought to you by the same people that produce Apache, the world&#8217;s most popular web server.<br />
PHP is advancing. With the release of PHP 5, PHP has introduced features that have long been waited for, including more comprehensive error handling, better object orientation, and, of course, more speed.</li>
<li><strong>When to and not to use PHP???</strong><br />
Owing to its fast development time, easy maintenance, and overall fast execution time, it is rare to find PHP is not the best choice for a web application. Homepages (big and          small), database front-ends on the web, command line shell scripts where you want extra functionality, and even basic GUI development are all popular uses for PHP, and it excels  at them all. If you are doing anything that displays its text through a web browser, you are likely to find that PHP is your best choice. There are two situations when PHP is not recommended. Firstly, if your not developing a web application and you desperately need all the performance you can get, you should be  using C and C++. Secondly, if you are adding to a system which already has a lot of code already written in another language, then coding parts in PHP will only make your maintenance job more difficult, so you are likely to find it easiest in the long run to keep using the old language.</li>
</ul>
<h2><strong>Extending PHP and Frameworks</strong></h2>
<p>The base of the PHP language is very simple, having just enough to set and retrieve variables, work with loops, and check whether a statement is true or not. The real power behind PHP comes with its extensions – addons to the base language that give it more flexibility.<strong><br />
</strong></p>
<ul>
<li><strong>Core Extensions</strong><br />
Core extensions are extensions that are bundled with PHP itself, and enabled by default. For all intents and purposes they are part of the base language, because, unless you explicitly disable them (few people do, and sometimes you cannot), they are available inside PHP.</li>
<li><strong>Bundled Extensions</strong><br />
Bundled extensions are extensions that are bundled with PHP, but not enabled by default. These are normally commonly used, which is why they are bundled, but they are not available to you unless you specifically enable them. For example, the mechanism to handle graphics creation and editing is handled by an extension &#8220;<a href="http://in3.php.net/manual/en/intro.image.php" target="_blank">GD Library</a>&#8221; that is bundled with PHP.</li>
<li><strong>PECL - PHP Extension Code Library</strong><br />
<a href="http://pecl.php.net/" target="_blank">PECL</a> stands for &#8220;PHP Extension Code Library&#8221;, and is as a subset of the PHP Extension and Application Repository, PEAR. PECL (pronounced &#8220;pickle&#8221;) was originally created as a place where rarely used or dormant bundled extensions could be moved if they were no longer considered relevant. PECL has grown a lot since its founding, and is now the home of many interesting and experimental extensions that are not quite important enough to be bundled directly with PHP.</li>
<li><strong>Third Party Extensions</strong><br />
Third-party extensions are written by programmers like you who wanted to solve a particular problem that was unsolvable without them creating a new extension.</li>
<li><strong>DIY - Do It Yourself</strong><br />
Finally, Do-It-Yourself (DIY) extensions are simply extensions you created yourself. PHP has a remarkably rich extension creation system that makes it quite simple to add your own code as long as you know C.</li>
</ul>
<p>PHP has also attracted the development of many frameworks that provide building blocks and a design structure to promote rapid application development (RAD). Some of these include <a href="http://cakephp.org/" target="_blank">CakePHP</a>, <a href="http://www.xisc.com/" target="_blank">PRADO</a>, <a href="http://www.symfony-project.org/" target="_blank">Symfony</a> and <a href="http://framework.zend.com/?fle=Adobe" target="_blank">Zend Framework</a>, offering features similar to other web application frameworks.</p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;title=Summarizing+and+Extending+PHP" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;title=Summarizing+and+Extending+PHP" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;title=Summarizing+and+Extending+PHP" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;submitHeadline=Summarizing+and+Extending+PHP&amp;submitSummary=In%20Part%201%20of%20the%20this%20series%2C%20I%20introduced%20PHP%20and%20spoke%20about%20how%20it%20has%20evolved%20with%20every%20release%20into%20a%20mature%20language.%0D%0A%0D%0ASummarizing%20PHP%0D%0AHere%20I%20would%20be%20speaking%20more%20about%20the%20advantages%20of%20PHP.%0D%0A%0D%0A%09The%20HTML%20relationship%0D%0APHP%20is%20always%20embedded%20in%20HTML%20in%20code%20islands.%20One%20key%20advantage%20to%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;title=Summarizing+and+Extending+PHP" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;t=Summarizing+and+Extending+PHP" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;t=Summarizing+and+Extending+PHP" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+Summarizing+and+Extending+PHP+-+http://bit.ly/3nxFqw" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;title=Summarizing+and+Extending+PHP&amp;summary=In%20Part%201%20of%20the%20this%20series%2C%20I%20introduced%20PHP%20and%20spoke%20about%20how%20it%20has%20evolved%20with%20every%20release%20into%20a%20mature%20language.%0D%0A%0D%0ASummarizing%20PHP%0D%0AHere%20I%20would%20be%20speaking%20more%20about%20the%20advantages%20of%20PHP.%0D%0A%0D%0A%09The%20HTML%20relationship%0D%0APHP%20is%20always%20embedded%20in%20HTML%20in%20code%20islands.%20One%20key%20advantage%20to%20&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/&amp;h=Summarizing+and+Extending+PHP" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>H1N1 (Swine Flu) Information : What is Swine Flu and Symptoms?</title>
		<link>http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/</link>
		<comments>http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 07:27:08 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<category><![CDATA[Social Media]]></category>

		<category><![CDATA[h1n1]]></category>

		<category><![CDATA[health]]></category>

		<category><![CDATA[influenza]]></category>

		<category><![CDATA[swine flu]]></category>

		<category><![CDATA[symptoms]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=38</guid>
		<description><![CDATA[What is swine flu?
Swine influenza (swine flu) is a respiratory disease of pigs caused by type A influenza viruses that causes regular outbreaks in pigs. People do not normally get swine flu, but human infections can and do happen.
Is swine flu contagious?
Yes, but it is unknown how easily the virus spreads between people.
Who is at [...]]]></description>
			<content:encoded><![CDATA[<h2>What is swine flu?</h2>
<p><a href="http://en.wikipedia.org/wiki/Swine_influenza" target="_blank">Swine influenza</a> (swine flu) is a respiratory disease of pigs caused by type A influenza viruses that causes regular outbreaks in pigs. People do not normally get swine flu, but human infections can and do happen.</p>
<p><strong>Is swine flu contagious?</strong><br />
Yes, but it is unknown how easily the virus spreads between people.</p>
<p><strong>Who is at highest risk from H1N1 swine flu?</strong><br />
Most cases of H1N1 swine flu have been in older children and young adults. It&#8217;s not clear why, and whether this will change. But certain groups are at particularly high risk of severe disease or bad outcomes if they get the flu:</p>
<ul>
<li>Young children, especially those under 12 months of age.</li>
<li>Elderly people are at high risk of severe flu disease. But relatively few swine flu cases have been seen in people over age 65.</li>
<li>People with cardiovascular conditions (except high blood pressure).</li>
<li>People with liver problems.</li>
<li>Kidney problems.</li>
<li>People with blood disorders, including sickle cell disease.</li>
<li>People with neurological disorders.</li>
<li>People with neuromuscular disorders.</li>
<li>People with metabolic disorders, including diabetes.</li>
<li>People with immune suppression, including HIV infection and medications that suppress the immune system, such as cancer chemotherapy or anti-rejection drugs for transplants.</li>
<li>Residents of a nursing home or other chronic-care facility</li>
</ul>
<p>People in these groups should seek medical care as soon as they get flu symptoms.</p>
<p><strong>If I think I have swine flu, what should I do? When should I see my doctor?</strong><br />
If you have flu symptoms, stay home, and when you cough or sneeze, cover your mouth and nose with a tissue. Afterward, throw the tissue in the trash and wash your hands. That will help prevent your flu from spreading. If you have only mild flu symptoms, you do not need medical attention unless your illness gets worse. But if you are in one of the<br />
groups at high risk of severe disease, contact your doctor at the first sign of flu-like illness. In such cases, see your doctor before rushing to an emergency room. But there are emergency warning signs.</p>
<p><strong>Children should be given urgent medical attention if they:</strong></p>
<ul>
<li>Have fast breathing or trouble breathing</li>
<li>Have bluish or gray skin color</li>
<li>Are not drinking enough fluid</li>
<li>Are not waking up or not interacting</li>
<li>Have severe or persistent vomiting</li>
<li>Are so irritable that the child does not want to be held</li>
<li>Have flu-like symptoms that improve but then return with fever and a worse cough.</li>
<li>Have fever with a rash</li>
<li>Have a fever and then have a seizure or sudden mental or behavioral change.</li>
</ul>
<p><strong>Adults should seek urgent medical attention if they have:</strong></p>
<ul>
<li>Difficulty breathing or shortness of breath</li>
<li>Pain or pressure in the chest or abdomen</li>
<li>Sudden dizziness</li>
<li>Confusion</li>
<li>Severe or persistent vomiting</li>
<li>Flu-like symptoms that improve, but then come back with worsening fever or cough</li>
</ul>
<p>Keep in mind that your doctor will not be able to determine whether you have swine flu, but he or she may take a sample from you and send it to a state health department lab for testing to see if it&#8217;s swine flu. If your doctor suspects swine flu, he or she would be able to write you a prescription for Tamiflu or Relenza.These antiviral medications aren&#8217;t a question of life or death for the vast majority of people.</p>
<p><strong>How severe is swine flu?</strong><br />
Severity of cases in the current swine flu outbreak has varied widely, from mild cases to fatalities. Most cases have been mild, but there have been a number of deaths and hundreds of hospitalizations &#8212; mostly in young people aged 5 to 24. Like seasonal flu, children who get swine flu can have serious neurological complications such as seizures and Reye&#8217;s syndrome. But as with seasonal flu, these complications fortunately are rare. Studies of the swine flu virus show that it is more infectious to lung cells than are seasonal flu viruses. But studies also suggest that the swine flu virus is less well adapted to humans and may be harder to inhale deep into the lungs.<br />
Flu viruses change all the time, and the way the pandemic swine flu virus evolved suggests that it is particularly liable to swap gene segments with other flu viruses. But so far the swine flu virus hasn&#8217;t changed much. That&#8217;s good news, as the vast majority of swine flu cases have been mild. It&#8217;s impossible to know whether the virus will become more deadly. Scientists are watching closely to see which way the new swine flu virus is heading &#8212; but health experts warn that flu viruses are notoriously hard to predict.<br />
<strong style="color:red">Important Note</strong> : <strong style="color:red">If you have any flu-like symptoms contact or see a doctor for treatment and STAY HOME for your own well being and the well being of others.</strong></p>
<p><small>*The information provided herein is generic and persons intending to use this information should do so only under appropriate medical advice.</small></p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;title=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;title=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;title=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;submitHeadline=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F&amp;submitSummary=What%20is%20swine%20flu%3F%0D%0ASwine%20influenza%20%28swine%20flu%29%20is%20a%20respiratory%20disease%20of%20pigs%20caused%20by%20type%20A%20influenza%20viruses%20that%20causes%20regular%20outbreaks%20in%20pigs.%20People%20do%20not%20normally%20get%20swine%20flu%2C%20but%20human%20infections%20can%20and%20do%20happen.%0D%0A%0D%0AIs%20swine%20flu%20contagious%3F%0D%0AYes%2C%20but%20it%20is%20unknown%20how%20easily%20the%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;title=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;t=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;t=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F+-+http://bit.ly/qkmFv" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;title=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F&amp;summary=What%20is%20swine%20flu%3F%0D%0ASwine%20influenza%20%28swine%20flu%29%20is%20a%20respiratory%20disease%20of%20pigs%20caused%20by%20type%20A%20influenza%20viruses%20that%20causes%20regular%20outbreaks%20in%20pigs.%20People%20do%20not%20normally%20get%20swine%20flu%2C%20but%20human%20infections%20can%20and%20do%20happen.%0D%0A%0D%0AIs%20swine%20flu%20contagious%3F%0D%0AYes%2C%20but%20it%20is%20unknown%20how%20easily%20the%20&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/&amp;h=H1N1+%28Swine+Flu%29+Information+%3A+What+is+Swine+Flu+and+Symptoms%3F" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2009/08/14/h1n1-swine-flu-information-what-and-how-to-avoid/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP - History and Introduction</title>
		<link>http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/</link>
		<comments>http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 09:11:00 +0000</pubDate>
		<dc:creator>Royston Olivera</dc:creator>
		
		<category><![CDATA[Technical]]></category>

		<category><![CDATA[PERL]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[PHP : Hypertext Preprocessor]]></category>

		<category><![CDATA[Rasmus Lerdorf]]></category>

		<category><![CDATA[web]]></category>

		<category><![CDATA[Zend]]></category>

		<guid isPermaLink="false">http://blog.roystonolivera.com/?p=22</guid>
		<description><![CDATA[This is my first post in the series of posts that i would be writing on my experiences and findings in PHP. The post will tell you why PHP exists and how it has now come to be known as a mature language.
Background and History

C not for Web
Contrary to what people believe, there was a [...]]]></description>
			<content:encoded><![CDATA[<p>This is my first post in the series of posts that i would be writing on my experiences and findings in <a href="http://php.net" target="_blank">PHP</a>. The post will tell you why PHP exists and how it has now come to be known as a mature language.</p>
<p><a href="http://www.tuxradar.com/practicalphp/2/1/1" target="_blank"><strong>Background and History</strong></a></p>
<ul>
<li><strong>C not for Web</strong><br />
Contrary to what people believe, there was a lot of activity on the web development front before PHP was invented. Code to parse form input was generally written in C. While it certainly executed quickly it was very clunky to program. A simple parsing script would easily take around fifty lines of code. The main reason being that C was not designed for the web and there was no pre-written code to take advantage of for common tasks like getting the inputs from a form and processing it. You had to do everything by yourself.</li>
</ul>
<ul>
<li><strong>PERL - Practical Extraction and Report Language</strong><br />
This problem was solved by <a href="http://en.wikipedia.org/wiki/Perl" target="_blank">PERL</a>. PERL was originally invented as a generic text-processing language that enabled HTML form parsing and other fancy tricks which made coding a simple task for even a novice programmer. Perl provided a very large number of built-in functions that were designed to do any task you could dream of, which made it very popular with developers.</li>
</ul>
<ul>
<li> <strong>PERL being PERL-centric</strong><br />
Even though Perl was a big leap in web development, it was still far from perfect. The largest drawback for Perl was that it was Perl-centric.  i.e. in order to output HTML content, you had to embed HTML inside the Perl script.</li>
</ul>
<p><strong>Introducing PHP</strong></p>
<ul>
<li><strong>PHP - Personal Home Page</strong><br />
PHP which initially stood for Personal Home Page began in 1994 as a set of CGI binaries written in C by a Danish programmer <a href="http://en.wikipedia.org/wiki/Rasmus_Lerdorf" target="_blank">Rasmus Lerdorf</a>. Lerdorf created these Personal Home Page tools to replace a small set of Perl scripts he had been using to maintain his personal homepage. The tools were used to perform tasks such as displaying his resume and how much traffic his page was receiving. Lerdorf released PHP in 1995 to accelerate bug reporting and improve the code.</li>
</ul>
<ul>
<li> <strong>PHP 3 - PHP : Hypertext Preprocessor</strong><br />
Two Israeli developers Zeev Suraski and Andi Gutmans took keen interest in the development of PHP. They rewrote the PHP parser from ground up using standard “compiler compiler” tools like Flex and Bison changing the languages name to the recursive initialism PHP : Hypertext Preprocessor. PHP 3 also made the language extensible allowing keen developers to add their own module for the language, adding functionality at the core level.</li>
</ul>
<ul>
<li><strong>PHP 4 - The Zend Relationship and Web Server Abstraction</strong><br />
The most important change made for PHP 4 was the switch to what is called the Zend Engine. The Zend Engine, created by Zend, a company founded by Zeev Suraski and Andi Gutmans to promote PHP in the corporate environment, allowed much more flexibility than had ever been seen in PHP before. Also introduced with PHP 4 was complete web server abstraction, which meant that PHP could now not only run on Apache but also Microsoft’s IIS, Zeus, AOLServer and more.</p>
<p>Performance took a gigantic leap due to 2 main factors. Firstly, PHP 3 and before used the “execute while interpreting” paradigm. Whereas PHP 4 adopted the “compile first, execute later” paradigm, reading your entire script and compiling it to byte code before execution.</li>
</ul>
<ul>
<li> <strong>PHP 5 - Language Maturity</strong><br />
PHP 5, which is the current stable release of PHP focused on language maturity and offers a lot of new functionality to support larger projects. PHP5 brought with it huge steps forward for object oriented scripts and also a new error checking in the form of try/catch. The biggest improvements though were in the extensions like SimpleXML which is a fast and easy way to interact with XML documents, and there&#8217;s also the flat-file database API SQLite, a new SOAP extension and lot more</li>
</ul>
<p>More info @ <a href="http://php.net" target="_blank">php.net</a> &amp; <a href="http://www.tuxradar.com/practicalphp" target="_blank">Practical PHP Programming</a></p>
<p><a title="Summarizing and Extending PHP" href="http://blog.roystonolivera.com/2009/09/03/summarizing-and-extending-php/" target="_blank">Part 2</a> of this series where i have summarized PHP and its extensions &amp; frameworks is now available. Kindly Patronize <img src='http://blog.roystonolivera.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old"><ul class="socials"><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;title=PHP+-+History+and+Introduction" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;title=PHP+-+History+and+Introduction" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;title=PHP+-+History+and+Introduction" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;submitHeadline=PHP+-+History+and+Introduction&amp;submitSummary=This%20is%20my%20first%20post%20in%20the%20series%20of%20posts%20that%20i%20would%20be%20writing%20on%20my%20experiences%20and%20findings%20in%20PHP.%20The%20post%20will%20tell%20you%20why%20PHP%20exists%20and%20how%20it%20has%20now%20come%20to%20be%20known%20as%20a%20mature%20language.%0D%0A%0D%0ABackground%20and%20History%0D%0A%0D%0A%09C%20not%20for%20Web%0D%0AContrary%20to%20what%20people%20believe%2C%20there%20was%20a%20lot%20of&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;title=PHP+-+History+and+Introduction" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;t=PHP+-+History+and+Introduction" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;t=PHP+-+History+and+Introduction" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://twitter.com/home?status=RT+@royston_olivera:+PHP+-+History+and+Introduction+-+http://bit.ly/10Aygx" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li class="sexy-comfeed"><a href="http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;title=PHP+-+History+and+Introduction&amp;summary=This%20is%20my%20first%20post%20in%20the%20series%20of%20posts%20that%20i%20would%20be%20writing%20on%20my%20experiences%20and%20findings%20in%20PHP.%20The%20post%20will%20tell%20you%20why%20PHP%20exists%20and%20how%20it%20has%20now%20come%20to%20be%20known%20as%20a%20mature%20language.%0D%0A%0D%0ABackground%20and%20History%0D%0A%0D%0A%09C%20not%20for%20Web%0D%0AContrary%20to%20what%20people%20believe%2C%20there%20was%20a%20lot%20of&amp;source=Straight from the mind" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/&amp;h=PHP+-+History+and+Introduction" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://blog.roystonolivera.com/2009/07/01/php-history-and-introduction/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
