<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Central Standard Tech</title>
	<link rel="self" href="http://www.centralstandardtech.com/atom.xml"/>
	<link href="http://www.centralstandardtech.com"/>
	<id>http://www.centralstandardtech.com/atom.xml</id>
	<updated>2008-05-16T15:01:50+00:00</updated>
	<generator uri="http://www.planetplanet.org/">Planet/2.0 +http://www.planetplanet.org</generator>

	<entry>
		<title type="html">Crossing Borders with Laptops and PDAs</title>
		<link href="http://www.schneier.com/blog/archives/2008/05/crossing_border.html" rel="alternate" title="Crossing Borders with Laptops and PDAs" type="text/html"/>
		<id>http://www.schneier.com/blog/archives/2008/05/crossing_border.html</id>
		<updated>2008-05-16T12:01:37+00:00</updated>
		<content type="html">Last month a US court ruled that border agents can search your laptop, or any other electronic device, when you're entering the country. They can take your computer and download its entire contents, or keep it for several days. Customs and Border Patrol has not published any rules regarding this practice, and I and others have written a letter to...&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/schneier/excerpts?a=SEuGYH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/schneier/excerpts?i=SEuGYH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Schneier on Security</name>
			<uri>http://www.schneier.com/blog/</uri>
		</author>
		<source>
			<title type="html">Schneier on Security</title>
			<subtitle type="html">A blog covering security and security technology.</subtitle>
			<link rel="self" href="http://www.schneier.com/blog/index.xml"/>
			<id>http://www.schneier.com/blog/index.xml</id>
			<updated>2008-05-16T12:01:37+00:00</updated>
			<rights type="html">Copyright 2008 Bruce Schneier</rights>
		</source>
	</entry>

	<entry>
		<title type="html">The quarter-million dollar query</title>
		<link href="http://lastinfirstout.blogspot.com/2008/05/quarter-million-dollar-query.html" rel="alternate" title="The quarter-million dollar query" type="text/html"/>
		<id>tag:blogger.com,1999:blog-4806502804647119766.post-5706419300677298250</id>
		<updated>2008-05-16T07:23:00+00:00</updated>
		<content type="html">What does a query cost? In one recent case, about a quarter-million dollars.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;The story&lt;/span&gt; (suitably anonymized): User requirements resulted in a new feature added to a busy application. Call it Widget 16. Widget 16  was complex enough that the database side of the widget put a measurable load on the server. That alone wouldn't have been a problem, but Widget 16 turned out the be a useful widget. So useful in fact, that users clicked on Widget 16 far more often have anticipated. Complex query + lots of clicks = load problem. How big was the load problem? In this case, the cost of the query (in CPU seconds, logical reads, etc.) and the number of times the query was executed were both relevant. After measuring the per-widget load on the server and multiplying by the number of widget clicks per second, we figured that widget cost at least a quarter million dollars per year in hardware and database license costs. Especially database licensing costs.&lt;br /&gt;&lt;br /&gt;That was an interesting number.&lt;br /&gt;&lt;br /&gt;Obviously we want to use that number to help make the application better, faster and cheaper.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;The developers&lt;/span&gt; - who are faced with having to balance impossible user requirements, short deadlines, long bug lists, and whiny hosting teams complaining about performance - likely will favor the former over the latter. We expect that to happen. Unfortunately if that happens too often, the hosting team is stuck with either poor performance or a large hardware and software bill. To properly prioritize the development work effort, some rational measurement must be made of the cost of re-working existing functionality to reduce load verses the value of using that same work effort to add user requested features. Calculating the cost of running a feature or widget makes the prioritization determination possible. In this case, the cost of running the query compared to the person-time required to design, code, test and deploy a solution made the decision to optimize the widget (or cache it) pretty easy to make.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;DBA's&lt;/span&gt; already have the tools (Profiler, AWR) to determine the utilization of a feature as measured in CPU, Memory and I/O. Hosting mangers have the dollar cost of the CPU's and I/O figured out. What the DBA's and managers need to do is merge the data, format it into something readable and feed it back to the developers. &lt;span&gt;Closing the loop via feedback to developers is essential. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The relevant data may vary depending on your application, but the data that almost certainly will be interesting will include:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Number of executions per time period (second, minute, hour)&lt;/li&gt;&lt;li&gt;CPU cycles per execution&lt;/li&gt;&lt;li&gt;Logical and Physical I/O's per execution. &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;The rough approximation of CPU load on the database server will be # of executions x CPU cycles per execution. The I/O's per execution x number of executions will give you a rough estimate of SAN or disk load. Obviously you only have a finite number of CPU cycles &amp;amp; I/O's available each second, and those CPU's and related database licenses have  dollar costs associated with them. The actual application CPU and I/O data, measured against the total CPU and I/O available from your system and the annual hardware and software cost of the system will give you an estimate of the overall cost  in dollars to run the query.&lt;br /&gt;&lt;br /&gt;Notice that I didn't mention query response time. From the point of view of the developer, response time is interesting. It's what the user will feel when they navigate the site, and it is easy to measure. From a capacity/load point of view however, response time itself doesn't indicate the back-end CPU &amp;amp; I/O cost to achieve the response time. If the query or stored procedure returned in 200ms, but during that 200ms it paralleled out across all your CPU's and used up all available CPU time, you'll obviously only be able to do a handful of those each second, and if you try to do more than a handful per second, your application isn't going to be happy. Or if in that 200ms, it used 200ms of CPU time, you'll only be able to execute a handful of that query per CPU each second. In other words, focusing only on response time isn't adequate because it doesn't relate back to load related bottlenecks on the application and database servers.&lt;br /&gt;&lt;br /&gt;For those who haven't seen an AWR report, Oracle has an example &lt;a href=&quot;http://www.oracle.com/apps_benchmark/doc/hprac2-awr-2100.html&quot;&gt;here&lt;/a&gt;. An AWR report allows your DBA's and dev team to slice, dice sort and analyze the heck out of an application. For SQL server we built a system that runs periodic profiler traces, uploads the trace to a database, and dumps out reports similar to the Oracle AWR's.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;The bottom line: &lt;/span&gt;In order for application developers to successfully design and build efficient, scalable applications, they need to have comprehensive performance related data. They need to be able to 'see' all the way through from the web interface to the database. &lt;span&gt;If they do not have data, they cannot build efficient, scalable applications.&lt;/span&gt;</content>
		<author>
			<name>Michael Janke</name>
			<email>noreply@blogger.com</email>
			<uri>http://lastinfirstout.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">Last In -  First Out</title>
			<link rel="self" href="http://lastinfirstout.blogspot.com/feeds/posts/default"/>
			<id>tag:blogger.com,1999:blog-4806502804647119766</id>
			<updated>2008-05-16T13:01:08+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Tim’s Tweets for 2008-05-15</title>
		<link href="http://timelliott.us/2008/05/15/tims-tweets-for-2008-05-15/" rel="alternate" title="Tim’s Tweets for 2008-05-15" type="text/html"/>
		<id>http://timelliott.us/2008/05/15/tims-tweets-for-2008-05-15/</id>
		<updated>2008-05-16T05:59:59+00:00</updated>
		<content type="html">&lt;ul class=&quot;aktt_tweet_digest&quot;&gt;
&lt;li&gt;&amp;quot;Happiness is nothing more than good health and a bad memory.&amp;quot; &amp;#8212; Albert Schweitzer &lt;a href=&quot;http://twitter.com/timelliott/statuses/812095830&quot;&gt;#&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://sharethis.com/item?&amp;amp;wp=2.5.1&amp;amp;publisher=49c9dd76-5681-4add-957f-5c3e1233fd8a&amp;amp;title=Tim%26%238217%3Bs+Tweets+for+2008-05-15&amp;amp;url=http%3A%2F%2Ftimelliott.us%2F2008%2F05%2F15%2Ftims-tweets-for-2008-05-15%2F&quot;&gt;ShareThis&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/ThirdLife?a=sbEdPH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ThirdLife?i=sbEdPH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ThirdLife?a=KseXOH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ThirdLife?i=KseXOH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ThirdLife?a=Tqa8Rh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ThirdLife?i=Tqa8Rh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ThirdLife?a=mWlMxh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ThirdLife?i=mWlMxh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ThirdLife?a=v6EuZH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ThirdLife?i=v6EuZH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Tim Elliott</name>
			<email>twelliott@gmail.com</email>
			<uri>http://timelliott.us</uri>
		</author>
		<source>
			<title type="html">tim elliott's blog</title>
			<link rel="self" href="http://feeds.feedburner.com/ThirdLife"/>
			<id>http://feeds.feedburner.com/ThirdLife</id>
			<updated>2008-05-16T07:00:59+00:00</updated>
			<rights type="html">©Tim Elliott</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Links for 2008-05-15 [del.icio.us]</title>
		<link href="http://del.icio.us/scottmark#2008-05-15" rel="alternate" title="Links for 2008-05-15 [del.icio.us]" type="text/html"/>
		<id>http://del.icio.us/scottmark#2008-05-15</id>
		<updated>2008-05-16T05:00:00+00:00</updated>
		<content type="html">&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.jetbrains.com/teamcity/&quot;&gt;TeamCity :: Powerful Solution for Continuous Integration &amp;amp; Build Management&lt;/a&gt;&lt;br /&gt;
peter says this rocks&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.diabetesmine.com/2008/05/preparing-for-t.html&quot;&gt;Diabetes Mine - the all things diabetes blog: Preparing for the Worst&lt;/a&gt;&lt;br /&gt;
this is on my mind every time i hear of a natural disaster.  need to seriously think about this&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Scott Mark</name>
			<uri>http://scottmark.wordpress.com</uri>
		</author>
		<source>
			<title type="html">Scott Mark</title>
			<subtitle type="html">A blog about application architecture in a large Enterprise - social software, web technology, Agile methods, open source, leadership, team building, and social networking.</subtitle>
			<link rel="self" href="http://scottmark.blogspot.com/atom.xml"/>
			<id>http://scottmark.blogspot.com/atom.xml</id>
			<updated>2008-05-16T05:00:20+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">The Cool Cam</title>
		<link href="http://thedailywtf.com/Articles/The-Cool-Cam.aspx" rel="alternate" title="The Cool Cam" type="text/html"/>
		<id>http://thedailywtf.com/Articles/The-Cool-Cam.aspx</id>
		<updated>2008-05-16T04:11:14+00:00</updated>
		<content type="html"></content>
		<author>
			<name>Joey Schoblaska</name>
			<uri>http://www.joeyschoblaska.com</uri>
		</author>
		<source>
			<title type="html">Joey Schoblaska</title>
			<subtitle type="html">Joey Schoblaska's blog feed</subtitle>
			<link rel="self" href="http://joeyschoblaska.com/feed/"/>
			<id>http://joeyschoblaska.com/feed/</id>
			<updated>2008-05-16T09:01:09+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">links for 2008-05-16</title>
		<link href="http://www.magnetbox.com/?p=2897" rel="alternate" title="links for 2008-05-16" type="text/html"/>
		<id>http://www.magnetbox.com/?p=2897</id>
		<updated>2008-05-16T01:34:27+00:00</updated>
		<content type="html">&lt;ul class=&quot;delicious&quot;&gt;
