<?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 Otiose Liv</title>
	<atom:link href="http://blog.graceabundant.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.graceabundant.com</link>
	<description>Touching but the surface of a wonderful and unknown world</description>
	<lastBuildDate>Sat, 14 Nov 2009 08:46:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on 16bit WAV Network Audio Streamer (Server/Client) by Sam</title>
		<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/comment-page-1/#comment-24137</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Sat, 14 Nov 2009 08:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=456#comment-24137</guid>
		<description>Dear Hoong, 

Thank you for your reply. I have been running the app for a few hours today across my wireless network with out any problems, So I&#039;m not sure what was the cause of the crashes as I&#039;m using exactly the same configuration as before, Windows XP 64 → Wifi-&gt; Windows XP 32.

Regards
Sam</description>
		<content:encoded><![CDATA[<p>Dear Hoong, </p>
<p>Thank you for your reply. I have been running the app for a few hours today across my wireless network with out any problems, So I'm not sure what was the cause of the crashes as I'm using exactly the same configuration as before, Windows XP 64 → Wifi-&gt; Windows XP 32.</p>
<p>Regards<br />
Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 16bit WAV Network Audio Streamer (Server/Client) by Hoong Ern</title>
		<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/comment-page-1/#comment-24088</link>
		<dc:creator>Hoong Ern</dc:creator>
		<pubDate>Mon, 09 Nov 2009 05:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=456#comment-24088</guid>
		<description>Hi Sam, I sent you an email. Repeated here:

I actually did this project in a rush, it was a final project for one of my classes, so indeed there may be bugs (I&#039;m not even convinced myself whether it works that well). What version of Windows are you running? Does the server crash all the time you run it? i.e. - is the crash replicable? Just confirming, you&#039;re running 1 server and 1 client instance? Does it crash if you run it purely on localhost (127.0.0.1)? I&#039;ll run some tests on my side and see what I can do.

As for choosing multiple soundcards, I&#039;ll see what I can do. It&#039;s actually not that hard to implement. But I guess it&#039;s not that useful to have that option if it&#039;s crashing anyway, so I&#039;ll try to look at that first.</description>
		<content:encoded><![CDATA[<p>Hi Sam, I sent you an email. Repeated here:</p>
<p>I actually did this project in a rush, it was a final project for one of my classes, so indeed there may be bugs (I'm not even convinced myself whether it works that well). What version of Windows are you running? Does the server crash all the time you run it? i.e. - is the crash replicable? Just confirming, you're running 1 server and 1 client instance? Does it crash if you run it purely on localhost (127.0.0.1)? I'll run some tests on my side and see what I can do.</p>
<p>As for choosing multiple soundcards, I'll see what I can do. It's actually not that hard to implement. But I guess it's not that useful to have that option if it's crashing anyway, so I'll try to look at that first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 16bit WAV Network Audio Streamer (Server/Client) by Sam</title>
		<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/comment-page-1/#comment-23932</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 03 Nov 2009 11:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=456#comment-23932</guid>
		<description>Actually no, its not prefect. Using the windows version the server crashes after an hour or so. 

Using windows batch I wrap the RX side in this batch

@echo off

echo ///Streaming PCM 16 bit Audio.

set server_url=192.168.88.68
set port=12000

:start
title Receiving from %server_url%

echo.
echo -------------------------------------------------------------------------------
audiostreamer.exe c %port% %server_url%
echo -------------------------------------------------------------------------------

ping -n 1 %server_url% &gt;nul

goto :start


and the TX side in this batch

@echo off

echo ///Streaming PCM Audio.
set port=12000

:start
title ///Streaming PCM Audio.


echo.
echo -------------------------------------------------------------------------------
audiostreamer.exe s %port%
echo -------------------------------------------------------------------------------

ping -n 3 %server_url% &gt; nul

goto start</description>
		<content:encoded><![CDATA[<p>Actually no, its not prefect. Using the windows version the server crashes after an hour or so. </p>
<p>Using windows batch I wrap the RX side in this batch</p>
<p>@echo off</p>
<p>echo ///Streaming PCM 16 bit Audio.</p>
<p>set server_url=192.168.88.68<br />
set port=12000</p>
<p>:start<br />
title Receiving from %server_url%</p>
<p>echo.<br />
echo -------------------------------------------------------------------------------<br />
audiostreamer.exe c %port% %server_url%<br />
echo -------------------------------------------------------------------------------</p>
<p>ping -n 1 %server_url% &gt;nul</p>
<p>goto :start</p>
<p>and the TX side in this batch</p>
<p>@echo off</p>
<p>echo ///Streaming PCM Audio.<br />
set port=12000</p>
<p>:start<br />
title ///Streaming PCM Audio.</p>
<p>echo.<br />
echo -------------------------------------------------------------------------------<br />
audiostreamer.exe s %port%<br />
echo -------------------------------------------------------------------------------</p>
<p>ping -n 3 %server_url% &gt; nul</p>
<p>goto start</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 16bit WAV Network Audio Streamer (Server/Client) by Sam</title>
		<link>http://blog.graceabundant.com/archives/2009/07/16bit-wav-network-audio-streamer-serverclient/comment-page-1/#comment-23928</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 03 Nov 2009 10:02:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=456#comment-23928</guid>
		<description>Nice one mate, works perfectly, Are you still working on this project? I would love to be able to select sound cards.</description>
		<content:encoded><![CDATA[<p>Nice one mate, works perfectly, Are you still working on this project? I would love to be able to select sound cards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About me, Me, and ME! by clarice</title>
		<link>http://blog.graceabundant.com/about/comment-page-1/#comment-23302</link>
		<dc:creator>clarice</dc:creator>
		<pubDate>Sat, 10 Oct 2009 08:23:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/aboutme/#comment-23302</guid>
		<description>hey!!! howve you been? havent been here in awhile....hope you&#039;re doing fine</description>
		<content:encoded><![CDATA[<p>hey!!! howve you been? havent been here in awhile....hope you're doing fine</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About me, Me, and ME! by hanim salleh</title>
		<link>http://blog.graceabundant.com/about/comment-page-1/#comment-22829</link>
		<dc:creator>hanim salleh</dc:creator>
		<pubDate>Tue, 08 Sep 2009 13:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/aboutme/#comment-22829</guid>
		<description>hello dear,
i came across this webpage and happy to see u as 1 of my students. Well done dear. 

Luv
Pn hanim</description>
		<content:encoded><![CDATA[<p>hello dear,<br />
i came across this webpage and happy to see u as 1 of my students. Well done dear. </p>
<p>Luv<br />
Pn hanim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pidgin &#8211; &#8216;left conversation&#8217; irritating? by Hoong Ern</title>
		<link>http://blog.graceabundant.com/archives/2007/12/pidgin-left-conversation-irritating/comment-page-1/#comment-22055</link>
		<dc:creator>Hoong Ern</dc:creator>
		<pubDate>Sat, 25 Jul 2009 07:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/archives/2007/12/pidgin-left-conversation-irritating/#comment-22055</guid>
		<description>Indeed that has the same effect! Thanks for pointing it out - that option is named pretty badly, IMO

Anyway, I wouldn&#039;t suggest anyone follows the steps on this page - first of all it&#039;s outdated, and is a messy solution. (Besides, an option already exists)</description>
		<content:encoded><![CDATA[<p>Indeed that has the same effect! Thanks for pointing it out - that option is named pretty badly, IMO</p>
<p>Anyway, I wouldn't suggest anyone follows the steps on this page - first of all it's outdated, and is a messy solution. (Besides, an option already exists)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pidgin &#8211; &#8216;left conversation&#8217; irritating? by Svetlyo</title>
		<link>http://blog.graceabundant.com/archives/2007/12/pidgin-left-conversation-irritating/comment-page-1/#comment-22022</link>
		<dc:creator>Svetlyo</dc:creator>
		<pubDate>Thu, 23 Jul 2009 08:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/archives/2007/12/pidgin-left-conversation-irritating/#comment-22022</guid>
		<description>And what about the option &quot;Close IMs immediately when the tab is closed&quot;? It does exactly the same.</description>
		<content:encoded><![CDATA[<p>And what about the option "Close IMs immediately when the tab is closed"? It does exactly the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hail to the King by Julius</title>
		<link>http://blog.graceabundant.com/archives/2009/01/hail-to-the-king/comment-page-1/#comment-20658</link>
		<dc:creator>Julius</dc:creator>
		<pubDate>Sat, 30 May 2009 11:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=429#comment-20658</guid>
		<description>Hi Hoong Ern and the rest of your team,

I stumbled upon your website while looking for God will make a Way.  Just listening to that drove me into such a beatiful moment w/ God.  I just want to say thank you for all the beautiful melodies you have here.  I enjoyed listening to them.  The world is so blessed to have you guys.  I am also an Asian like you guys.  Judging from your surnames, I think most are chinese? I am chinese myself and wow I hope that I was blessed with a beautiful voice like you all haha :) 

God has planted a beautiful seed in your group&#039;s heart.  May you all always burn with that passion to live in His name.  

Grace and Peace be with you all :)

Your Brother in Christ from the other side of the world,
julius</description>
		<content:encoded><![CDATA[<p>Hi Hoong Ern and the rest of your team,</p>
<p>I stumbled upon your website while looking for God will make a Way.  Just listening to that drove me into such a beatiful moment w/ God.  I just want to say thank you for all the beautiful melodies you have here.  I enjoyed listening to them.  The world is so blessed to have you guys.  I am also an Asian like you guys.  Judging from your surnames, I think most are chinese? I am chinese myself and wow I hope that I was blessed with a beautiful voice like you all haha <img src='http://blog.graceabundant.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>God has planted a beautiful seed in your group's heart.  May you all always burn with that passion to live in His name.  </p>
<p>Grace and Peace be with you all <img src='http://blog.graceabundant.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Your Brother in Christ from the other side of the world,<br />
julius</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pidgin plugin &#8211; Keep status message on idle by jegHegy</title>
		<link>http://blog.graceabundant.com/archives/2008/08/pidgin-plugin-keep-status-message-on-idle/comment-page-1/#comment-19221</link>
		<dc:creator>jegHegy</dc:creator>
		<pubDate>Sun, 12 Apr 2009 10:43:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=390#comment-19221</guid>
		<description>I cannot for the life of me figure out how to turn this feature on in 2.5.5 without the plug-in, or change the idle status from &quot;I&#039;m not here right now.&quot; HELP</description>
		<content:encoded><![CDATA[<p>I cannot for the life of me figure out how to turn this feature on in 2.5.5 without the plug-in, or change the idle status from "I'm not here right now." HELP</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pidgin plugin &#8211; Keep status message on idle by Hoong Ern</title>
		<link>http://blog.graceabundant.com/archives/2008/08/pidgin-plugin-keep-status-message-on-idle/comment-page-1/#comment-18106</link>
		<dc:creator>Hoong Ern</dc:creator>
		<pubDate>Fri, 02 Jan 2009 17:22:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/?p=390#comment-18106</guid>
		<description>As of Pidgin 2.5.2, this has been built in properly as a feature, rendering this plugin useless! Heh, oh well. At least I don&#039;t have to worry about this anymore!</description>
		<content:encoded><![CDATA[<p>As of Pidgin 2.5.2, this has been built in properly as a feature, rendering this plugin useless! Heh, oh well. At least I don't have to worry about this anymore!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Fresh Start? by katy</title>
		<link>http://blog.graceabundant.com/archives/2008/03/a-fresh-start/comment-page-1/#comment-17578</link>
		<dc:creator>katy</dc:creator>
		<pubDate>Tue, 28 Oct 2008 18:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.graceabundant.com/archives/2008/03/a-fresh-start/#comment-17578</guid>
		<description>start writing again!!!! you&#039;d better!!! nice work on the album. i enjoyed listening to a couple of tracks whilst writing my essay! hope you are well.... keep smiling xxx</description>
		<content:encoded><![CDATA[<p>start writing again!!!! you'd better!!! nice work on the album. i enjoyed listening to a couple of tracks whilst writing my essay! hope you are well.... keep smiling xxx</p>
]]></content:encoded>
	</item>
</channel>
</rss>
