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

<channel>
	<title>krynsky.com &#187; drupal</title>
	<atom:link href="http://krynsky.com/tag/drupal/feed/" rel="self" type="application/rss+xml" />
	<link>http://krynsky.com</link>
	<description>eclectic mix of technology, poetry, and my ramblings</description>
	<lastBuildDate>Sat, 31 Dec 2011 04:29:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to Empower Co-workers and Leverage Web Services to Publish Your Website</title>
		<link>http://krynsky.com/how-to-empower-co-workers-and-leverage-web-services-to-publish-your-website/</link>
		<comments>http://krynsky.com/how-to-empower-co-workers-and-leverage-web-services-to-publish-your-website/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 00:52:05 +0000</pubDate>
		<dc:creator>Mark Krynsky</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[blake-lucchesi]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[piaxp]]></category>
		<category><![CDATA[progressive-insurance-automotive-x-prize]]></category>
		<category><![CDATA[x-prize]]></category>
		<category><![CDATA[xprize]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://krynsky.com/?p=23654</guid>
		<description><![CDATA[I manage all the websites and related services for the X PRIZE Foundation. In the latest iteration of the re-design of our Progressive Insurance Automotive X PRIZE website I wanted to...]]></description>
			<content:encoded><![CDATA[<p>I manage all the websites and related services for the <a href="http://xprize.org" target="_blank">X PRIZE Foundation</a>. In the latest iteration of the re-design of our <a href="http://www.progressiveautoxprize.org/" target="_blank">Progressive Insurance Automotive X PRIZE</a> website I wanted to streamline the workflow and enable several co-workers to easily publish content to our website. I&#8217;m pretty happy with how things turned out and wanted to share what we did so that it may help you thinking of ways you can utilize some of these some of these methods for your own website.</p>
<p>We use <a href="http://drupal.org" target="_blank">Drupal</a> to power all of our in-house websites but these methods could be applied to any CMS (content management systems) that are out there. Our sites are visually rich as we have an in-house creative services department that generates a large number of videos and photos. We post these videos to our <a href="http://youtube.com/xprize" target="_blank">YouTube channel</a> as well as our website. The workflow to get them on our website would normally take several steps of sending the request along with details which then get published through our CMS and eventually added to the site. This is just one example. We are a pretty small group and I wanted to find ways to reduce the timeframe, people, and steps involved to accomplish publishing content to our site.</p>
<p>So I looked at all the web services we were currently using to determine how we could leverage them in a home page redesign. The plan was to make it so the content could be dynamically updated by my co-workers by utilizing the services they were publishing content to already or in some cases create new ones. Below is an image with numbered areas that I will break down explaining how we accomplished this.</p>
<p><a href="http://www.progressiveautoxprize.org/"><img class="size-full wp-image-23658 alignnone" style="border: 1px solid black;" title="piaxp_homepage" src="http://krynsky.com/wp-content/uploads/2010/10/piaxp_homepage.jpg" alt="" width="625" height="691" /></a></p>
<p><strong>1.</strong> For our latest videos section we created a YouTube Playlist and pull the first four videos from there to populate this section. We&#8217;re utilizing the <a href="http://www.youtube.com/dev" target="_blank">YouTube API</a> to pull the thumbnail and video title to be displayed here. We also then utilize <a href="http://jquery.com/demo/thickbox/" target="_blank">ThickBox</a> to display the video and keep the user on our site. Our YouTube channel is managed by someone on our creative services team so they can easily control which videos appear here without having to request any changes to my team.</p>
<p><strong>2.</strong> Our photos section is powered by a <a href="http://www.flickr.com/photos/progressiveautoxprize/sets/72157624904171800/" target="_blank">Flickr Set</a>. A member of our creative services team who has full control to easily add or remove images to appear in this section. We are utilizing the <a href="http://www.flickr.com/services/api/" target="_blank">Flickr API</a> and also display the photos using ThickBox and allow you to scroll through them. To keep it fresh we randomly pull images from this set upon every page load.</p>
<p><strong>3.</strong> For our top stories section we created an account on Delicious. A member of our communications team then <a href="http://www.delicious.com/xprize/piaxp" target="_blank">bookmarks stories they want to appear here using a specific tag</a>. The reason for the tag is that we have several that we use to publish to various areas of our websites. We then take the RSS feed generated by this tag and process it using the <a href="http://simplepie.org/" target="_blank">Simplepie script</a> to display here.</p>
<p><strong>4.</strong> For this section we took all the RSS feeds from the blogs of the teams that were competing and processed them through Simplepie to display here. The output was displayed in reverse chronological order and we limited it to only show a single post per team so that nobody could flood the feed. We also renamed several of the blog feed titles as necessary along with formatting the output and date.</p>
<p>Having distributed these publishing responsibilities to additional people in the company and utilizing externals services gives us many advantages. It removes web production involvement, it puts the publishing power in the hands of the department, and it speeds up the time to publish. It&#8217;s a win, win, win. Of course there are many considerations before this can be implemented. You need to make sure that your organization has the approval processes and ability to support it. You also need to have steps in place to deal with the reliance of external services which may include utilizing caching and local asset backups.</p>
<p>I&#8217;ve been very happy with the outcome thus far and  These are just some examples that I hope you find helpful. There are so many ways that web services can be utilized both for publishing content and streamlining workflow and I continue to look at ways to expand on these methods in other areas of our sites.</p>
<p>Lastly, I want to give a shout out to <a href="http://twitter.com/blakelucchesi" target="_blank">Blake Lucchesi</a> who developed the functionality described in this post within Drupal for us.</p>
]]></content:encoded>
			<wfw:commentRss>http://krynsky.com/how-to-empower-co-workers-and-leverage-web-services-to-publish-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://krynsky.com/wp-content/uploads/2010/10/piaxp_homepage-150x150.jpg" />
		<media:content url="http://krynsky.com/wp-content/uploads/2010/10/piaxp_homepage.jpg" medium="image">
			<media:title type="html">piaxp_homepage</media:title>
			<media:thumbnail url="http://krynsky.com/wp-content/uploads/2010/10/piaxp_homepage-150x150.jpg" />
		</media:content>
	</item>
		<item>
		<title>Pushing a Geek Agenda with Trending Topics</title>
		<link>http://krynsky.com/pushing-a-geek-agenda-with-trending-topics/</link>
		<comments>http://krynsky.com/pushing-a-geek-agenda-with-trending-topics/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 19:08:44 +0000</pubDate>
		<dc:creator>Mark Krynsky</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[confession]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[pligg]]></category>
		<category><![CDATA[trending]]></category>
		<category><![CDATA[trending-topics]]></category>

		<guid isPermaLink="false">http://krynsky.com/?p=723</guid>
		<description><![CDATA[I’ve seen my share of bitching and moaning about how lame the trending topics on Twitter have become. Well with the mainstream comes the TMZ crowd so unfortunately it’s a...]]></description>
			<content:encoded><![CDATA[<p>I’ve seen my share of bitching and moaning about how lame the trending topics on Twitter have become. Well with the mainstream comes the TMZ crowd so unfortunately it’s a sign of the times. Remember when geeks ran Twitter? Remember <a href="http://colorwar2008.com/" target="_blank">Color Wars</a>? Hopefully in the future we&#8217;ll be able to have trending topics created based on our social graph. But until that day comes, I had a goofy idea thinking it might be fun to have a weekly organized way to promote geekdom across the trendingsphere. That idea came in the way of trying to create a geek meme on a weekly basis.</p>
<p><a href="http://graphjam.com/2009/05/03/song-chart-memes-things-twittered/"><img class="mine_4054411" title="song-chart-memes-things-twittered" src="http://graphjam.wordpress.com/files/2009/04/song-chart-memes-things-twittered.jpg" alt="song chart memes" /></a><br />
see more <a href="http://graphjam.com">Funny Graphs</a></p>
<p>My idea would be to throw up a site where people could come up with ideas for a topic that is voted on a weekly basis and then executed on a given day. Perhaps it could be known as #trendingtuesday.  The website would also provide an archive of #trendingtuesday’s past. I could probably throw up the site fairly easily using a CMS platform like <a href="http://www.pligg.com/" target="_blank">Pligg</a> or cobble one together with <a href="http://drupal.org" target="_blank">Drupal</a> to get things started. It would also be cool to have a real-time feed of the topic on the site during the day it runs. Perhaps this is just my brain acting up since I may be over caffeinated but I thought it might be fun to do.</p>
<p>I’ll start it off today with the idea that got me thinking about this in the first place. I thought it would be fun to reveal things that we may be embarrassed to admit in the form of <a href="http://search.twitter.com/search?q=geekconfessions" target="_blank">#geekconfessions</a>. (Note: Guess I’m not the innovator here. I just searched Twitter and it appears that <a href="http://twitter.com/direflail/statuses/2915776515" target="_blank">@direflail</a> came up with this idea as well).  So I plan on shooting out a few tweets today using the hashtag and see where it goes.</p>
<p>So if this doesn’t take off, how about using a similar plan to create a trending topic calling out the actions of #douchebags? Now that sounds like a very necessary public service.</p>
]]></content:encoded>
			<wfw:commentRss>http://krynsky.com/pushing-a-geek-agenda-with-trending-topics/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:thumbnail url="http://graphjam.wordpress.com/files/2009/04/song-chart-memes-things-twittered.jpg" />
		<media:content url="http://graphjam.wordpress.com/files/2009/04/song-chart-memes-things-twittered.jpg" medium="image">
			<media:title type="html">song-chart-memes-things-twittered</media:title>
		</media:content>
	</item>
		<item>
		<title>Highlights from DrupalCamp LA 2008</title>
		<link>http://krynsky.com/highlights-and-reflections-from-drupalcamp-la-2008/</link>
		<comments>http://krynsky.com/highlights-and-reflections-from-drupalcamp-la-2008/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 04:31:35 +0000</pubDate>
		<dc:creator>Mark Krynsky</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[aaron-stewart]]></category>
		<category><![CDATA[acquia]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[blake-lucchesi]]></category>
		<category><![CDATA[chris-charlton]]></category>
		<category><![CDATA[cloud-computing]]></category>
		<category><![CDATA[crystal-williams]]></category>
		<category><![CDATA[drupalcampla]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[ethan-kaplan]]></category>
		<category><![CDATA[geany]]></category>
		<category><![CDATA[jmeter]]></category>
		<category><![CDATA[jonathan-lambert]]></category>
		<category><![CDATA[kieran-lal]]></category>
		<category><![CDATA[leisa-reichelt]]></category>
		<category><![CDATA[mike-stewart]]></category>
		<category><![CDATA[opcode]]></category>
		<category><![CDATA[scribes]]></category>
		<category><![CDATA[su2c]]></category>
		<category><![CDATA[viktor-kane]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[workhabit]]></category>

		<guid isPermaLink="false">http://krynsky.com/?p=340</guid>
		<description><![CDATA[So I&#8217;ve been an active Drupal user now for about a year and a half. It all started when I managed the migration of the X PRIZE Foundation websites to...]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-350" title="drupalcampla_2008" src="http://krynsky.com/wp-content/uploads/2008/09/drupalcampla_2008.png" alt="" width="151" height="169" />So I&#8217;ve been an active <a href="http://drupal.org">Drupal </a>user now for about a year and a half. It all started when I managed the migration of the <a href="http://www.xprize.org/" target="_blank">X PRIZE Foundation</a> websites to Drupal. Very early on in that process I knew that I had come across a very special software platform and I continue to be amazed by it all the time.</p>
<p>In February of this year I discovered the <a href="http://ladrupal.org/" target="_blank">LA Drupal User Group</a>. It&#8217;s true what they say, Drupal is all about its community which I&#8217;ve now directly experienced the benefits of having attended several meetings and becoming friends with some great people. In my attempt to contribute <a href="http://www.slideshare.net/krynsky/x-prize-foundation-case-study" target="_blank">I did a case study presentation</a> describing the detailed Drupal work I&#8217;ve done for X PRIZE.</p>
<p>This great Drupal community in LA provided me with exciteful anticipation to attend my first <a href="http://drupalcampla.com/" target="_blank">DrupalCamp LA</a>. Also knowing it was being managed by <a href="http://chrischarlton.us/" target="_blank">Chris Charlton</a> and <a href="http://www.cleverclevergirl.com/" target="_blank">Crystal Williams</a> from the LA User Group only re-assured in my mind that it would be great.</p>
<p>This second year saw nice growth. There were over 430 registered users for the event. I was only able to attend for Day 1 but I can definitely say that in just the time I was there, the information I learned, and people I met was fantastic. I also got to have discussions with several Drupalers throughout the day. Below are some of the highlights for me and other details from the event.</p>
<p><strong>Keynote</strong></p>
<p>Opening session included presentations from <a href="http://www.workhabit.com/users/jonathan" target="_blank">Jonathan Lambert</a> of <a href="http://www.workhabit.com/" target="_blank">Workhabit</a> and <a href="http://association.drupal.org/blog/67" target="_blank">Kieran Lal</a> of <a href="http://acquia.com/" target="_blank">Acquia</a>. They discussed the current state of Drupal and plans for growth into the future while evangelizing and showing their passion for this great open source platform we love. You can see a few notes taken from Viktor Kane <a href="http://awebfactory.com.ar/node/334" target="_blank">here</a>.</p>
<p>Kieran also discussed the Drupal.org redesign project and urged users to visit the <a href="http://flickr.com/groups/drupalredesign" target="_blank">Flickr group</a> to submit their design ideas. He also mentioned <a href="http://www.disambiguity.com/" target="_blank">Leisa Reichelt&#8217;s involvement</a>.</p>
<p><strong>Building APIs for Modules</strong></p>
<p>I was able to catch some of this presentation where <a href="http://kalsey.com/blog/" target="_blank">Adam Kalsey</a> of <a href="http://www.workhabit.com/" target="_blank">Workhabit</a> walked us through how he created the <a href="http://drupal.org/project/activitystream" target="_blank">Activity Stream</a> module. I didn&#8217;t know Adam had written this and was a bit floored as I&#8217;ve become pretty passionate about Lifestreaming and have dedicated a site to it at the <a href="http://lifestreamblog.com">Lifestream Blog</a>. Adam&#8217;s module adds Lifestreaming functionality to Drupal by pulling data via API calls from several web services like Twitter, Delicious, and Last.fm</p>
<p>This was actually the second time I had seen Adam give a presentation as he provided a <a href="http://drupal-la.blip.tv/#1052465" target="_blank">Scaling Drupal presentation at the LA Drupal User Group</a> a few months prior to this. He&#8217;s a top notch speaker who exudes knowledge and enthusiasm and I&#8217;m already greatful having learned plenty from him. I highly recommend you catch him speak if you get a chance.</p>
<p>Slideshow for the session is available <a href="http://www.slideshare.net/akalsey/drupal-module-apis-presentation" target="_blank">here</a>.</p>
<p><strong>Using Open Source tools for Open Source Development</strong></p>
<p>This session was run by <a href="http://groups.drupal.org/user/1324" target="_blank">Mike Stewart</a> whom I often see at the LA Drupal User Group. He provided demos of several open source tools he uses for Drupal development. This included using Ubuntu for his OS, and several other tools including <a href="http://www.geany.org/" target="_blank">Geany</a> and <a href="http://scribes.sourceforge.net/" target="_blank">Scribes</a>. But the coolest thing for me was that he had wrapped all of these into an image using the open source virtualization package VirtualBox. I have used VMWare but wasn&#8217;t familiar with <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a> and was very happy to learn about it.</p>
<p>Mike was planning on providing a Virtualbox Ubuntu image that included all the tools he showed but I haven&#8217;t seen it yet. I will add a link if I do come across it.</p>
<p><strong>Tuning for Scale and Performance</strong></p>
<p>The presentation so good the first time I saw it I figured I&#8217;d watch it again and see if I absorb anything more. This was led by Adam Kalsey but also on the panel was Jonathan Lambert and <a href="http://www.workhabit.com/users/aaron" target="_blank">Aaron Stewart</a> of Workhabit. For the most part I had paid attention the first time but got some additional recommendations such as:</p>
<ul>
<li> Using <a href="http://xcache.lighttpd.net/" target="_blank">XCache</a> for Opcode caching</li>
<li><a href="http://jakarta.apache.org/jmeter/" target="_blank">Jmeter</a> for load testing</li>
<li><a href="http://www.xdebug.org/" target="_blank">Xdebug</a> for testing code performance</li>
<li>Using the <a href="http://drupal.org/project/boost" target="_blank">Boost</a> &amp; <a href="http://drupal.org/project/blockcache" target="_blank">Block Cache</a> Modules</li>
</ul>
<p><strong><strong>Scaling Drupal:</strong> Drupal on the Cloud</strong></p>
<p>Also hosted by Adam Kalsey (ok starting to feel like I&#8217;m a groupie) where he discussed Cloud computing and how to host Drupal in the cloud. Coming into this I had very little knowledge in this area and was just vaguely familiar with Amazon Web Services but once again Adam provided a good intro whiched helped me get a better understanding of how it works. I was pretty intrigued by the setup and how it works but I&#8217;m not so sure most IT departments are ready to start adopting it on a large scale. I do see it as the future and it&#8217;s just a matter of time before more companies start moving to this model instead of investing in large hardware deployments and the management that goes with them. I&#8217;m hoping I can learn more about Cloud computing and dip my toe in soon.</p>
<p><a href="http://www.slideshare.net/akalsey/drupal-clouds-presentation" target="_blank">Here&#8217;s the slideshow presentation</a> from this session. Workhabit also has a good post on Drupal running on Amazon&#8217;s EC2 <a href="http://www.workhabit.com/labs/drupal-ami" target="_blank">here</a>. In that post Workhabit provides us with a test image we can play with Drupal on in EC2 as well.</p>
<p>Along with VirtualBox and Amazon&#8217;s EC2, virtualization was definitely a theme I see making big strides in the years to come.</p>
<p><strong><strong>Other Sessions</strong></strong></p>
<p>I didn&#8217;t go to any of the Designer/Theming sessions but I heard great things about those presentations. There were also many new and curious users that came which were treated to some good intro sessions which showed them the power and flexibility of the system for several niche sites. I&#8217;m also bummed I didn&#8217;t see <a href="http://blackrimglasses.com/" target="_blank">Ethan Kaplan&#8217;s</a> case study on the Metallica site.</p>
<p><strong>Other Related Stuff from DrupalCamp LA</strong></p>
<ul>
<li><a href="http://www.workhabit.com/labs/amazon-aws-drupal-drupalcampla" target="_blank">Amazon AWS &amp; Drupal at DrupalCampLA Video Presentation</a></li>
<li><a href="http://boldsource.com/articles/drupalcampla-presentations" target="_blank">Post from Blake Lucchesi</a> of BoldSource about his presentations</li>
<li>I wish I could have seen the <a href="http://stevenchan.us/weblog/2008/09/designing-social-networking-site" target="_blank">Designing social networking sites with Drupal</a> session<a href="http://stevenchan.us/weblog/2008/09/designing-social-networking-site" target="_blank"><br />
</a></li>
<li>The <a href="http://su2c.standup2cancer.org/" target="_blank">Stand Up to Cancer</a> site was built in Drupal and they had a representative</li>
<li><a href="http://www.slideshare.net/event/drupalcampla-2008/slideshows" target="_blank">Slideshows from many of the sessions<br />
</a></li>
<li><a href="http://twemes.com/drupalcampla" target="_blank">Twitter chatter from the event</a></li>
<li><a href="http://flickr.com/photos/tags/drupalcampla2008/interesting/" target="_blank">Photos of event on Flickr</a></li>
</ul>
<p>Well that&#8217;s it folks. I really look forward to next year! In the meantime you can catch me often hanging out on IRC at #drupal-la on irc.freenode.net or just go to <a href="http://drupalchat.net" target="_blank">Drupalchat.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://krynsky.com/highlights-and-reflections-from-drupalcamp-la-2008/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:thumbnail url="http://krynsky.com/wp-content/uploads/2008/09/drupalcampla_2008-150x150.png" />
		<media:content url="http://krynsky.com/wp-content/uploads/2008/09/drupalcampla_2008.png" medium="image">
			<media:title type="html">drupalcampla_2008</media:title>
			<media:thumbnail url="http://krynsky.com/wp-content/uploads/2008/09/drupalcampla_2008-150x150.png" />
		</media:content>
	</item>
		<item>
		<title>My Web Travels for January 22nd 2008</title>
		<link>http://krynsky.com/my-web-travels-for-january-22nd-2008/</link>
		<comments>http://krynsky.com/my-web-travels-for-january-22nd-2008/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 07:03:20 +0000</pubDate>
		<dc:creator>Mark Krynsky</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[aggregator]]></category>
		<category><![CDATA[awards]]></category>
		<category><![CDATA[bill-gates]]></category>
		<category><![CDATA[crysis]]></category>
		<category><![CDATA[dapper]]></category>
		<category><![CDATA[darwin]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[videogame]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://krynsky.com/my-web-travels-for-january-22nd-2008/</guid>
		<description><![CDATA[Genfavicon. Free Online Favicon Generator. Icon Generator. &#8211; Nice web service if you are in need of this The Best Companion Tools for YouTube and other Web Videos &#8211; A...]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.genfavicon.com/">Genfavicon. Free Online Favicon Generator. Icon Generator.</a> &#8211; Nice web service if you are in need of this</li>
<li><a href="http://www.labnol.org/internet/video/best-youtube-video-tools/2104/">The  Best Companion Tools for YouTube and other Web Videos</a> &#8211; A list of some  useful video sites</li>
<li><a href="http://www.escapistmagazine.com/articles/view/editorials/zeropunctuation/2808-Zero-Punctuation-Crysis">The  Escapist : Zero Punctuation: Crysis</a> &#8211; If you&#8217;ve never seen a Zero  Punctuation review. Here&#8217;s a great one to accolomate ya. Very Very funny stuff  and spot on in many ways.</li>
<li><a href="http://www.darwinawards.com/newsletter/2007.html">The 2007 Darwin  Award Winners</a> &#8211; Ahhh&#8230;always fun to see what the pinheads of the world are  up to</li>
<li><a href="http://lifehacker.com/339470/get-feeds-for-sites-without-rss-with-dapper">Get  Feeds for Sites Without RSS with Dapper</a> &#8211; Lifehackers take on a useful tool  to add content that doesn&#8217;t offer an RSS feed to your Lifestream</li>
<li><a href="http://drupal.org/node/42599">Example: How to Embed Two Views on the  Same Page | drupal.org</a> &#8211; This is useful in Drupal to create a pretty complex  custom homepage</li>
<li><a href="http://www.istartedsomething.com/20080107/bill-gates-last-day-microsoft-video/">Bill  Gates last day at Microsoft (video) &#8211; istartedsomething</a> &#8211; This video proves  that Bill Gates is waaaay cooler than Steve Jobs</li>
<li><a href="http://www.wegame.com/">WeGame.com &#8211; Show Your Game</a> &#8211; Site  provides in-game videos for many PC games. Also provides the tools to create the  videos</li>
<li><a href="http://www.smashingmagazine.com/2008/01/08/100-excellent-free-high-quality-wordpress-themes/">100  Excellent Free WordPress Themes | Developer&#8217;s Toolbox | Smashing Magazine</a> &#8211;  Another nice collection of WordPress themes</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://krynsky.com/my-web-travels-for-january-22nd-2008/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
	</item>
	</channel>
</rss>