&lt;li&gt;
&lt;div class=&quot;delicious-link&quot;&gt;&lt;a href=&quot;http://sf0.org/&quot;&gt;SF0&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;delicious-extended&quot;&gt;Collaborative production game where goals of play include meeting new people, exploring the city, and participating in non-consumer leisure activities.&lt;/div&gt;
&lt;div class=&quot;delicious-tags&quot;&gt;(tags: &lt;a href=&quot;http://del.icio.us/magnetbox/art&quot;&gt;art&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/community&quot;&gt;community&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/culture&quot;&gt;culture&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/sanfrancisco&quot;&gt;sanfrancisco&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/game&quot;&gt;game&lt;/a&gt;)&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div class=&quot;delicious-link&quot;&gt;&lt;a href=&quot;http://googlemapsapi.blogspot.com/2008/05/introducing-google-maps-api-for-flash.html&quot;&gt;Official Google Maps API Blog: Introducing the Google Maps API for Flash&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;delicious-tags&quot;&gt;(tags: &lt;a href=&quot;http://del.icio.us/magnetbox/google&quot;&gt;google&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/map&quot;&gt;map&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/api&quot;&gt;api&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/flash&quot;&gt;flash&lt;/a&gt;)&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div class=&quot;delicious-link&quot;&gt;&lt;a href=&quot;http://www.tripkick.com/&quot;&gt;TripKick.com&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;delicious-extended&quot;&gt;Find the best room in a hotel.&lt;/div&gt;
&lt;div class=&quot;delicious-tags&quot;&gt;(tags: &lt;a href=&quot;http://del.icio.us/magnetbox/travel&quot;&gt;travel&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/housing&quot;&gt;housing&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/review&quot;&gt;review&lt;/a&gt;)&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div class=&quot;delicious-link&quot;&gt;&lt;a href=&quot;http://meish.org/2007/05/22/things-my-new-commute-has-taught-me-1/&quot;&gt;Things my new commute has taught me #1: not all seats are equal&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;delicious-extended&quot;&gt;Find the best seat on the tube.&lt;/div&gt;
&lt;div class=&quot;delicious-tags&quot;&gt;(tags: &lt;a href=&quot;http://del.icio.us/magnetbox/work&quot;&gt;work&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/travel&quot;&gt;travel&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/review&quot;&gt;review&lt;/a&gt;)&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div class=&quot;delicious-link&quot;&gt;&lt;a href=&quot;http://www.seatguru.com/&quot;&gt;SeatGuru&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;delicious-extended&quot;&gt;Find the best seat on an airplane.&lt;/div&gt;
&lt;div class=&quot;delicious-tags&quot;&gt;(tags: &lt;a href=&quot;http://del.icio.us/magnetbox/airplane&quot;&gt;airplane&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/travel&quot;&gt;travel&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/review&quot;&gt;review&lt;/a&gt;)&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Magnetbox</name>
			<uri>http://www.magnetbox.com</uri>
		</author>
		<source>
			<title type="html">Magnetbox</title>
			<subtitle type="html">Some blog about some stuff.</subtitle>
			<link rel="self" href="http://www.magnetbox.com/?feed=rss2"/>
			<id>http://www.magnetbox.com/?feed=rss2</id>
			<updated>2008-05-16T02:00:23+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">The Long Tail of Short Heads</title>
		<link href="http://feeds.feedburner.com/~r/technologyevangelist/bkxI/~3/291261750/the_long_tail_of_sho.html" rel="alternate" title="The Long Tail of Short Heads" type="text/html"/>
		<id>http://www.technologyevangelist.com/2008/05/the_long_tail_of_sho.html</id>
		<updated>2008-05-16T00:02:02+00:00</updated>
		<content type="html">&lt;p&gt;I've been trying to think of a way to illustrate the point I was trying to make in yesterday's post about the value of &quot;micro-short-tails&quot;* and came up with this:&lt;/p&gt;

&lt;center&gt;&lt;a href=&quot;http://www.flickr.com/photos/edkohler/2495113665/&quot; title=&quot;Search Terms by Product by edkohler, on Flickr&quot;&gt;&lt;img src=&quot;http://farm3.static.flickr.com/2066/2495113665_6f7d374dac.jpg&quot; width=&quot;500&quot; height=&quot;348&quot; alt=&quot;Search Terms by Product&quot; /&gt;&lt;/a&gt;&lt;/center&gt;

&lt;p&gt;Theoretically, the bars on the map represent three products sold on a website. They vary in popularity with Product A being more popular in terms of both traffic (and revenue, in this case) than Product B or C. The horizontal access represents search terms, so the left side of the graph shows that some terms drive a lot more traffic than terms further to the right. A typical hockey stick style graph (this is based on real data). &lt;/p&gt;

&lt;p&gt;The point here is that, while the graph for Product C happens to be smaller than Product A, it's no less valuable when you're looking at just that product. &lt;/p&gt;

&lt;p&gt;When someone looks at the value of keywords at a very high level, the terms driving traffic to Product A will appear to be vital, but Product C's terms may go unnoticed or become under appreciated. It's kind of a battle vs war type issue. &lt;/p&gt;

&lt;p&gt;The nice thing is that it's often possible to figure out patterns of success. The types of terms that drive traffic to Product A will probably also work for Product B through infinity if applied in a similar pattern of ads, landing pages, offers, etc. &lt;/p&gt;

&lt;p&gt;So, while it's true that you'll have less data to work with on really really long tail products due to low search volumes, it's still possible to make some fair assumptions that more often than not will prove correct.&lt;/p&gt;

&lt;p&gt;* I think better term for this would be &quot;Micro-Short-Heads&quot; rather than &quot;Micro-Short-Tails&quot;&lt;/p&gt;

&lt;br /&gt;&lt;a href=&quot;http://www.technologyevangelist.com/2008/05/the_long_tail_of_sho.html#comments&quot; title=&quot;Comment on: The Long Tail of Short Heads&quot;&gt;Comment on this post&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;

&lt;!-- begin(Sponsors) --&gt;&lt;span&gt;Book of the Month:&lt;/span&gt; &lt;a href=&quot;http://tinyurl.com/2bdczm&quot;&gt;Everything is Miscellaneous&lt;/a&gt;&lt;br /&gt; &lt;span&gt;Gadget of the Month:&lt;/span&gt; &lt;a href=&quot;http://tinyurl.com/22kdva&quot;&gt;Panasonic HDC-SD1 AVCHD 3CCD Flash Memory High Definition Camcorder&lt;/a&gt;&lt;br /&gt; &lt;span&gt;Web Site of the Month:&lt;/span&gt; &lt;a href=&quot;http://docs.google.com/&quot; title=&quot;Google&quot;&gt;Google Docs - Used to Write Technology Evangelist Posts&lt;/a&gt;&lt;br /&gt;
&lt;span&gt;Technology Evangelist Podcasts:&lt;/span&gt; &lt;a href=&quot;http://feeds.feedburner.com/TechnologyEvangelistVideoBlogAAC&quot;&gt;Subscribe to Podcast Feed&lt;/a&gt;&lt;br /&gt;
&lt;span&gt;Technology Evangelist Videos:&lt;/span&gt; &lt;a href=&quot;http://feeds.feedburner.com/TechnologyEvangelistVideoBlog720p&quot;&gt;Subscribe to Video Feed&lt;/a&gt;&lt;br /&gt;
&lt;!-- end(Sponsors) --&gt;
&lt;p&gt;&lt;a href=&quot;http://feeds.feedburner.com/~a/technologyevangelist/bkxI?a=KQL11k&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~a/technologyevangelist/bkxI?i=KQL11k&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?a=o9523H&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?i=o9523H&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?a=9NIbhH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?i=9NIbhH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?a=cU5MGh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?i=cU5MGh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/technologyevangelist/bkxI/~4/291261750&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Ed Kohler</name>
			<email>noemail@noemail.org</email>
			<uri>http://www.technologyevangelist.com/</uri>
		</author>
		<source>
			<title type="html">Technology Evangelist</title>
			<subtitle type="html">A blog dedicated to emerging technology trends in hardware, software, webware, marketing and beyond.</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/technologyevangelist/bkxI"/>
			<id>http://feeds.feedburner.com/technologyevangelist/bkxI</id>
			<updated>2008-05-16T00:02:02+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Nabbit Moves Beyond Tagging</title>
		<link href="http://feeds.feedburner.com/~r/Minnov8/~3/291276963/" rel="alternate" title="Nabbit Moves Beyond Tagging" type="text/html"/>
		<id>http://minnov8.com/?p=306</id>
		<updated>2008-05-15T23:53:42+00:00</updated>
		<content type="html">&lt;p class=&quot;MsoNormal&quot;&gt;&lt;img class=&quot;alignleft&quot; src=&quot;http://www.minnov8.com/wp-content/uploads/2008/05/nabbit1.jpg&quot; alt=&quot;&quot; width=&quot;275&quot; height=&quot;138&quot; /&gt;&lt;span&gt;On May 13&lt;sup&gt;th&lt;/sup&gt; a &lt;a href=&quot;http://www.nabbit.com/news.jsp?article=2008-5-13&quot;&gt;press release&lt;/a&gt; announced the new partnership between Eagan-based &lt;a href=&quot;http://www.jumpcart.com/news.html&quot;&gt;Jump Technologies’&lt;/a&gt; &lt;a href=&quot;http://www.nabbit.com/&quot;&gt;Nabbit&lt;/a&gt; service and CBS Radio, Minneapolis (&lt;a href=&quot;http://www.1029litefm.com/index.php&quot;&gt;102.9 Lite FM&lt;/a&gt;, &lt;a href=&quot;http://www.1041jackfm.com/&quot;&gt;104.1 Jack FM&lt;/a&gt;, &lt;a href=&quot;http://www.wccoradio.com/&quot;&gt;830 WCCO AM&lt;/a&gt;). This partnership will further move Nabbit from a relatively simple tagging application into a full blown marketing tool. On that day, the eve of the big rollout of said partnership, I sat down with Nabbit chief (“Chief Nabber” on the business card), John Freund, to talk about the Nabbit, where it started, where it is and where it’s going.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Nabbit was born some two years ago as Freund and his team at Jump Technologies were discussing the &lt;a href=&quot;http://www.ebay.com/&quot;&gt;eBay&lt;/a&gt; purchase of &lt;a href=&quot;http://www.skype.com/&quot;&gt;Skype&lt;/a&gt;. “&lt;em&gt;I remember saying how great it would be to have 50 million subscribers to anything.&lt;/em&gt;” The discussion included colleague (and radio fan) Norton Lam’s thoughts about tagging radio content. So was the birth of Nabbit. According to Freund, “&lt;em&gt;The first year we dedicated about 10% of Jump Technologies resources to Nabbit.&lt;/em&gt;” That has clearly grown as Nabbit has evolved, indicating a great deal of confidence in the potential of the business.&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;At first, it truly was a “content play” offering listeners of radio the ability to tag songs and advertisements via internet enabled cell phones. Those tagged pieces of content are placed into the Nabbit user’s account for later action including purchase or artist and advertiser info.&lt;span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;“&lt;em&gt;We found that while users were tagging music they were actually tagging more advertising and the calls to action that they provided.&lt;/em&gt;” This led to what Nabbit describes as the first service that allows marketers to combine broadcast, mobile, direct response, and online advertising into one integrated consumer marketing campaign. &lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;Here’s how it works.&lt;/span&gt;&lt;span id=&quot;more-306&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;Once a consumer downloads the free application to their internet enabled mobile phone they assign stations to the buttons on the phone. When they hear something they want to “nabb” they press the button for that station. If it’s an ad, the Nabbit Ad engine springs into action. Not only is a copy of the ad placed in the listener’s account, it can also send a text coupon or place a call to their phone though the Nabbit Callback feature (and it should be noted that all the features are opt-in via the user’s Nabbit account).&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;img src=&quot;http://minnov8.com/wp-content/uploads/2008/05/Nabbit_splash.jpg&quot; alt=&quot;&quot; width=&quot;510&quot; height=&quot;237&quot; /&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;This is where Nabbit&amp;#8217;s media relationships come in. Freund and Nabbit have been working with radio station &lt;a href=&quot;http://www.b96online.com/home.asp&quot;&gt;KTTB (B96)&lt;/a&gt; here in the Twin Cities (CBS isn’t the first). Freund says that the desire for exclusivity by stations was a barrier to getting deals going with the bigger companies. It took plenty of proof, and persuading, the likes of CBS that Nabbit truly needs to be on as many stations as possible in order to be successful. &lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;There are still barriers that Nabbit will face from a revenue generation standpoint. The service is free to consumers so the business model is based on advertising revenue sharing with media partners. According to a quote from the press release on the Nabbit/CBS partnership, CBS VP/GM of CBS Radio in Minneapolis explained, “&lt;em&gt;Nabbit offers our advertisers a unique ability to leverage multiple advertising platforms while at the same time benefiting our listeners by making our stations interactive.&lt;/em&gt;” Of course, there is no mention of whether radio will be be successful at selling this new platform in addition to all of the other products they must sell, but at least for CBS, there is a commitment to new platforms and to making this partnership work. &lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;From a consumer/user&amp;#8217;s standpoint, one might say (and I’m one) the need to download and access an application &amp;#8212; which is how Nabbit is currently delivered &amp;#8212; is a bit of a challenge for some mobile users. Nabbit seems to be on top of this issue. They will address it by providing an SMS process for tagging content within the next few months, according to Freund, and obviating the need for an application download and configuration on ones mobile phone.&lt;span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;img class=&quot;alignleft&quot; src=&quot;http://minnov8.com/wp-content/uploads/2008/05/freund.jpg&quot; alt=&quot;&quot; width=&quot;175&quot; /&gt;&lt;span&gt;John Freund is well aware of the marketing and education process that lies ahead. In addition to targeting the tech community and other PR initiatives, there is much they expect from those radio stations that participate. Introducing the Nabbit technology and trademarked words like “nabb” mean there are high expectations for those media partners to clearly explain and provide benefit to listeners and creating demand for using Nabbit. The advertiser side is bit easier. When you can supply multiple marketing channels and deliver &amp;#8212; not only consumers to the advertiser’s doorsteps but can deliver proof of performance with metrics based on actual use &amp;#8212; you go a long way in addressing advertiser resistance.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;According to Freund there are currently 1,500 Nabbit users in the Twin Cities. Projections call for 20,000 in the next 2 months and 1.7 million in the first year. After a planned national rollout in two months, Nabbit hopes to have 10 million users by the end of 3 years. With deals pending that may or may not include Clear Channel here in the Twin Cities Nabbit, self funded by the employees and 2 additional partners, hopes to be profitable within one year. Freund explains, “&lt;/span&gt;&lt;span&gt;&lt;em&gt;The goal is to keep the company small. The largest area of employee growth will come from sales and marketing but we are certainly adding staff in all areas.&lt;/em&gt;”&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Nabbit is one a many technology driven companies that are looking at and acting on ways to merge traditional media with new media to increase the share of advertising dollars for both sides.&lt;span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://sharethis.com/item?&amp;amp;wp=2.5.1&amp;amp;publisher=2263ae24-2cdd-49c9-b633-4b7ac159e457&amp;amp;title=Nabbit+Moves+Beyond+Tagging&amp;amp;url=http%3A%2F%2Fminnov8.com%2F2008%2F05%2F15%2Fnabbit%2F&quot;&gt;ShareThis&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/Minnov8?a=Fw4cMH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Minnov8?i=Fw4cMH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Minnov8?a=JKCr9h&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Minnov8?i=JKCr9h&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Minnov8?a=KGWFJh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Minnov8?i=KGWFJh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Minnov8?a=3ZyQTH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Minnov8?i=3ZyQTH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Minnov8?a=0vBOuH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Minnov8?i=0vBOuH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Minnov8</name>
			<email>sborsch@gmail.com</email>
			<uri>http://minnov8.com</uri>
		</author>
		<source>
			<title type="html">Minnov8: Minnesota Innovation in Internet &amp;amp; Web Technology</title>
			<subtitle type="html">Internet Web Technology Innovation in Minnesota, the Land of 10,000 Lakes</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/Minnov8"/>
			<id>http://feeds.feedburner.com/Minnov8</id>
			<updated>2008-05-16T02:01:26+00:00</updated>
			<rights type="html">©Minnov8</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Garfield minus garfield</title>
		<link href="http://philcrissman.com/2008/05/15/garfield-minus-garfield" rel="alternate" title="Garfield minus garfield" type="text/html"/>
		<id>http://philcrissman.com/?p=1610</id>
		<updated>2008-05-15T23:20:46+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://garfieldminusgarfield.tumblr.com/&quot;&gt;&lt;img src=&quot;http://philcrissman.com/images/garfieldminusgarfield.gif&quot; width=&quot;500&quot; height=&quot;145&quot; alt=&quot;Garfield Minus Garfield&quot; /&gt;&lt;br /&gt;Garfield minus garfield&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Phil Crissman</name>
			<uri>http://philcrissman.com</uri>
		</author>
		<source>
			<title type="html">philcrissman.com</title>
			<subtitle type="html">It's okay, I do this all the time</subtitle>
			<link rel="self" href="http://philcrissman.com/feed/atom/"/>
			<id>http://philcrissman.com/feed/atom</id>
			<updated>2008-05-16T15:00:10+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-US">
		<title type="html">General Mills, Target, Best Buy, and Fingerhut Bare Their Social Media Souls</title>
		<link href="http://feeds.feedburner.com/~r/techsurfblog/~3/291173928/general-mills-t.html" rel="alternate" title="General Mills, Target, Best Buy, and Fingerhut Bare Their Social Media Souls" type="text/html"/>
		<id>http://graemethickins.typepad.com/graeme_blogs_here/2008/05/general-mills-t.html</id>
		<updated>2008-05-15T20:18:09+00:00</updated>
		<content type="html">&lt;p&gt;I blogged about a big event here in Minneapolis last night, featuring four of our larger hometown brands (well, three, plus one pretty big direct-marketer you may have also heard of). The topic was social media, and you can tell it was hot by this shot I grabbed with my iPhone of the very crowed room. &lt;img border=&quot;0&quot; src=&quot;http://graemethickins.typepad.com/photos/uncategorized/2008/05/15/mimasocmedia051408.jpg&quot; title=&quot;Mimasocmedia051408&quot; alt=&quot;Mimasocmedia051408&quot; /&gt;
 My post about it is over at my &lt;a href=&quot;http://www.newmediawise.com&quot;&gt;NewMediaWise&lt;/a&gt; blog, because that's where I talk more about marketing and all the changes happening in that field. The session was excellent, if for no other reason than I felt the panelists were sincere and candid in their remarks, and yet had as many questions as answers. It wasn't fluff or BS -- I think we heard what's really on their minds, and they got us thinking about how much more still needs to be done....by big brands as well as small.&lt;/p&gt;

&lt;p&gt;Thanks to our great local interactive marketing organization -- &lt;a href=&quot;http://www.mima.org&quot;&gt;MIMA.org&lt;/a&gt; -- for putting on this gig.&amp;nbsp; They said it was the largest of any of their regular monthly meetings to date.&amp;nbsp; Hot topic, and lots of good networking before and after.&amp;nbsp; I had the opportunity to chat at length with two of the panelists afterwards, Jim Cuene of General Mills and Gary Koelling of Best Buy, and also to meet several other folks as well. &lt;/p&gt;

&lt;p&gt;Tell ya what, after experiencing &lt;a href=&quot;http://www.minnebar.com&quot;&gt;Minnebar&lt;/a&gt; on May 10 and MIMA on May 14, I'll say this.....this town is &lt;em&gt;rockin' &lt;/em&gt;this spring!!&lt;em&gt;&lt;/em&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/techsurfblog?a=0rcmcH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/techsurfblog?i=0rcmcH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/techsurfblog?a=GGabKh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/techsurfblog?i=GGabKh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/techsurfblog?a=GugPwh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/techsurfblog?i=GugPwh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/techsurfblog?a=f9qAah&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/techsurfblog?i=f9qAah&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/techsurfblog?a=BBObzH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/techsurfblog?i=BBObzH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/techsurfblog?a=hU0FhH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/techsurfblog?i=hU0FhH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/techsurfblog?a=4NiN9h&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/techsurfblog?i=4NiN9h&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/techsurfblog/~4/291173928&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Tech~Surf~Blog</name>
			<uri>http://graemethickins.typepad.com/graeme_blogs_here/</uri>
		</author>
		<source>
			<title type="html">Tech~Surf~Blog</title>
			<subtitle type="html">It Comes In Waves™ 
 By Graeme Thickins</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/techsurfblog"/>
			<id>http://feeds.feedburner.com/techsurfblog</id>
			<updated>2008-05-16T07:02:03+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Target: Are you paying attention to social media?</title>
		<link href="http://feeds.feedburner.com/~r/typepad/sborsch/ctd/~3/291167536/target-are-you.html" rel="alternate" title="Target: Are you paying attention to social media?" type="text/html"/>
		<id>tag:typepad.com,2003:post-49922818</id>
		<updated>2008-05-15T20:07:18+00:00</updated>
		<content type="html" xml:lang="en-US">&lt;div&gt;&lt;p&gt;&lt;a href=&quot;http://www.iconnectdots.com/.shared/image.html?/photos/uncategorized/2008/05/15/trutech.jpg&quot;&gt;&lt;img width=&quot;325&quot; height=&quot;247&quot; border=&quot;0&quot; src=&quot;http://www.iconnectdots.com/ctd/images/2008/05/15/trutech.jpg&quot; title=&quot;Trutech&quot; alt=&quot;Trutech&quot; /&gt;&lt;/a&gt;
Last time I checked, a search for &lt;a href=&quot;http://www.target.com&quot;&gt;Target&lt;/a&gt;'s house brand, Trutech, resulted in &lt;em&gt;a post I wrote from May of last year (&lt;a href=&quot;http://www.iconnectdots.com/ctd/2007/05/targets_trutech.html &quot;&gt;Why you should NOT buy Target's Trutech brand&lt;/a&gt;) being the #1 search result.&lt;/em&gt; Today, I noticed that it had fallen to #2 and that a &amp;quot;Target.com Official Site&amp;quot; sponsored link now appears. Perhaps that's related, but maybe not.&lt;/p&gt;

&lt;p&gt;My friend and &lt;a href=&quot;http://minnov8.com&quot;&gt;Minnov8&lt;/a&gt; cohort, Graeme Thickins, &lt;a href=&quot;http://www.newmediawise.com/index.php/blog/comments/blog-big-brands-talk-social-media-in-minneapolis/&quot;&gt;recap&lt;/a&gt; of last nights &lt;a href=&quot;http://www.mima.org/&quot;&gt;Minnesota Interactive Marketing Association&lt;/a&gt; social media panel (which I couldn't attend) was fabulous. Best Buy, Fingerhut, Gage Marketing, General Mills and Target were all represented and had insightful things to say about what they were all respectively up to when it came to social media.&lt;/p&gt;

&lt;p&gt;At last evening's event, Thickins reported that a metric was presented that Target's Facebook page has 33,000 members. While that's interesting, &lt;a href=&quot;http://www.iconnectdots.com/ctd/2007/05/targets_trutech.html&quot;&gt;that post&lt;/a&gt; I wrote has had ~75,000 pageviews (almost all unique visitors) and dozens of mostly negative comments.&lt;/p&gt;

&lt;p&gt;I've reached out on several occasions to the woman that handles PR for Target's Trutech brand; tried to connect with the video buyer; and in general reach out. Not to make a fuss, but to see if there is any awareness that they're selling electronics that -- God forbid you break the remote -- can't be operated with any of the dozens of universal remotes Target sells. Seems like something the video buyer might want to know and maybe fix while calming&amp;nbsp; the Target &amp;quot;guests&amp;quot; down, heh? (just read some of those comments and you'll see people are quite agitated).&lt;/p&gt;

&lt;p&gt;The Minneapolis StarTribune had an &lt;a href=&quot;http://www.startribune.com/business/11987331.html&quot;&gt;article&lt;/a&gt; about people posting negative feedback on their Facebook area which Target took to heart and jumped on, but is Target completely clueless and unaware of the tools to scan other social media and to address obvious shortcomings? &lt;/p&gt;&lt;/div&gt;
&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/sborsch/ctd?a=8CDInH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/sborsch/ctd?i=8CDInH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/sborsch/ctd?a=LM5CFh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/sborsch/ctd?i=LM5CFh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Steve Borsch</name>
			<uri>http://www.iconnectdots.com/ctd/</uri>
		</author>
		<source>
			<title type="html">Connecting the Dots</title>
			<subtitle type="html">Guidance, Insight and Ideas in a Time of Accelerating Change</subtitle>
			<link rel="self" href="http://www.iconnectdots.com/ctd/atom.xml"/>
			<id>tag:typepad.com,2003:weblog-87858</id>
			<updated>2008-05-16T12:00:59+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Is it bye-bye Wi-Fi in Philadelphia?</title>
		<link href="http://www.pfhyper.com/weblog/2008/05/is-it-bye-bye-wi-fi-in-philadelphia.html" rel="alternate" title="Is it bye-bye Wi-Fi in Philadelphia?" type="text/html"/>
		<id>tag:blogger.com,1999:blog-6471028.post-4372223117445047545</id>
		<updated>2008-05-15T20:25:42+00:00</updated>
		<content type="html">&lt;div&gt;Earthlink announced Tuesday that they are going to discontinue operation of its muni Wi-Fi network in Philadelphia. They say that they tried to transfer ownership of the network to Philadelphia or to a nonprofit (Wireless Philadelphia, I assume) for free but that the transfer &quot;unraveled due to unresolved issues among the City, Wireless Philadelphia and the non-profit.&quot; Holy WAP Batman!&lt;br /&gt;&lt;br /&gt;According to Earthlink that's $17M worth of equipment plus they would pay some cash and donate new Wi-Fi equipment. Since they can't transfer, Earthlink says they will remove the network at their cost and try to find alternative Internet connections for customers.&lt;br /&gt;&lt;br /&gt;Meanwhile, the &lt;a href=&quot;http://www.wirelessphiladelphia.org/blog_detail.cfm/blog/64&quot;&gt;&lt;em&gt;Wireless Philadelphia Blog&lt;/em&gt;&lt;/a&gt; says:&lt;br /&gt;&lt;blockquote&gt;&lt;small&gt;Philadelphia's Wi-Fi network continues to operate in the roughly 80% of the City in which it has been deployed (see map). Nothing in the ten-year Network Agreement permits EarthLink to unilaterally impose deadlines for the network's transfer, turn off the network or remove network equipment.&lt;/small&gt;&lt;/blockquote&gt;&lt;a href=&quot;http://philly.metro.us/metro/local/article/Citywide_WiFi_could_be_shut_down/12422.html&quot;&gt;&lt;em&gt;Metro Philadelphia&lt;/em&gt;&lt;/a&gt; and &lt;a href=&quot;http://www.news.com/8301-10784_3-9940374-7.html?tag=cnetfd.mt&quot;&gt;&lt;em&gt;CNET&lt;/em&gt;&lt;/a&gt; have stories.&lt;br /&gt;&lt;br /&gt;Meanwhile, back at the Minneapolis ranch, the &lt;a href=&quot;http://www.usiwireless.com/service/minneapolis/schedule.htm&quot;&gt;USIW progress map&lt;/a&gt; says the network is scheduled to be completed in April, 2008. The tiny map on the page indicates the network is live in most of the city but there are several large &quot;challenge areas&quot; where it's not working. It would be nice to see an update as to what's going on especially since the Digital Inclusion Fund is waiting on $200,000 from USIW once the network is done and the City signs off. &lt;br /&gt;&lt;br /&gt;&lt;small&gt;Thanks to Ed Kohler for a heads up on the Philadelphia situation. He blogs at &lt;a href=&quot;http://www.thedeets.com/&quot;&gt;The Deets&lt;/a&gt; and &lt;a href=&quot;http://www.technologyevangelist.com/&quot;&gt;Technology Evangelist&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Technorati Tags: &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tag/broadband&quot; class=&quot;performancingtags&quot;&gt;broadband&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tag/politics&quot; class=&quot;performancingtags&quot;&gt;politics&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tag/USIW&quot; class=&quot;performancingtags&quot;&gt;USIW&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tag/Wi-Fi&quot; class=&quot;performancingtags&quot;&gt;Wi-Fi&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tag/wireless&quot; class=&quot;performancingtags&quot;&gt;wireless&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tag/municipal&quot; class=&quot;performancingtags&quot;&gt;municipal&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tag/Philadelphia&quot; class=&quot;performancingtags&quot;&gt;Philadelphia&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tag/Minneapolis&quot; class=&quot;performancingtags&quot;&gt;Minneapolis&lt;/a&gt;&lt;/small&gt;&lt;/div&gt;</content>
		<author>
			<name>Peter Fleck</name>
			<email>noreply@blogger.com</email>
			<uri>http://www.pfhyper.com/weblog/blogger.html</uri>
		</author>
		<source>
			<title type="html">The PF HYPER Blog</title>
			<link rel="self" href="http://www.pfhyper.com/weblog/atom.xml"/>
			<id>tag:blogger.com,1999:blog-6471028</id>
			<updated>2008-05-16T01:02:17+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Crypto-Gram Tenth Anniversary Issue</title>
		<link href="http://www.schneier.com/blog/archives/2008/05/cryptogram_tent_1.html" rel="alternate" title="Crypto-Gram Tenth Anniversary Issue" type="text/html"/>
		<id>http://www.schneier.com/blog/archives/2008/05/cryptogram_tent_1.html</id>
		<updated>2008-05-15T17:13:10+00:00</updated>
		<content type="html">Ten years ago I started Crypto-Gram. It was a monthly newsletter written entirely by me. No guest columns. No advertising. Nothing but me writing about security, published the 15th of the month every month. Now, 120 issues later, none of that has changed. I started Crypto-Gram because I had a lot to say about security, and book-length commentaries were too...&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/schneier/excerpts?a=JIwZTH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/schneier/excerpts?i=JIwZTH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Schneier on Security</name>
			<uri>http://www.schneier.com/blog/</uri>
		</author>
		<source>
			<title type="html">Schneier on Security</title>
			<subtitle type="html">A blog covering security and security technology.</subtitle>
			<link rel="self" href="http://www.schneier.com/blog/index.xml"/>
			<id>http://www.schneier.com/blog/index.xml</id>
			<updated>2008-05-16T12:01:37+00:00</updated>
			<rights type="html">Copyright 2008 Bruce Schneier</rights>
		</source>
	</entry>

	<entry xml:lang="en-US">
		<title type="html">Hurrican Mike, the BBQ Blogger</title>
		<link href="http://cuene.typepad.com/blog/2008/05/hurrican-mike-t.html" rel="alternate" title="Hurrican Mike, the BBQ Blogger" type="text/html"/>
		<id>http://cuene.typepad.com/blog/2008/05/hurrican-mike-t.html</id>
		<updated>2008-05-15T15:55:24+00:00</updated>
		<content type="html">Now Blogging at BettyCrocker.com, Hurricane Mike, the BBQ blogger: Packing and ready for Memphis from bettycrocker.com.</content>
		<author>
			<name>cuene.com</name>
			<uri>http://cuene.typepad.com/blog/</uri>
		</author>
		<source>
			<title type="html">cuene.com</title>
			<subtitle type="html">Review of business strategy and the challenge of managing strategy in fast moving enterprises. And cycling, music, blogging, and others.</subtitle>
			<link rel="self" href="http://cuene.typepad.com/blog/index.rdf"/>
			<id>http://cuene.typepad.com/blog/index.rdf</id>
			<updated>2008-05-16T15:01:21+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Flash Player 10 hit labs</title>
		<link href="http://mnteractive.com/archive/flash-player-10-hit-labs/" rel="alternate" title="Flash Player 10 hit labs" type="text/html"/>
		<id>http://mnteractive.com/?p=1070</id>
		<updated>2008-05-15T15:08:10+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a title=&quot;http://labs.adobe.com/technologies/flashplayer10/&quot; href=&quot;http://labs.adobe.com/technologies/flashplayer10/&quot;&gt;http://labs.adobe.com/technologies/flashplayer10/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Check out some of what Adobe&amp;#8217;s got planned for the next Flash Player release. Will we be able to compete with &amp;#8220;Microsoft Sparkle&amp;#8221; (aka Silverlight) ?&lt;/p&gt;
&lt;p&gt;&lt;a title=&quot;http://www.youtube.com/watch?v=ympeCv8lLmw&quot; href=&quot;http://www.youtube.com/watch?v=ympeCv8lLmw&quot;&gt;For those that like Video&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>MNteractive</name>
			<uri>http://mnteractive.com</uri>
		</author>
		<source>
			<title type="html">MNteractive</title>
			<subtitle type="html">minnesota's interaction design community</subtitle>
			<link rel="self" href="http://mnteractive.com/feed/"/>
			<id>http://mnteractive.com/feed/</id>
			<updated>2008-05-15T16:01:07+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-US">
		<title type="html">My first XNA game is done</title>
		<link href="http://geekswithblogs.net/bitburner/archive/2008/05/15/122163.aspx" rel="alternate" title="My first XNA game is done" type="text/html"/>
		<id>http://geekswithblogs.net/bitburner/archive/2008/05/15/122163.aspx</id>
		<updated>2008-05-15T14:27:13+00:00</updated>
		<content type="html">&lt;p&gt;Well I finished my first game on the XNA platform.  It's a simple War Card Game - the concept was entirely used to learn some of the XNA API.  The last time I wrote a game was using MFC and COM before that was a RPG using HyperCard 2.0 on a Mac LCIII and System 7 a LONG time ago - needless to say when you see the code you will not be surprised that it is a hot mess (at least in my opinion).&lt;/p&gt;
&lt;p&gt;But - with all things aside - the game turned out decent and has some playability to it.  I am working on an overhead scrolling shooter right now - just finished the player object (named RaptorOne) which is a futuristic play on the up and coming Joint Strike Fighter.  More details on that to come - the explosions are slowing things down a bit (probably because of the number of frames I am using - will play around and come up with a better algorithm to speed things up so I can put more umphh into it).&lt;/p&gt;
&lt;p&gt;The binaries for the game can be downloaded here...&lt;/p&gt;
&lt;p&gt;&lt;font&gt;http://www.driveway.com/u4i1i8n3c5&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;The source code can be downloaded here...&lt;/p&gt;
&lt;p&gt;&lt;font&gt;http://www.driveway.com/t4o8c2d0p6&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;This is turning out to be quite the hobby - I could spend hours doing this stuff.  I asked my Wife the other day if she thought I should get a job doing this (should I get better at it of course) - she said that she was afraid that I would never come home - that was good for a chuckle.  Anyway - enjoy the game and remember you need the XNA 2.0 Runtime and DirectX 9c + .NET 2.0 to run it - I didn't create an installer for this and I don't intend to - this was just for practice.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;amp;u=122163&quot;&gt;&lt;img src=&quot;http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;amp;u=122163&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;a href=&quot;http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016&quot; target=&quot;_blank&quot;&gt;
&lt;img src=&quot;http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016&quot; width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;


&lt;img src=&quot;http://geekswithblogs.net/bitburner/aggbug/122163.aspx&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</content>
		<author>
			<name>Chase's Techno Rants and Raves</name>
			<uri>http://geekswithblogs.net/bitburner/Default.aspx</uri>
		</author>
		<source>
			<title type="html">Chase's Techno Rants and Raves</title>
			<subtitle type="html">Did I just hear him call it &quot;C-Pound&quot;?!</subtitle>
			<link rel="self" href="http://geekswithblogs.net/bitburner/Rss.aspx"/>
			<id>http://geekswithblogs.net/bitburner/Rss.aspx</id>
			<updated>2008-05-16T15:00:45+00:00</updated>
			<rights type="html">Chase Thomas</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Inventor Of The Web Now Looking Into Metadata</title>
		<link href="http://bexhuff.com/2008/05/inventor-of-the-web-now-looking-into-metadata" rel="alternate" title="Inventor Of The Web Now Looking Into Metadata" type="text/html"/>
		<id>http://bexhuff.com/501 at http://bexhuff.com</id>
		<updated>2008-05-15T13:18:32+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://flickr.com/photos/majikthise/1442923515/&quot;&gt;&lt;img src=&quot;http://farm2.static.flickr.com/1208/1442923515_5af65c6859_m.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Tim_Berners-Lee&quot;&gt;Tim Berners-Lee&lt;/a&gt;, the inventor of the world wide web (shown right, Gore-ified), is complaining about how difficult it is to find what you want on the web. He brings up some points that ECM folks have known about for a long long time: &lt;b&gt;metadata is essential for finding what you want.&lt;/b&gt; Timmay has been awarded a &lt;a href=&quot;http://blog.wired.com/business/2008/05/tim-berners-lee.html?cid=114657476#comment-114657476&quot;&gt;$350,000 grant to study the issue&lt;/a&gt;... like he needs the cash...&lt;/p&gt;
&lt;p&gt;Anyway, I'm all over embedded metadata... but I can tell you right now its nearly impossible to get everybody in a &lt;b&gt;small&lt;/b&gt; company to agree to a complex metadata standard, so good luck accomplishing that on the whole frigging &lt;b&gt;internet&lt;/b&gt;... also, its even more impossible to get content creators to follow the metadata policies. &lt;b&gt;People who work hard to create great content believe others should work hard to FIND their content.&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Silly? Yes... but a very common attitude.&lt;/p&gt;
&lt;p&gt;The ones who usually spend a lot of time optimizing their metadata and search results, are usually those with lower quality content, or people who are obsessed with their own popularity. Such as myself... Or, like &lt;b&gt;spam blogs&lt;/b&gt;, aka &lt;a href=&quot;http://en.wikipedia.org/wiki/Spam_blogs&quot;&gt;splogs&lt;/a&gt;...&lt;/p&gt;
&lt;p&gt;That being said, I wish Timmay well... but you don't need $350,000 to come up with a solution for this. I'd recommend creating a &lt;a href=&quot;http://microformats.org/&quot;&gt;Microformat&lt;/a&gt; for embedded metadata, to apply to the content in the containing element... You'd also need some kind of cryptographically strong key for &quot;trusted&quot; metadata suppliers, so people don't try to tag porn sites with every metadata keyword in the universe. Also, the microformat needs to be &lt;b&gt;extensible&lt;/b&gt;, so anybody can embed custom namespaces and keywords in it.&lt;/p&gt;
&lt;p&gt;The Microformats folks have a tag similar to what he wants already, the &lt;a href=&quot;http://microformats.org/wiki/rel-tag&quot;&gt;rel-tag&lt;/a&gt; microformat. Its overly simple, but that simplicity will encourage adoption -- much in the same way that the &quot;inferiority&quot; of HTML over all other markup formats ensured its success. It looks like this:&lt;/p&gt;
&lt;pre&gt;
&amp;lt;a href=&quot;http://technorati.com/tag/tech&quot; rel=&quot;tag&quot;&amp;gt;tech&amp;lt;/a&amp;gt;
&lt;/pre&gt;&lt;p&gt;
If this link is anywhere on the page, it signifies that the page has &lt;b&gt;something&lt;/b&gt; to do with the metadata tag &lt;b&gt;tech&lt;/b&gt;, and it gives Technorati as the &lt;b&gt;home&lt;/b&gt; for the tag. I'd expand on this to allow for other tag homes, such as &lt;b&gt;del.icio.us&lt;/b&gt;, or even any arbitrary social bookmarking site.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Done and done.&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Naturally, you'd want to be more precise... some new sites have &lt;b&gt;dozens of articles on the main page&lt;/b&gt;, and you'd like to tag each section individually... so this tag should only apply to the content in the containing tag. Also, this kind of formatting is difficult to embed in a Microsoft Word document: I couldn't get behind any kind of distributed metadata model unless it easily worked in multiple formats. A CSS &lt;b&gt;style&lt;/b&gt; might be a better choice than the &lt;b&gt;rel&lt;/b&gt; attribute in the link...&lt;/p&gt;
&lt;p&gt;Finally, it needs some kind of authentication model... perhaps you need an &lt;b&gt;authentication microformat&lt;/b&gt; somewhere on the page, and all microformats on the page inherit the credentials. Of course, you'd need to have some kind of tag to force exceptions, so banner ads from remote servers would need their own auth tokens.&lt;/p&gt;
&lt;p&gt;Whaddya say, Timmay? Is that due-dilligence worth $5k?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bexhuff.com/2008/05/inventor-of-the-web-now-looking-into-metadata&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Bex Huff</name>
			<uri>http://bexhuff.com</uri>
		</author>
		<source>
			<title type="html">Bex Huff - blog about technology, lifehacks, and ecm</title>
			<link rel="self" href="http://bexhuff.com/node/feed"/>
			<id>http://bexhuff.com/node/feed</id>
			<updated>2008-05-16T14:01:20+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">I Fought the Weeds, and the...Weeds Won</title>
		<link href="http://www.jasonbock.net/JB/Default.aspx?blog=entry.445675ada60e4c768f609c2b70182268" rel="alternate" title="I Fought the Weeds, and the...Weeds Won" type="text/html"/>
		<id>http://www.jasonbock.net/JB/445675ad-a60e-4c76-8f60-9c2b70182268</id>
		<updated>2008-05-15T12:29:37+00:00</updated>
		<content type="html">&lt;p&gt;I give up.&lt;/p&gt;
&lt;p&gt;Last year, we stopped using a lawn service to treat our lawn. Ever since then, despite my best efforts, our lawn has gone to shit. Weeds everywhere. This morning, I tried to pull them, and after an hour's worth of work, I realized I barely made a dent in the weeds.&lt;/p&gt;
&lt;p&gt;I'm calling that service again this morning.&lt;/p&gt;</content>
		<author>
			<name>Jason Bock's Weblog</name>
			<uri>http://www.jasonbock.net/JB</uri>
		</author>
		<source>
			<title type="html">Jason Bock's Weblog</title>
			<subtitle type="html">Writing code, creating books, playing video games, and other stuff</subtitle>
			<link rel="self" href="http://www.jasonbock.net/JB/Rss.aspx"/>
			<id>http://www.jasonbock.net/JB/Rss.aspx</id>
			<updated>2008-05-16T15:01:06+00:00</updated>
			<rights type="html">Copyright 2005 Jason Bock</rights>
		</source>
	</entry>

	<entry>
		<title type="html">Third Annual Movie-Plot Threat Contest Winner</title>
		<link href="http://www.schneier.com/blog/archives/2008/05/third_annual_mo_1.html" rel="alternate" title="Third Annual Movie-Plot Threat Contest Winner" type="text/html"/>
		<id>http://www.schneier.com/blog/archives/2008/05/third_annual_mo_1.html</id>
		<updated>2008-05-15T12:24:06+00:00</updated>
		<content type="html">On April 7 -- seven days late -- I announced the Third Annual Movie-Plot Threat Contest: For this contest, the goal is to create fear. Not just any fear, but a fear that you can alleviate through the sale of your new product idea. There are lots of risks out there, some of them serious, some of them so unlikely...&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/schneier/excerpts?a=OpBSEH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/schneier/excerpts?i=OpBSEH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Schneier on Security</name>
			<uri>http://www.schneier.com/blog/</uri>
		</author>
		<source>
			<title type="html">Schneier on Security</title>
			<subtitle type="html">A blog covering security and security technology.</subtitle>
			<link rel="self" href="http://www.schneier.com/blog/index.xml"/>
			<id>http://www.schneier.com/blog/index.xml</id>
			<updated>2008-05-16T12:01:37+00:00</updated>
			<rights type="html">Copyright 2008 Bruce Schneier</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Nothing To See Here</title>
		<link href="http://philcrissman.com/2008/05/15/nothing-to-see-here" rel="alternate" title="Nothing To See Here" type="text/html"/>
		<id>http://philcrissman.com/?p=1609</id>
		<updated>2008-05-15T06:00:50+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://flickr.com/photos/juliebee/105291428/&quot;&gt;&lt;img src=&quot;http://philcrissman.com/images/nothinginteresting.jpg&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Phil Crissman</name>
			<uri>http://philcrissman.com</uri>
		</author>
		<source>
			<title type="html">philcrissman.com</title>
			<subtitle type="html">It's okay, I do this all the time</subtitle>
			<link rel="self" href="http://philcrissman.com/feed/atom/"/>
			<id>http://philcrissman.com/feed/atom</id>
			<updated>2008-05-16T15:00:10+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Links for 2008-05-14 [del.icio.us]</title>
		<link href="http://del.icio.us/scottmark#2008-05-14" rel="alternate" title="Links for 2008-05-14 [del.icio.us]" type="text/html"/>
		<id>http://del.icio.us/scottmark#2008-05-14</id>
		<updated>2008-05-15T05:00:00+00:00</updated>
		<content type="html">&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://raibledesigns.com/rd/entry/extensionless_urls_in_java_web&quot;&gt;Raible Designs | Extensionless URLs with Java Web Frameworks&lt;/a&gt;&lt;br /&gt;
&amp;quot;In an ideal world, it'd be possible to modify the &amp;lt;a&amp;gt; tag at the very core of the view framework you're using to automatically encode the URL of any &amp;quot;href&amp;quot; attributes.&amp;quot;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.iconizeme.com/&quot;&gt;Iconize Me!&lt;/a&gt;&lt;br /&gt;
avatar art services - currently not taking orders but might again&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.biccamera.co.jp/shoplist/yurakucho_english.html&quot;&gt;Bic Camera - Yurakucho Store&lt;/a&gt;&lt;br /&gt;
one station up from Shimbashi&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Scott Mark</name>
			<uri>http://scottmark.wordpress.com</uri>
		</author>
		<source>
			<title type="html">Scott Mark</title>
			<subtitle type="html">A blog about application architecture in a large Enterprise - social software, web technology, Agile methods, open source, leadership, team building, and social networking.</subtitle>
			<link rel="self" href="http://scottmark.blogspot.com/atom.xml"/>
			<id>http://scottmark.blogspot.com/atom.xml</id>
			<updated>2008-05-16T05:00:20+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">links for 2008-05-15</title>
		<link href="http://www.magnetbox.com/?p=2896" rel="alternate" title="links for 2008-05-15" type="text/html"/>
		<id>http://www.magnetbox.com/?p=2896</id>
		<updated>2008-05-15T01:31:29+00:00</updated>
		<content type="html">&lt;ul class=&quot;delicious&quot;&gt;
&lt;li&gt;
&lt;div class=&quot;delicious-link&quot;&gt;&lt;a href=&quot;http://mapper.nndb.com/&quot;&gt;NNDB Mapper: Tracking the entire world&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;delicious-extended&quot;&gt;Sort of like theyrule beyond the members of the board.&lt;/div&gt;
&lt;div class=&quot;delicious-tags&quot;&gt;(tags: &lt;a href=&quot;http://del.icio.us/magnetbox/social&quot;&gt;social&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/people&quot;&gt;people&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/business&quot;&gt;business&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/map&quot;&gt;map&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/visualization&quot;&gt;visualization&lt;/a&gt;)&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div class=&quot;delicious-link&quot;&gt;&lt;a href=&quot;http://www.gwap.com/gwap/&quot;&gt;gwap.com&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;delicious-extended&quot;&gt;Luis von Ahn, creator of the ESP Game and reCAPTCHA, launches Games With A Purpose.&lt;/div&gt;
&lt;div class=&quot;delicious-tags&quot;&gt;(tags: &lt;a href=&quot;http://del.icio.us/magnetbox/web&quot;&gt;web&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/game&quot;&gt;game&lt;/a&gt;)&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div class=&quot;delicious-link&quot;&gt;&lt;a href=&quot;http://www.sciam.com/article.cfm?id=why-things-cost-1995&quot;&gt;Why Things Cost $19.95&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;delicious-extended&quot;&gt;What are the psychological &amp;#8220;rules&amp;#8221; of bartering?&lt;/div&gt;
&lt;div class=&quot;delicious-tags&quot;&gt;(tags: &lt;a href=&quot;http://del.icio.us/magnetbox/money&quot;&gt;money&lt;/a&gt; &lt;a href=&quot;http://del.icio.us/magnetbox/science&quot;&gt;science&lt;/a&gt;)&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;</content>
		<author>
			<name>Magnetbox</name>
			<uri>http://www.magnetbox.com</uri>
		</author>
		<source>
			<title type="html">Magnetbox</title>
			<subtitle type="html">Some blog about some stuff.</subtitle>
			<link rel="self" href="http://www.magnetbox.com/?feed=rss2"/>
			<id>http://www.magnetbox.com/?feed=rss2</id>
			<updated>2008-05-16T02:00:23+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Where Are Aspects When You Need Them?</title>
		<link href="http://scottmark.wordpress.com/2008/05/14/where-are-aspects-when-you-need-them/" rel="alternate" title="Where Are Aspects When You Need Them?" type="text/html"/>
		<id>http://scottmark.wordpress.com/?p=154</id>
		<updated>2008-05-15T00:14:59+00:00</updated>
		<content type="html">&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;I had a brief encounter with &lt;a href=&quot;http://en.wikipedia.org/wiki/Aspect-oriented_programming&quot;&gt;aspects&lt;/a&gt; at the &lt;a href=&quot;http://www.softwaresummit.com/&quot;&gt;Colorado Software Summit&lt;/a&gt; a couple years back.  I was glad to finally get a bit oriented to AOP, to which I had been blissfully ignorant, and decided that I had incredibly limited interest in the topic.  Of all things, I kept wondering why AOP did not appear to be widely applied to the presentation layer, which was the first place I would think it to be.&lt;/p&gt;
&lt;p&gt;Along comes &lt;a href=&quot;http://raibledesigns.com/&quot;&gt;Matt&lt;/a&gt; talking about &lt;a href=&quot;http://raibledesigns.com/rd/entry/extensionless_urls_in_java_web&quot;&gt;extensionless URLs&lt;/a&gt; (a pet interest of mine) and dropping lines like this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;In an ideal world, it&amp;#8217;d be possible to modify the &amp;lt;a&amp;gt; tag at the very core of the view framework you&amp;#8217;re using to automatically encode the URL of any &amp;#8220;href&amp;#8221; attributes.&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;There you go - a &lt;a href=&quot;http://en.wikipedia.org/wiki/Cross-cutting_concern&quot;&gt;cross-cutting concern&lt;/a&gt; if there ever was one.  Where is our AOP for the presentation layer?&lt;/p&gt;
&lt;div id=&quot;87903806-7ad4-4f01-b2fb-342bff5ee189&quot; class=&quot;wlWriterSmartContent&quot;&gt;Technorati tags: &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tags/coloradosoftwaresummit&quot;&gt;coloradosoftwaresummit&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tags/aop&quot;&gt;aop&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tags/aspects&quot;&gt;aspects&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tags/crosscuttingconcerns&quot;&gt;crosscuttingconcerns&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tags/URLs&quot;&gt;URLs&lt;/a&gt;, &lt;a rel=&quot;tag&quot; href=&quot;http://technorati.com/tags/presentation&quot;&gt;presentation&lt;/a&gt;&lt;/div&gt;
&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/categories/scottmark.wordpress.com/154/&quot; /&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/tags/scottmark.wordpress.com/154/&quot; /&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/scottmark.wordpress.com/154/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/scottmark.wordpress.com/154/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/scottmark.wordpress.com/154/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/scottmark.wordpress.com/154/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/scottmark.wordpress.com/154/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/scottmark.wordpress.com/154/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/scottmark.wordpress.com/154/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/scottmark.wordpress.com/154/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/scottmark.wordpress.com/154/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/scottmark.wordpress.com/154/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=scottmark.wordpress.com&amp;amp;blog=153510&amp;amp;post=154&amp;amp;subd=scottmark&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Scott Mark</name>
			<uri>http://scottmark.wordpress.com</uri>
		</author>
		<source>
			<title type="html">Scott Mark</title>
			<subtitle type="html">A blog about application architecture in a large Enterprise - social software, web technology, Agile methods, open source, leadership, team building, and social networking.</subtitle>
			<link rel="self" href="http://scottmark.blogspot.com/atom.xml"/>
			<id>http://scottmark.blogspot.com/atom.xml</id>
			<updated>2008-05-16T05:00:20+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Where Are The Dang Stellent Announcements?</title>
		<link href="http://bexhuff.com/2008/05/where-are-the-dang-stellent-announcements" rel="alternate" title="Where Are The Dang Stellent Announcements?" type="text/html"/>
		<id>http://bexhuff.com/500 at http://bexhuff.com</id>
		<updated>2008-05-14T23:37:14+00:00</updated>
		<content type="html">&lt;p&gt;If you're a Stellent customer, you've probably noticed that you no longer get those nice customer emails about ECM from Oracle... that's because Oracle -- wisely -- has a pretty strict anti-spam policy... so people who own one Oracle product aren't blasted with info and offers from other products.&lt;/p&gt;
&lt;p&gt;So what should you do instead? Well, first of all you need to register for the &lt;a href=&quot;http://www.oracle.com/newsletters/archives/archives_content-management.html&quot;&gt;quarterly content management newsletter&lt;/a&gt;. This isn't customer-only focused, but its got a lot of good stuff... and the archives are online.&lt;/p&gt;
&lt;p&gt;In addition, Oracle is now is doing a &lt;b&gt;quarterly customer webcast&lt;/b&gt; to keep folks up to date about the latest changes in the product line. The next one will be &lt;b&gt;June 5, 2008 at 9:00 a.m Pacific Time.&lt;/b&gt; If you'd like to attend, you need to &lt;a href=&quot;https://oracle.on.intercall.com/confmgr/event_register.jsp?eventId=65807&amp;amp;invitationId=1042151&quot;&gt;register with Intercall&lt;/a&gt;. Its for customers and partners only... so be sure to use your company email address, or you'll get booted!&lt;/p&gt;
&lt;p&gt;Another option is to &lt;b&gt;configure &lt;a href=&quot;https://metalink.oracle.com&quot;&gt;Metalink&lt;/a&gt; to send you ECM updates&lt;/b&gt;. Follow these steps:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Log in to &lt;a href=&quot;https://metalink.oracle.com&quot;&gt;Metalink&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Click the &lt;b&gt;Headlines&lt;/b&gt; link in the upper left of the page.&lt;/li&gt;
&lt;li&gt;Click the &lt;b&gt;Edit Page&lt;/b&gt; button under &lt;b&gt;Headlines&lt;/b&gt; on the right.&lt;/li&gt;
&lt;li&gt;In the drop-down list, select &lt;b&gt;Certify and Availability&lt;/b&gt;, and click &lt;b&gt;Add New&lt;/b&gt;.&lt;/li&gt;
&lt;li&gt;In the top right, select the &lt;b&gt;Certify Settings&lt;/b&gt; button.&lt;/li&gt;
&lt;li&gt;In the drop-down list under &lt;b&gt;Product Alerts&lt;/b&gt;, select &lt;b&gt;Oracle Universal Product Management&lt;/b&gt;, and click &lt;b&gt;Add New&lt;/b&gt;.&lt;/li&gt;
&lt;li&gt;Click the &lt;b&gt;Overall Settings&lt;/b&gt; button.&lt;/li&gt;
&lt;li&gt;At the bottom of the page, click the &lt;b&gt;Automatically email My Headlines to me&lt;/b&gt; checkbox.&lt;/li&gt;
&lt;li&gt;Click &lt;b&gt;Store Settings&lt;/b&gt;.&lt;/li&gt;
&lt;li&gt;Play the waiting game, or hungry hungry hippos until your emails arrive.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;You can also subscribe to bug reports and knowledge base articles, if you'd &lt;b&gt;really&lt;/b&gt; like to keep up-to-date...&lt;/p&gt;
&lt;p&gt;Of course, to be fully up to date, you'll need to do all this, &lt;b&gt;plus&lt;/b&gt; subscribe to email notifications from the &lt;a href=&quot;http://tech.groups.yahoo.com/group/intradoc_users/&quot;&gt;Stellent Yahoo Group&lt;/a&gt; and the &lt;a href=&quot;http://forums.oracle.com/forums/forum.jspa?forumID=390&quot;&gt;Oracle ECM Forum&lt;/a&gt;... but that's only for information hogs like me &lt;b&gt;;-)&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://bexhuff.com/2008/05/where-are-the-dang-stellent-announcements&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Bex Huff</name>
			<uri>http://bexhuff.com</uri>
		</author>
		<source>
			<title type="html">Bex Huff - blog about technology, lifehacks, and ecm</title>
			<link rel="self" href="http://bexhuff.com/node/feed"/>
			<id>http://bexhuff.com/node/feed</id>
			<updated>2008-05-16T14:01:20+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Are Long-Tail Keywords a Waste Of Time for Pay Per Click</title>
		<link href="http://feeds.feedburner.com/~r/technologyevangelist/bkxI/~3/290501166/are_longtail_keyword.html" rel="alternate" title="Are Long-Tail Keywords a Waste Of Time for Pay Per Click" type="text/html"/>
		<id>http://www.technologyevangelist.com/2008/05/are_longtail_keyword.html</id>
		<updated>2008-05-14T23:12:02+00:00</updated>
		<content type="html">&lt;p&gt;Brian Carter of Fuel Interactive raises an interesting point about the effectiveness of keywords in the long tail of pay per click advertising. It has long (in Internet time) been thought that advertising on a huge portfolio of search terms will generate better returns because you'll get a trickle of traffic from thousands and thousands of terms at low cost per click AND the traffic will convert at a higher rate for a double gain in returns.&lt;/p&gt;

&lt;p&gt;However, Carter explains that this isn't necessarily the case:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.fuelinteractive.com/blog/2008/05/long-tail-schmong-tail-whats-w.cfm&quot;&gt;The Problem with Long Tail Keywords&lt;/a&gt;&lt;br /&gt;
 &lt;blockquote&gt;&lt;i&gt;But the dirty little secret of PPC is that 95% of your conversions come from 5% of your keywords.&lt;/i&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;Really.&lt;/p&gt;

&lt;p&gt;The others keywords either&lt;/p&gt;

&lt;p&gt;    * Don't perform (100 clicks and no conversions), or&lt;br /&gt;
    * The clicks roll in so slowly that you won't have the statistical confidence to delete them until the year 2112 (yay, Rush!).&lt;/p&gt;

&lt;p&gt;As I said, interesting points.&lt;/p&gt;

&lt;p&gt;While 95% of conversions may come from a small sub-set of a keyword portfolio, that doesn't necessarily mean that the rest of the portfolio is underperforming. The rest of the terms may not deliver as many conversions, but that's not really a measure of performance. Return on investment would be a better measure.&lt;/p&gt;

&lt;p&gt;But more importantly, I think the biggest concept that could be misunderstood here is what I'll call &lt;strong&gt;&quot;micro-short-tails.&quot;&lt;/strong&gt; By that, I mean terms that get relatively few searches, but are still clearly short-tail terms when looked at on a page by page basis. For example a retail site could have thousands of products in inventory - some of which are relatively obscure. On a page by page basis, it's pretty clear that product-names and product-IDs would be considered short-tail terms while on a site-wide basis they would look more like long-tail terms. &lt;/p&gt;

&lt;p&gt;In many cases, patterns of &quot;micro-short-tail&quot; terms can be generated and properly targeted to truly relevant pages. &lt;/p&gt;

&lt;p&gt;Is this long tail or short tail? In my opinion, it's all relative. &lt;/p&gt;

&lt;p&gt;I think Brian and I would agree that measuring what's working and building upon successes is the key to running great pay per click campaigns regardless of how different strategies are defined.&lt;/p&gt;

&lt;br /&gt;&lt;a href=&quot;http://www.technologyevangelist.com/2008/05/are_longtail_keyword.html#comments&quot; title=&quot;Comment on: Are Long-Tail Keywords a Waste Of Time for Pay Per Click&quot;&gt;Comment on this post&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;

&lt;!-- begin(Sponsors) --&gt;&lt;span&gt;Book of the Month:&lt;/span&gt; &lt;a href=&quot;http://tinyurl.com/2bdczm&quot;&gt;Everything is Miscellaneous&lt;/a&gt;&lt;br /&gt; &lt;span&gt;Gadget of the Month:&lt;/span&gt; &lt;a href=&quot;http://tinyurl.com/22kdva&quot;&gt;Panasonic HDC-SD1 AVCHD 3CCD Flash Memory High Definition Camcorder&lt;/a&gt;&lt;br /&gt; &lt;span&gt;Web Site of the Month:&lt;/span&gt; &lt;a href=&quot;http://docs.google.com/&quot; title=&quot;Google&quot;&gt;Google Docs - Used to Write Technology Evangelist Posts&lt;/a&gt;&lt;br /&gt;
&lt;span&gt;Technology Evangelist Podcasts:&lt;/span&gt; &lt;a href=&quot;http://feeds.feedburner.com/TechnologyEvangelistVideoBlogAAC&quot;&gt;Subscribe to Podcast Feed&lt;/a&gt;&lt;br /&gt;
&lt;span&gt;Technology Evangelist Videos:&lt;/span&gt; &lt;a href=&quot;http://feeds.feedburner.com/TechnologyEvangelistVideoBlog720p&quot;&gt;Subscribe to Video Feed&lt;/a&gt;&lt;br /&gt;
&lt;!-- end(Sponsors) --&gt;
&lt;p&gt;&lt;a href=&quot;http://feeds.feedburner.com/~a/technologyevangelist/bkxI?a=KJH7r1&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~a/technologyevangelist/bkxI?i=KJH7r1&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?a=5jS0bH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?i=5jS0bH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?a=TSq5rH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?i=TSq5rH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?a=KtMA6h&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/technologyevangelist/bkxI?i=KtMA6h&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/technologyevangelist/bkxI/~4/290501166&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Ed Kohler</name>
			<email>noemail@noemail.org</email>
			<uri>http://www.technologyevangelist.com/</uri>
		</author>
		<source>
			<title type="html">Technology Evangelist</title>
			<subtitle type="html">A blog dedicated to emerging technology trends in hardware, software, webware, marketing and beyond.</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/technologyevangelist/bkxI"/>
			<id>http://feeds.feedburner.com/technologyevangelist/bkxI</id>
			<updated>2008-05-16T00:02:02+00:00</updated>
			<rights type="html">Copyright 2008</rights>
		</source>
	</entry>

	<entry>
		<title type="html">Opening Up SpringSource AP</title>
		<link href="http://www.michaelnygard.com/blog/2008/05/opening_up_springsource_ap.html" rel="alternate" title="Opening Up SpringSource AP" type="text/html"/>
		<id>tag:www.michaelnygard.com,2008:/blog//1.213</id>
		<updated>2008-05-14T22:11:36+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;Just now getting my hands on the SpringSource Application Platform. It's deceptive, because there's very little functionality exposed when you run it. It starts up with less ceremony than Apache or Tomcat. (Which is kind of funny, when you consider that it &lt;em&gt;includes&lt;/em&gt; Tomcat.)&lt;/p&gt;

&lt;p&gt;When you look at the bundle repository, though, it's clear that a lot of stuff is packaged in here. In a way, that's like the Spring framework itself. On the surface, it looks like just a bean configurator. All the &lt;span&gt;really&lt;/span&gt; powerful stuff is in the libraries built out of that small core.&lt;/p&gt;

&lt;p&gt;Here's a quick listing of the bundles in version 1.0.0.beta:&amp;nbsp;&lt;/p&gt;

&lt;pre&gt;
./bundles/ext/com.springsource.com.google.common.collect-0.5.0.alpha.jar
./bundles/ext/com.springsource.edu.emory.mathcs.backport-3.0.0.jar
./bundles/ext/com.springsource.javax.activation-1.1.0.jar
./bundles/ext/com.springsource.javax.annotation-1.0.0.jar
./bundles/ext/com.springsource.javax.ejb-3.0.0.jar
./bundles/ext/com.springsource.javax.el-2.1.0.jar
./bundles/ext/com.springsource.javax.jms-1.1.0.jar
./bundles/ext/com.springsource.javax.mail-1.4.0.jar
./bundles/ext/com.springsource.javax.persistence-1.0.0.jar
./bundles/ext/com.springsource.javax.servlet-2.5.0.jar
./bundles/ext/com.springsource.javax.servlet.jsp-2.1.0.jar
./bundles/ext/com.springsource.javax.servlet.jsp.jstl-1.1.2.jar
./bundles/ext/com.springsource.javax.xml.bind-2.0.0.jar
./bundles/ext/com.springsource.javax.xml.rpc-1.1.0.jar
./bundles/ext/com.springsource.javax.xml.soap-1.3.0.jar
./bundles/ext/com.springsource.javax.xml.stream-1.0.1.jar
./bundles/ext/com.springsource.javax.xml.ws-2.1.1.jar
./bundles/ext/com.springsource.json-1.0.0.BUILD-20080422112602.jar
./bundles/ext/com.springsource.org.antlr-3.0.1.jar
./bundles/ext/com.springsource.org.aopalliance-1.0.0.jar
./bundles/ext/com.springsource.org.apache.catalina-6.0.16.jar
./bundles/ext/com.springsource.org.apache.commons.fileupload-1.2.0.jar
./bundles/ext/com.springsource.org.apache.commons.io-1.4.0.jar
./bundles/ext/com.springsource.org.apache.commons.logging-1.1.1.jar
./bundles/ext/com.springsource.org.apache.coyote-6.0.16.jar
./bundles/ext/com.springsource.org.apache.el-6.0.16.jar
./bundles/ext/com.springsource.org.apache.jasper-6.0.16.jar
./bundles/ext/com.springsource.org.apache.jasper.org.eclipse.jdt-6.0.16.jar
./bundles/ext/com.springsource.org.apache.juli.extras-6.0.16.jar
./bundles/ext/com.springsource.org.apache.taglibs.standard-1.1.2.jar
./bundles/ext/com.springsource.org.aspectj.runtime-1.6.0.m2.jar
./bundles/ext/com.springsource.org.aspectj.weaver-1.6.0.m2.jar
./bundles/ext/com.springsource.slf4j.org.apache.commons.logging-1.5.0.jar
./bundles/ext/com.springsource.slf4j.org.apache.log4j-1.5.0.jar
./bundles/ext/org.springframework.aop-2.5.4.A.jar
./bundles/ext/org.springframework.aspects-2.5.4.A.jar
./bundles/ext/org.springframework.beans-2.5.4.A.jar
./bundles/ext/org.springframework.context-2.5.4.A.jar
./bundles/ext/org.springframework.context.support-2.5.4.A.jar
./bundles/ext/org.springframework.core-2.5.4.A.jar
./bundles/ext/org.springframework.jdbc-2.5.4.A.jar
./bundles/ext/org.springframework.jms-2.5.4.A.jar
./bundles/ext/org.springframework.orm-2.5.4.A.jar
./bundles/ext/org.springframework.osgi.core-1.1.0.M2A.jar
./bundles/ext/org.springframework.osgi.extender-1.1.0.M2A.jar
./bundles/ext/org.springframework.osgi.io-1.1.0.M2A.jar
./bundles/ext/org.springframework.transaction-2.5.4.A.jar
./bundles/ext/org.springframework.web-2.5.4.A.jar
./bundles/ext/org.springframework.web.portlet-2.5.4.A.jar
./bundles/ext/org.springframework.web.servlet-2.5.4.A.jar
./bundles/ext/org.springframework.web.struts-2.5.4.A.jar
./bundles/subsystems/com.springsource.platform.common/com.springsource.platform.common.env-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.common/com.springsource.platform.common.math-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.concurrent/com.springsource.platform.concurrent.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.config/com.springsource.platform.config.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.control/com.springsource.platform.control.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.deployer/com.springsource.platform.deployer.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.deployer/com.springsource.platform.deployer.hot-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.ffdc/com.springsource.platform.ffdc.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.io/com.springsource.platform.io.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.kernel/com.springsource.platform.kernel.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.kernel/com.springsource.platform.kernel.dm-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.management.proxy/com.springsource.platform.management.proxy-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.profile/com.springsource.platform.profile.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.serviceability/com.springsource.platform.serviceability.ffdc-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.serviceability/com.springsource.platform.serviceability.ffdc.aspects-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.serviceability/com.springsource.platform.serviceability.tracing.aspects-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.servlet/com.springsource.platform.servlet.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.servlet/com.springsource.platform.servlet.tomcat-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.system/com.springsource.platform.system.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.web/com.springsource.platform.web.core-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.web/com.springsource.platform.web.dm-1.0.0.beta.jar
./bundles/subsystems/com.springsource.platform.web/com.springsource.platform.web.support-1.0.0.beta.jar
&lt;/pre&gt;

&lt;p&gt;There's clearly a lot of functionality built in, but how do you get at it? The SAP, erm, SpringSource AP documentation screams for improvement. Maybe they think that, because all the parts are documented elsewhere, there's no need for any integrated docset. If so, they would be wrong. Despite that, I'm interested enough to keep poking away at it.&lt;/p&gt;

&lt;p&gt;Oh, and one other thing: the default administrator account is &lt;tt&gt;admin/springsource&lt;/tt&gt;. (It's actually defined in &lt;tt&gt;servlet/conf/tomcat-users.xml&lt;/tt&gt;.) For some reason, that's buried in chapter 5 of the user guide. It would be handy to make that more prominent.&lt;/p&gt;</content>
		<author>
			<name>michael</name>
			<uri>http://www.michaelnygard.com/blog/</uri>
		</author>
		<source>
			<title type="html">Wide Awake Developers</title>
			<subtitle type="html">An ongoing examination of what it means to be an IT professional in today's world.</subtitle>
			<link rel="self" href="http://www.michaelnygard.com/blog/atom.xml"/>
			<id>tag:www.michaelnygard.com,2008:/blog//1</id>
			<updated>2008-05-15T15:01:26+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-us">
		<title type="html">100 Must-Read Books: The Essential Man's Library</title>
		<link href="http://artofmanliness.com/2008/05/14/100-must-read-books-the-essential-mans-library/#more-183" rel="alternate" title="100 Must-Read Books: The Essential Man's Library" type="text/html"/>
		<id>http://artofmanliness.com/2008/05/14/100-must-read-books-the-essential-mans-library/#more-183</id>
		<updated>2008-05-14T21:57:00+00:00</updated>
		<content type="html"></content>
		<author>
			<name>Joey Schoblaska</name>
			<uri>http://www.joeyschoblaska.com</uri>
		</author>
		<source>
			<title type="html">Joey Schoblaska</title>
			<subtitle type="html">Joey Schoblaska's blog feed</subtitle>
			<link rel="self" href="http://joeyschoblaska.com/feed/"/>
			<id>http://joeyschoblaska.com/feed/</id>
			<updated>2008-05-16T09:01:09+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">The Day There Was No News</title>
		<link href="http://feeds.feedburner.com/~r/typepad/sborsch/ctd/~3/290464010/the-day-there-w.html" rel="alternate" title="The Day There Was No News" type="text/html"/>
		<id>tag:typepad.com,2003:post-49874556</id>
		<updated>2008-05-14T21:54:38+00:00</updated>
		<content type="html" xml:lang="en-US">&lt;div&gt;&lt;center&gt;&lt;div&gt;    &lt;br /&gt;&lt;span&gt;&lt;span&gt;&lt;a href=&quot;http://www.flickr.com/photos/arbernaut/2476955162/&quot;&gt;The Day There Was No News&lt;/a&gt;, originally uploaded by &lt;a href=&quot;http://www.flickr.com/people/arbernaut/&quot;&gt;Pixelsurgeon&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/center&gt;

&lt;p class=&quot;flickr-yourcomment&quot;&gt;Though this &amp;quot;The Day There Was No News&amp;quot; video was on the popular site BoingBoing and thus many of you have seen it, I wanted it available on my blog and to add a comment about it here as I found it a bit haunting to watch the scrolling news ticker at the bottom as the montage of BBC news anchors, right before signoff, sit and wait to go off camera as though there was nothing to say! &lt;/p&gt;

&lt;p class=&quot;flickr-yourcomment&quot;&gt;What if there was no news but only positive visions of the future?&lt;/p&gt;

&lt;p class=&quot;flickr-yourcomment&quot;&gt;A friend of mine is building a new, change-the-world offering focused on kids (initially 5th and 6th graders) and is all about enabling them to build a positive, vision video about their life. While there are many benefits: kids learning to communicate in a video age; learning and using hosted applications to create it; storyboarding out their vision and assembling it into a finished video; it's the essence of creating a vision video that is so powerful.&lt;/p&gt;

&lt;p class=&quot;flickr-yourcomment&quot;&gt;He and his team have enabled one school to date and I attended the in-school screening of the kids vision videos (there was an evening event too which I couldn't attend). You should've seen the faces of those kids who've done a vision video and shared it with their classmates, teachers, school and parents! I didn't even know these kids but connected with them on an emotional level as I looked at their hope-filled visions of the life they intend to create. It's mind-blowing that these positive feelings, beliefs, and joyful dreams live inside these little bodies and few of us ever have a chance to see how kids envision their future lives.&lt;/p&gt;

&lt;p class=&quot;flickr-yourcomment&quot;&gt;The evening event had parents all choked up as they watched these vision videos. My friend told me that one mom of a disabled boy came up to him afterwards, tears streaming down her face, and told him that she had no idea he had those sorts of dreams and intentions wrapped up inside his being. &amp;quot;I'll never look at him in quite the same way again,&amp;quot; she said with a mix of wonder and pride in her voice.&amp;nbsp; &lt;/p&gt;

&lt;p class=&quot;flickr-yourcomment&quot;&gt;Nothing happens until a vision of an outcome, of the future, or of possibility appears, and it's amazing when kids (or any of us) build a video that's a vision for our lives. Our hopes and dreams, our vision of the world as it could be, shifts our thought patterns and slowly moves our thinking to then create what could be.&lt;/p&gt;

&lt;p class=&quot;flickr-yourcomment&quot;&gt;My friend's vision is to have a &amp;quot;day&amp;quot; where kids all over the world show their videos of hope and possibility. Imagine that day, in a world where joy and hope is the focus and fueled by positive imagery, music, sound and visions of the future, being one where it's &amp;quot;The Day There Was Only Hope.&amp;quot;&lt;/p&gt;&lt;/div&gt;
&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/sborsch/ctd?a=exgclH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/sborsch/ctd?i=exgclH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/sborsch/ctd?a=HEw0Gh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/sborsch/ctd?i=HEw0Gh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Steve Borsch</name>
			<uri>http://www.iconnectdots.com/ctd/</uri>
		</author>
		<source>
			<title type="html">Connecting the Dots</title>
			<subtitle type="html">Guidance, Insight and Ideas in a Time of Accelerating Change</subtitle>
			<link rel="self" href="http://www.iconnectdots.com/ctd/atom.xml"/>
			<id>tag:typepad.com,2003:weblog-87858</id>
			<updated>2008-05-16T12:00:59+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Uliken On Politics</title>
		<link href="http://philcrissman.com/2008/05/14/uliken-on-politics" rel="alternate" title="Uliken On Politics" type="text/html"/>
		<id>http://philcrissman.com/?p=1608</id>
		<updated>2008-05-14T20:37:31+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://philcrissman.com/images/obama-mccain2.jpg&quot;&gt;&lt;img src=&quot;http://philcrissman.com/images/obama-mccain2.jpg&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Perhaps you&amp;#8217;ve seen &lt;a href=&quot;http://uliken.com&quot;&gt;ULiken.com&lt;/a&gt;? I&amp;#8217;m not sure if this &lt;a href=&quot;http://www.uliken.com/show/TQ6hkPk4npEb3mQfIdDTYw&quot;&gt;little contest&lt;/a&gt; will remain in equilibrium, but the precise 50/50 showing made a screenshot a necessity.&lt;/p&gt;</content>
		<author>
			<name>Phil Crissman</name>
			<uri>http://philcrissman.com</uri>
		</author>
		<source>
			<title type="html">philcrissman.com</title>
			<subtitle type="html">It's okay, I do this all the time</subtitle>
			<link rel="self" href="http://philcrissman.com/feed/atom/"/>
			<id>http://philcrissman.com/feed/atom</id>
			<updated>2008-05-16T15:00:10+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Type mnspeak, go to MNspeak, yes? Uh....</title>
		<link href="http://feeds.feedburner.com/~r/typepad/yourtechweblog/~3/290275599/type-mnspeak-go.html" rel="alternate" title="Type mnspeak, go to MNspeak, yes? Uh...." type="text/html"/>
		<id>tag:typepad.com,2003:post-49859594</id>
		<updated>2008-05-14T20:17:33+00:00</updated>
		<content type="html" xml:lang="en-US">&lt;p&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://yourtech.typepad.com/main/WindowsLiveWriter/untitled_89.png&quot;&gt;&lt;img width=&quot;370&quot; height=&quot;214&quot; border=&quot;0&quot; src=&quot;http://yourtech.typepad.com/main/WindowsLiveWriter/untitled_thumb_87.png&quot; alt=&quot;untitled&quot; /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Type &quot;mnspeak&quot; into the Firefox browser and you get the popular local &lt;a href=&quot;http://mnspeak.com&quot;&gt;MNspeak&lt;/a&gt; site, right?&lt;/p&gt; &lt;p&gt;Not so fast: Firefox is typically configured to do a Google search when words not ending in &quot;.com&quot; (or similar) are typed into the address field.&lt;/p&gt; &lt;p&gt;And the first hit for &quot;mnspeak&quot; in Google is &lt;a href=&quot;http://fimoculous.com/&quot;&gt;Fimoculous&lt;/a&gt;, the personal site of former MNspeak owner Rex Sorgatz. When I pointed this out to him, he responded as follows:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;Huh. That's interesting.&lt;/p&gt; &lt;p&gt;If you don't put a &quot;.com&quot; at the end of something in the Firefox address bar, it automatically does a Google search for that word and takes you to the first result. I'm apparently the first result for the term &quot;mnspeak&quot;: &lt;/p&gt; &lt;p&gt;&lt;a href=&quot;http://www.google.com/search?q=mnspeak&quot;&gt;http://www.google.com/search?q=mnspeak&lt;/a&gt;&lt;/p&gt; &lt;p&gt;-Rex&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;So is MNSpeak losing a lot of traffic this way? I haven't heard from the current management yet, but one Twitter user &lt;a href=&quot;http://twitter.com/schmelzenfreude/statuses/810558643&quot;&gt;mused&lt;/a&gt;:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;wondering how much traffic @&lt;a href=&quot;http://twitter.com/fimoculous&quot;&gt;fimoculous&lt;/a&gt; gets from firefox users like me who type in just the keyword mnspeak (no .com) and end up at his site...&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Maybe MNspeak needs to tweak its &lt;a href=&quot;http://www.google.com/search?q=seo&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;aq=t&amp;amp;rls=org.mozilla:en-US:official&amp;amp;client=firefox-a&quot;&gt;SEO&lt;/a&gt; a bit?&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=PdgN4H&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=PdgN4H&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=kxQ9Hh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=kxQ9Hh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=fOJpNh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=fOJpNh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=QTIy5H&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=QTIy5H&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=IalWSh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=IalWSh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Julio Ojeda-Zapata</name>
			<uri>http://yourtech.typepad.com/main/</uri>
		</author>
		<source>
			<title type="html">Your Tech Weblog</title>
			<link rel="self" href="http://yourtech.typepad.com/main/index.rdf"/>
			<id>tag:typepad.com,2003:weblog-43112</id>
			<updated>2008-05-14T21:01:50+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">I'm In a Morbid Saint Video!!</title>
		<link href="http://www.jasonbock.net/JB/Default.aspx?blog=entry.79b8725eb6a4403b870edd17444ca617" rel="alternate" title="I'm In a Morbid Saint Video!!" type="text/html"/>
		<id>http://www.jasonbock.net/JB/79b8725e-b6a4-403b-870e-dd17444ca617</id>
		<updated>2008-05-14T19:07:19+00:00</updated>
		<content type="html">&lt;p&gt;Now this is quite bizarre (i.e. don't ask how I thought of this), but there was a band from Sheboygan in the late 80s called Morbid Saint. They were the death-speed metal &quot;satan&quot; band (for lack of a better term) and Sardonyx (the band I was in) was the Christian alternative. Not that we were any better or worse, and frankly it wasn't that big of a deal. We ended up talking to them a couple of times and while I didn't get into their singing some of the songs were decent. On a whim, I decided to YouTube 'em, and I found this video:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;It's just a bunch of pictures, but I started looking at the pics, and I thought, hey, that's the battle of the bands we both did! I wonder if I got in on a picture...and I did (comes in around 1:18)!&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.jasonbock.net/JB/Images/MeInMorbidSaintPicture.jpg&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Too funny :).&lt;/p&gt;
&lt;p&gt;By the way, the guys next to me are the members of Sardonyx. The guy to my left is Mike Gooding (drummer), the guy to my right is Bryon Zimmermann (bassist/singer) and to Bryon's right is Tim Heinen (guitarist).&lt;/p&gt;</content>
		<author>
			<name>Jason Bock's Weblog</name>
			<uri>http://www.jasonbock.net/JB</uri>
		</author>
		<source>
			<title type="html">Jason Bock's Weblog</title>
			<subtitle type="html">Writing code, creating books, playing video games, and other stuff</subtitle>
			<link rel="self" href="http://www.jasonbock.net/JB/Rss.aspx"/>
			<id>http://www.jasonbock.net/JB/Rss.aspx</id>
			<updated>2008-05-16T15:01:06+00:00</updated>
			<rights type="html">Copyright 2005 Jason Bock</rights>
		</source>
	</entry>

	<entry>
		<title type="html">The Great JRuby Japanese Tour</title>
		<link href="http://headius.blogspot.com/2008/05/great-jruby-japanese-tour.html" rel="alternate" title="The Great JRuby Japanese Tour" type="text/html"/>
		<id>tag:blogger.com,1999:blog-20975090.post-4683995300507623856</id>
		<updated>2008-05-14T19:37:35+00:00</updated>
		<content type="html">Yes, friends, it's time one again for a JRuby tour. This trip, we're localizing to the islands of Japan. Do I have any Japanese readers out there?&lt;br /&gt;&lt;br /&gt;Here's our route for this trip...it's going to be a crazy ten days:&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;center&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;small&gt;&lt;a href=&quot;http://maps.google.com/maps/ms?ie=UTF8&amp;amp;oe=UTF-8&amp;amp;hl=en&amp;amp;msa=0&amp;amp;msid=107605916602742758676.00044d3853e936abfca11&amp;amp;ll=34.948991,135.615234&amp;amp;spn=2.502832,9.707885&amp;amp;source=embed&quot;&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span&gt;June 19: Tsukuba, Ruby Kaigi&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Tom Enebo and I will be presenting JRuby at the &lt;a href=&quot;http://jp.rubyist.net/RubyKaigi2008/english.html&quot;&gt;Ruby Kaigi 2008&lt;/a&gt; in Tsukuba this year, as well as meeting up with other Ruby implementers making the trip and communing with the locals. The Kaigi was great last year...lots of fun, great company, and an excellent community. We're both really excited about it. JRuby has come a long way, so we'll be doing a whirlwind tour of performance, Rails, GUI support, and finishing off with something special. It should be a great conference again this year.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;June 23: Matsue, Lecture at Shimane University, Meetup with Matz and Locals&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;We were invited to present JRuby at Shimane University, as part of a lecture series they're doing on Ruby. And since Matz is based on Matsue, we'll certainly meet up with him to talk a bit offline...I expect he'll be pulled many directions at the Kaigi.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;June 24: Fukuoka, Ruby Business Commons&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Tom did a keynote last year for the Ruby Business Commons, a group of Rubyists proactively trying to bring Ruby to the business community. I suspect we'll deliver another talk or just meet up with them and see how things have progressed in the past year. At any rate, Tom enjoyed the trip to Fukuoka, so I'm looking forward to this.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;June 25-27: Tokyo, meetup with local partners, universities, Rubyists?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Whenever Tom and I travel to Japan or meet up with Japanese associates, we put ourselves entirely in the hands of Sun Japan, and specifically our excellent friend and guide Takashi Shitamichi. So far, the Tokyo leg of our trip has a few embedded question marks, but I'm sure Shitamichi-san will be able to fill our days from dawn until dusk with events. Hopefully we'll have a little time to take a breath and poke around Tokyo again, but either way it will be a great end to the tour.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;Spreading the Word&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I'd really like to jam in as much Ruby and JRuby meetups, discussions, and talks as possible on this trip, so feel free to reblog (and perhaps translate) this entry, contact me, Tom, and Takashi directly...especially if you know of any good events while we're in Tokyo. And if you're press, Takashi can certainly hook you up if there's time in the tour (for emails...use firstname.lastname@sun.com).&lt;br /&gt;&lt;br /&gt;JRuby is ready for the Japanese Ruby community, and we're coming to town to help send it off!</content>
		<author>
			<name>Charles Oliver Nutter</name>
			<email>noreply@blogger.com</email>
			<uri>http://headius.blogspot.com/</uri>
		</author>
		<source>
			<title type="html">Headius</title>
			<link rel="self" href="http://headius.blogspot.com/feeds/posts/default"/>
			<id>tag:blogger.com,1999:blog-20975090</id>
			<updated>2008-05-15T19:00:29+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-US">
		<title type="html">Jason Alba With Minnesota Recruiters At JobDig</title>
		<link href="http://feeds.feedburner.com/~r/MNHeadhunter/~3/290340607/jason-alba-with.html" rel="alternate" title="Jason Alba With Minnesota Recruiters At JobDig" type="text/html"/>
		<id>http://www.mnheadhunter.com/mh/2008/05/jason-alba-with.html</id>
		<updated>2008-05-14T18:17:31+00:00</updated>
		<content type="html">&lt;p&gt; &lt;p&gt;April 28,&lt;sup&gt; &lt;/sup&gt;2008 we had our first &lt;a href=&quot;http://www.minnesotarecruiters.com/&quot;&gt;Minnesota Recruiters&lt;/a&gt; topic session. We were fortunate that Jason Alba of &lt;a href=&quot;http://www.jibberjobber.com/&quot;&gt;JibberJobber.com&lt;/a&gt; was in Minneapolis for the week and had time to speak with us. &lt;/p&gt; &lt;p&gt;This was the first time in a 2+ year online and phone friendship that I was able to meet Jason in person.&lt;/p&gt; &lt;p&gt;Here is the PR material for the event:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;&lt;strong&gt;Social Tools and Technologies for Recruiters&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;LinkedIn is obviously a powerful tool for recruiters.&amp;nbsp; What about other social tools, such as Facebook, Twitter and blogs?&amp;nbsp; How can recruiters develop and execute a social networking strategy that will help them find new (and passive) candidates, engage with them and develop a relationship, enriching their candidate pool? Join Jason Alba as he shares what he’s learned as a job seeker and career management advocate, taking you on a tour of successful recruiter strategies with these four technologies.&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;How Jason started JibberJobber.com is a most interesting story which you can find by clicking &lt;a href=&quot;http://www.jibberjobber.com/about_us.php&quot;&gt;Jason Alba’s Story&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Here are some more links for Jason:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href=&quot;http://www.JibberJobber.com&quot;&gt;http://www.JibberJobber.com&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href=&quot;http://www.JibberJobber.com/blog&quot;&gt;http://www.JibberJobber.com/blog&lt;/a&gt;&lt;/li&gt; &lt;li&gt;I'm on LinkedIn - Now What??? &lt;a href=&quot;http://LinkedInHelp.com&quot;&gt;http://LinkedInHelp.com&lt;/a&gt;&lt;/li&gt; &lt;li&gt;I'm on Facebook - Now What??? &lt;a href=&quot;http://ImOnFacebookNowWhat.com&quot;&gt;http://ImOnFacebookNowWhat.com&lt;/a&gt;&lt;/li&gt; &lt;li&gt;YOU are CEO of You, Inc.&amp;nbsp; &lt;a href=&quot;http://www.JibberJobber.com/CEO&quot;&gt;http://www.JibberJobber.com/CEO&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Jason covered a lot of material in 90 minutes including the use of &lt;a href=&quot;http://www.linkedin.com/&quot; target=&quot;_blank&quot;&gt;LinkedIn&lt;/a&gt;, &lt;a href=&quot;http://www.facebook.com&quot; target=&quot;_blank&quot;&gt;Facebook&lt;/a&gt;, &lt;a href=&quot;http://www.twitter.com&quot; target=&quot;_blank&quot;&gt;Twitter&lt;/a&gt;, Blogs and more. &lt;/p&gt; &lt;p&gt;He also focused on the need to be authentic and transparent. Two traits that are vital when being online and I would say should be obvious things to do but I find many recruiters not doing it.&lt;/p&gt; &lt;p&gt;We had 40+ recruiters in the room and feedback from the event was very positive.&lt;/p&gt; &lt;p&gt;Jason sold some books and I picked up six for the Minnesota Recruiters (un)Conference.&lt;/p&gt; &lt;p&gt;I really appreciate the help from Toby Dayton and Molly Moseley of &lt;a href=&quot;http://www.jobdig.com/&quot;&gt;JobDig&lt;/a&gt;. They were great hosts and I look forward to doing this with them again.&lt;/p&gt; &lt;p&gt;After the event Jason, &lt;a href=&quot;http://www.collegerecruiter.com/&quot;&gt;Steven Rothberg&lt;/a&gt;, &lt;a href=&quot;http://www.recruitingimpact.com/&quot;&gt;Rick Deare&lt;/a&gt;, &lt;a href=&quot;http://www.getfreshminds.com/&quot;&gt;Katie Konrath&lt;/a&gt; and I had dinner where I kept the group somewhat amused with my many questions including why recruiters only post on job boards and do not take advantage of other tools. Many thanks to Steven for picking up the dinner bill. &lt;/p&gt; &lt;p&gt;Here are some blog posts about the event:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href=&quot;http://recruitingimpact.com/2008/05/01/im-on-linkedin-now-what/&quot;&gt;I’m On LinkedIn, Now What???&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href=&quot;http://staffingtechnology.blogspot.com/2008/04/jason-alba-explains-twitter.html&quot;&gt;Jason Alba Explains Twitter&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href=&quot;http://hrsearchmarketing.blogspot.com/2008/04/social-tools-and-technologies-w-jason.html&quot;&gt;Social Tools and Technologies w/ Jason Alba&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href=&quot;http://blogs.jobdig.com/diggings/2008/04/30/jobdig-hosts-jason-alba-for-a-discussion-of-social-media/&quot;&gt;JobDig Hosts Jason Alba For A Discussion Of Social Media &lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href=&quot;http://www.collegerecruiter.com/weblog/2008/04/jason_alba_expl.php&quot;&gt;Jason Alba Explains Social Media&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Here are a few pictures:&lt;/p&gt; &lt;p&gt;&lt;a href=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/Minnesota%20Recruiters%20with%20Jason%20Alba,%20Jason%20Alba.jpg&quot;&gt;&lt;img height=&quot;186&quot; alt=&quot;Minnesota Recruiters with Jason Alba, Jason Alba&quot; src=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/Minnesota%20Recruiters%20with%20Jason%20Alba,%20Jason%20Alba_thumb.jpg&quot; width=&quot;240&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/Minnesota%20Recruiters%20with%20Jason%20Alba,%20group%20photo.jpg&quot;&gt;&lt;img height=&quot;135&quot; alt=&quot;Minnesota Recruiters with Jason Alba, group photo&quot; src=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/Minnesota%20Recruiters%20with%20Jason%20Alba,%20group%20photo_thumb.jpg&quot; width=&quot;240&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;&lt;a href=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/Minnesota%20Recruiters%20with%20Jason%20Alba,%20Paul.jpg&quot;&gt;&lt;img height=&quot;240&quot; alt=&quot;Minnesota Recruiters with Jason Alba, Paul&quot; src=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/Minnesota%20Recruiters%20with%20Jason%20Alba,%20Paul_thumb.jpg&quot; width=&quot;183&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/Minnesota%20Recruiters%20with%20Jason%20Alba,%20Jason%20and%20Nicole.jpg&quot;&gt;&lt;img height=&quot;201&quot; alt=&quot;Minnesota Recruiters with Jason Alba, Jason and Nicole&quot; src=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/Minnesota%20Recruiters%20with%20Jason%20Alba,%20Jason%20and%20Nicole_thumb.jpg&quot; width=&quot;240&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;And here is a short video from the beginning of the event: &lt;p&gt; &lt;div class=&quot;wlWriterSmartContent&quot; id=&quot;scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:d00b81ae-5bd9-46b7-ab2f-2394a649855e&quot;&gt;&lt;div id=&quot;c7f10a89-c79f-4c18-9c86-3757cb278760&quot;&gt;&lt;div&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=5d5PRsgm_dc&amp;amp;hl=en&quot; target=&quot;_new&quot;&gt;&lt;img src=&quot;http://www.mnheadhunter.com/mh/WindowsLiveWriter/video966bde2cc21e.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/MNHeadhunter/~4/290340607&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;/p&gt;&lt;/p&gt;</content>
		<author>
			<name>MN Headhunter</name>
			<uri>http://www.mnheadhunter.com/mh/</uri>
		</author>
		<source>
			<title type="html">MN Headhunter/Nerd Search</title>
			<link rel="self" href="http://www.mnheadhunter.com/mh/atom.xml"/>
			<id>tag:typepad.com,2003:weblog-153513</id>
			<updated>2008-05-14T22:00:50+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Rainn Wilson on SNL</title>
		<link href="http://philcrissman.com/2008/05/14/rainn-wilson-on-snl" rel="alternate" title="Rainn Wilson on SNL" type="text/html"/>
		<id>http://philcrissman.com/?p=1607</id>
		<updated>2008-05-14T18:04:30+00:00</updated>
		<content type="html">&lt;p&gt;I don&amp;#8217;t find SNL that funny very often, but this is pretty fun.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</content>
		<author>
			<name>Phil Crissman</name>
			<uri>http://philcrissman.com</uri>
		</author>
		<source>
			<title type="html">philcrissman.com</title>
			<subtitle type="html">It's okay, I do this all the time</subtitle>
			<link rel="self" href="http://philcrissman.com/feed/atom/"/>
			<id>http://philcrissman.com/feed/atom</id>
			<updated>2008-05-16T15:00:10+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">The Power of Firehoses</title>
		<link href="http://www.jasonbock.net/JB/Default.aspx?blog=entry.136d2e298bac4f37856faba6be7df151" rel="alternate" title="The Power of Firehoses" type="text/html"/>
		<id>http://www.jasonbock.net/JB/136d2e29-8bac-4f37-856f-aba6be7df151</id>
		<updated>2008-05-14T17:42:58+00:00</updated>
		<content type="html">&lt;p&gt;My brother-in-law is a volunteer fireman - I think he'd get a kick out of this:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</content>
		<author>
			<name>Jason Bock's Weblog</name>
			<uri>http://www.jasonbock.net/JB</uri>
		</author>
		<source>
			<title type="html">Jason Bock's Weblog</title>
			<subtitle type="html">Writing code, creating books, playing video games, and other stuff</subtitle>
			<link rel="self" href="http://www.jasonbock.net/JB/Rss.aspx"/>
			<id>http://www.jasonbock.net/JB/Rss.aspx</id>
			<updated>2008-05-16T15:01:06+00:00</updated>
			<rights type="html">Copyright 2005 Jason Bock</rights>
		</source>
	</entry>

	<entry>
		<title type="html">The Ethics of Vulnerability Research</title>
		<link href="http://www.schneier.com/blog/archives/2008/05/the_ethics_of_v.html" rel="alternate" title="The Ethics of Vulnerability Research" type="text/html"/>
		<id>http://www.schneier.com/blog/archives/2008/05/the_ethics_of_v.html</id>
		<updated>2008-05-14T17:29:45+00:00</updated>
		<content type="html">The standard way to take control of someone else's computer is by exploiting a vulnerability in a software program on it. This was true in the 1960s when buffer overflows were first exploited to attack computers. It was true in 1988 when the Morris worm exploited a Unix vulnerability to attack computers on the Internet, and it's still how most...&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/schneier/excerpts?a=fAnrFH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/schneier/excerpts?i=fAnrFH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Schneier on Security</name>
			<uri>http://www.schneier.com/blog/</uri>
		</author>
		<source>
			<title type="html">Schneier on Security</title>
			<subtitle type="html">A blog covering security and security technology.</subtitle>
			<link rel="self" href="http://www.schneier.com/blog/index.xml"/>
			<id>http://www.schneier.com/blog/index.xml</id>
			<updated>2008-05-16T12:01:37+00:00</updated>
			<rights type="html">Copyright 2008 Bruce Schneier</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Speaking at FlashBelt again this year</title>
		<link href="http://blog.dannypatterson.com/?p=146" rel="alternate" title="Speaking at FlashBelt again this year" type="text/html"/>
		<id>http://blog.dannypatterson.com/?p=146</id>
		<updated>2008-05-14T17:05:18+00:00</updated>
		<content type="html">&lt;p&gt;I&amp;#8217;ll be speaking at &lt;a href=&quot;http://www.flashbelt.com&quot; target=&quot;_blank&quot;&gt;FlashBelt&lt;/a&gt; again for the fourth straight year in June.  I&amp;#8217;ve spoken at this conference every year since I moved to Minneapolis in 2005.  It&amp;#8217;s a great conference that brings in both local and national attendees.  My session is titled &lt;em&gt;Distribution and Installation Strategies for AIR&lt;/em&gt; and will cover the following:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Flash and Flex developers have been spoiled by the fact that most of our applications are distributed over the internet through the browser and Flash Player.  We didn&amp;#8217;t have to worry about installation or updates within an application.  This session will walk you through the process of building a custom badge using Flex that handles the installation, update and launch of your AIR application from within a browser.  We&amp;#8217;ll also look at how to implement an update feature within your Flex AIR application so your users can always have the most recent version of your application.&lt;/p&gt;&lt;/blockquote&gt;</content>
		<author>
			<name>Danny Patterson</name>
			<uri>http://blog.dannypatterson.com</uri>
		</author>
		<source>
			<title type="html">Danny Patterson</title>
			<link rel="self" href="http://www.dannypatterson.com/XML/rss.xml"/>
			<id>http://www.dannypatterson.com/XML/rss.xml</id>
			<updated>2008-05-16T04:02:17+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">CommunityEngine Updated to v0.10.0</title>
		<link href="http://www.missingmethod.com/2008/05/14/communityengine-updated-to-v0100/" rel="alternate" title="CommunityEngine Updated to v0.10.0" type="text/html"/>
		<id>http://www.missingmethod.com/2008/05/14/communityengine-updated-to-v0100/</id>
		<updated>2008-05-14T16:39:47+00:00</updated>
		<content type="html">&lt;p&gt;Just wanted to let everyone know &lt;a href=&quot;http://github.com/bborn/communityengine/commits/v0.10.0&quot;&gt;I tagged a new version of CommunityEngine&lt;/a&gt; which adds support for draft and published states for blog posts. Please note, this requires a new migration, so if you previously installed CE, you&amp;#8217;ll have to run&lt;/p&gt;
&lt;pre&gt;ruby script/generate plugin_migration&lt;/pre&gt;
&lt;p&gt;and then&lt;/p&gt;
&lt;pre&gt;rake db:migrate&lt;/pre&gt;
&lt;p&gt;Don&amp;#8217;t know about CommunityEngine yet? Well, it&amp;#8217;s a free, open-source social network plugin for Ruby on Rails applications. Drop it into your new or existing application, and you’ll instantly have all the features of a basic community site.  Read the &lt;a href=&quot;http://www.missingmethod.com/2008/05/05/announcing-communityengine-a-social-networking-plugin-for-ruby-on-rails/&quot;&gt;announcement post&lt;/a&gt; or &lt;a href=&quot;http://www.missingmethod.com/projects/community_engine/&quot;&gt;check out the CommunityEngine site.&lt;/a&gt;
&lt;/p&gt;</content>
		<author>
			<name>Missing Method</name>
			<uri>http://www.missingmethod.com</uri>
		</author>
		<source>
			<title type="html">MissingMethod</title>
			<subtitle type="html">Build Something Beautiful</subtitle>
			<link rel="self" href="http://www.missingmethod.com/feed/atom/"/>
			<id>http://www.missingmethod.com/feed/atom/</id>
			<updated>2008-05-15T18:00:51+00:00</updated>
		</source>
	</entry>

	<entry>
		<title type="html">Funny spam-themed mail from local reader</title>
		<link href="http://feeds.feedburner.com/~r/typepad/yourtechweblog/~3/290245294/funny-spam-them.html" rel="alternate" title="Funny spam-themed mail from local reader" type="text/html"/>
		<id>tag:typepad.com,2003:post-49857178</id>
		<updated>2008-05-14T15:39:58+00:00</updated>
		<content type="html" xml:lang="en-US">&lt;div&gt;&lt;p&gt;&lt;a href=&quot;http://blog.lib.umn.edu/wilsper/informationcentral/spam.jpg&quot;&gt;&lt;img height=&quot;300&quot; alt=&quot;spam&quot; src=&quot;http://yourtech.typepad.com/main/WindowsLiveWriter/spam.jpg&quot; width=&quot;366&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;This e-mail from a St. Paul reader made me laugh so hard that I had to share it with you:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;Dear Julio Ojeda-Zapata:  &lt;p&gt;You're my main source, on &lt;a href=&quot;http://www.publicradio.org/columns/futuretense/&quot;&gt;MPR&lt;/a&gt; and in the &lt;a href=&quot;http://www.twincities.com/techtestdrive&quot;&gt;Pioneer Press&lt;/a&gt;, for daily tech news, thanks so much. And I'm so amazed at this that I have to point it out to you.  &lt;p&gt;I just went to my Trend Micro spam filter and found that ONLY ONE of the first 100 had to do with Viagra! They're ALL financial--loans, credit, and gambling.  &lt;p&gt;Did they get the memo about my lack of a penis? Do they know something about my finances that I don't know? Could there possibly be a more stunning demonstration of the shift in the economic climate?&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=kUG4vH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=kUG4vH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=g4lH9h&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=g4lH9h&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=4Cp8Wh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=4Cp8Wh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=aqdItH&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=aqdItH&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?a=QCyAlh&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/typepad/yourtechweblog?i=QCyAlh&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<author>
			<name>Julio Ojeda-Zapata</name>
			<uri>http://yourtech.typepad.com/main/</uri>
		</author>
		<source>
			<title type="html">Your Tech Weblog</title>
			<link rel="self" href="http://yourtech.typepad.com/main/index.rdf"/>
			<id>tag:typepad.com,2003:weblog-43112</id>
			<updated>2008-05-14T21:01:50+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en-GB">
		<title type="html">New Blog Postings - Silverlight for Enterprises</title>
		<link href="http://feeds.feedburner.com/~r/Slickthought/~3/290449230/post.aspx" rel="alternate" title="New Blog Postings - Silverlight for Enterprises" type="text/html"/>
		<id>http://www.slickthought.net/post.aspx?id=f4985409-032f-4f11-93c8-362fae7c6aab</id>
		<updated>2008-05-14T15:08:36+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.slickthought.net/image.axd?picture=WindowsLiveWriter/NewBlogPostingsSilverlightforEnterprises_E29F/logo_2.jpg&quot;&gt;&lt;img height=&quot;100&quot; alt=&quot;logo&quot; src=&quot;http://www.slickthought.net/image.axd?picture=WindowsLiveWriter/NewBlogPostingsSilverlightforEnterprises_E29F/logo_thumb.jpg&quot; width=&quot;244&quot; align=&quot;left&quot; border=&quot;0&quot; /&gt;&lt;/a&gt; I wanted to call your attention to a series of articles that a co-worker and friend, &lt;a href=&quot;http://blogs.msdn.com/hanuk&quot;&gt;Hanu Kommalapati's&lt;/a&gt; will be writing.&amp;nbsp; He just posted his &lt;a href=&quot;http://blogs.msdn.com/hanuk/archive/2008/05/11/silverlight-for-the-enterprises-fundamentals.aspx&quot;&gt;first entry on &quot;Fundamentals&quot;&lt;/a&gt; and will continue on to cover things like security, architecture, deployment, and more.&amp;nbsp; Hanu is one of those people that falls into my &quot;wicked smart&quot; category.&amp;nbsp; Hanu does a great job of looking at things through a customer's eyes and then articulating technical information in an approachable way.&amp;nbsp; I just wish he would post more!!!&lt;/p&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/Slickthought/~4/290449230&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>SlickThought.Net</name>
			<uri>http://www.slickthought.net/</uri>
		</author>
		<source>
			<title type="html">SlickThought.Net</title>
			<subtitle type="html">Thoughts, rants and a few useful tidbits</subtitle>
			<link rel="self" href="http://feeds.feedburner.com/slickthought"/>
			<id>http://feeds.feedburner.com/slickthought</id>
			<updated>2008-05-14T22:02:25+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">The Boys</title>
		<link href="http://www.jasonbock.net/JB/Default.aspx?blog=entry.d7bdee45913d4b338933a5a1d332c36f" rel="alternate" title="The Boys" type="text/html"/>
		<id>http://www.jasonbock.net/JB/d7bdee45-913d-4b33-8933-a5a1d332c36f</id>
		<updated>2008-05-14T14:13:46+00:00</updated>
		<content type="html">&lt;p&gt;I haven't posted a picture of my boys in a while - he's a great one we got recently:&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.jasonbock.net/JB/Images/HaydenAndRyan.jpg&quot; /&gt; &lt;/p&gt;</content>
		<author>
			<name>Jason Bock's Weblog</name>
			<uri>http://www.jasonbock.net/JB</uri>
		</author>
		<source>
			<title type="html">Jason Bock's Weblog</title>
			<subtitle type="html">Writing code, creating books, playing video games, and other stuff</subtitle>
			<link rel="self" href="http://www.jasonbock.net/JB/Rss.aspx"/>
			<id>http://www.jasonbock.net/JB/Rss.aspx</id>
			<updated>2008-05-16T15:01:06+00:00</updated>
			<rights type="html">Copyright 2005 Jason Bock</rights>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Fortunate</title>
		<link href="http://www.jasonbock.net/JB/Default.aspx?blog=entry.944a55563fa249fc82fc5137f141efcc" rel="alternate" title="Fortunate" type="text/html"/>
		<id>http://www.jasonbock.net/JB/944a5556-3fa2-49fc-82fc-5137f141efcc</id>
		<updated>2008-05-14T13:41:47+00:00</updated>
		<content type="html">&lt;p&gt;I'm sitting here this morning, coding away, listening to some great songs, and all I can think of is this word: fortunate.&lt;/p&gt;
&lt;p&gt;How fortunate I am to have the job that I do.&lt;/p&gt;
&lt;p&gt;How fortunate I am to have met such a wonderful person in Liz.&lt;/p&gt;
&lt;p&gt;How fortunate I am to have such amazing boys: Hayden and Ryan.&lt;/p&gt;
&lt;p&gt;How fortunate I am to have a house to live in.&lt;/p&gt;
&lt;p&gt;How fortunate I am to have great parents.&lt;/p&gt;
&lt;p&gt;How fortunate I am to have all the stuff that I do :).&lt;/p&gt;
&lt;p&gt;How fortunate I am to have the education I do.&lt;/p&gt;
&lt;p&gt;How fortunate I am to not have gone down other paths in my life.&lt;/p&gt;
&lt;p&gt;There are probably lots of other things I could think of, but that's the word of the day: fortunate. Yes, we all are responsible for our lives due to the choices we make, but sometimes things happen that we really didn't control, and sometimes those things can be amazing, wonderful things.&lt;/p&gt;
&lt;p&gt;Just think of what you're fortunate of. Blog it, if you wish.&lt;/p&gt;</content>
		<author>
			<name>Jason Bock's Weblog</name>
			<uri>http://www.jasonbock.net/JB</uri>
		</author>
		<source>
			<title type="html">Jason Bock's Weblog</title>
			<subtitle type="html">Writing code, creating books, playing video games, and other stuff</subtitle>
			<link rel="self" href="http://www.jasonbock.net/JB/Rss.aspx"/>
			<id>http://www.jasonbock.net/JB/Rss.aspx</id>
			<updated>2008-05-16T15:01:06+00:00</updated>
			<rights type="html">Copyright 2005 Jason Bock</rights>
		</source>
	</entry>

	<entry>
		<title type="html">U.S. Air Force Considers Creating its Own Botnet</title>
		<link href="http://www.schneier.com/blog/archives/2008/05/air_force_consi.html" rel="alternate" title="U.S. Air Force Considers Creating its Own Botnet" type="text/html"/>
		<id>http://www.schneier.com/blog/archives/2008/05/air_force_consi.html</id>
		<updated>2008-05-14T12:09:50+00:00</updated>
		<content type="html">Stories here. Actually, I think this is a fine idea -- as long as they only use computers that they legally own....&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.f