<?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>Aeonscope &#187; Meetups</title>
	<atom:link href="http://www.aeonscope.net/category/meetups/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aeonscope.net</link>
	<description>A view of time.</description>
	<pubDate>Sat, 04 Feb 2012 23:20:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Developer Day Experiences</title>
		<link>http://www.aeonscope.net/2009/10/11/developer-day-experiences/</link>
		<comments>http://www.aeonscope.net/2009/10/11/developer-day-experiences/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 16:22:28 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=2425</guid>
		<description><![CDATA[
In an earlier posting on this site, I mentioned that I signed up for Developer Day. Yesterday, I drove to Boulder to attend the event. It was a brutal experience getting there as the first ice storm of the year had just hit. What should have been an hour and half drive (tops) ended up [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/wp-content/uploads/2009/09/developer-day-sign.png" alt="Developer Day Sign" title="Developer Day Sign" width="400" height="199" class="alignnone size-full wp-image-2281" /></center></p>
<p>In an earlier posting on this site, I <a href="http://www.aeonscope.net/2009/09/08/developer-day/">mentioned</a> that I signed up for <a href="http://developer-day.com/events/2009-boulder.html">Developer Day</a>. Yesterday, I drove to Boulder to attend the event. It was a brutal experience getting there as the first ice storm of the year had just hit. What should have been an hour and half drive (tops) ended up being over two and half hours. The roads were covered in black ice, visibility was low, a section of I-25 to Denver was closed due to a major accident, a lady slammed on her breaks (you should never do that on ice) and nearly spinned her front end into the side of my car, etc. In essense, I really shouldn&#8217;t have been traveling. Yet, I made it unscathed and glad I did.</p>
<p>The following are some observations, notes, reflections, etc. from the event.</p>
<p><strong>The Passionate Programmer</strong> by Chad Fowler</p>
<p>I didn&#8217;t get to hear Chad speak, as mentioned above, but his book <a href="http://www.pragprog.com/titles/cfcar2/the-passionate-programmer/">The Passionate Programmer</a> is worth checking out.</p>
<p><strong>TurboGears: An Exercise in Natural Selection</strong> by Chris Perkins</p>
<p>I had finally arrived at the conference by this time only to catch the end of this talk. I haven&#8217;t been following the Python crowd much but what I got from Chris was that the web frameworks in this space are still too disparate. There is nothing like Rails in the Ruby realm where one framework is emerging as a leader. It seems that Chris is pushing <a href="http://turbogears.org">TurboGears</a> as one solution to this problem.</p>
<p><strong>The Cloud - Real World Applications and Pragmatics</strong> by Rob Sanheim</p>
<p>In this talk, Rob talked about using <a href="http://wiki.opscode.com/display/chef/Home">Chef</a> or, more importantly, <a href="http://wiki.opscode.com/display/chef/Chef+Solo">Chef Solo</a>. Chef Solo requires less overhead and is a great way to get started without having to get mired in complexity of the more advanced Chef features. Basically, both allow you to write less code and use &#8220;cookbooks&#8221; which automate a lot of what you need for managing servers in the cloud. These cookbooks can be altered and modified for your needs creating a living, personalized, and updated cookbook for your unique situation.</p>
<p>BTW, the Relevance team has a continuous integration solution called <a href="http://runcoderun.com">RunCodeRun</a> which might be of interest to some.</p>
<p><strong>Playing Nicely with Others</strong> by Jeremy Hinegardner</p>
<p>Jeremy gave a talk on the various tools and languages you might need to get your job done. He mentioned several tools but I&#8217;d like to point out <a href="http://www.mongodb.org">MongoDB</a> and <a href="http://couchdb.apache.org">CouchDB</a> as alternative database solutions to relational databases. I&#8217;ve not had a chance to play with these, myself, but they are on the radar. As for more tools you might need to be aware of, well, check out <a href="http://www.aeonscope.net/software/development/ruby/">my Ruby page</a>. That will keep you busy for a while.</p>
<p><strong>Lightning Talks</strong></p>
<p>These were a lot of fun. There are two I&#8217;d like to point out. The first was by David Eisinger who&#8217;s intro to Ruby loops, blocks, conditionals, etc while producing rap mixes with the MacOS system voices was hilarious. It was a good technique for introducing the language to newbies while keeping it entertaining. The second talk was by <a href="http://roadsafar.com">Jess Martin</a> who emphasized the &#8220;right way&#8221; for developing CSS style sheets. BTW, you can <a href="http://github.com/jessmartin/writings/tree/master/css_html_the_way">find his slides here</a>. There are a few things to take away from this talk:</p>
<ul>
<li>Collapse your CSS, don&#8217;t nest it (i.e. keep each style to one line). Trust me, you&#8217;ll get used to reading CSS this way and it&#8217;ll make it much easier to browse. I&#8217;m glad to see more people supporting this practice.</li>
<li>Maintain your HTML structure within your CSS stylesheet. In other words, begin your CSS code with a header, then body, and finally footer as you would when building your HTML. Again, much easier to browse and all of it is in one place.</li>
<li>Don&#8217;t split your CSS into multiple files. Keep one and call it screen.css. In some case you might need a print.css or ie.css but that should do it. You might also need a reset.css or jquery-ui.css, which is fine as well. However, in the case of reset.css or jquery-ui.css, don&#8217;t touch these. It makes it hard to upgrade and maintain if you do.</li>
</ul>
<p>I&#8217;ve been practicing these CSS guidelines for some time so, again, awesome to see more people promoting these practices. Although, Jess did mention that its not a bad idea to create CSS IDs and/or classes to mimic your RESTful routes. For example, /public/tasks could be #public #task { color: #000; }. That&#8217;s an interesting idea and worth giving more thought.</p>
<p><strong>Stepping Up: A Brief Intro to Scala</strong> by Derek Chen-Becker</p>
<p>This was an excellent talk and some of the best exposure I&#8217;ve had to Scala since I&#8217;ve seen so little of it. That said, if I wanted to couple legacy Java software with a more productive language, I&#8217;d go the JRuby route instead of Scala or even Groovy. Scala is an interesting language though and still in its infancy.</p>
<p><strong>Core Animation on the iPhone and Mac</strong> by Bill Dudney</p>
<p>Fun talk and demo of animations with Objective-C. There is a lot of amazing things you can do with Objective-C libraries in this space, a lot! I can&#8217;t help feeling a little weighed down by the ceremony of the language, though. Again, I&#8217;m spoiled with Ruby. It&#8217;s hard to get excited about a language where you are forced to type more than you have to. Like Bruce, later mentioned after his talk below, there is definitely a lot of square brackets in Objective-C.</p>
<p><strong>The Archaeology of Language Features in C++, Java and Python</strong> by Bruce Eckel</p>
<p>I really enjoyed Bruce&#8217;s talk on the archaeology and evolution of programming languages over the years. Granted, this was a limited view where the focus was on C++, Java, and Python. It is clear that Java is a legacy language now. To emphasize my point, I think its best if you see what fellow attendees had to say in this regard:</p>
<ul>
<li><a href="http://twitter.com/chadfowler/statuses/4777526324">chadfowler</a> Today at #developer_day, Bruce Eckel expressed his belief (and pleasure therein) that Java was becoming a legacy language.</li>
<li><a href="http://twitter.com/nealenssle/statuses/4771252845">nealenssle</a> Bruce Eckels: &#8220;Java is likely going to become a legacy language.&#8221; #developer_day</li>
<li><a href="http://twitter.com/#search?q=%23developer_day">digokili</a> Dynamic languages are efficient and not afraid to be improved by breaking backward compatibility #developer_day</li>
</ul>
<p>BTW, you can find these and more by searching for <a href="http://twitter.com/#search?q=%23developer_day">#developer_day on Twitter</a>. Oh, and you might want to read <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=173229">Seeking the Joy in Java</a>.</p>
<p>I would love to see this talk expanded to cover Smalltalk, Objective-C, Ruby, Scala, etc. In fact, a pros and cons matrix of each language with additional links, footnotes, etc. would be handy. This way one could delve deeper into each language to easily study how it ended up the way it did, the choices made, etc. All good stuff.</p>
<p><strong>Final Notes</strong></p>
<p>The <a href="http://www.techstars.org/">TechStars</a> office is awesome. I&#8217;ve watched <a href="http://andrewhyde.net">Andrew Hyde</a> produce <a href="http://www.techstars.tv/">various videos</a> within the TechStars office before but to experience it first hand was nice.</p>
<p>There were some problems with the event:</p>
<ul>
<li>The TechStars address was easy enough to find but the door to the cafe was locked and there was no sign indicating what to do. I later found out there was a second door with a note that you needed to call <a href="http://benscofield.com">Ben</a> in order to get in. Boo.</li>
<li>For some odd reason, no one could figure out how to turn the heater off for the building. The entire day was a sauna. I&#8217;m sure the energy bill is not going to make someone happy.</li>
</ul>
<p>It was fun following the #developer_day Twitter feed while listening to the talks. Good to see people tuned in and providing feedback. I did find myself wishing I could hold up my iPhone over the crowd using some kind of augmented reality app that would show me what people were saying, in real-time, above their heads. Yeah, yeah, I read too much science fiction&#8230;bit it will happen&#8230;soon.</p>
<p>I did get to speak with <a href="http://benscofield.com">Ben</a> briefly about <a href="http://haml-lang.com">Haml</a>. He agreed that it sucked as well. In fact, I think the words &#8220;devil&#8221; and/or &#8220;evil&#8221; were used but my memory could be bad. Fine by me, I hate Haml as well. I do like <a href="http://lesscss.org">LESS</a> for CSS though. As for an HTML template better than ERB&#8230;well I don&#8217;t have an answer to that as of yet.</p>
<p>Spending a dedicated day together with fellow passionate programmers can&#8217;t be beat. I wish I could have stayed longer with the crowd into the evening but I had a long drive home. Glad I went despite the weather.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2009/10/11/developer-day-experiences/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Developer Day</title>
		<link>http://www.aeonscope.net/2009/09/08/developer-day/</link>
		<comments>http://www.aeonscope.net/2009/09/08/developer-day/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:11:08 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=2278</guid>
		<description><![CDATA[
In case you haven&#8217;t heard, Developer Day is drawing near and is scheduled for October 10th (Saturday). It is being hosted by Vigit Labs and Relevance, led by Ben Scofield, and will be held in Boulder, CO.
I, myself, have registered and am looking forward to a day of learning and mingling with my peers. Early [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/wp-content/uploads/2009/09/developer-day-sign.png" alt="Developer Day Sign" title="Developer Day Sign" width="400" height="199" class="alignnone size-full wp-image-2281" /></center></p>
<p>In case you haven&#8217;t heard, <a href="http://developer-day.com">Developer Day</a> is drawing near and is scheduled for October 10th (Saturday). It is being hosted by <a href="http://www.viget.com">Vigit Labs</a> and <a href="http://thinkrelevance.com">Relevance</a>, led by <a href="http://www.viget.com/about/team/bscofield">Ben Scofield</a>, and will be held in Boulder, CO.</p>
<p>I, myself, have registered and am looking forward to a day of learning and mingling with my peers. Early registration fees are $50 only. If you don&#8217;t register early, the normal price is $75 which still isn&#8217;t bad.  The day starts at 8:30am and runs until 5:30pm. Yeah, it&#8217;ll be a long day including the drive to and from the Springs but worth it.</p>
<p>If you are interested, <a href="http://developer_day.eventwax.com/developer-day-colorado/register">register</a> today.  &#8230;and if you are coming from the Springs and need a ride up, just let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2009/09/08/developer-day/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Not Just Ruby (NJR)</title>
		<link>http://www.aeonscope.net/2009/01/12/not-just-ruby-njr/</link>
		<comments>http://www.aeonscope.net/2009/01/12/not-just-ruby-njr/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 02:49:29 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=1256</guid>
		<description><![CDATA[
I am happy to announce that Kevin and I have launched the first Ruby group in the Springs today called Not Just Ruby.  The primary goal, as with any group, is to make connections, share knowledge, and grow as individuals.  While most topics will be based around the Ruby language, we want to [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src="http://www.aeonscope.net/images/ruby/njr.png" alt="Not Just Ruby (NJR)"/></center></p>
<p>I am happy to announce that <a href="http://conceptsahead.com">Kevin</a> and I have launched the first Ruby group in the Springs today called <a href="http://www.meetup.com/Not-Just-Ruby/">Not Just Ruby</a>.  The primary goal, as with any group, is to make connections, share knowledge, and grow as individuals.  While most topics will be based around the Ruby language, we want to encourage discussion in other areas such as design and business, much like the <a href="http://www.meetup.com/refreshdenver/">Refresh Denver</a> group.</p>
<p>Our inaugural meeting will be held on <em>February 11th at 7pm</em> at the following location:</p>
<p><a href="http://www.trinitybrew.com">Trinity Brewing Company</a><br />
1466 Garden of the Gods<br />
Colorado Springs, CO 80907<br />
719-634-0029</p>
<p>Additional details <a href="http://www.meetup.com/Not-Just-Ruby/calendar/9509176/">can be found here</a> so make sure to sign up.</p>
<p>In the future, I plan to be talking more about the Ruby language on this site but, in the meantime, feel free to check out my <a href="http://www.aeonscope.net/software/development/ruby/">Ruby page</a> in order to get started.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2009/01/12/not-just-ruby-njr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Colorado Springs Open Source Meetup (Blender)</title>
		<link>http://www.aeonscope.net/2008/08/28/colorado-springs-open-source-meetup-blender/</link>
		<comments>http://www.aeonscope.net/2008/08/28/colorado-springs-open-source-meetup-blender/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 04:06:40 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/?p=1177</guid>
		<description><![CDATA[It has been a while since I last attended the Colorado Springs Open Source Meetup.  This time the talk was on Blender and OpenOffice.  I&#8217;m not even going to attempt to talk about Blender except to say I wish I had more time to play with it.  Pretty amazing stuff but comes [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a while since I <a href="http://www.aeonscope.net/2008/03/27/colorado-springs-open-source-meetup-jcatapult/">last attended</a> the <a href="http://opensource.meetup.com/88/calendar/8644297/">Colorado Springs Open Source Meetup</a>.  This time the talk was on <a href="http://www.blender.org/">Blender</a> and <a href="http://www.openoffice.org/">OpenOffice</a>.  I&#8217;m not even going to attempt to talk about Blender except to say I wish I had more time to play with it.  Pretty amazing stuff but comes with a stiff learning curve.  BTW, a good discussion on Blender can be found by listening to <a href="http://www.podtrac.com/pts/redirect.mp3/twit.cachefly.net/FLOSS-025.mp3">FLOSS Weekly - Episode 25 - Blender</a> if you haven&#8217;t checked it out already.</p>
<p>As for OpenOffice, I use it in a rather limited capacity.  Actually, I&#8217;ve been using <a href="http://www.neooffice.org">NeoOffice</a> but tonight convinced me that I need to drop NeoOffice and check out OpenOffice again.  It has improved quite a bit since I last used it.  It even supports <a href="http://extensions.services.openoffice.org/">extensions</a>.  Neat.</p>
<p>I spoke with Gary, who runs the Colorado Springs Open Source Meetup, and offered to give a talk on Ruby, Ruby on Rails, etc.  I mean, c&#8217;mon, the meetup has only been running since January of this year and still, there is no talk of Ruby or Rails?  That needs to change.  Hey Brett, if you are listening, I think you should fly up.  We could give a rather compelling demo of Ruby, Rails, and Google Maps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/08/28/colorado-springs-open-source-meetup-blender/feed/</wfw:commentRss>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/twit.cachefly.net/FLOSS-025.mp3" length="21064370" type="audio/mpeg" />
		</item>
		<item>
		<title>EclipseCon 2008 - Day 4</title>
		<link>http://www.aeonscope.net/2008/03/20/eclipsecon-2008-day-4/</link>
		<comments>http://www.aeonscope.net/2008/03/20/eclipsecon-2008-day-4/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 22:15:33 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

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

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

		<guid isPermaLink="false">http://www.aeonscope.net/2008/03/20/eclipsecon-2008-day-4/</guid>
		<description><![CDATA[
Today is the last and final day at EclipseCon and here are a few notes (organized by sessions):
Panel: Services Versus Extensions by Neil Bartlett, Jeff McAffer, James Branigan, and BJ Hargrave
The panel discussed the pros and cons of OSGi Services and Eclipse Extension Points with James mentioning how Jazz can fuse the two together.  [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/03/eclipsecon-2008-logo.png' alt='EclipseCon 2008 Logo' /></center></p>
<p>Today is the last and final day at <a href="http://www.eclipsecon.org/2008/">EclipseCon</a> and here are a few notes (organized by sessions):</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=492">Panel: Services Versus Extensions</a> by Neil Bartlett, Jeff McAffer, James Branigan, and BJ Hargrave</strong></p>
<p>The panel discussed the pros and cons of <a href="http://www.knopflerfish.org/osgi_service_tutorial.html">OSGi Services</a> and <a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-snippet/index.html">Eclipse Extension Points</a> with James mentioning how <a href="http://jazz.net">Jazz</a> can fuse the two together.  While I could not find an article that would explain all three in detail, I did find <a href="http://www.eclipsezone.com/articles/extensions-vs-services/">Neil Bartlett&#8217;s article</a> that compares services to extension points.</p>
<p>For those that might want to follow this space more, I suggest visiting <a href="http://neilbartlett.name/blog/">Neil&#8217;s blog</a>.</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=388">Creating Your Own Extension Points: It&#8217;s Easier Than You Think!</a> by Mark Melvin</strong></p>
<p>The <a href="https://eclipsecon.greenmeetingsystems.com/attachments/download/441">PowerPoint slides</a> are worth checking out.</p>
 <div class='series_toc'><h3>Article Series - EclipseCon 2008</h3><ol><li><a href='http://www.aeonscope.net/2008/03/17/eclipsecon-2008-day-1/' title='EclipseCon 2008 - Day 1'>EclipseCon 2008 - Day 1</a></li><li><a href='http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/' title='EclipseCon 2008 - Day 2'>EclipseCon 2008 - Day 2</a></li><li><a href='http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/' title='EclipseCon 2008 - Day 3'>EclipseCon 2008 - Day 3</a></li><li>EclipseCon 2008 - Day 4</li></ol></div> <div class='series_links'><a href='http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/' title='EclipseCon 2008 - Day 3'>Previous in series</a> </div>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/03/20/eclipsecon-2008-day-4/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EclipseCon 2008 - Day 3</title>
		<link>http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/</link>
		<comments>http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 06:00:16 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

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

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

		<guid isPermaLink="false">http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/</guid>
		<description><![CDATA[
It is day 3 at EclipseCon and here are a few notes (organized by sessions):
Eclipse 4.0 by Steve Northover, Jeff McAffer, Jochen Krause, and Mike Wilson

The goal is to build a better desktop application, make it easier to build plugins, and bring Eclipse to the web.
The biggest news seem to be around the Rich AJAX [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/03/eclipsecon-2008-logo.png' alt='EclipseCon 2008 Logo' /></center></p>
<p>It is day 3 at <a href="http://www.eclipsecon.org/2008/">EclipseCon</a> and here are a few notes (organized by sessions):</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=223">Eclipse 4.0</a> by Steve Northover, Jeff McAffer, Jochen Krause, and Mike Wilson</strong></p>
<ul>
<li>The goal is to build a better desktop application, make it easier to build plugins, and bring Eclipse to the web.</li>
<li>The biggest news seem to be around the <a href="http://www.eclipse.org/rap/">Rich AJAX Platform (RAP)</a> which is a subset of SWT to bring Eclipse to the web.</li>
<li>The Eclipse versions are splitting.  3.x will be supported into the future while 4.0 moves forward.  Changes applied to 4.0 will be applied to 3.x when apt.</li>
</ul>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=262">PDT - The PHP Development Toolkit</a> by Assaf Almaz</strong></p>
<p>This talk had very little content as it was mostly an overview of what PDT 1.0 currently does and what is going to be new in PDT 1.1.  It will be interesting to check out the new <a href="http://www.eclipse.org/pdt/plans/php_plan_1_1.php">PDT 1.1 features</a> when it is released this September (the first milestone is in May).  PDT 1.1 will be built upon Eclipse 3.4 and WTP 2.0 (although the presentation mentioned 3.0 so I am confused about that).</p>
<p>Check out the <a href="http://www.eclipse.org/pdt/">PDT Project</a> page for more info.</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=9">The Future of SWT</a> by Silenio Quarti and Steve Northover</strong></p>
<p>A significant amount of work has gone into <a href="http://www.eclipse.org/swt/">SWT</a> but more is needed to work within HTML, Flex, Silverlight, etc.  Some demos where shown displaying SWT cross-compiled to run in Flex and HTML + Dojo Javascript library.  There are implementations for <a href="http://msdn2.microsoft.com/en-us/netframework/aa663326.aspx">WPF</a> and <a href="http://developer.apple.com/cocoa/">Cocoa</a> as well.  Check out the <a href="http://wiki.eclipse.org/E4/Running_the_demos">demos</a>.</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=176">Introducing the new Web Tools Javascript Features</a> by Phil Berkland</strong></p>
<p>The <a href="http://wiki.eclipse.org/index.php/ATF/JSDT">JavaScript Development Toolkit (JSDT)</a> is a sub-project of the <a href="http://www.eclipse.org/atf/">AJAX Toolkit Framework (ATF)</a> project and currently in incubation.  The talk started out with a brief overview of JSDT and then quickly dived into a demo of JSDT features to write and edit JavaScript code.  JSDT looks to be more interesting than <a href="http://www.interaktonline.com/Products/Eclipse/JSEclipse/Overview/">JSEclipse</a> but check out the <a href="http://www.eclipse.org/atf/demos/jsdt/flashDemos.html">demos</a> for more info.</p>
 <div class='series_toc'><h3>Article Series - EclipseCon 2008</h3><ol><li><a href='http://www.aeonscope.net/2008/03/17/eclipsecon-2008-day-1/' title='EclipseCon 2008 - Day 1'>EclipseCon 2008 - Day 1</a></li><li><a href='http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/' title='EclipseCon 2008 - Day 2'>EclipseCon 2008 - Day 2</a></li><li>EclipseCon 2008 - Day 3</li><li><a href='http://www.aeonscope.net/2008/03/20/eclipsecon-2008-day-4/' title='EclipseCon 2008 - Day 4'>EclipseCon 2008 - Day 4</a></li></ol></div> <div class='series_links'><a href='http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/' title='EclipseCon 2008 - Day 2'>Previous in series</a> <a href='http://www.aeonscope.net/2008/03/20/eclipsecon-2008-day-4/' title='EclipseCon 2008 - Day 4'>Next in series</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EclipseCon 2008 - Day 2</title>
		<link>http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/</link>
		<comments>http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 06:21:27 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

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

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

		<guid isPermaLink="false">http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/</guid>
		<description><![CDATA[
Another day has passed at the conference and here are a few notes (organized by sessions):
How eRCP stacks up against Android and other Mobile Rich Client Platforms by Ken Walker and David Girle
Ken and David built web apps using the following technologies:

eRCP:  Supports a very small user base.  Not many apps are developed [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/03/eclipsecon-2008-logo.png' alt='EclipseCon 2008 Logo' /></center></p>
<p>Another day has passed at the <a href="http://www.eclipsecon.org/2008/">conference</a> and here are a few notes (organized by sessions):</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=226">How eRCP stacks up against Android and other Mobile Rich Client Platforms</a> by Ken Walker and David Girle</strong></p>
<p>Ken and David built web apps using the following technologies:</p>
<ul>
<li><a href="http://www.eclipse.org/ercp/">eRCP</a>:  Supports a very small user base.  Not many apps are developed using eRCP.</li>
<li><a href="http://code.google.com/android/">Android</a>:  Easy to setup.  Only needs the SDK and ADT (Eclipse plugin).  Really brings the desktop and mobile world together.  Supports JDK 1.5.0.  UI is a bit ugly though.   Easiest to use but works in an emulator only as no devices exist yet.</li>
<li><a href="http://webkit.org/">WebKit</a>:  Has a popular and large user base due to the iPhone.  Works on Android.</li>
<li><strong>Others (things to consider)</strong>:  Java ME + MIDP 2.0, Adobe Flash/AIR, Silverlight, and GWT + Google Gears.</li>
</ul>
<p>Based on this discussion, I would focus on the WebKit since it has a good user base already and can be easily tweaked to run on Android as well.</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=132">Java Annotations</a> by Walter Harley</strong></p>
<p>I&#8217;m glad I don&#8217;t have to work with annotations much.</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=380">Android and OSGi: Can they work together?</a> by Neil Bartlett and BJ Hargrave</strong></p>
<p>The answer is yes.  Neil and BJ demonstrated running Equinox and Concierge on Android and made mention of a couple other OSGi technologies: </p>
<ul>
<li><a href="http://www.eclipse.org/equinox/">Equinox</a></li>
<li><a href="http://concierge.sourceforge.net/">Concierge</a></li>
<li><a href="http://www.prosyst.com">ProSyst</a></li>
<li><a href="http://felix.apache.org/site/index.html">Felix</a></li>
</ul>
<p>Code from the demo can be found <a href="http://www.osgi.org/svn/public/trunk/eclipsecon/2008/androidosgi/">here</a>.</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=593">Introduction to the Jazz Technology Platform</a> by John Wiegand</strong></p>
<ul>
<li>Jazz is built upon layers (listed from top to bottom):  Clients (Eclipse, Visual Studio, etc.), Jazz Server Kernal (works with Jetty and Tomcat), Databases (state is stored as structured items stored as XML and arbitrary content stored as BLOBs), and finally the Equinox OSGi Framework.</li>
<li>Supports <a href="http://lucene.apache.org/java/docs/">Lucene</a> full-text search.</li>
<li>Authentication is performed by the Jazz Team Server communicating with a corporate directory server (LDAP).</li>
<li>Teams have projects and projects have processes.</li>
<li>In the future, Jazz will support more of a Web UI and communication protocol.</li>
</ul>
<p>Probably best if you just check out the <a href="https://jazz.net/pub/learn/videos/videos.jsp">Jazz Demo Videos</a> rather than refer to my notes.</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=547">Android, OSGi &#038; Cloudsmith: Cool Things Come in Threes</a> by Ken Gilmer, Lucas McGregor and Henrik Lindberg</strong></p>
<p>Interesting talk that discussed using web technologies to develop, test, and use applications and hardware.  For instance:</p>
<ul>
<li><a href="http://www.cloudsmith.com">Cloudsmith</a> + <a href="http://www.eclipse.org/spaces/">Eclipse Spaces</a> + <a href="http://felix.apache.org/site/index.html">Felix</a> + <a href="http://code.google.com/android/">Android</a>.</li>
<li><a href="http://www.cloudsmith.com">Cloudsmith</a> + <a href="http://felix.apache.org/site/index.html">Felix</a> + <a href="http://www.buglabs.net/">Bug Labs</a></li>
<li><a href="http://www.cloudsmith.com">Cloudsmith</a> + <a href="http://www.xdrive.com/developers/">XDrive</a></li>
</ul>
<p>The demo showed a picture taken by a Bug Labs device and uploaded to an Android emulator.</p>
<p><strong><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=171">Introduction to Groovy</a> by Andres Almiray</strong></p>
<ul>
<li><a href="http://groovy.codehaus.org/">Groovy</a> is a an agile and dynamic language built on Java.</li>
<li>Looks like Java code which means the learning curve is very low for a Java developer.</li>
<li>Compiles to Java byte code so that it can run anywhere Java does.</li>
<li>You can use dynamic or static typing.</li>
<li>Variable interpolation can be used:  ${my-variable-to-substitute}</li>
<li>Exceptions can be caught but if you choose not too catch them, they will be promoted as runtime exceptions by Groovy.</li>
<li>Supports annotations (JSR 175), generics, enums, and closures.</li>
<li>Supports operator overloading.</li>
<li>There is an <a href="http://groovy.codehaus.org/Eclipse+Plugin">Ecipse plugin</a> for developing Groovy code in Eclipse.</li>
</ul>
<p>In case you are looking for other languages that can compile to Java byte code, they are:  <a href="http://www.scala-lang.org/">Scala</a> and <a href="http://jruby.codehaus.org/">JRuby</a>.</p>
 <div class='series_toc'><h3>Article Series - EclipseCon 2008</h3><ol><li><a href='http://www.aeonscope.net/2008/03/17/eclipsecon-2008-day-1/' title='EclipseCon 2008 - Day 1'>EclipseCon 2008 - Day 1</a></li><li>EclipseCon 2008 - Day 2</li><li><a href='http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/' title='EclipseCon 2008 - Day 3'>EclipseCon 2008 - Day 3</a></li><li><a href='http://www.aeonscope.net/2008/03/20/eclipsecon-2008-day-4/' title='EclipseCon 2008 - Day 4'>EclipseCon 2008 - Day 4</a></li></ol></div> <div class='series_links'><a href='http://www.aeonscope.net/2008/03/17/eclipsecon-2008-day-1/' title='EclipseCon 2008 - Day 1'>Previous in series</a> <a href='http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/' title='EclipseCon 2008 - Day 3'>Next in series</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>EclipseCon 2008 - Day 1</title>
		<link>http://www.aeonscope.net/2008/03/17/eclipsecon-2008-day-1/</link>
		<comments>http://www.aeonscope.net/2008/03/17/eclipsecon-2008-day-1/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 22:57:14 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

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

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

		<guid isPermaLink="false">http://www.aeonscope.net/2008/03/17/eclipsecon-2008-day-1/</guid>
		<description><![CDATA[
EclipseCon 2008 is being held in sunny Santa Clara, CA this week (Monday - Thursday) and I am here attending as well as helping out with a few presentations:

Embedding Eclipse Equinox for Fun &#038; Profit
Remotely deploying Equinox with Maynstall
Where&#8217;s the Data? A Device Kit Tutorial.

For those of you on site, hopefully you have attended the [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2008/03/eclipsecon-2008-logo.png' alt='EclipseCon 2008 Logo' /></center></p>
<p><a href="http://www.eclipsecon.org/2008/">EclipseCon 2008</a> is being held in sunny Santa Clara, CA this week (Monday - Thursday) and I am here attending as well as helping out with a few presentations:</p>
<ul>
<li><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=264">Embedding Eclipse Equinox for Fun &#038; Profit</a></li>
<li><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=359">Remotely deploying Equinox with Maynstall</a></li>
<li><a href="http://www.eclipsecon.org/2008/?page=sub/&#038;id=285">Where&#8217;s the Data? A Device Kit Tutorial.</a></li>
</ul>
<p>For those of you on site, hopefully you have attended the <a href="http://www.bandxi.com/">Band XI</a> presentations this morning and you will join us this afternoon for the final presentation on Device Kit.  Otherwise, check out the links for further information as the Band XI team has been doing some very interesting work in the embedded space using <a href="http://www.osgi.org/">OSGi</a> technology.</p>
<p>Even though I am only operating on four hours of sleep (more than I can say for the rest of my comrades) I must say it is great being here and getting a chance to see some of the old <a href="http://planet-oti.muellerware.org/">OTI</a> crowd.  It almost feels like the annual technical conferences held many years ago before IBM consumed OTI.</p>
<p>I&#8217;ll be posting notes and content as (or when) I can throughout the week.  Stay tuned.</p>
 <div class='series_toc'><h3>Article Series - EclipseCon 2008</h3><ol><li>EclipseCon 2008 - Day 1</li><li><a href='http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/' title='EclipseCon 2008 - Day 2'>EclipseCon 2008 - Day 2</a></li><li><a href='http://www.aeonscope.net/2008/03/19/eclipsecon-2008-day-3/' title='EclipseCon 2008 - Day 3'>EclipseCon 2008 - Day 3</a></li><li><a href='http://www.aeonscope.net/2008/03/20/eclipsecon-2008-day-4/' title='EclipseCon 2008 - Day 4'>EclipseCon 2008 - Day 4</a></li></ol></div> <div class='series_links'> <a href='http://www.aeonscope.net/2008/03/18/eclipsecon-2008-day-2/' title='EclipseCon 2008 - Day 2'>Next in series</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/03/17/eclipsecon-2008-day-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refresh Denver (Web Business Startups)</title>
		<link>http://www.aeonscope.net/2008/01/16/refresh-denver-web-business-startups/</link>
		<comments>http://www.aeonscope.net/2008/01/16/refresh-denver-web-business-startups/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 06:25:43 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

		<category><![CDATA[Refresh Denver]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/01/16/refresh-denver-web-business-startups/</guid>
		<description><![CDATA[Tonight&#8217;s Refresh Denver Meeting was about web businesses.  Namely, startups and small businesses in general.  It was panel discussion led by SuzAnn Brown and Heather Morgan from Launchpad Interactive and Alex King from Crowd Favorite.  I didn&#8217;t manage to take very good notes this time around so a lot of this is [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight&#8217;s <a href="http://refreshdenver.org/2008/01/14/january-meeting/">Refresh Denver Meeting</a> was about web businesses.  Namely, startups and small businesses in general.  It was panel discussion led by SuzAnn Brown and Heather Morgan from <a href="http://www.launchpadinteract.com/">Launchpad Interactive</a> and <a href="http://alexking.org/">Alex King</a> from <a href="http://crowdfavorite.com/">Crowd Favorite</a>.  I didn&#8217;t manage to take very good notes this time around so a lot of this is from memory, my own thoughts, and discussions after the meeting had adjourned.  Here are my notes and thoughts:</p>
<ul>
<li><strong>Establish a Business Plan</strong> - It is wise to have a sound <a href="http://entrepreneurs.about.com/od/businessplan/Business_Plans.htm">business plan</a>.</li>
<li><strong>Create Your Company Entity</strong> - A business license is not a bad idea but, more importantly, establish your business as an <a href="http://en.wikipedia.org/wiki/Limited_liability_company">Limited Liability Company (LLC)</a>.  Otherwise, kiss your personal assets away when things go bad.</li>
<li><strong>Seek Legal Council</strong> - You might be savvy or think you&#8217;re savvy, but lets face it, your not.  Legal contracts, licensing, etc. is tricky and it would be wise to have someone you know and trust on your side to handle this.  Take a page from <a href="http://www.fourhourworkweek.com">Tim Ferriss&#8217; 4-Hour Workweek</a> book and outsource this instead.</li>
<li><strong>Fixed vs. Time and Material Payments</strong> - A fixed payment is where you perform all work for a set price regardless of the time or additional resources needed to make it happen.  Tricky and sometimes costly as you might underestimate or have unforeseen issues.  Being payed for time and materials allows one to scale and get payed for the work done.  In either case, it would be wise to establish a clear and well document list of work items to be performed.  Also, it is not a bad idea to underbid and overproduce.</li>
<li><strong>Source Code Reuse</strong> - As you grow your business you might want to think about building a foundation of core software that you can redistribute amongst your various clients.  This not only makes things easier for you but saves the client money too.  However, ownership of the intellectual property can get murky and is another reason for having an lawyer on hand to ensure both parties get what they want.</li>
<li><strong>Education</strong> - Check out the <a href="http://www.hwg.org/">HTML Writers Guild</a> and <a href="http://www.lynda.com/">Lynda</a> to get more web training under you belt.</li>
<li><strong>Collaboration and Project Management Services</strong> - A couple online services recommended by the panel for project management were: <a href="http://www.basecamphq.com/">BaseCamp</a> and <a href="http://crowdfavorite.com/tasks-pro/">TasksPro</a>.</li>
<li><strong>Seek a Mentor</strong> - There are free service out there via other business groups and or educational institutions that will help provide objective feedback of how you are doing.  Find one, it&#8217;ll keep you honest.</li>
<li><strong>Remember the Dream</strong> - Keep a threshold on what it is you are doing and remember to take a step back and remember what you initial goal and mission was.  As with having a mentor around, this will keep your from meandering off track.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/01/16/refresh-denver-web-business-startups/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Colorado Springs Open Source Software Group</title>
		<link>http://www.aeonscope.net/2008/01/15/colorado-springs-open-source-software-group/</link>
		<comments>http://www.aeonscope.net/2008/01/15/colorado-springs-open-source-software-group/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 01:12:16 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

		<category><![CDATA[Colorado Springs Open Source Software Group]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2008/01/15/colorado-springs-open-source-software-group/</guid>
		<description><![CDATA[Gary Hessler has just created an Open Source Software Group for the Colorado Springs area.  I have never met Gary or know much about the group but have signed up as a member out of curiosity.  If you live in the area, you might want to check this out as well.  Here [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://opensource.meetup.com/88/members/4165661/">Gary Hessler</a> has just created an <a href="http://opensource.meetup.com/88/">Open Source Software Group</a> for the Colorado Springs area.  I have never met Gary or know much about the group but have signed up as a member out of curiosity.  If you live in the area, you might want to check this out as well.  Here are the details of the first meeting:</p>
<ul>
<li><strong>Date</strong>:  Thursday, Feb 28, 2008.</li>
<li><strong>Time</strong>:  7:00 PM.</li>
<li><strong>Location</strong>:  <a href="http://opensource.meetup.com/88/calendar/7098172/">East Library Community Room</a> at 5550 North Union Blvd.</li>
<li><strong>Meeting Topic</strong>:  A general discussion of existing open source software in order to become more aware of what exists today.</li>
</ul>
<p>See you there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2008/01/15/colorado-springs-open-source-software-group/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refresh Denver (Round Table)</title>
		<link>http://www.aeonscope.net/2007/12/17/refresh-denver-round-table/</link>
		<comments>http://www.aeonscope.net/2007/12/17/refresh-denver-round-table/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 05:24:52 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

		<category><![CDATA[Refresh Denver]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2007/12/17/refresh-denver-round-table/</guid>
		<description><![CDATA[Tonight&#8217;s jQuery discussion was postponed since Mike Hostetler, the speaker, was at the hospital welcoming a new baby into the world.  Congrats, Mike.
Instead, Matthew and Chip, kicked off a round table discussion to make good use of the time.  It was a chance to meet everyone in attendance as well as forum for [...]]]></description>
			<content:encoded><![CDATA[<p>Tonight&#8217;s <a href="http://jquery.com/">jQuery</a> discussion was postponed since <a href="http://amountaintop.com/">Mike Hostetler</a>, the speaker, was at the hospital welcoming a new baby into the world.  Congrats, Mike.</p>
<p>Instead, <a href="http://xybersolutions.com/">Matthew</a> and <a href="http://jetfiredesign.com/">Chip</a>, kicked off a round table discussion to make good use of the time.  It was a chance to meet everyone in attendance as well as forum for discussing new ideas and ways of improving the Refresh Denver experience.  Some of the topics discussed were:</p>
<ul>
<li><strong>Venue</strong> - <a href="http://hivecoop.pbwiki.com/">The Hive</a>, while handy, is too small for the group.  We need a space sponsored by a local business that is willing to accommodate 30+ people, a projector, and WiFi.</li>
<li><strong>Location</strong> - Should the meetings be held in central Denver or to the North, South, etc?  It was a mixed vote.  The key is to be near an area where food and beverage are within reach for hanging out and socializing after each event.  Very important, you know.</li>
<li><a href="http://refreshdenver.org/2007/11/23/one-point-of-origin/">One Point of Origin</a> - Do we use the WordPress site, the Google Group, or a mix of both (not to mention the Upcoming and Twitter sites).</li>
<li><strong>Monthly Topics</strong> - Matthew/Chip suggested that there be a revolving topic discussion:  technology, design, business.  Each month would get one of the three in a repeating cycle.  It should make for a well rounded experience, not to mention some mingling between business folk/entrepreneurs, designers, and developers.</li>
</ul>
<p>One thing that I found interesting from listening and talking to others (granted there is wide range of talents and ages in attendance) is what appears to be a lack of <a href="http://www.aeonscope.net/2007/01/28/syndicated-feeds-rss/">syndicated feed</a> usage.  People either bookmark a web site or use e-mail but not a <a href="http://www.aeonscope.net/2006/12/08/feed-readers/">feed reader</a> as much.  Maybe my perception is skewed but there is a clear distinction between these <a href="http://www.aeonscope.net/2006/11/14/forms-of-communication/">forms of communication</a> and a huge benefit if used wisely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/12/17/refresh-denver-round-table/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refresh Denver (Adobe AIR)</title>
		<link>http://www.aeonscope.net/2007/11/19/refresh-denver-adobe-air/</link>
		<comments>http://www.aeonscope.net/2007/11/19/refresh-denver-adobe-air/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 05:55:24 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

		<category><![CDATA[Adobe AIR]]></category>

		<category><![CDATA[Refresh Denver]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2007/11/19/refresh-denver-adobe-air/</guid>
		<description><![CDATA[Attended another Refresh Denver gathering tonight.  This time it was held at The Hive which is near REI in downtown Denver in a basement.  The following are a few shots snapped from the iPhone:

(click to view)
I was a little late getting to the party as traffic was heavy and the place itself was [...]]]></description>
			<content:encoded><![CDATA[<p>Attended another <a href="http://refreshdenver.org/">Refresh Denver</a> gathering tonight.  This time it was held at <a href="http://hivecoop.pbwiki.com/">The Hive</a> which is near <a href="http://www.rei.com/">REI</a> in downtown Denver in a basement.  The following are a few shots snapped from the <a href="http://www.apple.com/iphone/">iPhone</a>:</p>
<p><a rel="lytebox[hive]" href='http://www.aeonscope.net/wp-content/uploads/2007/11/01-the-hive.jpg'><img src='http://www.aeonscope.net/wp-content/uploads/2007/11/01-the-hive.thumbnail.jpg' alt='The Hive' /></a><a rel="lytebox[hive]" href='http://www.aeonscope.net/wp-content/uploads/2007/11/02-the-hive.jpg'><img src='http://www.aeonscope.net/wp-content/uploads/2007/11/02-the-hive.thumbnail.jpg' alt='The Hive' /></a><a rel="lytebox[hive]" href='http://www.aeonscope.net/wp-content/uploads/2007/11/03-the-hive.jpg'><img src='http://www.aeonscope.net/wp-content/uploads/2007/11/03-the-hive.thumbnail.jpg' alt='The Hive' /></a><br />
(click to view)</p>
<p>I was a little late getting to the party as traffic was heavy and the place itself was a bit of a treasure hunt.  Greg Owen from <a href="http://www.effectiveui.com/">Effective UI</a> was the speaker.  He was quite knowledgable about the <a href="http://labs.adobe.com/technologies/air/">Adobe AIR</a> platform but I can&#8217;t say that I learned a lot from the presentation.  I think I was hoping to see real-time coding splendor from within the <a href="http://www.adobe.com/products/flex/flexbuilder/">Flex Builder IDE</a>.  Oh, well.  Chip&#8217;s demo of <a href="http://www.mapmypix.com">Map My Pix</a> is worth checking out.  Chip demonstrated with Map My Pix that a user can drag and drop photos onto a map pulling timestamp and location information from the EXIF data found in images (although I&#8217;m not positive how the location information is captured as I write this). </p>
<p>After the meeting I got a chance to talk to Mike Hostetler from <a href="http://crowdfavorite.com/">Crowd Favorite</a> and ate dinner with Scott Balay from <a href="http://www.triplejack.com">Triple Jack Poker</a> and Heather Morgan from <a href="http://www.launchpadinteract.com">LaunchPad Interactive</a> at <a href="http://www.protospizza.com">Protos Pizza</a> (which is on the first floor of the same building as The Hive).</p>
<p>It is really nice to see the Refresh Denver group growing.  The Hive was packed and everyone is enthused and curious about technology.  For me, this is a welcome change.  Something I&#8217;ve been trying to find for some time now.</p>
<p>For additional information, check out Chip&#8217;s <a href="http://refreshdenver.org/2007/11/19/november-meeting-wrap-up/">wrap-up notes</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/11/19/refresh-denver-adobe-air/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Refresh Denver (Microformats)</title>
		<link>http://www.aeonscope.net/2007/10/15/refresh-denver-microformats/</link>
		<comments>http://www.aeonscope.net/2007/10/15/refresh-denver-microformats/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 04:42:15 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

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

		<category><![CDATA[Refresh Denver]]></category>

		<guid isPermaLink="false">http://www.aeonscope.net/2007/10/15/refresh-denver-microformats/</guid>
		<description><![CDATA[Just got back from attending a Refresh Denver meeting held at the Illegal Grounds Coffee House.  Met some interesting people (mostly web developers) who live in the Denver area.  I was the only radical that came from Colorado Springs.  Here are a few quick notes that I captured from the meeting:

Technology:  [...]]]></description>
			<content:encoded><![CDATA[<p>Just got back from attending a <a href="http://refreshdenver.org/">Refresh Denver</a> meeting held at the <a href="http://upcoming.yahoo.com/event/286357/">Illegal Grounds Coffee House</a>.  Met some interesting people (mostly web developers) who live in the Denver area.  I was the only radical that came from Colorado Springs.  Here are a few quick notes that I captured from the meeting:</p>
<ul>
<li>Technology:  <a href="http://microformats.org/">Microformats</a></li>
<li>Speaker:  <a href="http://typewriting.org/">Scott Reynen</a></li>
<li>Related Technologies:  <a href="http://www.w3.org/RDF/">RDF</a>, <a href="http://en.wikipedia.org/wiki/Web_Ontology_Language">OWL</a>, <a href="http://www.w3.org/2001/sw/grddl-wg/">GRDDL</a>.</li>
<li>The W3C is not necessarily in sync with Microformats.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4106">Operator</a> - A Firefox plug-in that supports microformats.</li>
<li>HTML 4.0 supports microformats.</li>
<li>The <a href="http://sndbx.org/">WordPress Sandbox Theme</a> uses microformats.</li>
<li><a href="http://www.newsgator.com/Individuals/NetNewsWire/Default.aspx">NetNewsWire</a> - A feed reader for the Mac that supports microformats.</li>
</ul>
<p>It was a learning experience for me and I really enjoyed meeting everyone that attended.  Would have liked to have spent more time with everyone and that might be possible in the future.  It sounds like this type of event just got off the ground during May of this year (for Denver that is).  I am looking forward to more events like this and would even be up for hosting something like this in the Colorado Springs area.  If anyone is interested just leave a comment, otherwise try to attend the next <a href="http://refreshdenver.org/">Refresh Denver</a> meeting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/10/15/refresh-denver-microformats/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordCamp - Day 6 (Conference)</title>
		<link>http://www.aeonscope.net/2007/07/22/wordcamp-day-6/</link>
		<comments>http://www.aeonscope.net/2007/07/22/wordcamp-day-6/#comments</comments>
		<pubDate>Mon, 23 Jul 2007 05:55:39 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

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

		<guid isPermaLink="false">http://www.aeonscope.net/2007/07/22/wordcamp-day-6/</guid>
		<description><![CDATA[
Introduction
Today was the second and last of the WordCamp conference.  The following are my notes from the day.
10am - HyperDB and High Performance WordPress
Speakers:  Barry Abrahamson and Matt Mullenweg
Interesting WordPress statistics.  Best if you check out the slideshow.
10:45am - Blogs at the New York Times
Speaker:  Jeremy Zilar
This was a spur of [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2007/07/wordpress-blue-logo.png' alt='WordPress Blue Logo' /></center></p>
<p><strong>Introduction</strong></p>
<p>Today was the second and last of the <a href="http://2007.wordcamp.org">WordCamp</a> conference.  The following are my notes from the day.</p>
<p><strong>10am - <a href="http://2007.wordcamp.org/schedule/hyperdb-and-performance/">HyperDB and High Performance WordPress</a></strong></p>
<p><strong>Speakers</strong>:  Barry Abrahamson and Matt Mullenweg</p>
<p>Interesting WordPress statistics.  Best if you check out the <a href="http://www.slideshare.net/bazza/high-performance-wordpress">slideshow</a>.</p>
<p><strong>10:45am - Blogs at the New York Times</strong></p>
<p><strong>Speaker</strong>:  <a href="http://silencematters.com/">Jeremy Zilar</a></p>
<p>This was a spur of the moment presentation.  He spoke about how they are using WordPress to power <a href="http://www.nytimes.com">The New York Times</a>.  Check out their theme layout.  Very cool!</p>
<p>A few blog essentials were discussed:</p>
<ul>
<li><strong>About Page</strong> - Every blog should have one and it should describe the purpose and goal of the blog.</li>
<li><strong>Blogroll</strong> - I do not like this name as I call mine &#8220;Links of Interest&#8221; but this is where you link to the favorite sites you follow and subscribe to so that others can tune in.</li>
<li><strong>Posts</strong> - Well, you do not have much of a blog without them.</li>
<li><strong>Blog Title</strong> - Should be short, catchy, and to the point.</li>
</ul>
<p><strong>11am - <a href="http://2007.wordcamp.org/schedule/iterative-design/">Designing Massively Multiplayer Social Systems</a></strong></p>
<p><strong>Speaker</strong>:  Rashmi Sinha, Ph.D.</p>
<p>She is a founder of <a href="http://www.slideshare.net/">SlideShare</a> which is definitely something worth checking out.  She spoke of first and second generation social networks and their evolution.  Check out her <a href="http://www.slideshare.net/rashmi/social-design-wordcamp">slides</a>.  I also recommend watching her <a href="http://www.slideshare.net/rashmi/perils-of-popularity/">Perils of Popularity slideshow</a>.</p>
<p><strong>12pm - BBQ Lunch</strong></p>
<p>Good but <a href="http://www.joesrealbbq.com/">Joe&#8217;s BBQ</a> is better!</p>
<p><strong>1:15pm - Musical Interlude by Andy Skelton</strong></p>
<p>Entertaining.  Unfortunately, he had to sing about my accidental killing of rabbits near the <a href="http://www.nps.gov/nabr/">Natural Bridges National Monument</a>.  <img src='http://www.aeonscope.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hey, you try driving in the evening and see how many  you can avoid as they throw themselves at your tire(s)!</p>
<p><a href="http://onemansblog.com/">John Pozadzides</a> has captured Andy Skelton&#8217;s performance if you want <a href="http://onemansblog.com/2007/08/14/wordcamp-2007-andy-skeltons-musical-interlude/">watch it</a>.</p>
<p><strong>1:30pm - <a href="http://2007.wordcamp.org/schedule/past-present-future/">Past, Present, and Future of Web Publishing</a></strong></p>
<p><strong>Speaker</strong>:  <a href="http://www.scripting.com">Dave Winer</a></p>
<p>It is a shame that only an hour was given to Dave to speak.  He had a sheet of topics to discuss and only covered a small portion.  He spoke of the following:</p>
<ul>
<li><strong>OPML Import/Export</strong> - All social software should have OMPL import and export capability.</li>
<li><strong>Future Safe Archives</strong> -  We need to solve the problem of using technology of today in generations to come.  It should be possible to view data stored today millions of years from now without having to know how to configure and manipulate the machinery and software in use today.  For example, can you still read a 5.25&#8221; floppy disk on your computer?</li>
<li><strong>Data Portability</strong> - Data should be portable and accessible in as many forms as possible.</li>
</ul>
<p><strong>2:30pm - <a href="http://2007.wordcamp.org/schedule/wp-usability/">Usability Analysis</a></strong></p>
<p><strong>Speaker</strong>:  Liz Danzico, Happy Cog</p>
<p>Liz has been working with the Automatic team to improve the WordPress usability experience.  Most of her work will not be realized until the release of WordPress 2.4 but what is planned looks great.  She spoke of the following:</p>
<ul>
<li><strong>Desire Lines</strong> - When developers/designers create user interfaces they design with one idea in mind but in actuality users might use the software in an entirely different purpose or find shortcuts to getting things done faster.  It is these shortcuts that are known as &#8220;desire lines&#8221;.  When designing software, it is good to think of what desire lines are and build them in.  Easiest way to do this is to be the user of your own software.</li>
<li><strong>Object Oriented Design</strong> - Think of design in terms of objects.  I like this approach, being an object oriented developer.  Examples of excellent object oriented design would be:  <a href="http://www.tumblr.com">Tumblr</a> and the <a href="http://www.apple.com/iphone/">iPhone</a>.</li>
</ul>
<p><strong>3:30pm - <a href="http://2007.wordcamp.org/schedule/state-of-the-word/">State of the Word</a></strong></p>
<p><strong>Speaker</strong>:  Matt Mullenweg</p>
<p>He spoke of the following:</p>
<ul>
<li><strong><a href="http://bbpress.org/">bbPress</a></strong> - Bulletin board software that supports themes and plugins.</li>
<li><strong>BackPress</strong> - I did not take very good notes on this for some reason (maybe I thought I could link to it) but it has a user system, supports HyperDB, and supports script loading.</li>
<li><strong>WPCP</strong> - Work is being done on a WordPress Caching Proxy for improving WordPress speed and performance.  Sounds interesting for high volume sites.</li>
<li><strong>WordPress 2.3</strong> - Will have plugin update notification, tags (sweet!), and improved draft/pending post/page writing support.</li>
<li><strong><a href="http://wordpress.org/extend/plugins/blicki/">Blicki</a></strong> - I have been searching for a plugin that would allow one to add Wiki capabilities to WordPress and now I have found it.</li>
<li><strong><a href="http://get.live.com/betas/writer_betas">Windows Live Writer</a></strong> - Need to study this more.  It&#8217;s been on my &#8220;ToDo&#8221; list but it sounds like this is a great offline application used to publish to WordPress as it supports most, if not all, WordPress API.</li>
</ul>
<p><strong>4:30pm - <a href="http://2007.wordcamp.org/schedule/developer-duke-out/">Developer Duke-out</a></strong></p>
<p><strong>Speakers</strong>:  Matt Mullenweg, Michael Adams, Ryan Boren, Mark Jaquith, and Andy Skelton</p>
<p>Entertaining but was not able to stay for all of it as I had to hit the road.  I need to get more involved with WordPress development.  Baby steps first, starting with this web site.</p>
 <div class='series_toc'><h3>Article Series - WordCamp 2007</h3><ol><li><a href='http://www.aeonscope.net/2007/04/28/wordcamp/' title='WordCamp'>WordCamp</a></li><li><a href='http://www.aeonscope.net/2007/06/22/wordcamp-trip-details/' title='WordCamp Trip Details'>WordCamp Trip Details</a></li><li><a href='http://www.aeonscope.net/2007/07/15/wordcamp-preparation/' title='WordCamp Preparation'>WordCamp Preparation</a></li><li><a href='http://www.aeonscope.net/2007/07/17/wordcamp-day-1/' title='WordCamp - Day 1'>WordCamp - Day 1</a></li><li><a href='http://www.aeonscope.net/2007/07/18/wordcamp-day-2/' title='WordCamp - Day 2'>WordCamp - Day 2</a></li><li><a href='http://www.aeonscope.net/2007/07/19/wordcamp-day-3/' title='WordCamp - Day 3'>WordCamp - Day 3</a></li><li><a href='http://www.aeonscope.net/2007/07/20/wordcamp-day-4/' title='Protected: WordCamp - Day 4'>Protected: WordCamp - Day 4</a></li><li><a href='http://www.aeonscope.net/2007/07/21/wordcamp-day-5/' title='WordCamp - Day 5 (Conference)'>WordCamp - Day 5 (Conference)</a></li><li>WordCamp - Day 6 (Conference)</li><li><a href='http://www.aeonscope.net/2007/07/23/wordcamp-day-7-fox-goose/' title='Protected: WordCamp - Day 7 (Fox &#038; Goose)'>Protected: WordCamp - Day 7 (Fox &#038; Goose)</a></li><li><a href='http://www.aeonscope.net/2007/07/23/wordcamp-day-7/' title='WordCamp - Day 7'>WordCamp - Day 7</a></li><li><a href='http://www.aeonscope.net/2007/07/24/wordcamp-day-8/' title='WordCamp - Day 8'>WordCamp - Day 8</a></li><li><a href='http://www.aeonscope.net/2007/07/26/wordcamp-wrap-up/' title='WordCamp Wrap-up'>WordCamp Wrap-up</a></li></ol></div> <div class='series_links'><a href='http://www.aeonscope.net/2007/07/21/wordcamp-day-5/' title='WordCamp - Day 5 (Conference)'>Previous in series</a> <a href='http://www.aeonscope.net/2007/07/23/wordcamp-day-7-fox-goose/' title='Protected: WordCamp - Day 7 (Fox &#038; Goose)'>Next in series</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/07/22/wordcamp-day-6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordCamp - Day 5 (Conference)</title>
		<link>http://www.aeonscope.net/2007/07/21/wordcamp-day-5/</link>
		<comments>http://www.aeonscope.net/2007/07/21/wordcamp-day-5/#comments</comments>
		<pubDate>Sun, 22 Jul 2007 05:55:09 +0000</pubDate>
		<dc:creator>Brooke Kuhlmann</dc:creator>
		
		<category><![CDATA[Meetups]]></category>

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

		<guid isPermaLink="false">http://www.aeonscope.net/2007/07/21/wordcamp-day-5/</guid>
		<description><![CDATA[
Introduction
Today was the first day of the WordCamp conference.  The following are my notes from the day.
Breakfast
Stopped for chai and scones at the Kape on 16th Street between Sanchez and Church.  Serves Filipino cuisine and a great atmosphere.  WiFi access is free.  Check it out if you are ever in San [...]]]></description>
			<content:encoded><![CDATA[<p><center><img src='http://www.aeonscope.net/wp-content/uploads/2007/07/wordpress-blue-logo.png' alt='WordPress Blue Logo' /></center></p>
<p><strong>Introduction</strong></p>
<p>Today was the first day of the <a href="http://2007.wordcamp.org">WordCamp</a> conference.  The following are my notes from the day.</p>
<p><strong>Breakfast</strong></p>
<p>Stopped for chai and scones at the Kape on 16th Street between Sanchez and Church.  Serves Filipino cuisine and a great atmosphere.  WiFi access is free.  Check it out if you are ever in San Francisco and want something a little more quaint off Market Street.</p>
<p><strong>10am - <a href="http://2007.wordcamp.org/schedule/podcasting/">Podcasting</a></strong></p>
<p><strong>Speaker</strong>:  Dan Kuykendall (author of <a href="http://www.mightyseek.com/podpress/">PodPress</a>)</p>
<p>I have been playing with Podpress off and on for some time now but am currently not using it on this site.  This is about to change.  Dan&#8217;s talk was mostly about showcasing Podpress, what it can do, and where it is headed.  I like the fact that it supports not only audio but video.  He mentioned that while YouTube video support is not there yet he is working on it.  Sweet plugin.</p>
<p>The hardware/software that Dan is using for his podcasting setup is:</p>
<ul>
<li>MAudio Mobile</li>
<li>AKG Perception 100</li>
<li><a href="http://audacity.sourceforge.net/">Audacity</a> (but Garage Band on the Mac is better).</li>
</ul>
<p><strong>11am - <a href="http://2007.wordcamp.org/schedule/blogs-vs-journalism/">Blogs vs. Journalism</a></strong></p>
<p><strong>Speakers</strong>:  <a href="http://en.wikipedia.org/wiki/John_C._Dvorak">John C. Dvorak</a> and <a href="http://en.wikipedia.org/wiki/Om_Malik">Om Malik</a></p>
<p>Always entertaining to hear John speak.  I liked the fact that he supports and embraces blogging.  A forward thinker that others in his field should aspire to.</p>
<p><strong>12pm - Subway Sandwich Lunch</strong></p>
<p>Curbed the hunger.</p>
<p><strong>1pm - <a href="http://2007.wordcamp.org/schedule/content-connections/">Kicking Ass Content Connections</a></strong></p>
<p><strong>Speaker</strong>:  <a href="http://lorelle.wordpress.com">Lorelle VanFossen</a></p>
<p>Interesting lady.  Energetic, boisterous, and strange but also friendly.  I got a chance to chat with her later while having drinks with the rest of the WordCamp crew.  I thanked her for the work she does on her site as I am an avid reader.  Here are a few notes:</p>
<ul>
<li>Write something new.</li>
<li>Have a fresh perspective.</li>
<li>Never fail to stop asking &#8220;why&#8221;.  Question everything.</li>
<li>Think before writing/publishing.  Try not to be the first but absorb and digest the information first.</li>
<li>Blog for you first.</li>
<li>Be a mirror for others.  Once you find your community, they will understand and relate to you.</li>
<li>Blogging is like archeology.  The work that we have done and will do will be a wealth of information for future generations to use.  This is something we have never had before and it feels good being part of it.</li>
<li>Do not always complete a thought.  Your audience is smart, let them fill in the blanks.</li>
<li>As bloggers, it is our duty to comment back on other peoples blogs and keep the conversation going.</li>
<li>Write timeless posts.</li>
<li>Push yourself and go for extremes.  Good advice for anything you do.</li>
<li>Do not be an island, be part of the community.</li>
<li>Do not be afraid to fail as failure is the pathway to success.</li>
</ul>
<p>Those are my notes but you can <a href="http://www.viddler.com/explore/jpozadzides/videos/4/">watch the video</a> for yourself.</p>
<p><strong>2pm - <a href="http://2007.wordcamp.org/schedule/blog-monetization/">Blog Monetization</a></strong></p>
<p><strong>Speaker</strong>:  <a href="http://www.ensight.org">Jeremy Wright</a>, b5media</p>
<p>Not sure I learned anything outside of what I already new.  His lecture was mostly a panel discussion where he brought up three people from the audience and moderated.  The different types of WordPress expriences by the people on the panel was interesting but not sure if this type of information was relative to the topic.</p>
<p>Nice guy though.  Managed to survive Dr. Pepper shots with him later in the evening.</p>
<p><strong>3pm - <a href="http://2007.wordcamp.org/schedule/getting-involved/">Getting Involved with WordPress</a></strong></p>
<p><strong>Speakers</strong>:  Lloyd Budd (WordPress Quality Assurance) and Mark Jaquith (WordPress Development)</p>
<p>Nothing out of the ordinary here as they spoke about the following (much of which can be grokked from the <a href="http://www.wordpress.org">WordPress</a> site):</p>
<ul>
<li>Bug Tracking:  <a href="http://trac.wordpress.org/">trac.wordpress.org</a>.</li>
<li>Documentation:  <a href="http://codex.wordpress.org">codex.wordpress.org</a>.</li>
<li>Source Code:  Use <code>svn co http://svn.automatic.com/wordpress</code>.</li>
<li>Development Mail List:  lists.automatic.com.</li>
<li>Development Instant Chat:  Use #wordpress on freenote.</li>
</ul>
<p><strong>4pm - <a href="http://2007.wordcamp.org/schedule/designing-the-obvious/">Designing the Obvious</a></strong></p>
<p><strong>Speaker</strong>:  Robert Hoekman, Jr.</p>
<p>Apparently <a href="http://photomatt.net">Matt</a> really liked his book of the same name.  I plan to check it out despite I thought the lecture was the worst of the day.  I guess, in the last couple hours before Robert&#8217;s lecture, he decided to through his slides and improvise.  Bad move, dude.  Should have stuck to the slides.</p>
<p>Still, here are a few notes:</p>
<ul>
<li>Web site speed matters if you want to keep users.</li>
<li>Surface feed syndication on your site and make sure it is understood.  Use graphics or graphical documentation that illustrates the point clearly.</li>
<li>Show the most popular posts.</li>
<li>Show related posts.</li>
<li>Show recently viewed posts.</li>
</ul>
<p><strong>5pm - <a href="http://2007.wordcamp.org/schedule/search-engine-optimization/">Whitehat SEO tips for Bloggers</a></strong></p>
<p><strong>Speaker</strong>:  Matt Cutts, Google.</p>
<p>This was the best speaker of the day despite being <a href="http://feeds.mattcutts.com/~r/mattcutts/uJBW/~3/135876433/">ill prepared</a>.  Really enjoyed listening to him talk and what he had to offer.  Details of Matt&#8217;s talk can be found on <a href="http://feeds.mattcutts.com/~r/mattcutts/uJBW/~3/142648585/">his site</a>.  Here are a few of my notes:</p>
<ul>
<li>ALT Tags - Use them.  They are not only good for when images do not load but for those who are blind.</li>
<li>Use post creation dates as they are good for giving the reader a sense of date and time as well as chronological order.</li>
<li>Be wary of URL address usage as it can screw up your search results.  Choose one format and stick with it.  For example, use <em>www.aeonscope.net</em> or <em>aeonscope.net</em> but not both.</li>
<li>Ad Sense - Try thinking about using the following tags in your posts to control Google Ads for a specific post rather than the entire web site (which is what you get by default):<br/><img src='http://www.aeonscope.net/wp-content/uploads/2007/07/google-adsense-sections.png' alt='Google AdSense Section Comments' /></li>
</ul>
<p><strong>7:30pm - <a href="http://www.yelp.com/biz/7rs_PZ3yO9ZrVVSyx3bB0g">Lucky 13 Bar</a></strong></p>
<p>Open bar and with the WordCamp crew and attendees.  Had a lot of fun meeting people.</p>
<p><strong>Related Notes</strong></p>
<p>Here are few related notes from the day starting with a few of the people I met during the day:</p>
<ul>
<li><a href="http://www.cleverclevergirl.com">Crystal R. Williams</a> - She is a slave to coffee.</li>
<li><a href="http://www.pacificbasin.net">Kari Unebasami</a> - This is not her main site.  I didn&#8217;t write down the link.  Drat.</li>
<li><a href="http://www.cottagedaily.com">Julie Nelson</a> - She is trying to create a community around summer cottages in Canada.  She has a hard road ahead of her due to the elder demographic she is trying to reach.  I can not even get my parents connected!</li>
<li><a href="http://www.adobe.com">Mike Melanson</a> - A Linux engineer using WordPress.</li>
<li><a href="http://www.insidemobility.com">Harald Rudell</a> - A systems engineer using WordPress.</li>
<li><a href="http://exuberate.wordpress.com">Eleanor</a> - A photo blogger.</li>
</ul>
<p>Plugins worth checking out:</p>
<ul>
<li><a href="http://blog.jalenack.com/archives/democracy/">Democracy</a> - Allows for user polling in posts.</li>
<li><a href="http://www.netconcepts.com/seo-title-tag-plugin/">SEO Title</a> - Improves post title search capability.</li>
<li><a href="http://meidell.dk/archives/2004/09/04/nested-comments/">Brian&#8217;s Threaded Comments</a> - Thread comments like a forum.</li>
<li><a href="http://www.andymoore.info/wordpress-mobile-plugin/">WP Mobile</a> - Enhances your web page so that content can be easily consumed on mobile device.</li>
</ul>
<p>Finally, a few links:</p>
<ul>
<li><a href="http://www.findingderek.com/blog/">Finding Dereck</a> - This is an author who is using a blog to create the main character of her new book through user participation.  Clever.</li>
<li><a href="http://www.successful-blog.com/301-what-is-an-sob/">SOB Awards</a> - Awarded to successful bloggers.</li>
<li><a href="http://www.googlewebmastercentral.blogspot.com/">Google Webmaster Central Blogspot</a> - Web master tips and tricks.</li>
<li><a href="http://www.google.com/webmasters/">Google Webmaster Central</a> - Tools for web masters.</li>
<li><a href="https://adwords.google.com/select/KeywordToolExternal">Google Keyword Tool</a> - Improves your understanding and use of web keywords.</li>
</ul>
 <div class='series_toc'><h3>Article Series - WordCamp 2007</h3><ol><li><a href='http://www.aeonscope.net/2007/04/28/wordcamp/' title='WordCamp'>WordCamp</a></li><li><a href='http://www.aeonscope.net/2007/06/22/wordcamp-trip-details/' title='WordCamp Trip Details'>WordCamp Trip Details</a></li><li><a href='http://www.aeonscope.net/2007/07/15/wordcamp-preparation/' title='WordCamp Preparation'>WordCamp Preparation</a></li><li><a href='http://www.aeonscope.net/2007/07/17/wordcamp-day-1/' title='WordCamp - Day 1'>WordCamp - Day 1</a></li><li><a href='http://www.aeonscope.net/2007/07/18/wordcamp-day-2/' title='WordCamp - Day 2'>WordCamp - Day 2</a></li><li><a href='http://www.aeonscope.net/2007/07/19/wordcamp-day-3/' title='WordCamp - Day 3'>WordCamp - Day 3</a></li><li><a href='http://www.aeonscope.net/2007/07/20/wordcamp-day-4/' title='Protected: WordCamp - Day 4'>Protected: WordCamp - Day 4</a></li><li>WordCamp - Day 5 (Conference)</li><li><a href='http://www.aeonscope.net/2007/07/22/wordcamp-day-6/' title='WordCamp - Day 6 (Conference)'>WordCamp - Day 6 (Conference)</a></li><li><a href='http://www.aeonscope.net/2007/07/23/wordcamp-day-7-fox-goose/' title='Protected: WordCamp - Day 7 (Fox &#038; Goose)'>Protected: WordCamp - Day 7 (Fox &#038; Goose)</a></li><li><a href='http://www.aeonscope.net/2007/07/23/wordcamp-day-7/' title='WordCamp - Day 7'>WordCamp - Day 7</a></li><li><a href='http://www.aeonscope.net/2007/07/24/wordcamp-day-8/' title='WordCamp - Day 8'>WordCamp - Day 8</a></li><li><a href='http://www.aeonscope.net/2007/07/26/wordcamp-wrap-up/' title='WordCamp Wrap-up'>WordCamp Wrap-up</a></li></ol></div> <div class='series_links'><a href='http://www.aeonscope.net/2007/07/20/wordcamp-day-4/' title='Protected: WordCamp - Day 4'>Previous in series</a> <a href='http://www.aeonscope.net/2007/07/22/wordcamp-day-6/' title='WordCamp - Day 6 (Conference)'>Next in series</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.aeonscope.net/2007/07/21/wordcamp-day-5/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

