<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:theport="http://www.theport.com/namespace">
  <channel>
    <title><![CDATA[Introspection]]></title>
    <description><![CDATA[Jeff Haynie's ramblings about business and technology is home at http://blog.jeffhaynie.us/.]]></description>
    <link>http://tag.portblogs.com/introspection</link>
    
    	
    <theport:trustEnabled>yes</theport:trustEnabled>
    <theport:replaceVars>yes</theport:replaceVars>   
  	
    <item>
      <guid isPermaLink="true">http://tag.portblogs.com/post/introspection/simple_twitter_ruby_utility.html</guid>
	
      <title><![CDATA[Simple twitter ruby utility ]]></title>
      <description>&lt;p&gt;There might be something like this already out there but I just wanted a quick and dirty ruby class to get some relevant user information given a twitter username.&lt;/p&gt;
&lt;p&gt;Feel free to use it as you see fit - just don&amp;#8217;t blame me if you have an issue.  You can &lt;a href=&quot;http://pastebin.com/pastebin.php?dl=f30cddda3&quot;&gt;download&lt;/a&gt; from here.&lt;/p&gt;
&lt;pre language=&quot;ruby&quot; style=&quot;font-size:10px&quot;&gt;&lt;code&gt;
# Copyright (c) 2008 by Jeff Haynie.  All Rights Reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
#    * Redistributions of source code must retain the above copyright notice,
#      this list of conditions and the following disclaimer.
#
#    * Redistributions in binary form must reproduce the above copyright notice,
#      this list of conditions and the following disclaimer in the documentation
#      and/or other materials provided with the distribution.
#
#    * Neither the name of Jeff Haynie nor the names of its
#      contributors may be used to endorse or promote products derived from this
#      software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot; AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

require 'open-uri'
require 'rubygems'
require 'json/pure'

class Twitter

	def Twitter.status(un)
		u = URI.parse &quot;http://twitter.com/statuses/user_timeline.json?id=#{un}&amp;#038;count=1&quot;
		j = nil
		begin
			j = JSON.parse(u.read).first
		rescue OpenURI::HTTPError=&gt;e
			case e.to_s
				when /^404/
					raise 'Not Found'
				when /^304/
					raise 'No Info'
			end
		end
		o = {}
		user = j['user']
		fullname = user['name']
		if fullname == un
			o[:firstname]=nil
			o[:lastname]=nil
		else
			o[:firstname],o[:lastname] = Twitter.parse_name(fullname)
		end
		o[:url] = user['url']
		o[:location] = user['location']
		o[:image] = user['profile_image_url']
		o[:bio] = user['description']
		o[:status] = j['text']
		o[:date] = j['created_at']
		o
	end

	private

	def Twitter.parse_name(fullname)
		idx = fullname.index ' '
		if idx
			return fullname[0..idx].strip,fullname[idx..-1].strip
		end
		return '',fullname.strip
	end

end

if __FILE__ == $0
	o = Twitter.status ARGV.first || 'jhaynie'
	puts &quot;Firstname: #{o[:firstname]}, Lastname: #{o[:lastname]}&quot;
	puts &quot;URL: #{o[:url]}&quot;
	puts &quot;Location: #{o[:location]}&quot;
	puts &quot;Status: #{o[:status]}&quot;
	puts &quot;Date: #{o[:date]}&quot;
	puts &quot;Bio: #{o[:bio]}&quot;
end
&lt;/code&gt;
&lt;/pre&gt;
&lt;p&gt;You can run from command line to test it out:&lt;/p&gt;
&lt;pre language=&quot;shell&quot;&gt;&lt;code&gt;
&gt; ruby twitter.rb ev
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Replace twitter.rb with the name of the file you saved the code as and the 2nd argument (ev) with the twitter username.&lt;/p&gt;
</description>
      <pubDate>Fri, 27 Jun 2008 04:06:12 GMT</pubDate>
      <theport:alertlevel>0</theport:alertlevel>
      	
      	
    </item>
 	
    <item>
      <guid isPermaLink="true">http://tag.portblogs.com/post/introspection/firefox_launch_party_atlanta_june_17th_2008.html</guid>
	
      <title><![CDATA[Firefox Launch Party Atlanta - June 17th, 2008 ]]></title>
      <description>&lt;p&gt;&lt;a href=&quot;http://www.surfmind.com&quot;&gt;Andy Edmonds&lt;/a&gt; has &lt;a href=&quot;http://surfmind.com/lab/mozilla/firefox3launch.html&quot;&gt;organized&lt;/a&gt; one of many Firefox 3 launch parties this coming Tuesday, June 17th, 2008.  The party will be held at the &lt;a href=&quot;http://www.google.com/maps?f=q&amp;#038;hl=en&amp;#038;geocode=&amp;#038;q=Park+Tavern+in+Midtown,+500+Tenth+Street+NE,+Atlanta,+GA+30309&amp;#038;sll=34.085654,-84.293944&amp;#038;sspn=0.009419,0.018861&amp;#038;ie=UTF8&amp;#038;ll=33.92513,-84.369507&amp;#038;spn=1.207871,2.414246&amp;#038;t=h&amp;#038;z=9&amp;#038;iwloc=A&quot;&gt;Park Tavern&lt;/a&gt; in Midtown, 500 Tenth Street NE, Atlanta, GA 30309.&lt;/p&gt;
&lt;p&gt;Andy was the host of the original Mozilla 1.0 Boston Party so this should be an interesting change from back then.  &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.spreadfirefox.com/en-US/worldrecord&quot; &gt;&lt;img border=&quot;0&quot; alt=&quot;Download Day 2008&quot; title=&quot;Download Day 2008&quot; src=&quot;http://www.spreadfirefox.com/sites/all/themes/spreadfirefox_RCS/images/download-day/buttons/en-US/sns_badge1.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Please spread the word and &lt;a href=&quot;http://www.getfirefox.com&quot;&gt;download Firefox&lt;/a&gt; on this day. Mozilla is going to &lt;a href=&quot;http://www.spreadfirefox.com/en-US/worldrecord/&quot;&gt;attempt&lt;/a&gt; to get into the Guinness Book of Records by getting as many people to download FF3 at the same time. This should be interesting. &lt;/p&gt;
&lt;p&gt;If you&amp;#8217;re not in Atlanta and would like to attend or host your own local launch party, you can get more details at the official &lt;a href=&quot;http://mozillaparty.com/&quot;&gt;Mozilla Launch Party website&lt;/a&gt;.&lt;/p&gt;
</description>
      <pubDate>Fri, 13 Jun 2008 15:24:31 GMT</pubDate>
      <theport:alertlevel>0</theport:alertlevel>
      	
      	
    </item>
 	
    <item>
      <guid isPermaLink="true">http://tag.portblogs.com/post/introspection/the_2008_gratag_business_launch_competition_fiasco.html</guid>
	
      <title><![CDATA[The 2008 GRA/TAG Business Launch Competition Fiasco ]]></title>
      <description>&lt;div style=&quot;background-color:#ffffcc;border:1px solid #ffff99;padding:6px;color:#333;font-size:12px;line-height:15px;margin-bottom:18px;&quot;&gt;OK, first off, a specific disclaimer:  TAG and GRA are GREAT organizations and led by some amazing, dedicated people.  This isn&amp;#8217;t a personal attack on them or any of the companies or judges in this competition.&lt;/div&gt;
&lt;p&gt;There has been quite a bit of debate in the past few days about the &lt;a href=&quot;http://www.tagonline.org/businesslaunch.php&quot;&gt;2008 GRA/TAG Business Launch Competition&lt;/a&gt; here in Atlanta.  &lt;a href=&quot;http://www.scottburkett.com/index.php/atlanta-business-scene/2008-06-09/from-bankrupcty-to-taggra-business-launch-winner-wtf.html&quot;&gt;Scott Burkett&lt;/a&gt; was spot on in my opinion and was one of the first to publicaly call this insanity out.  There were some &lt;a href=&quot;http://twitter.com/rkischuk/statuses/826971902&quot;&gt;tweets&lt;/a&gt; by &lt;a href=&quot;http://twitter.com/pfreet/statuses/827295921&quot;&gt;some&lt;/a&gt; local entrepreneurs and Lance Weatherby &lt;a href=&quot;http://blog.weatherby.net/2008/06/atm-cashes-in.html#comments&quot;&gt;attempted to quell the crowd&lt;/a&gt; with his peacemaking around trying to turn this into a positive and looking for suggestions about how to improve it.&lt;/p&gt;
&lt;p&gt;A little background for those just trying to get up to speed on what&amp;#8217;s happened.&lt;/p&gt;
&lt;p&gt;The 2008 GRA/TAG Business Launch Competition is a cool annual event that is intended to help provide funding and value-added services in-kind to the lucky startup that is launching a business here in Georgia and looking for help.  We had quite a number of companies apply, that was widdled down to a much smaller group and then to a final set of four companies.  I&amp;#8217;m an advisor to one company, &lt;a href=&quot;http://www.skyblox.com&quot;&gt;Skyblox&lt;/a&gt;, which I think is worthy of the top 4 status and one of the cooler startups here in town.  I&amp;#8217;m biased and I freely admit that.  But, that&amp;#8217;s not really the point here.&lt;/p&gt;
&lt;p&gt;Where this all breaks down is that the winner was a company called &lt;a href=&quot;http://www.atmdirect.com&quot;&gt;ATMDirect&lt;/a&gt;.  I freely admit I know jack about these guys, except that the hidden secret that&amp;#8217;s come out since the win is that they&amp;#8217;re not really a startup per se.  Maybe to the letter of the law, but certainly not the intention of it.  You can technically say they&amp;#8217;re just launching the business, but really they&amp;#8217;re reinventing a company that has had literally millions and millions invested in it and its IP and taking some smart advantages of a bad bankruptcy situation.  (And good for them).&lt;/p&gt;
&lt;p&gt;Here&amp;#8217;s the stated purpose of the event (from their press release):&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;The purpose of the GRA/TAG Business Launch Competition is to support economic development in Georgia by encouraging and supporting the creation and growth of new companies that will strengthen and expand Georgia&amp;#8217;s strategic high tech clusters. To accomplish this, the competition has two specific goals:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;to motivate and support entrepreneurs in creating new high tech businesses in Georgia that will support and expand existing strategic clusters, and&lt;/li&gt;
&lt;li&gt;to create greater awareness within the investment community that Georgia is a great place to launch and grow high tech businesses.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;(SIDE NOTE: I have issues with the purpose, especially the clusters concept, but that&amp;#8217;s an opinion for another day).&lt;/p&gt;
&lt;p&gt;OK, here&amp;#8217;s the rules:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Entrepreneurs interested in launching a new Georgia company within targeted technologies and industries are invited to compete for a $100K cash prize and a suite of related professional services (including priority consideration for ATDC membership) that is valued at more than $200K. The competition offers entrants the opportunity to be mentored by a successful high tech entrepreneur. &lt;/p&gt;
&lt;p&gt;Entrants must legally reside in the State of Georgia. All awards will be conditioned on the company launching and/or maintaining its operations in Georgia. If the winning company moves a majority of the business outside Georgia within 3 years, the winning company must repay TAG for the $100K cash prize plus 8% annual interest. TAG will make a final determination as to whether a company &amp;#8220;moves a majority of the business outside of Georgia&amp;#8221; and will have discretion to negotiate a variety of forms of repayment of the cash prize plus interest.&lt;/p&gt;
&lt;p&gt;Entrants can be existing companies under certain circumstances. The competition is aimed at &amp;#8220;new&amp;#8221; businesses, however the time and effort required to launch a successful business in the targeted areas may require that an entrepreneur form a company and begin certain limited functions before any meaningful business operations occur.  These functions could include prototype or Intellectual Property development and for these or similar reasons up to $500K in external funding may be allowed.  Market trials may also be required and for this or a similar reason some limited revenue may be allowed.  The judging process will take all these factors into consideration when making a recommendation to TAG&amp;#8217;s President and the decision made by the TAG President is final.
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;OK, that&amp;#8217;s where it gets a little fun.  I think the rules are fair.  And, it&amp;#8217;s their money and their rules - Tino can do what he wants here.&lt;/p&gt;
&lt;p&gt;An interesting comment on Lance&amp;#8217;s post from John B. Frank:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;ATMDirect was neither founded, NOR funded by Nandon Seth. It was founded nearly a decade ago by an individual named Robert Ziegler who raised a couple million dollars. Nandon Seth acquired ATMDirect for $600k during the Pay By Touch bankruptcy. Thus to state that he &amp;#8220;founded&amp;#8221; and &amp;#8220;funded&amp;#8221; ATMDirect is simply a misnomer. Just thought I&amp;#8217;d set the record straight. FYI: You can visit www.biometricpayments.blogspot.com or www.pindebit.blogspot.com and do an ATMDirect search to learn more about ATMDirect&amp;#8217;s history as well as PIN Debit for the Web&amp;#8230;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Even on the ATMDirect website it states:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;ATM Direct was purchased by Accullink, LLC of Atlanta, Georgia in March 2008.&lt;br /&gt;
See our press release for more details.
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;(Side note: i can&amp;#8217;t find the press release they mention specifically from their website which is terrible).&lt;/p&gt;
&lt;p&gt;This is from the about page:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;ATM Direct is a privately held alternative payments provider offering a suite of products that enable PIN debit payments over the Internet. The technology underlying our products are backed by a suite of intellectual property that includes 10 patent families. Our technology leverages a revolutionary encryption and authentication framework which is easy to implement and integrates seamlessly with existing payment processing protocols and systems.
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;OK, a &amp;#8220;business launch&amp;#8221; for a &amp;#8220;new startup&amp;#8221; doesn&amp;#8217;t have &lt;strong&gt;10 patent families&lt;/strong&gt;. Ten fully prosecuted patents families would be worth at least a million or more dollars alone most likely.&lt;/p&gt;
&lt;p&gt;Also, they seem to have violated clearly the investment criteria of less than $500K (at a minimum, not including their post purchase investment if any).&lt;/p&gt;
&lt;p&gt;ATMDirect looks like a pretty awesome company with a stellar management team and looks like they&amp;#8217;re very sophisticated entrepreneurs that have taken advantage of a great IP issue.  They are creating value it appears and looks like their attempting to monetize something that was on the shelf.  I applaud them for this.  That&amp;#8217;s really not the point to some of the discontent we&amp;#8217;re hearing and feeling right now &amp;#8212; myself included. &lt;/p&gt;
&lt;p&gt;We&amp;#8217;re all humans and error prone.  I&amp;#8217;ll be the first to admit I make lots of mistakes and misjudgments on a daily basis &amp;#8212; WE ALL DO.  &lt;/p&gt;
&lt;p&gt;I think there&amp;#8217;s really a silver lining in this whole fiasco and some very positive things can come from this - if it&amp;#8217;s handled correctly. &lt;/p&gt;
&lt;p&gt;First, I think Tino and the TAG/GRA need to somehow address this issue with the community directly.  Engage the community and create some dialog around it.  &lt;/p&gt;
&lt;p&gt;Second, don&amp;#8217;t just assume that me and some of the other talking heads around the community are just loud mouths that are unhappy and can&amp;#8217;t be satisfied (that&amp;#8217;s true by the way).  I think most people understand that it&amp;#8217;s quite the contrary.  (a) we&amp;#8217;re not unhappy and generally are trying to work hard to improve the community overall and putting our own time, money and passion into it through various events, etc.  (b) we&amp;#8217;re only the vocal ones &amp;#8212; there&amp;#8217;s plenty of people who won&amp;#8217;t/don&amp;#8217;t/can&amp;#8217;t speak out and are talking around the water cooler.  I&amp;#8217;ve talked to a number of people who wouldn&amp;#8217;t dare speak out that aren&amp;#8217;t too thrilled about this.&lt;/p&gt;
&lt;p&gt;Third, use this opportunity to maybe refine some of the rules (or at least, the intentions and instructions for judging in the future) going forward.  Lance has &lt;a href=&quot;http://blog.weatherby.net/2008/06/atm-cashes-in.html#comments&quot;&gt;suggested&lt;/a&gt; some good ones.  &lt;/p&gt;
&lt;p&gt;Fourth, understand and acknowledge that social media and the community-at-large will continue to play a very important role in the evolution of TAG/GRA and that this is an opportunity to embrace it.&lt;/p&gt;
&lt;p&gt;Fifth, it might be worth spending time thinking about how to fund more companies instead of less.  Maybe in the future we can get $100k to 3-4 companies instead of one.  The cost of &amp;#8220;launching&amp;#8221; a startup is much lower than in previous years.  It might be worth it to investigate the merits of doing a scaled model.  1st gets $50k, 2nd gets $30k and 3rd gets $20k.  4th place can have the services. &lt;img src='http://blog.jeffhaynie.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;I think what we want to avoid is the image that these awards are really a waste of time.  &lt;/p&gt;
&lt;p&gt;P.S. Drop the &lt;a href=&quot;http://www.tagtvonline.com/index.php?option=com_content&amp;#038;task=view&amp;#038;id=33&amp;#038;Itemid=137&quot;&gt;silly pitch videos&lt;/a&gt; which were goofy and a waste of money/time in my opinion. Or at least get someone to really do a better job in the production. I would suggest Grayson Daughters. &lt;img src='http://blog.jeffhaynie.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;/p&gt;
</description>
      <pubDate>Wed, 11 Jun 2008 05:26:57 GMT</pubDate>
      <theport:alertlevel>0</theport:alertlevel>
      	
      	
    </item>
 	
    <item>
      <guid isPermaLink="true">http://tag.portblogs.com/post/introspection/mindtouch_announces_deki_wiki_jay_cooke_v805.html</guid>
	
      <title><![CDATA[MindTouch announces Deki Wiki &quot;Jay Cooke&quot; v8.05 ]]></title>
      <description>&lt;p&gt;&lt;img src=&quot;http://wiki.mindtouch.com/@api/deki/files/60/=horizontal.png&quot; align=&quot;right&quot; width=&quot;144&quot;/&gt;&lt;/p&gt;
&lt;p&gt;OK, putting aside the silly release naming convention &amp;#8212; this is a &lt;a href=&quot;http://wiki.mindtouch.com/Press_Room/Press_Releases/2008-05-07&quot;&gt;pretty big announcement&lt;/a&gt; for the really cool open source wiki provider, &lt;a href=&quot;http://www.mindtouch.com&quot;&gt;MindTouch&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;MindTouch has continued to gain tons of traction and I hear, from one of our common advisors, that they&amp;#8217;re getting a lot of downloads on a daily basis. This is a great thing and today&amp;#8217;s announcement is important for several reasons.&lt;/p&gt;
&lt;p&gt;They&amp;#8217;re announcing some cool new features like:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Polygot support&lt;/strong&gt; - What&amp;#8217;s that? The ability to host all languages on a single site.  Now languages can be specified by pages and sections which automatically adapt the UI based on the language.  You can also search across all languages and results pages are prioritized based our your default language (as a user).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;More community management features&lt;/strong&gt; - especially for managing larger wiki sites such as IP and user banning, talk pages and advanced page management.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Content transforms&lt;/strong&gt; - this is the ability to allow content during editing which will automatically be transformed based on the content type of the snippet. For example, you could specify text for syntax highlighting, SVG, LaTex, various graphs, and more&amp;#8230; Plus, adding new types of transforms is easy through their extensible API capability.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Open search&lt;/strong&gt; - this release now supports the open search API&lt;/p&gt;
&lt;p&gt;But by far, the most important part of this announcement is the Mozilla endorsement:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;MindTouch&amp;#8217;s Web Oriented Architecture, feature set, and user experience were reasons cited by Mike Shaver, Mozilla&amp;#8217;s Chief Evangelist, for having selecting Deki Wiki after an extensive evaluation of vendors. &amp;#8220;I&amp;#8217;m looking forward to deploying Deki Wiki for the Mozilla Developer Center; especially with the enhancements that the Jay Cooke release brings,&amp;#8221; said Shaver, &amp;#8220;Mozilla believes in the power of the web to bring people together in wonderfully collaborative ways and MindTouch Deki Wiki&amp;#8217;s extensibility and flexible architecture will allow us bring more of this to our developer community. The opportunity to easily create our own tools and extensions on top of Deki&amp;#8217;s extensive API is sure to inspire some great improvements from our community.&amp;#8221;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The v8.05 release was driven in part by the requirements of Mozilla, which selected MindTouch for the upcoming re-launch of their Mozilla Developer Community.  I think this is a pretty significant endorsement and a huge win for MindTouch and Deki Wiki.  Congratulations to Aaron and team for this big win and significant release.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m hoping to look to use Deki Wiki for the launch of &lt;a href=&quot;http://www.techpediatl.org/&quot;&gt;Techpedia Atlanta&lt;/a&gt; this summer.&lt;/p&gt;
</description>
      <pubDate>Wed, 07 May 2008 13:30:13 GMT</pubDate>
      <theport:alertlevel>0</theport:alertlevel>
      	
      	
    </item>
 	
    <item>
      <guid isPermaLink="true">http://tag.portblogs.com/post/introspection/startup_dinner_atlanta.html</guid>
	
      <title><![CDATA[Startup Dinner Atlanta ]]></title>
      <description>&lt;p&gt;Tonight, I had the chance to hang out with a small group of entrepreneurs here in Atlanta.  It was &lt;a href=&quot;http://www.bilgistic.com/&quot;&gt;Sanjay Parekh&amp;#8217;s&lt;/a&gt; Startup Dinner.  The idea is to get 8 or people together (no recruiters, no service providers) and hang out over dinner. I believe this started last year by Sanjay and &lt;a href=&quot;http://www.coty.ws&quot;&gt;Coty Rosenblath&lt;/a&gt;.  I attended one of the earlier forms of this awhile back and it was invaluable. &lt;/p&gt;
&lt;p&gt;Tonight I got to hang out with a few different people - probably half I already knew and the other half I met tonight.  And it was a good mix of crowd.&lt;/p&gt;
&lt;p&gt;I think Sanjay is running at least one of these a month - and it&amp;#8217;s invite only.  You gotta be a cool kid to get on the long list (or so I hear as the rumor) and Sanjay has a rigourous screening program and sophisticated background checking algorithm (most borrowed from code he used when he first built digital envoy) &amp;#8212; ok, i&amp;#8217;m kidding (sort of) &amp;#8212; but if you&amp;#8217;d like me to pass along your name to get on the list, drop me a line.&lt;/p&gt;
&lt;p&gt;What I like about Sanjay is that he&amp;#8217;s not your prototypical local entrepreneur.  He&amp;#8217;s actually one of those guys that gets it into his head he can help the local community - and he does it.  Part of it is he&amp;#8217;s between gigs right now and that helps. &lt;img src='http://blog.jeffhaynie.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt;  But, seriously, he&amp;#8217;s doing something to give back, to help the local startup scene and putting his own time, money and energy making things happen.&lt;/p&gt;
&lt;p&gt;If you don&amp;#8217;t know some of his recent endeavors, let me illuminate them for you:&lt;/p&gt;
&lt;p&gt;- &lt;a href=&quot;http://www.startupriot.com&quot;&gt;Startup Riot&lt;/a&gt;  - Startup Riot is the idea of getting a bunch of entrepreneurs together to do quick pitches to different investors. He&amp;#8217;s already got like 80 startups signed up and a gaggle of money guys ready to come. If you haven&amp;#8217;t signed up yet, well, you may be out of luck. Go ahead and throw your name in and see if you can get on the list - at least as a standby.&lt;/p&gt;
&lt;p&gt;- &lt;a href=&quot;http://atlanta.startupdrinks.com/&quot;&gt;Atlanta Startup Drink&lt;/a&gt;s -  OK, this sounds like a lot of fun. I haven&amp;#8217;t had a chance to do this yet.  Anytime you mix drinking with passionate people trying to do insanely crazy ideas, well, you never know what will happen.&lt;/p&gt;
&lt;p&gt;- &lt;a href=&quot;http://opencoffee.ning.com/&quot;&gt;Open Coffee Atlanta&lt;/a&gt; - Coke is my vice so I&amp;#8217;m not really into $5 bean juice these days&amp;#8230; but if hanging out with people to shoot the crap and share wars stories is your thing, then this is your event. I&amp;#8217;m hoping to make one of these once i get off the road soon.&lt;/p&gt;
&lt;p&gt;Also, if you&amp;#8217;re into shooting high powered pistols and you&amp;#8217;re a geek, you might want to check out Geeks with Guns this Saturday at 9am. &lt;a href=&quot;http://twitter.com/mmealling&quot;&gt;Michael Mealling&lt;/a&gt; is hosting it - tweet him for details. My son has a 9:30 am soccer game so I can&amp;#8217;t make it.  I&amp;#8217;m looking forward to doing Geeks with Skeets next. &lt;/p&gt;
&lt;p&gt;A lot of people are asking me about what&amp;#8217;s going on with all the travel to Palo Alto and Boston.  Well, as you&amp;#8217;d expect, we&amp;#8217;re entertaining a few different investors as you&amp;#8217;d expect and that&amp;#8217;s about all I can really say for now. More to come on that very soon hopefully.  I appreciate everyone&amp;#8217;s interest and I promise that as I can talk more, you&amp;#8217;ll be the first to find out.  For now, we&amp;#8217;re staying completely heads down and focused on building Appcelerator, continuing to grow our fast-growing community and taking care of our awesome customers.  Thanks for everyone&amp;#8217;s nice comments and offers to help.&lt;/p&gt;
</description>
      <pubDate>Wed, 30 Apr 2008 02:57:40 GMT</pubDate>
      <theport:alertlevel>0</theport:alertlevel>
      	
      	
    </item>
 	
    <item>
      <guid isPermaLink="true">http://tag.portblogs.com/post/introspection/atdc_entrepreneurs_showcase_coming_may_15th.html</guid>
	
      <title><![CDATA[ATDC Entrepreneurs Showcase coming May 15th ]]></title>
      <description>&lt;p&gt;The Georgia Tech Advanced Technology Development Center (&lt;a href=&quot;http://www.atdc.org&quot;&gt;ATDC&lt;/a&gt;) is announcing that on May 15th they&amp;#8217;re going to be holding their annual Entrepreneurs Showcase down near Tech Square in Atlanta, GA.  I usually attend this event as my previous company was the 100th graduate of ATDC a few years back and I can say that this is a fun time to congratulate the graduating companies and see the incoming companies.  &lt;/p&gt;
&lt;p&gt;This year&amp;#8217;s theme is going to be &amp;#8220;Seeds for Success&amp;#8221; after the launch of the &lt;a href=&quot;http://www.peachseedz.com/&quot;&gt;PeachSeedz blog&lt;/a&gt;.  I know I had pressed for a while to get them blogging - although I&amp;#8217;m sure I was one of many people asking for it.  &lt;a href=&quot;http://blog.weatherby.net/&quot;&gt;Lance Weatherby&lt;/a&gt; has really taking a leadership role down at ATDC and I&amp;#8217;m glad to see things continuing to move forward there.  &lt;/p&gt;
&lt;p&gt;ATDC is saying that the event is expected to attract around 500 entrepreneurs, investors and business leaders from across the Southeast.  If I remember, last year was about 1/2 that or so - or at least that small conference room where the main presentation was couldn&amp;#8217;t have held 500.  This year&amp;#8217;s event will be at the &lt;a href=&quot;http://en.wikipedia.org/wiki/Atlanta_Biltmore_Hotel&quot;&gt;Biltmore Hotel&lt;/a&gt;, presumably because of the increased size of the event. Way to go guys!&lt;/p&gt;
&lt;p&gt;This year, six companies are graduating from ATDC:&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.vendormate.com/&quot;&gt;Vendormate&lt;/a&gt;, a provider of business-credentialing and compliance-monitoring solutions that help companies better manage the composition and risk of their supplier-base;&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.emcien.com/&quot;&gt;Emcien&lt;/a&gt;,  a demand-driven product management solution that determines an optimized product mix by recommending the fastest-moving, highest margin product configurations based on customer buying patterns;&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.lcgi.net&quot;&gt;LCGI&lt;/a&gt;, a developer of Web applications that allow data collection via the Web, telephony and mobile devices;&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.neuroticmedia.com/&quot;&gt;Neurotic Media&lt;/a&gt;, the leading media distribution platform and retail store solution for online and mobile content downloads through private-labeled stores; &lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.oversightsystems.com/&quot;&gt;Oversight&lt;/a&gt;, a business that detects corporate fraud, misuse and errors through continuous monitoring of financial transactions; and&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.terratial.com/&quot;&gt;Terratial Technologies&lt;/a&gt;, a company focused on actualizing the potential of the mobile phone experience.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m familiar with almost all of these companies - and I particularly think Vendormate has an interesting model.  We gave Andy some temporary space at 730 Midtown over at Vocalocity for a bit while he was just getting the company off the ground.&lt;/p&gt;
&lt;p&gt;Here&amp;#8217;s a cool quote from Andy about ATDC:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
“Being part of the ATDC has been an invaluable experience for me and our company,” said Andy Monin, CEO of Vendormate.  “Any entrepreneur looking for an advantage in launching their technology startup should take a long look at what ATDC has to offer.”
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;In addition to ATDC, Georgia Tech also runs VentureLab which helps form startup companies from Georgia Tech intellectual property.  VentureLab is run by &lt;a href=&quot;http://academicvc.blogspot.com/&quot;&gt;Stephen Fleming&lt;/a&gt;, who is totally awesome and a great person to have on your side.&lt;/p&gt;
&lt;p&gt;The following companies will be also graduating from Venture Labs:&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.pramana.com/&quot;&gt;Pramana&lt;/a&gt;, which is developing an easy-to-deploy solution to help secure the Internet for meaningful human scale interactions;&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.qualtre.com/&quot;&gt;Qualtr&#233;&lt;/a&gt;, a developer of the next generation of high-performance, low-cost motion sensing technology, primarily for the consumer electronics market;&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.suniva.com/&quot;&gt;Suniva&lt;/a&gt;, a company dedicated to the development, manufacture and marketing of high-value, high-efficiency silicon photovoltaic cells for clean, earth-friendly power generation;&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://vercomaterials.com/&quot;&gt;Verco Materials&lt;/a&gt;, which creates and manufactures dense, complex-shaped boron carbide for armor and wear applications; and&lt;/p&gt;
&lt;p&gt;• &lt;a href=&quot;http://www.zendatech.com/&quot;&gt;Zenda Technologies&lt;/a&gt;, a company that delivers a novel, portable, immersive platform for rapid neuropsychological testing, allowing accurate diagnosis of concussion and early Alzheimer&amp;#8217;s disease.&lt;/p&gt;
&lt;p&gt;Three of them – Pramana, Qualtr&#233; and Suniva – have already been accepted as member companies of the ATDC.&lt;/p&gt;
&lt;p&gt;It looks like &lt;a href=&quot;http://www.atdc.org/showcase&quot;&gt;registration for the event is live&lt;/a&gt; and the event is free. &lt;/p&gt;
</description>
      <pubDate>Wed, 16 Apr 2008 19:48:51 GMT</pubDate>
      <theport:alertlevel>0</theport:alertlevel>
      	
      	
    </item>
 	
    <item>
      <guid isPermaLink="true">http://tag.portblogs.com/post/introspection/appcelerator_xaware_put_a_face_on_your_soa.html</guid>
	
      <title><![CDATA[Appcelerator + XAware — put a face on your SOA ]]></title>
      <description>&lt;p&gt;&lt;img align=&quot;right&quot; src='http://www.xaware.com/images/logo_xaware.jpg' alt='xware' class='alignnone' /&gt;&lt;/p&gt;
&lt;p&gt;Today, at &lt;a href=&quot;http://en.oreilly.com/mysql2008/public/content/home&quot;&gt;MySQL World 2008&lt;/a&gt; in Santa Clara we&amp;#8217;re excited about an &lt;a href=&quot;http://www.businesswire.com/portal/site/google/?ndmViewId=news_view&amp;#038;newsId=20080414005176&amp;#038;newsLang=en&quot;&gt;announcement&lt;/a&gt; between &lt;a href=&quot;http://www.xaware.org/&quot;&gt;XAware, Inc.&lt;/a&gt; and &lt;a href=&quot;http://www.appcelerator.com&quot;&gt;Appcelerator&lt;/a&gt; and the &lt;a href=&quot;http://www.xaware.com/partners/ecosystem.php&quot;&gt;XAware Ecosystem&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;XAware has been an exciting company to work with and they are really pushing leading in the SOA integration space and are creating a compelling SOA ecosystem of best of breed technology partners and platforms.&lt;/p&gt;
&lt;p&gt;According to Marten Mickos, previous CEO of MYSQL and new Senior VP at Sun, said:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
“It’s encouraging to see innovative organizations working together to expand the open source SOA ecosystem,” said Marten Mickos, senior vice president, Database Group, Sun Microsystems. “Companies such as XAware, Appcelerator and Active Endpoints provide open source solutions that address a range of business issues, and we urge conference attendees to check out their offerings.”
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;So what does this all mean?&lt;/p&gt;
&lt;p&gt;This means that you can now use the Appcelerator rich Internet Application (RIA) platform together with XAware&amp;#8217;s open source SOA solution to give your SOA infrastructure a face.  You can now leverage all the existing enterprise data to build rich, powerful and dynamic web applications and seamlessly make them work together using standards, tools and skill sets you&amp;#8217;ve already invested in in the enterprise.&lt;/p&gt;
</description>
      <pubDate>Tue, 15 Apr 2008 19:53:00 GMT</pubDate>
      <theport:alertlevel>0</theport:alertlevel>
      	
      	
    </item>
 
  </channel>
</rss>
