<?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:rssdatehelper="urn:rssdatehelper"><channel><title></title><link>http://www.lateral8.com</link><pubDate></pubDate><generator>umbraco</generator><description></description><language>en</language><item><title>Sharing Files Between Projects in Visual Studio</title><link>http://www.lateral8.com#</link><pubDate>Mon, 25 Jan 2010 15:33:05 GMT</pubDate><guid>http://www.lateral8.com#</guid><description><![CDATA[ 
<h3>The Problem</h3>

<p>This probably isn't a common situation, but there are arguable
cases where you may want to share files between projects in a
single solution. In my example, I had the following solution
structure:</p>

<p><strong>/Solution<br />
 /SharedControls<br />
 /Project1<br />
 /Project2<br />
 (etc)</strong></p>

<p>In the SharedControls project, I had stylesheets, theme content,
scripts, and some common user controls that both of the other
projects were using. It wouldn't be too difficult to manually copy
this content to each project, but it's an extra step to remember
and to track updates to each file.</p>

<p>When I was working on this solution setup locally, I found an
easy way to address this problem, courtesy of Scott Guthrie; start
by following the tutorial here:</p>

<p><a
href="http://webproject.scottgu.com/CSharp/UserControls/UserControls.aspx"
 title="http://webproject.scottgu.com/CSharp/UserControls/UserControls.aspx">
http://webproject.scottgu.com/CSharp/UserControls/UserControls.aspx</a></p>

<p>The summary of the tutorial above is to create a web application
project: SharedControls. Then add SharedControls as a project
reference in each of your other projects. After that, add a copy
command line event to the Pre-Build event in each project to copy
the shared files from the SharedControls project.</p>

<p>This is a great solution for a single developer, but it does
have a few issues:</p>

<ul>
<li>The build time is increased, especially if you are copying a
lot of files.</li>

<li>Each file is copied when you&nbsp; debug, build, or publish a
project/solution. even if it is unchanged.</li>

<li>You have to make sure any changes in the shared files are made
in the SharedControls project only.</li>
</ul>

<p>Now, fast forward to my current team's implementation of Visual
Studio Team Foundation Server. A solution like the one above was
added into source control so that multiple developers could begin
working on the projects. The first time someone tried to build a
project, they received a failure message:</p>

<blockquote>
<p>The command "copy
"C:\Projects\Articles\Solution\SharedControls\Controls\*.ascx"
"C:\Projects\Articles\Solution\Project2\Controls\"" exited with
code 1.</p>
</blockquote>

<p>The build operation was failing because of the pre-build event.
When using TFS, your local workspace files are marked as read-only
unless you have the file checked out, so the copy command is unable
to overwrite the existing files, even with the force flag
specified.</p>

<h3>A Solution</h3>

<p>I was able to address the build failures and also come up with a
much better way to manage this type of setup in the process.</p>

<p>First, instead of copying the shared files to each project, you
just set up linked files instead:</p>

<p>Add a reference in each project to the SharedControls project
(just like in the original tutorial). Right click on the project
file and select <strong>Add Reference</strong>:<br />
 <a
href="/media/1076/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image_2.png"
 target="_blank"><img src="/media/1081/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image_thumb.png" width="490" height="345" alt="image" border="0" style="display: inline; border: 0px;"/></a></p>

<p>Select the <strong>Projects</strong> tab and select the
SharedControls project, and click <strong>OK</strong>:<br />
 <a
href="/media/1086/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image10.png"
 target="_blank"><img src="/media/1091/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image10_thumb.png" width="486" height="410" alt="image" border="0" style="display: inline; border: 0px;"/></a></p>

<p>In Visual Studio, right-click the Project folder or any folder
in the project and select <strong>Add</strong> &gt;
<strong>Existing Item:<br />
 <a
href="/media/1096/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image14_1.png">
<img src="/media/1101/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image14_thumb.png" width="500" height="351" alt="image" border="0" style="display: inline; border: 0px;"/></a></strong></p>

<p>Navigate to the SharedControls project folder and select the
file(s) you would like to link. Click the arrow next to the Add
button and select <strong>Add As Link:<br />
 <a
href="/media/1106/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image19_1.png">
<img src="/media/1111/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image19_thumb.png" width="505" height="357" alt="image" border="0" style="display: inline; border: 0px;"/></a></strong></p>

