<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Social Vitamin &#187; events</title>
	<atom:link href="http://www.socialvitamin.com/tag/events/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.socialvitamin.com</link>
	<description>Give your social space a vitamin boost.</description>
	<lastBuildDate>Tue, 17 Aug 2010 20:34:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Puerto Rico Startup Weekend June 5 &#8211; 7</title>
		<link>http://www.socialvitamin.com/2009/05/19/puerto-rico-startup-weekend-june-5-7/</link>
		<comments>http://www.socialvitamin.com/2009/05/19/puerto-rico-startup-weekend-june-5-7/#comments</comments>
		<pubDate>Wed, 20 May 2009 03:20:52 +0000</pubDate>
		<dc:creator>Michael D. Irizarry</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.socialvitamin.com/?p=209</guid>
		<description><![CDATA[Startup Weekend in San Juan, Puerto Rico from June 5 -7 at Hacienda Country Club &#038; Convention Center. Come join us as we bring this new and exciting business opportunity [...]]]></description>
			<content:encoded><![CDATA[<p>Startup Weekend in San Juan, Puerto Rico from June 5 -7 at <strong>Hacienda Country Club &#038; Convention Center</strong>.<br />
Come join us as we bring this new and exciting business opportunity to the Shinning Star of the Caribbean.</p>
<p><object width="400" height="226"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4021689&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=4cf000&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=4021689&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=4cf000&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="226"></embed></object>
<p><a href="http://vimeo.com/4021689">Startup Weekend World #2 Challenge</a> from <a href="http://vimeo.com/andrewhyde">Andrew</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><strong>What is Startup Weekend?</strong><br />
Startup Weekend is a community building startup event. Get together with local developers, marketers, designers, enthusiasts, and do what you do best. Start projects, Start companies. No talk, all action. The weekend of June 5-7 is Startup Weekend World. Celebrating the news that Startup Weekend is now ‘open’ to anyone to organize. How exciting 20+ cities from around the worl will host their own startup Weekends. No city is too big or small.</p>
<p><strong>What’s its purpose?</strong><br />
Build new startup companies, bring people together, share ideas.</p>
<p><strong>What’s the target market?</strong><br />
Technology, Web Development, Entrepreneurs, Legal, Marketing, Web 2.0, e-Business</p>
<p><strong>What are the requirements?</strong><br />
Be a technology enthusiast, be a Web Junkie, Programmer, IT person, blogger, marketers, lawyer or just have a cool business idea.</p>
<p><strong>Is it FREE?</strong><br />
Yes! It’s Free.</p>
<p><strong>REGISTER FOR THIS EVENT</strong><br />
Register here now for the June 5-7 Event: <a href="http://puertorico2.eventbrite.com/">http://puertorico2.eventbrite.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.socialvitamin.com/2009/05/19/puerto-rico-startup-weekend-june-5-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JS detecting event support in browsers</title>
		<link>http://www.socialvitamin.com/2009/04/03/js-detecting-event-support-in-browsers/</link>
		<comments>http://www.socialvitamin.com/2009/04/03/js-detecting-event-support-in-browsers/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 04:08:16 +0000</pubDate>
		<dc:creator>Michael D. Irizarry</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[detection]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.socialvitamin.com/?p=86</guid>
		<description><![CDATA[As you may know there is no easy way of detecting which elements supports which events across browsers. Kangax from Perfection Kills has come up with a very clever way [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know there is no easy way of detecting which elements supports which events across browsers. Kangax from <a href="http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/">Perfection Kills</a> has come up with a very clever way of detecting them.</p>
<p>JavaScript</p>
<pre lang="Javascript">

  var isEventSupported = (function(){
    var TAGNAMES = {
      'select':'input','change':'input',
      'submit':'form','reset':'form',
      'error':'img','load':'img','abort':'img'
    }
    function isEventSupported(eventName) {
      var el = document.createElement(TAGNAMES[eventName] || 'div');
      eventName = 'on' + eventName;
      var isSupported = (eventName in el);
      if (!isSupported) {
        el.setAttribute(eventName, 'return;');
        isSupported = typeof el[eventName] == 'function';
      }
      el = null;
      return isSupported;
    }
    return isEventSupported;
  })();
</pre>
<p>Use</p>
<pre lang="Javascript">
isEventSupported(<"Type of Event>")
</pre>
<p>For a more detailed description visit <a href="http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/">Kangax blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.socialvitamin.com/2009/04/03/js-detecting-event-support-in-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
