<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Thomas Lynema&#039;s Weblog</title>
	<atom:link href="http://lynema.org/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://lynema.org</link>
	<description>Discover Goal, Work/Play, Achieve Goal, Repeat</description>
	<lastBuildDate>Thu, 10 May 2012 15:34:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Eight Years Later: Dijkstra&#8217;s Algorithm in Java by Thomas</title>
		<link>http://lynema.org/2011/06/27/eight-years-later-dijkstras-algorithm-in-java#comment-6276</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Thu, 10 May 2012 15:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=221#comment-6276</guid>
		<description>Did you figure this one out?  In general, I would advise to break the larger problem into smaller problems and take them out, one by one.</description>
		<content:encoded><![CDATA[<p>Did you figure this one out?  In general, I would advise to break the larger problem into smaller problems and take them out, one by one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving from XEN to KVM by Dan Purcell</title>
		<link>http://lynema.org/2011/08/13/moving-from-xen-to-kvm#comment-6275</link>
		<dc:creator>Dan Purcell</dc:creator>
		<pubDate>Fri, 04 May 2012 05:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=253#comment-6275</guid>
		<description>Thank you very much for this information, it has answered a lot of my questions and has solved a lot of the trouble I had. </description>
		<content:encoded><![CDATA[<p>Thank you very much for this information, it has answered a lot of my questions and has solved a lot of the trouble I had. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eight Years Later: Dijkstra&#8217;s Algorithm in Java by olfa ol</title>
		<link>http://lynema.org/2011/06/27/eight-years-later-dijkstras-algorithm-in-java#comment-6274</link>
		<dc:creator>olfa ol</dc:creator>
		<pubDate>Fri, 27 Apr 2012 18:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=221#comment-6274</guid>
		<description>hello :)
I&#039;d like to make a web service that allows to find the shortest path between bus stations with Dijkstra&#039;s algorithm, then the path will be displayed on a map. (I have a database that contains the coordinated stations) but I do not know &quot;how to start&quot;: , I am really blocked for a week and i dont find any thing :( , i dont find a tutorials as this subject :( :( :(
( This web service will be used by my android application)
realy i need help :(
(i use eclipse)
thank you in advance :)﻿</description>
		<content:encoded><![CDATA[<p>hello <img src='http://lynema.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I&#8217;d like to make a web service that allows to find the shortest path between bus stations with Dijkstra&#8217;s algorithm, then the path will be displayed on a map. (I have a database that contains the coordinated stations) but I do not know &#8220;how to start&#8221;: , I am really blocked for a week and i dont find any thing <img src='http://lynema.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  , i dont find a tutorials as this subject <img src='http://lynema.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  <img src='http://lynema.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  <img src='http://lynema.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
( This web service will be used by my android application)<br />
realy i need help <img src='http://lynema.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
(i use eclipse)<br />
thank you in advance <img src='http://lynema.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ﻿</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving from XEN to KVM by jk</title>
		<link>http://lynema.org/2011/08/13/moving-from-xen-to-kvm#comment-6266</link>
		<dc:creator>jk</dc:creator>
		<pubDate>Fri, 09 Sep 2011 01:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=253#comment-6266</guid>
		<description>Completely headless KVM install script:

virt-install \
                --name=[enter_vm_name] \
                --ram=2048 \
                --vcpus=1 \
                --os-type=linux \
                --os-variant=rhel6 \
                --disk path=/dev/[enter_vg_name]/[enter_lv_name],device=disk,bus=virtio,sparse=true,format=raw \
                -w bridge=br0,model=virtio \
                --nographics \
                -x console=ttyS0 \
                --location=http://linuxsoft.cern.ch/scientific/6.1/x86_64/os/</description>
		<content:encoded><![CDATA[<p>Completely headless KVM install script:</p>
<p>virt-install \<br />
                &#8211;name=[enter_vm_name] \<br />
                &#8211;ram=2048 \<br />
                &#8211;vcpus=1 \<br />
                &#8211;os-type=linux \<br />
                &#8211;os-variant=rhel6 \<br />
                &#8211;disk path=/dev/[enter_vg_name]/[enter_lv_name],device=disk,bus=virtio,sparse=true,format=raw \<br />
                -w bridge=br0,model=virtio \<br />
                &#8211;nographics \<br />
                -x console=ttyS0 \<br />
                &#8211;location=http://linuxsoft.cern.ch/scientific/6.1/x86_64/os/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving from XEN to KVM by Dan D.</title>
		<link>http://lynema.org/2011/08/13/moving-from-xen-to-kvm#comment-6265</link>
		<dc:creator>Dan D.</dc:creator>
		<pubDate>Wed, 07 Sep 2011 00:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=253#comment-6265</guid>
		<description>Tom,

Didn&#039;t know you were back in MI.  I bumped into your dad on Sat. with Mike&#039;s boys at Home Depot.  I talked with your dad for about 5 minutes.  Wondered how life was treating you.  Kinda hoped I could swap some stories over the email type communication, or get together with you and Sarah sometime.  I look forward to hearing from you.


                                                                    Dan</description>
		<content:encoded><![CDATA[<p>Tom,</p>
<p>Didn&#8217;t know you were back in MI.  I bumped into your dad on Sat. with Mike&#8217;s boys at Home Depot.  I talked with your dad for about 5 minutes.  Wondered how life was treating you.  Kinda hoped I could swap some stories over the email type communication, or get together with you and Sarah sometime.  I look forward to hearing from you.</p>
<p>                                                                    Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving from XEN to KVM by James</title>
		<link>http://lynema.org/2011/08/13/moving-from-xen-to-kvm#comment-6261</link>
		<dc:creator>James</dc:creator>
		<pubDate>Tue, 30 Aug 2011 16:09:59 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=253#comment-6261</guid>
		<description>I am actually thinking about building a small test server and running KVM so I have room to play and learn.  I have been reading up on how I can get KVM to run Mac OSX on non-apple hardware.. and since I bought the server software that would be perfect.  :) Thanks for the write up Tom!</description>
		<content:encoded><![CDATA[<p>I am actually thinking about building a small test server and running KVM so I have room to play and learn.  I have been reading up on how I can get KVM to run Mac OSX on non-apple hardware.. and since I bought the server software that would be perfect.  <img src='http://lynema.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks for the write up Tom!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using PDFBox to Print from a StringBuffer by lyz</title>
		<link>http://lynema.org/2010/12/30/using-pdfbox-to-print-from-a-stringbuffer#comment-6228</link>
		<dc:creator>lyz</dc:creator>
		<pubDate>Wed, 20 Jul 2011 00:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=208#comment-6228</guid>
		<description>The answer really depends on if the printer is a network printer or not.  I used this code to print to a network printer on a users desk by configuring the a printer queue on the server.  
If the printer is not a network printer, there are ways to share it from the users computer and have the server connect to that share.</description>
		<content:encoded><![CDATA[<p>The answer really depends on if the printer is a network printer or not.  I used this code to print to a network printer on a users desk by configuring the a printer queue on the server.<br />
If the printer is not a network printer, there are ways to share it from the users computer and have the server connect to that share.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using PDFBox to Print from a StringBuffer by Jake</title>
		<link>http://lynema.org/2010/12/30/using-pdfbox-to-print-from-a-stringbuffer#comment-6222</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Sun, 17 Jul 2011 14:39:05 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=208#comment-6222</guid>
		<description>Thanks!
One issue though, this prints to the servers printer not the useres printers. How did you fix that?
Thanks for the example.</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
One issue though, this prints to the servers printer not the useres printers. How did you fix that?<br />
Thanks for the example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I am a SCJP/OCPJP Oracle Certified Professional, Java SE 6 Programmer. Test # 1Z0-851 ( 95% ) by Mike</title>
		<link>http://lynema.org/2011/07/08/i-am-a-scjpocpjp-oracle-certified-professional-java-se-6-programmer-test-1z0-851-95#comment-6197</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 08 Jul 2011 14:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=227#comment-6197</guid>
		<description>You are no longer a Java Green Horn :)

Nice work Tom!</description>
		<content:encoded><![CDATA[<p>You are no longer a Java Green Horn <img src='http://lynema.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nice work Tom!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eight Years Later: Dijkstra&#8217;s Algorithm in Java by James Amos</title>
		<link>http://lynema.org/2011/06/27/eight-years-later-dijkstras-algorithm-in-java#comment-6196</link>
		<dc:creator>James Amos</dc:creator>
		<pubDate>Thu, 07 Jul 2011 14:41:11 +0000</pubDate>
		<guid isPermaLink="false">http://lynema.org/?p=221#comment-6196</guid>
		<description>I wish I knew Java, but I am more glad that you finally finished an eight year old project.</description>
		<content:encoded><![CDATA[<p>I wish I knew Java, but I am more glad that you finally finished an eight year old project.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