<p>Now, any time you change the file from any project, all of the
linked copies stay in sync. The linked file is just a reference to
the copy in the SharedControls folder. If you publish your project
now, you will also see that a physical copy of each linked file
will be added to the target directory, this is exactly what we
wanted!</p>

<p>Now, we're all set. except if you try to debug your project.
more errors?!?</p>

<p>If you have linked control files, aspx pages, scripts, or images
you will notice that all of them are missing when you start the
project in debug mode. This is because the integrated development
server points to the project folder, and the physical versions of
the files no longer exist in your working project directory, even
though they are part of the build.</p>

<p>So you need to make sure that a physical version of the file
exists. Since Team Server no longer manages the project files that
have been linked in each project, the copy operation should no
longer fail.</p>

<p>I mentioned the limitations of Scott Guthrie's solution for
copying files during pre-build. This is the script I used in place
of his original:</p>

<p>xcopy "$(SolutionDir)SharedControls\Controls\*.ascx"
"$(ProjectDir)Controls\" /D /Y<br />
 xcopy "$(SolutionDir)SharedControls\App_Themes\*"
"$(ProjectDir)App_Themes\" /D /Y /S</p>

<p>So you still create physical copies in the development folder of
each linked file, but they are no longer part of the project
itself.</p>

<p><em>The</em> <strong>/D</strong> <em>flag will only copy the
file from the shared projects folder if it is a more recent version
than the one that already exists in the destination folder.
The</em> <strong>/Y</strong> <em>option forces an overwrite if the
file already exists. The</em> <strong>/S</strong> <em>option will
perform a recursive copy operation.</em></p>

<p>Right-click on the Project and select
<strong>Properties</strong>. Click on the <strong>Build
Events</strong> tab on the left and add the xcopy command(s) to the
<strong>Pre-build event command line</strong> field:<br />
 <a
href="/media/1125/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image24_1.png"
 target="_blank"><img src="/media/1130/WindowsLiveWriter_SharingFilesBetweenProjectsinTeamFoundat_7E63_image24_thumb.png" width="526" height="369" alt="image" border="0" style="display: inline; border: 0px;"/></a></p>

<p>Now if you build your project again, you should be able to debug
without any issues.</p>

<p><strong>One final note:</strong> When you drag and drop a linked
control to your page in design mode, it will show up in the source
view like this:</p>

<pre class="code">
<span>&lt;%</span><span>@</span> <span>Register</span> <span>src</span><span>="../SharedControls/Controls/SampleControl.ascx"</span> <span>tagname</span><span>="SampleControl"<br />
</span>   <span>tagprefix</span><span>="uc1"</span> <span>%&gt;</span> 
</pre>

<p>&nbsp;</p>

<p>The src tag is referencing the path to the physical file; You
just need to update this tag to reflect the control's&nbsp;
"location" in the current project:</p>

<pre class="code">
<span>&lt;%</span><span>@</span> <span>Register</span> <span>src</span><span>="Controls/SampleControl.ascx"</span> <span>tagname</span><span>="SampleControl"</span> <span>tagprefix</span><span>="uc1"</span> <span>%&gt;</span>
</pre>

<p>&nbsp;</p>

<p>&nbsp;</p>

<p>There are many different ways to manage shared content between
projects, and this is one of the more basic approaches. If you are
working under limited resources and cannot dedicate a user to
creating control libraries, this is definitely an approach to
consider. You can minimize duplication of work, and make sure that
you are able to manage your projects in a consistent manner.</p>

<p>You can download a <a
href="/media/1437/lateral8_articles_sharedprojectfiles.zip"
title="click here to download a sample solution for this article">sample
solution here</a> to review how this is set up.</p>
]]></description></item><item><title>WM Theme: NXE</title><link>http://www.lateral8.com#</link><pubDate>Fri, 10 Jul 2009 16:19:11 GMT</pubDate><guid>http://www.lateral8.com#</guid><description><![CDATA[ 
<p>&nbsp;</p>

<p>This Windows Mobile theme is a tribute to default theme used in
the <a href="http://www.xbox.com/live/nxe/">new XBox
experience</a>, now available to all XBox 360 owners. Three
landscape wallpapers are included in this theme, and can be used
with any other theme currently on your device.</p>

<h4><img src="/media/1172/WindowsLiveWriter_WindowsMobileThemes_12768_nxe_homescreens_3.jpg" width="491" height="155" alt="nxe_homescreens" border="0" style="display: inline; border-width: 0px;"/></h4>

