<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Shirley&#039;s Blog</title>
	<atom:link href="http://shirl9141.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://shirl9141.wordpress.com</link>
	<description>random thoughts from a military spouse, programmer, graphic designer, etc</description>
	<lastBuildDate>Tue, 09 Nov 2010 21:13:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='shirl9141.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/ddd44b811cc7021c05cd9fbe8cdf60af?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Shirley&#039;s Blog</title>
		<link>http://shirl9141.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://shirl9141.wordpress.com/osd.xml" title="Shirley&#039;s Blog" />
	<atom:link rel='hub' href='http://shirl9141.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to create a simple app with MapPoint web services</title>
		<link>http://shirl9141.wordpress.com/2010/11/09/how-to-create-a-simple-app-with-mappoint-web-services/</link>
		<comments>http://shirl9141.wordpress.com/2010/11/09/how-to-create-a-simple-app-with-mappoint-web-services/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 21:05:15 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[MapPoint]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=356</guid>
		<description><![CDATA[We will create a simple Windows form that displays a map image utilizing MapPoint web services. Of course, you can find most of this information on the web, but starting with MapPoint Web Services can be a bit overwhelming. So, we will start out with the basics by establishing a developer account first. Click on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=356&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://shirl9141.files.wordpress.com/2010/11/capture.jpg"><br />
</a></p>
<p>We will create a simple Windows form that displays a map image utilizing MapPoint web services. Of course, you can find most of this information on the web, but starting with MapPoint Web Services can be a bit overwhelming. So, we will start out with the basics by establishing a developer account first. <a style="color:#99ccff;" href="https://mappoint-css.live.com/MwsSignup/">Click on this link to get an account</a>. You will need a Windows Live account to sign up.</p>
<p>Sign-in with your Windows Live account and fill out the required information.</p>
<p>Once you receive the email, click on the provided link and you should receive an &#8220;Account Creation Successful&#8221; message. It will require you to change your password. After changing your password, you will be redirected to the Bing Maps Customer Services site.</p>
<p>Click on Verify Credentials to test you user ID and password.</p>
<p>Then Click on Developer Resources to get the MapPoint Web Service WSDL url. Developer accounts can only using staging.</p>
<p>Here you can access the MapPoint Web Service SDK information and examples.</p>
<p>Now that we have established a developer account and received the WSDL, we can begin to implement the Windows form.</p>
<p><a href="http://shirl9141.files.wordpress.com/2010/11/capture.jpg"><img class="aligncenter" title="MapPoint WebServices" src="http://shirl9141.files.wordpress.com/2010/11/capture.jpg?w=300&#038;h=247" alt="MapPoint WebServices" width="300" height="247" /></a></p>
<p>You can find most of the information for displaying a map in your Windows form <a style="color:#ff9966;" href="http://msdn.microsoft.com/en-us/library/bb924353.aspx">here</a>.</p>
<p>We will only have 2 controls on the form . First, Drag a picture box and button control on your form.</p>
<p>Now add a Web Reference by<br />
Add Service Reference -&gt; Advanced -&gt; Add Web Reference ( Enter the WSDL url)</p>
<p>Now we will add a class to establish a connection to four services.</p>
<p>MapPoint Web Service consists of four constituent services: common, find, render, and route.</p>
<ul>
<li><span style="color:#ff9966;">Common Service</span> &#8211; contains utility functions for find, route and render services.</li>
<li><span style="color:#ff9966;">Find Service</span> &#8211; locate addresses, geographic entities, and latitude and longitude coordinates.</li>
<li><span style="color:#ff9966;">Render Service</span> &#8211; used for drawing maps of routes and locations, placing pushpins, etc. Think of this service as the visual service including getting map images.</li>
<li><span style="color:#ff9966;">Route Service</span>- Generate directions, etc.</li>
</ul>
<p>To receive more details on these services. <a style="color:#ff9966;" href="http://msdn.microsoft.com/en-us/library/cc546318.aspx"> Click here<br />
</a></p>
<p>If you want to add in your own information, there is the <a style="color:#ff9966;" href="http://msdn.microsoft.com/en-us/library/cc546321.aspx">Customer Data Service</a>.<br />
Customer Data Service is a XML Web Service that allows you to upload, download, and manage custom data sources.</p>
<p>I have created a class, MapPointServices, to establish the connections to all the services.</p>
<div style="color:#99ccff;">System.Net.NetworkCredential ourCredentials = new System.Net.NetworkCredential(<br />
&#8220;Bing Maps Developer Account ID&#8221;,<br />
&#8220;Bing Maps Developer Account password&#8221;);&nbsp;</p>
<p>// Create the render service<br />
renderService = new RenderServiceSoap();<br />
renderService.Credentials = ourCredentials;<br />
renderService.PreAuthenticate = true;</p>
<p>// Create the find service<br />
findService = new FindServiceSoap();<br />
findService.Credentials = ourCredentials;<br />
findService.PreAuthenticate = true;</p>
<p>// Create the route service<a href="http://shirl9141.files.wordpress.com/2010/11/capture.jpg"><br />
</a><br />
routeService = new RouteServiceSoap();<br />
routeService.Credentials = ourCredentials;<br />
routeService.PreAuthenticate = true;</p>
<p>// Create the common service<br />
commonService = new CommonServiceSoap();<br />
commonService.Credentials = ourCredentials;<br />
commonService.PreAuthenticate = true;</p>
</div>
<p>In the same class, create properties to access all the service objects: commonService, routeService, findService, and renderService. Make sure you change the credentials with your credentials that you established above.</p>
<p>Now, go to your form and add a button click event. In the button click event add the following code.</p>
<div style="color:#99ccff;">MapPointServices services = new MapPointServices();<br />
FindServiceSoap findService = services.FindService;<br />
FindSpecification findSpec = new FindSpecification();<br />
findSpec.DataSourceName = &#8220;MapPoint.NA&#8221;;<br />
findSpec.InputPlace = &#8220;Seattle, WA&#8221;;FindResults foundResults = findService.Find(findSpec);</p>
<p>ViewByHeightWidth[] myViews = new ViewByHeightWidth[1];<br />
myViews[0] = foundResults.Results[0].FoundLocation.BestMapView.ByHeightWidth;</p>
<p>RenderServiceSoap renderService = services.RenderService;<br />
MapSpecification mapSpec = new MapSpecification();<br />
mapSpec.DataSourceName = &#8220;MapPoint.NA&#8221;;<br />
mapSpec.Views = myViews;</p>
<p>MapImage[] mapImages = renderService.GetMap(mapSpec);</p>
<p>if (mapImages != null)<br />
{<br />
// Display the map:<br />
Bitmap bmapImg = new Bitmap(new MemoryStream(mapImages[0].MimeData.Bits));<br />
this.pictureBox1.Image = bmapImg;<br />
}</p>
</div>
<p>The services.FindService is a property to access the find service object from the MapPointServices class. The picturebox1 is the picture box control we added previously.</p>
<p>We are done! Now press F5 to run and you should see your map.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=356&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2010/11/09/how-to-create-a-simple-app-with-mappoint-web-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2010/11/capture.jpg?w=300" medium="image">
			<media:title type="html">MapPoint WebServices</media:title>
		</media:content>
	</item>
		<item>
		<title>Max Heart Rate and Zones</title>
		<link>http://shirl9141.wordpress.com/2010/01/18/max-heart-rate-and-zones/</link>
		<comments>http://shirl9141.wordpress.com/2010/01/18/max-heart-rate-and-zones/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 07:37:28 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[Geilenkirchen]]></category>
		<category><![CDATA[Spinning]]></category>
		<category><![CDATA[Exercise]]></category>
		<category><![CDATA[Max Heart Rate]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=345</guid>
		<description><![CDATA[I try to share exercise or nutrition information for the spinaholics in my class. Here is a great website about finding your max heart rate. http://www.fitzones.com/members/Fitness/heartrate_zones.asp Of course, this isn&#8217;t an exact science. From the calculation, your actual maximum heart rate could be off by 10-12 bpm plus or minus. The best bet is to listen to your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=345&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I try to share exercise or nutrition information for the spinaholics in my class. Here is a great website about <a href="http://www.fitzones.com/members/Fitness/heartrate_zones.asp">finding your max heart rate</a>. http://www.fitzones.com/members/Fitness/heartrate_zones.asp Of course, this isn&#8217;t an exact science. From the calculation, your actual maximum heart rate could be off by 10-12 bpm plus or minus. The best bet is to listen to your body, such as light-headedness, or wear a heart-rate monitor, if your heart rate stays elevated this could be an indication that you are overtraining.</p>
<p>One of the many benefits of spinning is that you can choose what zone you would like to exercise in. Zone 1&amp; 2 are perfect for beginners or newcomers. Even if you are fit, it is good to exercise in Zone 1 &amp; 2 when starting out. Zone 3 is a great way to maintain. If you prefer to improve performance, then Zone 4 is for you.</p>
<p>It&#8217;s true, when you exercise in Zone 1 &amp; Zone 2, you burn more fat while exercising. Of course there is a catch, you actually burn more fat overall in Zone 4. This process happens after the workout. Fat is not burned during exercise unless you are doing a relatively light workout. During Zone 4 and Zone 5, you are using carbohydrates for fuel, which causes more fat to be burned after exercise for lactate conversion and glycogen storage. Also, your metabolism will stay elevated for a longer period of time. So what is the best way to exercise in Zone 4? Intervals! Instead of running at a constant pace for 30mins, sprint for 30 secs and fast, medium, or slow  jog for 1min and add more time to your sprints every 3 weeks to reach your goal.</p>
<p>Also, remember to rest! You body does most of its work during the resting stage. The muscles break down during exercise and the rebuilding process begins in the resting stage. If you don&#8217;t rest, then your body is not able to rebuild.</p>
<p>Keep on Spinning!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/345/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=345&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2010/01/18/max-heart-rate-and-zones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>
	</item>
		<item>
		<title>Silverlight drag-n-drop behaviors and custom controls</title>
		<link>http://shirl9141.wordpress.com/2010/01/16/silverlight-drag-n-drop-behaviors-and-custom-controls/</link>
		<comments>http://shirl9141.wordpress.com/2010/01/16/silverlight-drag-n-drop-behaviors-and-custom-controls/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 12:02:41 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Action]]></category>
		<category><![CDATA[Behaviors]]></category>
		<category><![CDATA[Custom Controls]]></category>
		<category><![CDATA[Trigger]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=307</guid>
		<description><![CDATA[Behaviors, Triggers, and Actions don&#8217;t seem to have the spotlight yet, which in my opinion I would rather work with these then wire up serveral mouse events in the XAML. Not only is it more intuitive, but cleaner and modular. I&#8217;m going to show you how easy it is to create a Behavior for custom [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=307&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Behaviors, Triggers, and Actions don&#8217;t seem to have the spotlight yet, which in my opinion I would rather work with these then wire up serveral mouse events in the XAML. Not only is it more intuitive, but cleaner and modular. I&#8217;m going to show you how easy it is to create a Behavior for custom controls in Silverlight. You don&#8217;t need to know how to make a custom control to create a Behavior, but if you had the experience of creating a custom control, you understand how and where to wire up the events.</p>
<p>I have multiple FrameworkElements in my custom control. So, I would need to wire up the events to the entire control. First create your custom control or you can use a simple <code>FrameworkElement</code>. <a href="http://www.silverlightshow.net/items/Creating-a-Skinnable-Custom-Control-in-Silverlight-3-Part-I.aspx" target="_blank">Here is a great post </a>on how to create a custom control. After you create the custom control. Create a new Silverlight Class Library for the behavior. Create a new class that extends <code>Behavior&lt;UIElement&gt;.</code></p>
<p><code>public class DragInDropBehavior : Behavior&lt;UIElement&gt;</code></p>
<p>The next step in our DragInDropBehavior class is to attach and detach event handlers. Override these methods.</p>
<p><code>protected override void OnAttached()<br />
{<br />
<span style="color:#38ACEC;margin-left:13px;">base</span>.OnAttached();<br />
<span style="color:#38ACEC;margin-left:13px;">this</span>.AssociatedObject.MouseLeftButtonDown += <span style="color:#38ACEC;">new</span> <span style="color:#2b91af;">MouseButtonEventHandler</span>(AssociatedObject_MouseLeftButtonDown);<br />
<span style="color:#38ACEC;margin-left:13px;">this</span>.AssociatedObject.MouseLeftButtonUp += <span style="color:#38ACEC;">new </span><span style="color:#2b91af;">MouseButtonEventHandler</span>(AssociatedObject_MouseLeftButtonUp);<br />
<span style="color:#38ACEC;margin-left:13px;">this</span>.AssociatedObject.MouseMove += <span style="color:#38ACEC;">new </span><span style="color:#2b91af;">MouseButtonEventHandler</span>(AssociatedObject_MouseMove);<br />
}</code><br />
protected override void OnDetaching()<br />
{<br />
<span style="color:#38ACEC;margin-left:13px;">base</span>.OnAttached();<br />
<span style="color:#38ACEC;margin-left:13px;">this</span>.AssociatedObject.MouseLeftButtonDown -= AssociatedObject_MouseLeftButtonDown;<br />
<span style="color:#38ACEC;margin-left:13px;">this</span>.AssociatedObject.MouseLeftButtonUp -= AssociatedObject_MouseLeftButtonUp;<br />
<span style="color:#38ACEC;margin-left:13px;">this</span>.AssociatedObject.MouseMove -= AssociatedObject_MouseMove;<br />
}</p>
<p>Notice the syntax is different for attaching and detaching events. Both will work. The syntax for attaching the events in the <code>OnAttached()</code> method is generated by Visual Studio and the methods are automatically generated.  The <code>AssociatedObject</code> is the custom control, but you will see how this works later. Next we will implement the methods.</p>
<p>First create 2 private variables.</p>
<p><code><font color="#38ACEC">private </font><span style="color:#2b91af;">Point</span> mouseClickPosition;<br />
<font color="#38ACEC">private </font><span style="color:#38ACEC;">bool</span> _isDragging;</code></p>
<p>The <code>mouseClickPosition</code> is the current position where the left mouse button was clicked.  </p>
<p><code><span style="color:#38ACEC;">void</span> AssociatedObject_MouseLeftButtonUp(<span style="color:#38ACEC;">object</span> sender, <span style="color:#2b91af;"> MouseButtonEventArgs </span> e)<br />
{<br />
<span style="color:#38ACEC;margin-left:13px;">if</span> (_isDragging)<br />
<span style="margin-left:13px;">{</span><br />
<span style="color:#38ACEC;margin-left:26px;">this</span>.AssociatedObject.ReleaseMouseCapture();<br />
<span style="color:#38ACEC;margin-left:26px;">this</span>._isDragging = <span style="color:#38ACEC;"> false;</span><br />
<span style="margin-left:13px;">}</span><br />
}<br />
</code><br />
<code><span style="color:#38ACEC;">void</span> AssociatedObject_MouseLeftButtonDown(<span style="color:#38ACEC;"> object</span> sender, <span style="color:#2b91af;">MouseButtonEventArgs</span> e)<br />
{<br />
<span style="margin-left:13px;color:#38ACEC;">this</span>._isDragging = <span style="color:#38ACEC;">true</span>;<br />
<span style="color:#38ACEC;margin-left:13px;">this</span>.mouseClickPosition = e.GetPosition(<span style="color:#38ACEC;">this</span>.AssociatedObject);<br />
<span style="color:#38ACEC;margin-left:13px;">this</span>.AssociatedObject.CaptureMouse();<br />
}<br />
</code></p>
<p><code><br />
<span style="color:#38ACEC;">void</span> AssociatedObject_MouseMove(<span style="color:#38ACEC;">object</span> sender, <span style="color:#2b91af;">MouseEventArgs</span>  e)<br />
{<br />
<span style="color:#38ACEC;margin-left:13px;">if</span> (_isDragging)<br />
<span style="margin-left:13px;">{</span><br />
<span style="color:#2b91af;margin-left:26px;">Point</span> point = e.GetPosition(<span style="color:#38ACEC;">null</span>);<br />
<span style="margin-left:26px;">AssociatedObject.SetValue</span>(<span style="color:#2b91af;">Canvas</span>.TopProperty, point.Y - <span style="color:#38ACEC;">this</span>.mouseClickPosition.Y);<br />
<span style="margin-left:26px;">AssociatedObject.SetValue</span>(<span style="color:#2b91af;">Canvas</span>.LeftProperty, point.X - <span style="color:#38ACEC;">this</span>.mouseClickPosition.X);<br />
<span style="margin-left:26px;">{</span><br />
}<br />
</code></p>
<p>Notice we passed in null in the <code>GetPosition</code> method. This will find the mouse&#8217;s position relative to the canvas. </p>
<p>Now all we need to do is add our custom control and behavior to the XAML. Make sure you update your references to the new SilverLight Class library containing the Behavior. Also, install the Expression Blend SDK and add a reference to the System.Windows.Interactivity assembly. </p>
<p>In the XAML, add this code and namespaces.<br />
<span>xmlns</span><span style="color:#38ACEC;">:</span><span style="color:#ff0000;">i</span><span style="color:#38ACEC;">=&#8221;clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity&#8221;</span></p>
<p><span>xmlns</span><span style="color:#38ACEC;">:</span><span style="color:#ff0000;">behavior</span><span style="color:#38ACEC;">=&#8221;clr-namespace:CustomBehaviors;assembly=CustomBehaviors&#8221;</span></p>
<p><span>xmlns</span><span style="color:#38ACEC;">:</span><span style="color:#ff0000;">custom</span><span style="color:#38ACEC;">=&#8221;clr-namespace:CustomControl;assembly=CustomControl&#8221;</span></p>
<p>Now we can use our custom behavior and control. </p>
<p><code><span style="color:#38ACEC;font-size:x-small;">&lt;</span><span style="color:#a31515;">custom</span><span style="color:#38ACEC;">:</span><span style="color:#a31515;">MyControl</span><span style="color:#ff0000;"> x<span style="color:#38ACEC;">:</span><span style="color:#ff0000;">Name</span><span style="color:#38ACEC;">="myControl"&gt;</span><br />
<span style="color:#38ACEC;margin-left:13px;">&lt;</span><span style="color:#a31515;">i</span><span style="color:#38ACEC;">:</span><span style="color:#a31515;">Interaction.Behaviors</span><span style="color:#38ACEC;">&gt;</span><br />
<span style="color:#38ACEC;margin-left:26px;">&lt;</span><span style="color:#a31515;">behavior</span><span style="color:#38ACEC;">:</span><span style="color:#a31515;">DragInDropBehavior</span><span style="color:#38ACEC;">&gt;<br />
<span style="margin-left:26px;">&lt;</span>/</span><span style="color:#a31515;">behavior</span><span style="color:#38ACEC;">:</span><span style="color:#a31515;">DragInSnapBehavior</span><span style="color:#38ACEC;">&gt;</span><br />
<span style="color:#38ACEC;margin-left:13px;">&lt;/</span><span style="color:#a31515;">i</span><span style="color:#38ACEC;">:</span><span style="color:#a31515;">Interaction.Behaviors</span><span style="color:#38ACEC;">&gt;</span><br />
<span style="color:#38ACEC;font-size:x-small;">&lt;/</span><span style="color:#a31515;">custom</span><span style="color:#38ACEC;">:</span><span style="color:#a31515;">MyControl</span><span style="color:#38ACEC;">&gt;</span></span><br />
</code></p>
<p>As you can see the <code>AssociateObject</code> is the <code>custom:MyControl</code>. If there is a tight coupling between the action and the behavior, use behaviors. Otherwise, use Triggers and Actions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/307/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=307&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2010/01/16/silverlight-drag-n-drop-behaviors-and-custom-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>
	</item>
		<item>
		<title>Triberg Weihnachtszauber</title>
		<link>http://shirl9141.wordpress.com/2010/01/08/triberg-weihnachtszauber/</link>
		<comments>http://shirl9141.wordpress.com/2010/01/08/triberg-weihnachtszauber/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 17:48:41 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[2009]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[New Year]]></category>
		<category><![CDATA[Things to do]]></category>
		<category><![CDATA[Triberg]]></category>
		<category><![CDATA[Year]]></category>
		<category><![CDATA[Cuckoo Clocks]]></category>
		<category><![CDATA[Feuershow]]></category>
		<category><![CDATA[German Grandfather Clocks]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[New Year's Eve]]></category>
		<category><![CDATA[Weihnachtszauber]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=279</guid>
		<description><![CDATA[Happy New Year!  When living in Europe, where to spend New Year&#8217;s Eve is always a difficult decision, so many places to visit. Last year we spent New Year&#8217;s Eve in Dusseldorf, Germany, which was a scary and exciting adventure. We had a 360-degree view of fireworks plus we were dodging fireworks on the ground. It is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=279&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Happy New Year!  When living in Europe, where to spend New Year&#8217;s Eve is always a difficult decision, so many places to visit. Last year we spent New Year&#8217;s Eve in Dusseldorf, Germany, which was a scary and exciting adventure. We had a 360-degree view of fireworks plus we were dodging fireworks on the ground. It is evident that Germany does not have the safety regulation like we have in the United States.<a href="http://shirl9141.files.wordpress.com/2010/01/waterfall.jpg"><img class="alignleft size-medium wp-image-299" style="padding:5px;" title="Largest Waterfall in Germany" src="http://shirl9141.files.wordpress.com/2010/01/waterfall.jpg?w=300&#038;h=199" alt="Largest Waterfall in Germany" width="300" height="199" /></a></p>
<p>This year we decided to take a chance and spend New Year&#8217;s Eve in a small, but touristy town, instead of a big city.  We spent only one night there, New Year&#8217;s Eve. As we drove into the town, we expected to find a huge crowd and traffic jams. Instead we found a parking spot right in front of the <a href="http://www.triberger-weihnachtszauber.de/" target="_blank">Triberger Weihnachtszauber</a> entrance and maybe only a few 100 people.  We knew something wasn&#8217;t quite right, but we decided to proceed further. From the <a href="http://www.triberger-weihnachtszauber.de/" target="_blank">website,</a> we thought we could hike the <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Triberger+Wasserf%C3%A4lle&amp;sll=51.001208,6.05302&amp;sspn=0.00902,0.02635&amp;ie=UTF8&amp;hq=&amp;hnear=Triberg+im+Schwarzwald,+Schwarzwald-Baar-Kreis,+Baden-W%C3%BCrttemberg,+Germany&amp;t=h&amp;ll=48.143525,8.231335&amp;spn=0.076515,0.2108&amp;z=13&amp;iwloc=A&amp;cid=12634888609794460729" target="_blank">largest waterfall</a> in Germany before the Triberger Weihnachtszauber opened at 2pm, but we had no luck. All the entrances to the waterfall were blocked.  So we waited for the Triberger Weihnachtszauber to open.  There wasn&#8217;t much going on during the day, so we paid our  8 Euro fee and decided to return when it was dark.</p>
<p>So we did what any tourist would do, go shopping! The shops in Triberg are unique. After all, Triberg is where the cuckoo clock originated from. My favorite store is <a href="http://hausder1000uhren.de/shop_list.php?lang=en" target="_blank">Haus der 1000 Uhren</a>. Of course, this store is a chain throughout this area, but this shop is unique. The entrance has a huge cuckoo clock with a family of bears, one is climbing up and down the building. The thing I find unique about this store is the vast array of clocks they have to offer from modern to the typical, old German style. You can spend at least an hour in this store.  Here are a few other places of interest:</p>
<ul>
<li><a href="http://www.hubertherr.de/english/chronicle.asp" target="_blank">Hubert Herr</a> cuckoo clock factory</li>
<li>A wood carving shop a few stores from the Sparkasse bank. Look for &#8220;Holz&#8221;. The detail in the wood carvings is amazing, but be prepared to spend a substantial amount of money. One small Christmas tree ornament can run anywhere from 3 Euro to 100 euro.</li>
<li>Heller Cafe Conditorei, a few stores down from Sparkasse bank. Their drink menu is impressive with Irish Coffee, a plethora of teas to choose from, hot chocolate( lecker!), cappuccino, etc. The raspberry tort and cappuccino cheesecake are scrumptious. Don&#8217;t forget the Black Forest cake.</li>
<li><a href="http://www.lilie-triberg.de/" target="_blank">Landgasthof zur Lilie</a> &#8211; great atmosphere, fast service, and wonderful desserts. They only serve German food. Sorry kids, no hot dogs or hamburgers. The food was good . The menu was small, but the desserts certainly made up for it. We had the apfel strudel, wasserfalle becher, and the crème brule,  which so far beat any German dessert I have had so far.</li>
<li><a href="http://www.dasferienland.de/e/sehenswertes.asp" target="_blank">Other places of interest in or near Triberg</a>.</li>
</ul>
<p style="text-align:center;"><a href="http://shirl9141.files.wordpress.com/2010/01/triberg_1.jpg"><img class="size-medium wp-image-284 aligncenter" title="Triberg" src="http://shirl9141.files.wordpress.com/2010/01/triberg_1.jpg?w=300&#038;h=211" alt="Triberg Landgasthof" width="300" height="211" /></a></p>
<p style="text-align:left;">After a day of shopping, we returned to the <a href="http://www.triberger-weihnachtszauber.de/anfahrt.php" target="_blank">Weinachtszaube</a>r, which consisted of the most impressive Christmas lights in Germany. There were 750,000 lights and fire show to add to the glow of this small town. There are 5 shows a night next to the waterfall. You can take some spectacular photos of the <a href="http://www.triberger-weihnachtszauber.de/anfahrt.php" target="_blank">Fire Glory</a> show, waterfall, and Christmas lights. Although this is wonderful sight to see, I would not recommend coming here on New Year&#8217;s Eve.  The last show ended at 9pm and then Triberg became a ghost town.</p>
<p style="text-align:center;"><a href="http://shirl9141.files.wordpress.com/2010/01/triberg.jpg"><img class="size-medium wp-image-283 aligncenter" title="Triberg" src="http://shirl9141.files.wordpress.com/2010/01/triberg.jpg?w=300&#038;h=209" alt="" width="300" height="209" /></a></p>
<p>If I had to do this all over again. I would show up on the last day of the Weihnachtszauber when you can view the Grand Finale Fireworks show, the Alphornblaser, and the <a href="http://www.triberger-weihnachtszauber.de/anfahrt.php" target="_blank">Fire Glory</a> all in one day. New Year&#8217;s Day probably would work too since everything is open. It was busier New Year&#8217;s Day than  New Year&#8217;s Eve.  Who would have thunk it!</p>
<p>Also near Triberg in Schonachbach, is home to the largest cuckoo clock in the world at <a href="http://www.eble-uhren-park.de/" target="_blank">Eble Uhren-Park</a>.  On New Year&#8217;s day, we spent hours in the store looking at the various cuckoo and grandfather clocks.  Here you will be able to customize and order  your grandfather clock.</p>
<p>What about the fireworks, you ask. Not to worry. Fireworks are not regulated like they are in the United States and everyone is buying fireworks and celebrating the New Year. Anywhere you go in Germany, you are bound to see fireworks. In fact, we had our very own personal  fireworks show right outside our window. The family that owned the guest house that we were staying at were setting off fireworks in the middle of the street. It wasn&#8217;t Dusseldorf, but it was still a blast!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/279/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=279&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2010/01/08/triberg-weihnachtszauber/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2010/01/waterfall.jpg?w=300" medium="image">
			<media:title type="html">Largest Waterfall in Germany</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2010/01/triberg_1.jpg?w=300" medium="image">
			<media:title type="html">Triberg</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2010/01/triberg.jpg?w=300" medium="image">
			<media:title type="html">Triberg</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating a simple online subversion repository</title>
		<link>http://shirl9141.wordpress.com/2010/01/06/creating-a-simple-online-subversion-repository/</link>
		<comments>http://shirl9141.wordpress.com/2010/01/06/creating-a-simple-online-subversion-repository/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 14:29:00 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[dynamic ip]]></category>
		<category><![CDATA[DynDNS]]></category>
		<category><![CDATA[svnserve]]></category>
		<category><![CDATA[TortoiseSVN]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=254</guid>
		<description><![CDATA[There are various options for creating an online subversion repository, but we want something affordable. There is a substantial amount of companies that offer this service, such as CVSDude or BeanStalk, at a reasonable price, but free sounds more reasonable to me. Of course, you get what you pay for, but sometimes we don&#8217;t need all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=254&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are various options for creating an <span style="color:orange;">online subversion repository</span>, but we want something affordable. There is a substantial amount of companies that offer this service, such as <a href="http://cvsdude.com/" target="_blank">CVSDude</a> or <a href="http://beanstalkapp.com/" target="_blank">BeanStalk</a>, at a reasonable price, but free sounds more reasonable to me. Of course, you get what you pay for, but sometimes we don&#8217;t need all the bells and whistles they have to offer. So, I will give you an overview of how to set up a simple repository on your home pc and to be able to access it anywhere on the internet. I researched two options: Apache Server and <span style="color:orange;">svnserve</span>. I opt for svnserve since it is easier to set up. There are more features with Apache Server. If you have more time I would definitely recommend Apache Server over svnserve, but svnserve will suffice for now. I will give you an overview, but if you need more details refer to <a href="http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-serversetup-svnserve.html#tsvn-serversetup-svnserve-2" target="_blank">tortoisesvn.net</a>. First <a href="http://subversion.tigris.org/" target="_blank">download and install the subversion client</a>. I&#8217;m using TortoiseSVN for Windows.</p>
<ul>
<li><span style="color:orange;">Then download and install the svnserve service.</span> <a href="http://www.open.collab.net/downloads/subversion/" target="_blank">http://www.open.collab.net/downloads/subversion/</a>. When you are installing, make sure the install svnserve to run as Windows service is selected. I didn&#8217;t download CollabNet Desktops integrate subversion and TeamForge with the Eclipse and Visual Studio IDE&#8217;s, but you are more than welcome to download these. I should forewarn you that TeamForge is not free.</li>
<li><span style="color:orange;">Create the repository in c:\svn_repository.</span> After the install, right-click the &#8220;svn_repository&#8221; folder to bring up the context menu and select <a href="http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-repository.html" target="_blank">TortoiseSVN &#8211;&gt; create repository here</a>.</li>
<li><span style="color:orange;">To add in specific user</span>, edit the svnserve.conf file in the conf directory to use the default password-db file and authz-db file by uncommenting these two lines. I also uncommented the line indicating an anonymous user will not have read and write access, &#8220;none&#8221;. So, all users have to be authenticated before accessing the repository.</li>
<li><span style="color:orange;">Next add in your user names and passwords to the authz and passwd file.</span> Make sure user names and group names are unique. For the authz, passwd, and svnserve.conf files, make sure there are no spaces in front of the line that you uncommented or added. Give the user read and/or write privileges in the authz file. I gave my user read and write privileges to the root directory. For example,<br />
[/]<br />
user1 = rw</li>
<li>If you want a specific user to start-up the svnserve service, you can either modify these settings by the command line or search for CollabNet Subversion svnserve service under Computer management &#8211;&gt; Services. Right click the computer in the start menu and select manage to access computer management. From here you can also start the service or use the DOS command svnserve.exe&#8221; &#8211;service -r &#8220;c:\svn_repository&#8221; &#8211;listen-port &#8220;3690&#8243; .</li>
</ul>
<p>That&#8217;s it for setting up the repository. Next we need to make the repository accessible from the internet. Depending on your router, it may or may not support <span style="color:orange;">port forwarding</span>. If the router supports port forwarding, then configure your router to port forward from port 3690 to your machine IP address where the repository resides.</p>
<p>I have one more tidbit to share with you about <span style="color:orange;">dynamic IP addressing</span>. If your ISP issued you a static IP address, then you are done and should be able to access the repository from anywhere, home, work, etc. If not, then you have to deal with the annoying dynamic IP address issue. I used <a href="http://www.dyndns.com/services/dns/dyndns/" target="_blank">DynDNS.com</a> to solve this issue and what is the cost you ask. Of course, it is free. You can register up to 5 host names for free. After you register your IP address, then download the <a href="http://www.dyndns.com/support/clients/" target="_blank">DynDNS Update client</a>, the software version. If the installation process went as expected, now you can start using your repository.</p>
<p>First we need to <span style="color:orange;">test</span> whether we can access the repository Right-click any folder on your desktop where you want to checkout your repository. Select TortoiseSVN &#8211;&gt;Repo-browser. Type <span style="color:orange;">svn://&lt;your-ip-address&gt;:3690.</span> &lt;your-ip-address&gt; is either the router IP address or the host name you established through <a href="http://www.dyndns.com/services/dns/dyndns/" target="_blank">DynDNS.com</a>. Log in with the credentials that you specified in the authz and passwd file. If you encounter no errors, then you have succeeded in creating a simple online subversion repository. Choose a folder on your desktop and right-click the folder to checkout. You can now import and add files as you wish.</p>
<p>The next step is to <a href="http://ankhsvn.open.collab.net/" target="_blank">download</a> and install<a href="http://ankhsvn.open.collab.net/" target="_blank"> <strong>AnkhSVN</strong> </a>for Visual Studio. </p>
<p><a href="http://subversion.tigris.org/links.html" target="_blank">More subversion goodies.</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/254/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=254&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2010/01/06/creating-a-simple-online-subversion-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>
	</item>
		<item>
		<title>Arts and Crafts stores near Geilenkirchen</title>
		<link>http://shirl9141.wordpress.com/2009/11/10/arts-and-crafts-stores-near-geilenkirchen-germany/</link>
		<comments>http://shirl9141.wordpress.com/2009/11/10/arts-and-crafts-stores-near-geilenkirchen-germany/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 11:57:42 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[Arts & Crafts]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Shopping]]></category>
		<category><![CDATA[Arts and crafts]]></category>
		<category><![CDATA[Fabric]]></category>
		<category><![CDATA[Geilenkirchen]]></category>
		<category><![CDATA[Sewing]]></category>
		<category><![CDATA[Sewing Supplies]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=128</guid>
		<description><![CDATA[We are throwing a promotion party, but we haven&#8217;t found any place that rents party supplies located in Germany. So, we have decided to make our own decorations. So far, I haven&#8217;t found Germany&#8217;s equivalent to our Hobby Lobby or Micheals in the US.  With that said you may need to make more than one trip to find all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=128&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We are throwing a promotion party, but we haven&#8217;t found any place that rents party supplies located in Germany. So, we have decided to make our own decorations.</p>
<p>So far, I haven&#8217;t found Germany&#8217;s equivalent to our Hobby Lobby or Micheals in the US.  With that said you may need to make more than one trip to find all your arts &amp; craft supplies. Here are few stores that are within 45 mins of Geilenkirchen.</p>
<p><a href="http://www.pipoos.nl/" target="_blank">Pipoos</a> is a chain in the Netherlands.  There are numerous locations in the <a href="http://www.pipoos.nl/winkel_benelux.php?Sort=6" target="_blank">Netherlands, and a few in Belgium</a>, but Heerlen is the closest store to Geilenkirchen. The store in Heerlen is really small, but  they do have a great selection on acrylic paints, decorative paper and envelopes including vellum, stencils,  gold leaf foil, large textured paper, and some styrofoam shapes. <a href="http://www.hobbyhandboek.nl/catalogus.asp" target="_blank">Click here </a>for more information about the products they carry. Also a little side note, they do not carry mat board.</p>
<table border="0" cellspacing="0" cellpadding="0" width="680">
<tbody>
<tr>
<td width="185" valign="top">Pipoos Heerlen<br />
Bongerd Passage 10<br />
6411 JM Heerlen<br />
Tel: 045-571 51 11<br />
<a href="http://www.pipoos.nl/winkels/heerlen.htm#/javascript:void()">Directions</a></td>
<td width="196" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="200" align="left">
<tbody>
<tr>
<td width="20" valign="top">Mom<br />
Di<br />
Wed<br />
Do<br />
Fri<br />
Sat<br />
So</td>
<td width="180" align="left" valign="top">closed<br />
10.00 to 17.30 hours<br />
10.00 to 17.30 hours<br />
10.00 to 17.30 hours<br />
10.00 to 17.30 hours<br />
10.00 to 17.00 hours<br />
closed</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p>In Geilenkirchen, look for Buchandlung to find art and craft supplies. Buchandlung is the German word for book store, but most of them carry art supplies.  There are two in Geilenkirchen:</p>
<p>Lyne Bon De Berg, across from Rewe &#8211; I really like this store. they have a large selection of different types of media: charcoal, ink, pen,  and paint.</p>
<p>Marlene Mühlbauer Buchandlung &#8211; has a very small selection of art supplies, but they did carry unique wrapping paper and many types of writing utensils.</p>
<p>Konrad-Adenauer-Straße 128<br />
52511 Geilenkirchen</p>
<p>In Birgden, there is a great place for art and craft supplies. <a href="http://www.malerbetrieb-pelzer.de/de/index.htm" target="_blank">Pelzer </a>has wide range of items: kids toys, large selection of paper, notebooks, graphing paper, contact paper, crepe paper (waterproof),  and large sheets of decorative paper. They even carry white-out. You can also find Halloween decorations, paper and a few costumes.  Don&#8217;t forget to look behind the counter to find other supplies such as, wooden handle stamps.  The other end of the store has a few houseware items like the <a href="http://solutions.3m.com/wps/portal/3M/en_US/Command/home/" target="_blank">command strips</a>, paint, and wallpaper.</p>
<table border="0" cellspacing="0" cellpadding="0" width="190">
<tbody>
<tr>
<td width="46">Mo &#8211; Fr:</td>
<td width="9"> </td>
<td width="135">08.00 &#8211; 12.30</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>14.30 &#8211; 18.30</td>
</tr>
<tr>
<td>Sa:</td>
<td> </td>
<td>08.00 &#8211; 13.00</td>
</tr>
</tbody>
</table>
<p><a href="http://www.hornbach.com/home/nl/html/fs_root.html" target="_blank">Hornbach</a>, our Home Depot, in the Netherlands carries large vases, stones, fake flowers and leaves, and picture frames. Another good place to look is <a href="http://www.ikea.com/nl/nl/store/heerlen/storeInfo" target="_blank">IKEA in Herleen</a>. This store is enormous. The location for all the decorations is downstairs. If you pick up  a large item from the warehouse, make sure you write down the number of your item. Use this number to check-out and for pickup.</p>
<p>Here are a few other stores that I haven&#8217;t been to yet, but maybe they will have what you need.</p>
<p><a href="http://www.hobbycenter-aachen.de/" target="_blank">Hobby Center</a><br />
Trierer Straße 720<br />
52078 Aachen</p>
<p><a href="http://www.hobbyschuurtje.nl/" target="_blank">&#8216;t Hobbyschuurtje<br />
</a>Dorpstraat 103<br />
6441 CD Brunssum</p>
<div><a></a>La Mano Creatief:<img src="http://maps.gstatic.com/intl/en_ALL/mapfiles/transparent.png" alt="" />‎</div>
<div>
<table>
<tbody>
<tr>
<td>
<div>
<div id="iscentroid">Hoofdstraat 11<a target="_parent"></a></div>
<div>6431 LA Hoensbroek, Netherlands<a target="_parent"></a></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>Here is a list of <a href="http://www.hobbywinkel-info.nl/azindex.php" target="_blank">hobby shops in the Netherlands</a>.</p>
<p><span style="color:lightcoral;">If you are looking for</span><em> </em><strong><em><span style="color:cornsilk;">fabric</span></em> </strong><span style="color:lightcoral;">or</span> <strong><em><span style="color:cornsilk;">sewing items</span></em></strong>. <span style="color:lightcoral;">The fabric market held every Thursday in Sittard until noon is your best bet. They carry a vast array of fabrics and sewing supplies for a cheap price, around 1-2 Euro a meter for fabric. You will also find the following: food, fresh-baked bread, cheese (try Hollandse Gaten kaas), fruits and vegetables, dog treats, purses, fake mink, fur, sequence, art supplies( limited), formal dresses, CDs, baskets, bike supplies, and more.</span></p>
<p>Of course, you can also try the JFC <em>Brunssum Arts and Crafts</em> Center.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=128&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2009/11/10/arts-and-crafts-stores-near-geilenkirchen-germany/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>

		<media:content url="http://maps.gstatic.com/intl/en_ALL/mapfiles/transparent.png" medium="image" />
	</item>
		<item>
		<title>APO Shipping Deadlines by Christmas</title>
		<link>http://shirl9141.wordpress.com/2009/11/09/apo-shipping-deadlines-by-christmas/</link>
		<comments>http://shirl9141.wordpress.com/2009/11/09/apo-shipping-deadlines-by-christmas/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 07:34:14 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[2009]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[APO Shipping]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Military]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=191</guid>
		<description><![CDATA[He listed below the major dates recommended for mail to be delivered by Dec. 25. Nov. 13 —Parcel Post to military APO/FPO addresses. Dec. 4 —First-Class cards and letters or Priority Mail to military APO AE ZIP 093 addresses. Dec. 11 —First-Class cards and letters or Priority Mail to all other military APO/FPO addresses. Dec. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=191&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>He listed below the major dates recommended for mail to be delivered by Dec. 25.</p>
<ul>
<li>Nov. 13 —Parcel Post to military APO/FPO addresses.</li>
<li>Dec. 4 —First-Class cards and letters or Priority Mail to military APO AE ZIP 093 addresses.</li>
<li>Dec. 11 —First-Class cards and letters or Priority Mail to all other military APO/FPO addresses.</li>
<li>Dec. 18—Express Mail Military Service to all military APO/FPO addresses except APO ZIP 093.</li>
<li>Dec. 4 —Priority Mail and First-Class Mail to Africa and Central or South America International Mail locations.</li>
<li> Dec. 11 —Priority Mail and First-Class Mail to all other International Mail locations.</li>
<li>Dec. 12—Express Mail International to Africa and Central and South America.</li>
<li>Dec. 17 —Express Mail International to all other countries (except Canada, Dec. 18).</li>
<li>Dec. 19—Global Express Guaranteed to all countries (except Canada, Dec. 20).</li>
</ul>
<p>Update for 2010:</p>
<table border="0" cellspacing="0" cellpadding="2">
<col span="1" width="258"></col>
<col span="1" width="65"></col>
<col span="1" width="150"></col>
<col span="1" width="67"></col>
<col span="1" width="57"></col>
<col span="1" width="68"></col>
<col span="1" width="75"></col>
<tbody>
<tr style="color:orange;">
<td> </td>
<td width="65">EMMS</td>
<td width="100">First-Class Letters/Cards</td>
<td width="67">Priority</td>
<td width="57">PAL</td>
<td width="68">SAM</td>
<td width="75">Parcel Post</td>
</tr>
<tr>
<td height="20"><strong>APO/FPO AE ZIPs 090-092</strong></td>
<td>18-Dec</td>
<td>10-Dec</td>
<td>10-Dec</td>
<td>3-Dec</td>
<td>26-Nov</td>
<td>12-Nov</td>
</tr>
<tr>
<td height="20"> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td height="20"><strong>APO/FPO AE ZIP 093</strong></td>
<td>NA</td>
<td>4-Dec</td>
<td>4-Dec</td>
<td>1-Dec</td>
<td>20-Nov</td>
<td>12-Nov</td>
</tr>
<tr>
<td height="20"> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td height="20"><strong>APO/FPO AE ZIPs 094-098</strong></td>
<td>18-Dec</td>
<td>10-Dec</td>
<td>10-Dec</td>
<td>3-Dec</td>
<td>26-Nov</td>
<td>12-Nov</td>
</tr>
<tr>
<td height="20"> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td height="20"><strong>APO/FPO AA ZIP 340</strong></td>
<td>18-Dec</td>
<td>10-Dec</td>
<td>10-Dec</td>
<td>3-Dec</td>
<td>26-Nov</td>
<td>12-Nov</td>
</tr>
<tr>
<td height="20"> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><strong>APO/FPO AP ZIPs 962-966</strong></td>
<td>18-Dec</td>
<td>10-Dec</td>
<td>10-Dec</td>
<td>3-Dec</td>
<td>26-Nov</td>
<td>12-Nov</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=191&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2009/11/09/apo-shipping-deadlines-by-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>
	</item>
		<item>
		<title>European Christmas Markets</title>
		<link>http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/</link>
		<comments>http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 10:12:53 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[Christmas Market]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Things to do]]></category>
		<category><![CDATA[Belgium]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Geilenkirchen]]></category>
		<category><![CDATA[Netherlands]]></category>
		<category><![CDATA[Weihnachts markt]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=162</guid>
		<description><![CDATA[It is getting that time of the year for the festive season. Christmas Markets are unique and fascinating to see during the holiday season. Here you will be able to find hand crafted toys, fresh-baked bread, wood carvings, marionettes, candles and lambskin shoes. The sky is lite up at night with Christmas lights displaying &#8220;Weihnachtsmarkt&#8221;, meaning Christmas market. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=162&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is getting that time of the year for the festive season. Christmas Markets are unique and fascinating to see during the holiday season. Here you will be able to find hand crafted toys, fresh-baked bread, wood carvings, marionettes, candles and lambskin shoes. The sky is lite up at night with Christmas lights displaying &#8220;Weihnachtsmarkt&#8221;, meaning Christmas market. Most of the Christmas markets start around the end of November. Here are a few popular Christmas markets within an hour drive from Geilenkirchen.</p>
<p><a href="http://bruxelles-tourisme.be/informations/events_bruxelles__winter_wonders___christmas_market_and_ice_skating_rink/en/E/19370.html" target="_blank">Brussels, Belgium in the Grand Palace. </a>- including an ice skating rink. <strong>Opening periods:</strong></p>
<ul id="Period">
<li>from Friday 27 November 2009 to Sunday 3 January 2010
<ul>
<li>monday-thursday : 12:00-21:00</li>
<li>friday-sunday : 11:00-22:00</li>
</ul>
</li>
</ul>
<p>The Christmas Market in Brussels is very disappointing with only a few tents, but the light show is definitely worth seeing in the Grand Place.</p>
<p><a href="http://shirl9141.files.wordpress.com/2009/11/dsc_0071.jpg"><img class="size-medium wp-image-280 alignright" title="Grand Place Light Show" src="http://shirl9141.files.wordpress.com/2009/11/dsc_0071.jpg?w=300&#038;h=199" alt="" width="300" height="199" /></a></p>
<p><a href="http://www.germany-christmas-market.org.uk/aachen_christmas_market.htm" target="_blank">Aachener Christmas Market</a><strong><span style="font-family:Arial;font-size:x-small;"> &#8211; </span></strong>from Friday 20 November 2009 to Wednesday 23 December 2009<span style="font-family:Arial;font-size:xx-small;"><br />
11am-9pm daily<br />
Sunday 22.11.: 6pm-9pm </span></p>
<p><span style="font-family:Arial;font-size:xx-small;"> </span></p>
<p><a href="http://www.germany-christmas-market.org.uk/cologne_christmas_market.htm" target="_self">Cologne Christmas Market</a> &#8211; Offers a total of 7 Christmas Markets. <span style="font-family:Arial;color:#990033;font-size:x-small;">Most Christmas Markets in Cologne will start on the <strong>November 23. </strong>The Floating Christmas Market<strong> </strong>and the Christmas Market am Stadtgarten starts on the<strong> November 26</strong>,<strong> </strong>whilst the Cologne Medieval Christmas Market will open a day later on the <strong>November 27. </strong></span></p>
<p><span style="font-family:Arial;color:#990033;font-size:x-small;"><strong> </strong></span></p>
<p><span style="font-family:Arial;color:#990033;font-size:x-small;"><strong><a href="http://www.germany-christmas-market.org.uk/duesseldorf_christmas_market.htm" target="_blank">Dusseldorf Christmas Market-</a></strong></span> from Thursday 19 November 2009 to Wednesday 23 December 2009</p>
<p>Sun-Thu 11am-8pm<br />
Fri-Sat 11am-9pm<br />
Closed on Sun 22 Nov</p>
<p><span style="font-family:Arial;color:#990033;font-size:x-small;"><strong><a href="http://www.germany-christmas-market.org.uk/monschau_christmas_market.htm" target="_blank">Monchau Christmas Market</a> &#8211; </strong></span>from Friday 27 November 2009 to Sunday 20 December 2009<br />
<span style="font-family:Arial;font-size:xx-small;">Fri-Sun 11am-8pm</span></p>
<p><span style="font-family:Arial;font-size:xx-small;"> </span><span style="font-family:Arial;font-size:xx-small;">More <a href="http://www.germany-christmas-market.org.uk/" target="_blank">German Christmas Markets. </a></span></p>
<p>From my experience, I found that German Markets have a wider range of unique and handmade items. Although, the <a href="http://christmasmarkets.wordpress.com/2008/10/03/valkenburg-christmas-markets-and-velvet-cave/" target="_blank">Valkenburg Christmas Market</a> in Holland is unique in itself. The Christmas Market is held under the town in old caves that have existed since the Romans quarried the local yellow stone.</p>
<p>Maastricht, Netherlands &#8211; The Winterland Maastricht will start on the 1st of December 2007 and takes 5 weeks until the 6th of January 2008. The Vrijthof in Maastricht will change in a winter square with a Christmas Market, an ice-rink, a big wheel, christmas-train and a grand carousel. Of course there is glühwein (warm red wine) and a lot of other drinks and food.The market is open daily (including Sundays) from 11.00h until 22.00h located in Vrijthof.</p>
<p>I found that the Winterland Maastricht Christmas Market is a wonderful place for kids because of the various roller coasters.
<a href='http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/maastricht_3/' title='Maastricht_3'><img width="150" height="105" src="http://shirl9141.files.wordpress.com/2009/11/maastricht_3.jpg?w=150&#038;h=105" class="attachment-thumbnail" alt="Maastricht_3" title="Maastricht_3" /></a>
<a href='http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/maastricht_6/' title='Maastricht_6'><img width="119" height="150" src="http://shirl9141.files.wordpress.com/2009/11/maastricht_6.jpg?w=119&#038;h=150" class="attachment-thumbnail" alt="Maastricht_6" title="Maastricht_6" /></a>
<a href='http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/maastricht_7/' title='Maastricht_7'><img width="150" height="129" src="http://shirl9141.files.wordpress.com/2009/11/maastricht_7.jpg?w=150&#038;h=129" class="attachment-thumbnail" alt="Maastricht_7" title="Maastricht_7" /></a>
<a href='http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/maastricht_11/' title='Maastricht_11'><img width="150" height="99" src="http://shirl9141.files.wordpress.com/2009/11/maastricht_11.jpg?w=150&#038;h=99" class="attachment-thumbnail" alt="Maastricht_11" title="Maastricht_11" /></a>
<a href='http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/maastricht_12/' title='Maastricht_12'><img width="150" height="99" src="http://shirl9141.files.wordpress.com/2009/11/maastricht_12.jpg?w=150&#038;h=99" class="attachment-thumbnail" alt="Maastricht_12" title="Maastricht_12" /></a>
<a href='http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/dsc_0071/' title='Grand Place Light Show'><img width="150" height="99" src="http://shirl9141.files.wordpress.com/2009/11/dsc_0071.jpg?w=150&#038;h=99" class="attachment-thumbnail" alt="Grand Place Light Show" title="Grand Place Light Show" /></a>
</p>
<p>I wasn&#8217;t impressed with the merchandise. In my opinion, the Aachener and Dusseldorf Christmas markets are the best places to go for unique and hand-crafted items. Although they did have most of their merchandise indoors, which is great when you want to get away from the cold. The Winterland Maastricht also had a better selection of food except for chocolates. They even had escargot.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=162&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2009/11/08/european-christmas-markt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2009/11/dsc_0071.jpg?w=300" medium="image">
			<media:title type="html">Grand Place Light Show</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2009/11/maastricht_3.jpg?w=150" medium="image">
			<media:title type="html">Maastricht_3</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2009/11/maastricht_6.jpg?w=119" medium="image">
			<media:title type="html">Maastricht_6</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2009/11/maastricht_7.jpg?w=150" medium="image">
			<media:title type="html">Maastricht_7</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2009/11/maastricht_11.jpg?w=150" medium="image">
			<media:title type="html">Maastricht_11</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2009/11/maastricht_12.jpg?w=150" medium="image">
			<media:title type="html">Maastricht_12</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2009/11/dsc_0071.jpg?w=150" medium="image">
			<media:title type="html">Grand Place Light Show</media:title>
		</media:content>
	</item>
		<item>
		<title>25th Lambertus Jubilee Market 2009 in Selfkant</title>
		<link>http://shirl9141.wordpress.com/2009/11/06/the-25th-lambertus-jubilee-market-2009/</link>
		<comments>http://shirl9141.wordpress.com/2009/11/06/the-25th-lambertus-jubilee-market-2009/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 16:24:58 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[Germany]]></category>
		<category><![CDATA[Festivals]]></category>
		<category><![CDATA[Geilenkirchen]]></category>
		<category><![CDATA[Jubiläumsmarkt]]></category>
		<category><![CDATA[markt]]></category>
		<category><![CDATA[November]]></category>
		<category><![CDATA[Selfkant-Höngen]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=143</guid>
		<description><![CDATA[The 25th Lambertus Jubilee Market 2009 will be held on 7th and 8th November 2009 in Selfkant-Höngen. One thing I love about Germany is that there is never a shortage of things to do. Festivals, Christmas Markets,etc are a great way to get out and experience the German culture. Ok, maybe drink some glühwein too.  Here is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=143&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.lambertusmarkt-selfkant.de/" target="_blank">25th Lambertus Jubilee Market 2009</a></p>
<h2><strong>will be held on 7th and 8th November 2009 in Selfkant-Höngen.</strong></h2>
<p>One thing I love about Germany is that there is never a shortage of things to do. Festivals, Christmas Markets,etc are a great way to get out and experience the German culture. Ok, maybe drink some glühwein too.  Here is the schedule for this weekend.</p>
<p style="text-align:center;"><img class="size-medium wp-image-146 aligncenter" title="banner04" src="http://shirl9141.files.wordpress.com/2009/11/banner04.jpg?w=300&#038;h=103" alt="banner04" width="300" height="103" /></p>
<h3>Saturday, 07.11.2009</h3>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr valign="top">
<td valign="top">15.00 Clock</td>
<td valign="top">Meeting of the honored guests in the marquee pastors-Meising Street,<br />
Opening of the 25th Lambert&#8217;s market and a section of the longest Selfkänter apple strudel by the patrons, Klaus-Dieter Kroll, Board Member and Bank Director of Raiffeisenbank eG Heinsberg</td>
</tr>
<tr>
<td>from 15.00 clock</td>
<td>colorful market life, street Saate harmony, organ play, stage show</td>
</tr>
<tr valign="top">
<td valign="top">15.15 Clock</td>
<td valign="top">Tour guests of honor on the market</td>
</tr>
<tr>
<td>15.45 Clock</td>
<td>Marching Havert stage Kirchstraße</td>
</tr>
<tr>
<td valign="top">From 16.30 clock</td>
<td valign="top">Marquee: official welcoming ceremony with the distinguished guests, welcome speeches and cultural framework, 16.30 clock appearances dialect choir and band from 17.15 clock ado</td>
</tr>
<tr>
<td valign="top">16.30 Clock</td>
<td valign="top">Arrival of Saint Martin</td>
</tr>
<tr valign="top">
<td>16.45 Clock</td>
<td>St. Martin playing on the stage Kirchstraße</td>
</tr>
<tr>
<td>17.30 Clock</td>
<td>DHF Band Stage Kirchstraße</td>
</tr>
<tr>
<td valign="top">18.00 Clock</td>
<td valign="top">St. Martin Fire</td>
</tr>
<tr>
<td valign="top">18.00-19.00 Clock</td>
<td valign="top">Youth Band Cunt Daggers from Bocket on stage Kirchstraße (sponsored by Meat Vossen Selfkant-Höngen)</td>
</tr>
<tr>
<td valign="top"> </td>
<td valign="top"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr valign="top">
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<h3>Sunday, 08.11.2009</h3>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr valign="top">
<td valign="top">Market</td>
<td valign="top"> </td>
</tr>
<tr valign="top">
<td valign="top">10.00 Clock</td>
<td valign="top">Beginning of the colorful bustle of the market, children&#8217;s flea market</td>
</tr>
<tr valign="top">
<td valign="top">from 11.00 clock</td>
<td valign="top">Street theater, Saate harmony, organ playing, musical entertainment on the stage,</td>
</tr>
<tr valign="top">
<td valign="top"> </td>
<td valign="top">Stilt walkers, magicians, Walkacts, children&#8217;s carousel, face painting, weather permitting Oldtimershow</td>
</tr>
<tr valign="top">
<td valign="top">Marquee</td>
<td valign="top"> </td>
</tr>
<tr valign="top">
<td valign="top">from 11.00 clock</td>
<td valign="top">&#8220;Yummy Selfkant&#8221; with the longest Selfkänter apple strudel, and local and international delicacies</td>
</tr>
<tr valign="top">
<td valign="top">11.30 &#8211; 15.00 clock</td>
<td valign="top">Cafe piano music</td>
</tr>
<tr valign="top">
<td>15.00 &#8211; 16.00 clock</td>
<td>Vocal Duo</td>
</tr>
<tr valign="top">
<td>16.00 &#8211; 17.00 clock</td>
<td>Screening of different dance styles</td>
</tr>
<tr valign="top">
<td> </td>
<td> </td>
</tr>
<tr valign="top">
<td>Stage Kirchstraße</td>
<td> </td>
</tr>
<tr valign="top">
<td>11.30 Clock</td>
<td>Drum corps Höngen</td>
</tr>
<tr valign="top">
<td>12.30 &#8211; 15.00 clock</td>
<td>Life Teen</td>
</tr>
<tr valign="top">
<td>15.30 Clock</td>
<td>Mem schoes</td>
</tr>
<tr valign="top">
<td>16.15 Clock</td>
<td>Fife Band</td>
</tr>
</tbody>
</table>
<p>If you would like to check out more events in Selfkant-Höngen, Germany, check out the <a href="http://www.selfkantblogger.de/" target="_self">Selfkant blog </a>(in German).</p>
<p>If you would like to know when the big festivals are going on, like the karneval in <a href="http://www.karneval-in-duesseldorf.de/" target="_blank">Dusseldorf on November 11th</a>, check out this <a href="http://www.2camels.com/festivals/germany.php#festivals-by-city" target="_self">listing</a>.</p>
<p>Hopefully, I will see you there!</p>
<p>If you have any favorite karnevals, please share with us.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=143&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2009/11/06/the-25th-lambertus-jubilee-market-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>

		<media:content url="http://shirl9141.files.wordpress.com/2009/11/banner04.jpg?w=300" medium="image">
			<media:title type="html">banner04</media:title>
		</media:content>
	</item>
		<item>
		<title>APO Shipping and Online Purchases</title>
		<link>http://shirl9141.wordpress.com/2009/11/04/apo-shipping-and-online-purchases/</link>
		<comments>http://shirl9141.wordpress.com/2009/11/04/apo-shipping-and-online-purchases/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 09:36:40 +0000</pubDate>
		<dc:creator>shirl9141</dc:creator>
				<category><![CDATA[APO Shipping]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Military]]></category>
		<category><![CDATA[Costumes]]></category>
		<category><![CDATA[Geilenkirchen]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Party Supplies]]></category>
		<category><![CDATA[Shopping]]></category>

		<guid isPermaLink="false">http://shirl9141.wordpress.com/?p=100</guid>
		<description><![CDATA[When living overseas, there is alway this question &#8220;If I order online, will my items arrive on time&#8221;. Here are some of my experiences with APO shipping while living in Geilenkirchen, Germany and the companies that I have ordered from. Amazon.com &#8211; If shipped directly from Amazon, then you should receive your items within a week. Sometimes I had [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=100&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When living overseas, there is alway this question &#8220;If I order online, will my items arrive on time&#8221;. Here are some of my experiences with APO shipping while living in Geilenkirchen, Germany and the companies that I have ordered from.</p>
<p><a href="http://www.amazon.com/" target="_blank">Amazon.com</a> &#8211; If shipped directly from Amazon, then you should receive your items within a week. Sometimes I had packages delivered in 5 days.  There are a few companies that you have to watch out for when ordering from <a href="http://www.amazon.com/" target="_blank">Amazon</a>, but for the most part they are extremely fast when it comes to delivering. Here a list of my experiences with the following companies:</p>
<p><span style="color:#ff9966;"><strong>Adorama Camera</strong></span> &#8211; Reasonable. Within 2 weeks.<br />
<span style="color:#ff9966;"><strong>JR Mushrooms &amp; Specialties</strong></span> &#8211; Reasonable. &#8211; Within 2 weeks.<br />
<span style="color:#ff9966;"><strong>M Z Photo</strong></span> &#8211; Reasonable. &#8211; Within 2 weeks.<br />
<span style="color:#ff9966;"><strong>Brands on Sale</strong></span> - Extremely Fast. Within 1 week, but  high shipping rates.<br />
<span style="color:#ff9966;"><strong>Things You Never Knew Existed</strong></span> &#8211; Fast. Less than a week.<br />
<span style="color:#ff9966;"><strong>BlueProton</strong></span> &#8211; Amazingly Fast. Received items within 4 days.</p>
<p><span style="color:orange;text-decoration:underline;">Halloween &amp; Costume Shopping</span><br />
<span style="color:#ff9966;">Tribeca Blue</span> &#8211; Fast. Within a 1.5 weeks.<br />
<a href="http://www.buycostumes.com/" target="_blank"><span style="color:#ff9966;">BuyCostumes</span></a>- Amazingly Fast. Within a week. Even received a package in 5 days when order directly from their site.<br />
<span style="color:#ff9966;">Jekyll and Hyde</span> &#8211; Fast. Within a week.<br />
<span style="color:#ff9966;">Grim Reapers</span> &#8211; It took it two months to receive the package. The package was sent to Hawaii and back to Grim Reapers. I&#8217;m not sure why. They company was great at contacting me about the problem, but it still took them a month to ship it priority, which should only take 5-7 days.<br />
So, these are some of the companies that I have dealt with on <a href="http://www.amazon.com/" target="_blank">Amazon</a>. Here are some other companies that I have ordered from directly.</p>
<p><span style="color:#ff9966;"><a href="http://www.orientaltrading.com/" target="_blank">Oriental Trading</a></span> &#8211; It has been 6 weeks and I&#8217;m still waiting from my packages. I will probably never order from this company again. Although, I did use a 20% off <a href="http://www.retailmenot.com/view/orientaltrading.com" target="_blank">coupon</a> on the site and this could have slowed down the process, but it took them 2 weeks to ship out the door.  Update:  It has been 2 months and I haven&#8217;t receive my packages.  So I contacted the company by email and they refunded my money within 2 days. They have great customer service!</p>
<p><a href="http://www.buycostumes.com/" target="_blank">Buy costumes </a>- if you need costumes or decorations in a pinch, this is the place to go. I have ordered at least 3 times from this company and every time I received the items within a week.</p>
<p>If you are really in a pinch, I would suggest ordering from <a href="http://www.amazon.de/" target="_blank">Amazon.de</a>. You will receive your items within 2 days. It is relatively easy to navigate around if you are familiar with <a href="http://www.amazon.com/" target="_blank">Amazon.com</a>. Also,your information from Amazon.com  is readily available.</p>
<p><span style="color:orange;text-decoration:underline;">Halloween</span><br />
Here are some more great Halloween, costume, and decoration shopping sites and have received all their orders within a week: <a href="http://www.incostume.com/" target="_blank">InCostumes.com</a>, <a href="http://www.horrorklinik.de/catalog/" target="_blank">Horrorlink.de</a>(received in 3 days), <a href="http://www.racheshop.de/" target="_blank">RevengeShop.de</a>( Party Supplies), and <a href="http://www.hauntedprops.com/" target="_blank">HauntedProps</a>.</p>
<p><span style="color:#ff9966;"><a href="http://www.frightcatalog.com/" target="_blank">FrightCatalog</a></span> &#8211; website does not accept APO addresses.</p>
<table>
<tbody>
<tr>
<td>Standard<br />
Transit (Days)</td>
<td>Priority<br />
Mail</td>
<td>SAM<br />
Parcels</td>
<td>Surface<br />
Parcels</td>
<td>Parcels</td>
</tr>
<tr>
<td>Iraq</td>
<td>10-13</td>
<td>10-12</td>
<td>20-24</td>
<td>N/A</td>
</tr>
<tr>
<td>Kuwait</td>
<td>11-13</td>
<td>11-13</td>
<td>20-24</td>
<td>N/A</td>
</tr>
<tr>
<td>Afghanistan</td>
<td>10-12</td>
<td>11-13</td>
<td>20-24</td>
<td>N/A</td>
</tr>
<tr>
<td>Germany</td>
<td>7- 9</td>
<td>5-7</td>
<td>18-22</td>
<td>30-45</td>
</tr>
<tr>
<td>Japan</td>
<td>8-10</td>
<td>9-11</td>
<td>18-21</td>
<td>30-45</td>
</tr>
<tr>
<td>Korea</td>
<td>8-10</td>
<td>18-21</td>
<td>18-21</td>
<td>30-45</td>
</tr>
</tbody>
</table>
<p>Also, make sure when you order online, choose priority for the shipping options. Priority mail is the fastest delivery method. When it is shipped priority, it comes over on a plane and takes less time. If it is standard shipping, it comes over by ship and who knows how long it will take. Here is a table for delivery times overseas. ( <a href="http://www.aafes.com/pa/selling/pdf/apoguide.pdf" target="_blank">More information</a> about shipping overseas)</p>
<p>I use <a href="http://www.shipitapo.com/home.php" target="_blank">ShipItAPO</a> for purchases that cannot be shipped to APO addresses. For example, Amazon does not ship electronics to APO addresses. <a href="http://www.shipitapo.com/home.php" target="_blank">ShipItAPO</a> delivers the same day and I never had any problems with their services.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shirl9141.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shirl9141.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shirl9141.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shirl9141.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shirl9141.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shirl9141.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shirl9141.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shirl9141.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shirl9141.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shirl9141.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shirl9141.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shirl9141.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shirl9141.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shirl9141.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shirl9141.wordpress.com&amp;blog=10061627&amp;post=100&amp;subd=shirl9141&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shirl9141.wordpress.com/2009/11/04/apo-shipping-and-online-purchases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c3cdc39e0f1b1a154f89613618530e1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shirl9141</media:title>
		</media:content>
	</item>
	</channel>
</rss>