<p style="text-align: left;"><a href="/media/612/NXE.cab"><img src="/media/1177/WindowsLiveWriter_WindowsMobileThemes_12768_dl_cab_3.jpg" width="127" height="37" alt="dl_cab" border="0" style="border-width: 0px;"/></a> <a
href="/media/615/nxe.zip"><img src="/media/1182/WindowsLiveWriter_WindowsMobileThemes_12768_dl_zip_3.jpg" width="127" height="37" alt="dl_zip" border="0" style="border-width: 0px;"/></a></p>

<p style="text-align: left;">Need installation help? <a
href="/2009/6/19/installing-windows-mobile-themes.aspx"
title="click here for instructions on installing Windows Mobile themes">
Click here</a>.</p>
]]></description></item><item><title>Syncing Your G1/Android Device with Songbird</title><link>http://www.lateral8.com#</link><pubDate>Fri, 03 Jul 2009 11:33:09 GMT</pubDate><guid>http://www.lateral8.com#</guid><description><![CDATA[ 
<p>&nbsp;</p>

<h4>This guide has been updated to reflect the changes in
FolderSync 1.4</h4>

<p>Unless you use Windows Media Player, there is not an easy
automatic synchronization option available for an <a
href="http://www.android.com/"
title="click here to open the official Android website">Android</a>
device. I personally use the amazing <a
href="http://getsongbird.com/"
title="click here to go to the Songbird web site">Songbird</a>
media player, and have wanted the ability to sync a Songbird
playlist to my G1 for some time. I finally found a simple solution
thanks to the Songbird add-on <a
href="http://addons.songbirdnest.com/addon/1535"
title="click here to view details for the FolderSync add-on">FolderSync</a>.</p>

<p>This solution will also work for any device that will get a
drive letter assignment when it's connected to your computer.</p>

<h4>Install/Update Songbird</h4>

<p>Grab the latest version of Songbird from <a
href="http://getsongbird.com/">http://getsongbird.com/</a>.<br />
 <img src="/media/342/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_Songbird_3.jpg" width="504" height="311" alt="Songbird main window (screenshot)" border="0" style="display: inline; border-width: 0px;"/></p>

<h4>Install the FolderSync Add-On</h4>

<p><em>You can also install the FolderSync Add-on by</em> <a
href="http://addons.songbirdnest.com/addon/1535"
title="FolderSync - click to view Add-On page"><em>clicking
here</em></a> <em>if you are viewing this page from
Songbird.</em></p>

<p>Open Songbird and select <strong>Add-ons.</strong> from the
<strong>Tools</strong> menu.<br />
 <img src="/media/347/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_Addons_3.jpg" width="169" height="203" alt="Addons" border="0" style="display: inline; border-width: 0px;"/><br />
<br />
 Click on <strong>Get Extensions</strong> in the lower right
portion of the screen. This will open a new browser tab in
Songbird.<br />
 <img src="/media/1040/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_AddOns_Updated_3.jpg" width="375" height="270" alt="Songbird Add-ons" border="0" style="display: inline; border-width: 0px;"/><br />
<br />
 In the search box on the upper right of the page, type
<strong>FolderSync</strong> and click
<strong>Search</strong>.<br />
 Locate the FolderSync Add-on and click the green
<strong>Install</strong> button on the left of the page.<br />
 <strong>Restart Songbird</strong> after installation is
completed.<br />
 <img src="/media/357/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_InstallAddOn_3.jpg" width="429" height="264" alt="Install FolderSync Add-on (screenshot)" border="0" style="display: inline; border-width: 0px;"/></p>

<h4>Create/Select Your Playlist(s)</h4>

<p>From the library tab in Songbird, create a playlist. Use the
library views to drag songs, albums, artists, etc from your library
to your new playlist to update it.<br />
<br />
 You can also use an existing playlist, or multiple lists. The only
limitation in the case of is the available memory on the
device.</p>

<h4>Configure FolderSync</h4>

<p>You can view the complete (and most up to date) documentation
for FolderSync here: <a
href="http://wiki.songbirdnest.com/User:Rsjtdrjgfuzkfg/FolderSync_Manual/FolderSync_Manual_English"
 title="http://wiki.songbirdnest.com/User:Rsjtdrjgfuzkfg/FolderSync_Manual/FolderSync_Manual_English">
http://wiki.songbirdnest.com/User:Rsjtdrjgfuzkfg/FolderSync_Manual/FolderSync_Manual_English</a></p>

<p>From Songbird select <strong>Add-ons.</strong> from the
<strong>Tools</strong> menu.<br />
 <img src="/media/347/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_Addons_3.jpg" width="169" height="203" alt="Addons" border="0" style="display: inline; border-width: 0px;"/><br />
 Locate the FolderSync entry and click the <strong>Options</strong>
button.<br />
<br />
 Set your preferences in the options screen, for FolderSync 1.3,
the following options are available:<br />
 <img src="/media/1045/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_FolderSyncOptions_Updated_3.jpg" width="350" height="317" alt="FolderSync options window" border="0" style="display: inline; border-width: 0px;"/></p>

<ol>
<li><strong>Activate one-click synchronization of more than one
playlist</strong>: Check this option to enable the "Sync All"
button.</li>

<li><strong>Delete not needed Files and Directories</strong>: Check
this option to delete all files/folders as part of the sync
process.<br />
 <strong><br />
 * I <span>highly</span> recommend you un-check this option unless
you are familiar with this process already *<br />
<br />
 Important Note: <span>DO NOT</span> set the destination folder in
the sync to the root of your device/sdcard with the Delete option
checked. If you do, ALL OF THE FILES IN THE ROOT FOLDER WILL BE
DELETED.</strong></li>

<li><strong>Write M3U-Playlists</strong>: Check this option to
create a single m3u playlist (per Songbird playlist) in the
destination folder.</li>

<li><strong><br />
 Auto-format filenames and path</strong>: This option mimics the
iTunes/Songbird music organization feature, but allows you to
control the folder/file structure. I have mine set to this:<br />
 %artist%/%album%/%tracknumber% %title%<strong>Track Number (at
least):</strong> This is a great new option. Setting this to 2 for
example, will add a leading zero to your single-digit track
numbers. This is very nice, because when your files are sorted by
name, they still appear in the correct track order!<br />
<br />
 An example result of the above format and track number option
would be: <em>\Music\Alice In Chains\Dirt\01 Them
Bones.mp3</em></li>
</ol>

<p>Click <strong>Save</strong> to update your preferences, then
<strong>restart Songbird to apply the changes.</strong></p>

<h4>Set Up A Sync Partnership</h4>

<p>If you haven't done so yet, connect your device to your computer
and mount your SD card.<br />
<br />
 To view the FolderSync interface, select <strong>Show Content Pane
Bottom</strong> from the <strong>View</strong> menu.<br />
 <img src="/media/367/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_ShowContentPane_3.jpg" width="147" height="263" alt="View menu (screenshot)" border="0" style="display: inline; border-width: 0px;"/><br />
<br />
 If you have multiple Add-ons installed, you may need to switch the
bottom content pane to folder sync. To do this, click on the menu
icon on the top right of the content pane and select
<strong>FolderSync</strong>.<br />
 <img src="/media/372/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_SelectFolderSync_3.jpg" width="195" height="179" alt="select FolderSync pane (screenshot)" border="0" style="display: inline; border-width: 0px;"/></p>

<ol>
<li>Place a check next to each playlist (in the left pane) you want
to sync to your device.</li>

<li>Click the button labeled <strong>Browse</strong> and navigate
to the <strong>Music</strong> folder on your sdcard.</li>

<li>Check the sync folder on the right pane.</li>

<li>Click the <strong>Start Sync</strong> button to copy your
files.</li>
</ol>

<p><img src="/media/377/WindowsLiveWriter_SyncingYourG1AndroidDevicewithSongbird_8654_FolderSyncMain_3.jpg" width="504" height="148" alt="Folder Sync Main panel (screenshot)" border="0" style="display: inline; border-width: 0px;"/><br />
<br />
 The first process may take some time depending on the playlist
size.</p>

<p>The setup takes more time than anything, and the only
enhancement I would really enjoy at this point is the ability for
the sync to happen automatically. Since this is a file system-based
solution, I understand that auto-sync can't really mimic the WMP or
iTunes style of synchronization.</p>

<p>I hope you find these instructions useful. be sure to post a
comment or any questions you have. Happy syncing!</p>
]]></description></item><item><title>Adding iPhone-Style Navigation to Umbraco</title><link>http://www.lateral8.com#</link><pubDate>Sat, 27 Jun 2009 16:49:58 GMT</pubDate><guid>http://www.lateral8.com#</guid><description><![CDATA[ 
<p>This site is built using <a href="http://umbraco.org/"
title="click here to visit the Umbraco web site">Umbraco 4</a>, a
.Net-based content management system. I recently upgraded to
version 4 from version 3 and have been working to reconfigure my
site to take advantage of the new features.</p>

<p>One excellent new package available for v4 is the <a
href="http://www.nibble.be/?p=59"
title="click here to view details about the iPhoneAltPage package">iPhoneAltPage
package</a>. Once implemented, it allows users with iPhone devices
to view an Umbraco site with iPhone-style navigation.</p>

<p>To install this package:</p>

<ol>
<li>Log in to your Umbraco site and click on the
<strong>Developer</strong> section.</li>

<li>Expand <strong>Packages</strong> in the navigation tree and
select the <strong>Umbraco package repository</strong> on the
left.</li>

<li>Select <strong>WebSite Utilities;</strong>
<strong>iPhoneAltPage</strong> should be the first entry.</li>

<li>Select <strong>Download and Install Package</strong>.</li>

<li>Once installation is complete, just add the Javascript block to
the head section of your master template.</li>
</ol>

<p>I modified the Javascript to include Android devices as
well:</p>

<p><span>&lt;</span><span>script</span>
<span>language</span><span>="javascript"&gt;<br />
 if</span> ( (navigator.userAgent.match(/iPhone/i))||
(navigator.userAgent.match(/iPod/i))||
(navigator.userAgent.match(/Android/i)))<br />
 {<br />
 document.location.href=<span>'&lt;umbraco:Item field="pageID"
runat="server"
xslt="umbraco.library:Replace(umbraco.library:NiceUrl(umbraco.library:GetXmlNodeById({0})/ancestor-or-self::node
[@level=1]/@id),'</span>.aspx<span>','</span>/iphone.aspx<span>')"&gt;&lt;/umbraco:Item&gt;'</span>;<br />
 }<br />
 <span>&lt;/</span><span>script</span><span>&gt;</span></p>

<p>&nbsp;</p>

<p>You can see the results by visiting this site on your Android
device or iPhone.</p>
]]></description></item><item><title>Installing Windows Mobile Themes</title><link>http://www.lateral8.com#</link><pubDate>Fri, 19 Jun 2009 17:00:12 GMT</pubDate><guid>http://www.lateral8.com#</guid><description><![CDATA[ 
<table border="0" cellspacing="0" cellpadding="2"
style="width: 99%;">
<tbody>
<tr>
<td width="232" valign="top"><img src="/media/1218/WindowsLiveWriter_45dc3c990b6c_2FA_sshot004_3.jpg" width="192" height="144" alt="File Manager screenshot" border="0" style="margin: 0px 35px 5px 0px; border-width: 0px;"/></td>
<td width="787" valign="top">
<p><strong><em>Installation using the .CAB File:</em></strong></p>

<ul>
<li>Download the .CAB file directly to your device, or download the
.CAB file to your computer and transfer the file to your device
using ActiveSync (see instructions for ActiveSync below).</li>

<li>Once you have the file on your device, open File Manager or any
suitable file explorer utility and navigate to the folder where you
copied the .CAB file.</li>

<li>Highlight the file, then select it to initiate installation.
You should be prompted to install the file.</li>
</ul>
</td>
</tr>
</tbody>
</table>

<p><a
href="/media/1223/WindowsLiveWriter_45dc3c990b6c_2FA_sshot004_2.jpg">
</a> <strong><em>Installation using the .ZIP
File:</em></strong></p>

<ul>
<li>Download the ZIP file to your desktop computer.</li>

<li>Extract the contents of the file to your computer. Each theme
should have two files: The <strong>JPG</strong> file for the
background image and an <strong>XML</strong> document.</li>

<li>Use the ActiveSync instructions below to copy the two files
from your computer to your mobile device.</li>

<li><em>If your mobile device supports the extraction of ZIP files,
then you should be able to download the file directly to your
device and copy the content into the</em> <strong>Application
Data\Home</strong> <em>folder using File Manager (or any file
explorer).</em></li>
</ul>

<p><strong><strong><img src="/media/1228/WindowsLiveWriter_45dc3c990b6c_2FA_as_3.png" width="31" height="31" alt="ActiveSync Logo" border="0" style="margin: 5px 0px; border-width: 0px;"/></strong></strong><a
href="/media/1233/WindowsLiveWriter_45dc3c990b6c_2FA_as_2.png"></a></p>

<p><strong><em>ActiveSync Instructions:</em></strong><a
href="/media/1238/WindowsLiveWriter_45dc3c990b6c_2FA_001as_2.jpg"><strong>
<img src="/media/1243/WindowsLiveWriter_45dc3c990b6c_2FA_001as_3.jpg" width="244" height="234" alt="ActiveSync screenshot" border="0" style="margin: 0px 0px 0px 20px; border-width: 0px;" align="right"/></strong></a></p>

<ol>
<li>From the ActiveSync main window, select
<strong>Explore</strong> from the toolbar.</li>

<li>The default view is your <strong>My Documents</strong> folder
on the device. You can drag/copy the file directly to this folder,
or navigate to another folder, start by selecting <strong>My
Windows Mobile-Based Device</strong>. From there you should have
access to your Storage Card (if installed) and any other
folders.</li>

<li>For manual installation of themes using the ZIP file, select
<strong>My Windows Mobile-Based Device</strong>, then navigate to
<strong>Application Data\Home.</strong> Copy the extracted files
from the ZIP archive to the <strong>Home</strong> folder.</li>
</ol>
]]></description></item><item><title>WM Theme: Geomesh</title><link>http://www.lateral8.com#</link><pubDate>Sat, 06 Jun 2009 19:26:32 GMT</pubDate><guid>http://www.lateral8.com#</guid><description><![CDATA[ 
<p>This is a red and grey color scheme with an original
wallpaper.</p>

<p><a
href="/media/1331/WindowsLiveWriter_NewWindowsMobileThemeGeomesh_1C1_Screenshot_2.jpg">
<img src="/media/1336/WindowsLiveWriter_NewWindowsMobileThemeGeomesh_1C1_Screenshot_thumb.jpg" width="200" height="187" alt="Screenshot" border="0" style="display: inline; border-width: 0px;"/></a></p>

<p><a href="/media/147/geomesh.cab"
title="click here to download this theme in cab format"><img src="/media/1341/WindowsLiveWriter_NewWindowsMobileThemeGeomesh_1C1_dl_cab_3.jpg" width="127" height="37" alt="dl_cab" border="0" style="display: inline; border-width: 0px;"/></a> <a
href="/media/38/geomesh.zip"
title="click here to download this theme in Zip format"><img src="/media/1346/WindowsLiveWriter_NewWindowsMobileThemeGeomesh_1C1_dl_zip_3.jpg" width="127" height="37" alt="dl_zip" border="0" style="display: inline; border-width: 0px;"/></a></p>
]]></description></item><item><title>WM Theme: Dark Matter</title><link>http://www.lateral8.com#</link><pubDate>Fri, 05 Jun 2009 19:06:25 GMT</pubDate><guid>http://www.lateral8.com#</guid><description><![CDATA[ 
<p>This is the theme I used the most as a Windows Mobile/Motorola
Q9c owner, it works really well with the phone and the contrast
makes it easy to read in the daylight. The wallpaper is an original
take on the Sprint marketing graphics that were used at the
time.</p>

<p><a
href="/media/1293/WindowsLiveWriter_WindowsMobileThemeDarkMatter_324_DarkMatter_Home_2.jpg">
<img src="/media/1298/WindowsLiveWriter_WindowsMobileThemeDarkMatter_324_DarkMatter_Home_thumb.jpg" width="177" height="159" alt="DarkMatter_Home" border="0" style="display: inline; border-width: 0px;"/></a></p>

<p><a href="/media/174/darkmatter.cab"><img src="/media/1303/WindowsLiveWriter_WindowsMobileThemeDarkMatter_324_dl_cab_3.jpg" width="127" height="37" alt="dl_cab" border="0" style="display: inline; border-width: 0px;"/></a> <a
href="/media/32/darkmatter.zip"><img src="/media/1308/WindowsLiveWriter_WindowsMobileThemeDarkMatter_324_dl_zip_3.jpg" width="127" height="37" alt="dl_zip" border="0" style="display: inline; border-width: 0px;"/></a></p>
]]></description></item></channel></rss>

