<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<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/"
	>

<channel>
	<title>AverageCoder.Net - Programming - Software - Techie Stuffs</title>
	<link>http://averagecoder.net</link>
	<description>Just another personal weblog</description>
	<pubDate>Wed, 22 Oct 2008 12:13:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>Microsoft Excel Import External Data Problem: When Microsoft Query doesn&#8217;t recognize some of your parameters</title>
		<link>http://averagecoder.net/microsoft-excel-import-external-data-problem-when-microsoft-query-doesnt-recognize-some-of-your-parameter.htm</link>
		<comments>http://averagecoder.net/microsoft-excel-import-external-data-problem-when-microsoft-query-doesnt-recognize-some-of-your-parameter.htm#comments</comments>
		<pubDate>Sat, 18 Oct 2008 20:06:28 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.averagecoder.net/microsoft-excel-import-external-data-problem-when-microsoft-query-doesnt-recognize-some-of-your-parameter.htm</guid>
		<description><![CDATA[This is a summary pulled from a discussion on IT-Toolbox with Alejandro Rodriguez titled &#8220;Excel query doesn&#8217;t allow me create 3rd paremeter for a criteria&#8220;. He said there he was having a problem with Mirosoft Excel&#8217;s Import External Data feature. He posted on the forum that Microsoft Query is not recognizing one of his query [...]


Related posts:<ol><li><a href='http://averagecoder.net/pinoezprogramrun-running-external-program-from-delphi.htm' rel='bookmark' title='Permanent Link: PinoezProgramRun (Running external program from Delphi)'>PinoezProgramRun (Running external program from Delphi)</a></li><li><a href='http://averagecoder.net/an-example-using-cport-delphi-component-to-read-data-from-your-cellphone.htm' rel='bookmark' title='Permanent Link: An example: Using CPort Delphi Component to read data from your cellphone'>An example: Using CPort Delphi Component to read data from your cellphone</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.averagecoder.net/wp-content/uploads/averagecoder_article.jpg" alt="programming article" align="left" />This is a summary pulled from a discussion on IT-Toolbox with Alejandro Rodriguez titled &#8220;<a href="http://database.ittoolbox.com/groups/technical-functional/excel-l/excel-query-doesnt-allow-me-create-3rd-paremeter-for-a-criteria-2405697" title="Excel query doesn't allow me create 3rd paremeter for a criteria" target="_blank">Excel query doesn&#8217;t allow me create 3rd paremeter for a criteria</a>&#8220;. He said there he was having a problem with Mirosoft Excel&#8217;s Import External Data feature. He posted on the forum that Microsoft Query is not recognizing one of his query parameters.</p>
<p>I got curious about it and then I tried a simple test against Microsoft Query via Excel Import External Data feature, and Yes! Microsoft Query is not recognizing some of my test query parameters. If it does recognize the1st and the 2nd parameters, why it does not recognize the 3rd? I have no idea why, but I guess it&#8217;s a bug and they forget to debug it - so be it :D</p>
<p>Microsoft Query allows you to enter a hard coded SQL statement with parameters directly into the editor but it didn&#8217;t work as I described previously so we need to figure out another way to get around it.</p>
<p>As we know that most Database servers allow you to create a stored SQL statement for future use such as &#8220;<strong>query</strong>&#8221; on MS-Access and &#8220;<strong>stored procedure</strong>&#8221; on SQLServer. This ability gives me an idea:</p>
<blockquote><p>What if I create an MS-Access query which can accept parameters and then call it from Excel&#8217;s Import External Data feature? Can Microsoft Query recognize all the parameters with this kind of method? The answer is Yes! Microsoft Query is recognizing all of the parameters.</p></blockquote>
<p>Following are the steps on how to call stored procedure to Import External Data into Microsoft Excel. Some steps may look strange but based on my tests, each of them needs to be taken correctly,</p>
<p>___________________________________________________________________________</p>
<p><strong>MS-ACCESS PART</strong></p>
<ol>
<li>Open the your Access DB</li>
<li>Create a Query by using SQL mode</li>
<li>Enter your SQL statement there (inluding the ? sign)</li>
<li>Save it as &#8220;MyQuery&#8221;</li>
</ol>
<p><strong>ODBC SETTING </strong></p>
<ol>
<li>Create an ODBC Connection to your DB</li>
</ol>
<p><strong>EXCEL PART </strong></p>
<ol>
<li>Navigate to Data -&gt; Import External Data -&gt; New Database Query</li>
<li>On the Database Tab, select the ODBC name you had created</li>
<li>Click OK</li>
<li>Click Cancel (just do it)</li>
<li>Select Yes if Microsoft Query ask you to edit the query</li>
<li>Click Close on Add Tables dialog (just do it)</li>
<li>Click SQL button on the toolbar</li>
<li>Enter {Call MyQuery(?, ?, ?)}</li>
<li>Click OK &lt;- You will get an error message, Click OK to continue anyway</li>
<li>Enter each of your parameter</li>
<li>Close Microsoft Query</li>
<li>Insert The imported data on your worksheet</li>
<li>Select any cell on the area where you put the imported data then go to Data -&gt; Refresh Data</li>
</ol>
<p>___________________________________________________________________________</p>
<p>The question mark there is a sign that it can accept parameter. Let me give you an example to ease the understanding just in case this kind of stuff is a new one for you. So if you type an SQL statement like the one below into the MS-Access Query Designer (SQL Mode):</p>
<div class="codesnip-container" >
<div class="codesnip"><span class="kw1">SELECT</span> <span class="br0">&#91;</span>productid<span class="br0">&#93;</span>,<span class="br0">&#91;</span>productname<span class="br0">&#93;</span>,<span class="br0">&#91;</span>productquantity<span class="br0">&#93;</span> <span class="kw1">FROM</span> <span class="br0">&#91;</span>products<span class="br0">&#93;</span> <span class="kw1">WHERE</span> <span class="br0">&#91;</span>productquantity<span class="br0">&#93;</span>&gt;=?;</div>
</div>
<p>and then you save the query as &#8220;<strong>MyQuery</strong>&#8220;, when you call the query using the following syntax from Microsoft Query (SQL Mode):</p>
<div class="codesnip-container" >
<div class="codesnip"><span class="br0">&#123;</span>Call MyQuery<span class="br0">&#40;</span><span class="nu0">100</span><span class="br0">&#41;</span><span class="br0">&#125;</span></div>
</div>
<p>That call will pass the parameter value (100) to &#8220;<strong>MyQuery</strong>&#8221; and in the background it will actually generate an SQL statement like the following,</p>
<div class="codesnip-container" >
<div class="codesnip"><span class="kw1">SELECT</span> <span class="br0">&#91;</span>productid<span class="br0">&#93;</span>,<span class="br0">&#91;</span>productname<span class="br0">&#93;</span>,<span class="br0">&#91;</span>productquantity<span class="br0">&#93;</span> <span class="kw1">FROM</span> <span class="br0">&#91;</span>products<span class="br0">&#93;</span> <span class="kw1">WHERE</span> <span class="br0">&#91;</span>productquantity<span class="br0">&#93;</span>&gt;=<span class="nu0">100</span>;</div>
</div>
<p>That&#8217;s how it works, the question mark is replaced by the parameter value passed to MS-Access saved query.</p>
<p><strong>TIPS IF YOU USE SQLSERVER INSTEAD OF MS-ACCESS</strong></p>
<p>If you use SQLServer instead of MS-Access to Import External Data into MS-Excel, the method is the same but on SQLServer we call the saved query as &#8220;<strong>stored procedure</strong>&#8221; and here is the syntax to create it based on the example above:</p>
<div class="codesnip-container" >
<div class="codesnip"><span class="kw1">CREATE</span> PROCEDURE MyQuery<br />
@par_productquantity int = <span class="nu0">0</span><br />
<span class="kw1">AS</span><br />
BEGIN<br />
<span class="kw1">SET</span> NOCOUNT <span class="kw1">ON</span>;<br />
<span class="kw1">SELECT</span> <span class="br0">&#91;</span>productid<span class="br0">&#93;</span>,<span class="br0">&#91;</span>productname<span class="br0">&#93;</span>,<span class="br0">&#91;</span>productquantity<span class="br0">&#93;</span> <span class="kw1">FROM</span> <span class="br0">&#91;</span>products<span class="br0">&#93;</span> <span class="kw1">WHERE</span> <span class="br0">&#91;</span>productquantity<span class="br0">&#93;</span>&gt;=@par_productquantity;<br />
END</p>
<p>GO</p></div>
</div>
<p>So, if you are having the same problem with hard coded SQL Statement when you need to import external data into Microsoft Excel, you can try this method.</p>
<p>Good luck :) and don&#8217;t forget to check <a href="http://database.ittoolbox.com/groups/technical-functional/excel-l/excel-query-doesnt-allow-me-create-3rd-paremeter-for-a-criteria-2405697" title="Excel query doesn't allow me create 3rd paremeter for a criteria" target="_blank">the discussion thread</a> related to this issue on IT-Toolbox for more detail.</p>
]]></content:encoded>
			<wfw:commentRss>http://averagecoder.net/microsoft-excel-import-external-data-problem-when-microsoft-query-doesnt-recognize-some-of-your-parameter.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Lack of Chances is the Source of Poverty, Can we make a different?</title>
		<link>http://averagecoder.net/the-lack-of-chances-is-the-source-of-poverty-can-we-make-a-different.htm</link>
		<comments>http://averagecoder.net/the-lack-of-chances-is-the-source-of-poverty-can-we-make-a-different.htm#comments</comments>
		<pubDate>Wed, 15 Oct 2008 10:41:38 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.averagecoder.net/the-lack-of-chances-is-the-source-of-poverty-can-we-make-a-different.htm</guid>
		<description><![CDATA[It&#8217;s a post to join the shout for Blog Action Day about poverty. I live in a 3rd world country where this issue is still one of the biggest. For most cases, poverty in my country is caused by the lack of chances to get a proper education, lack of knowledge to find a better [...]


Related posts:<ol><li><a href='http://averagecoder.net/the-first-alpha-version-of-simon-open-source-speech-recognition-suite-has-been-released.htm' rel='bookmark' title='Permanent Link: The first alpha version of simon - open source speech recognition suite - has been released'>The first alpha version of simon - open source speech recognition suite - has been released</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://blogactionday.s3.amazonaws.com/banners/180x150.jpg" alt="Blog Action Day" width="180" align="left" height="150" />It&#8217;s a post to join the shout for <a href="http://blogactionday.org/" title="Blog Action Day 2008" target="_blank">Blog Action Day</a> about poverty. I live in a 3rd world country where this issue is still one of the biggest. For most cases, poverty in my country is caused by the lack of chances to get a proper education, lack of knowledge to find a better way to make a living and it&#8217;s not because they are lazy, in fact they are more diligent than some of us, they just don&#8217;t have the chance.</p>
<p>I remember watching The Secrets movie which is talking about a mindset on how to get a wealthy life, a success in many areas of your life just by using your mind.</p>
<p>Well, it may works for most of us because we have the infrastructure to do it or at least we have the information on how to start it, but for the people who don&#8217;t have any chance to access the infrastructure, who still thinking nothing except about how to feed their family on daily basis, it needs more than a mindset to get them out from poverty.</p>
<blockquote><p>As <span class="author"><a href="http://www.remarkable-communication.com/how-to-get-delightfully-rich/" title="Poverty Is Not an Illusion" target="_blank">Sonia Simone</a> said in a different words that &#8220;</span><em>the problem they are facing is not an illusion. It can not be easily ignored by thinking that it&#8217;s not there</em>&#8220;, it&#8217;s real and it has been happening from generation to generation. It needs actions from others to help them out by giving them a chance to do it.</p></blockquote>
<p>Nothing can be blamed. But it&#8217;s just sad to see who capable of doing something to make a difference still done nothing about it. I am not trying to be provocative so you can be a full time volunteer to overcome poverty - no, since not everyone has the calling for it, I just want to say that we can make a different by doing what we can do at the moment, no matter how small it is.</p>
<p>I have a big dream to build a free internet education center for kids who still don&#8217;t have a chance for it, but I guess it&#8217;s just to big at the moment so I decided to take action on the small one. I am now sponsoring two kids, paying for their education fee so they can graduate from senior high school. Only two kids and only to get them graduated from senior high because I can&#8217;t afford to give more. But those kids have been giving me the the great feeling I&#8217;ve never felt before. Reading their letters, their stories, knowing that what I am doing are meant to them make me feel useful. Believe me, it&#8217;s a great feeling, you should try it :D</p>
<p>If you willing to start by doing what I have been doing on education part that will be a good start. I don&#8217;t have the list of foundations who willing to ease the process for you if you don&#8217;t have time to directly do it but I know a foundation which is working good delivering the hope for children on my country since I know the people who take care of the process here. FYI: I am one of their sponsored child when I was in college. It&#8217;s <a href="http://www.worldhope.org/hopeforchildren/overview.htm" title="Hope For Children. Invest in a Child, Impact a Community" target="_blank">The World Hope International</a>. It&#8217;s not only for my country, it&#8217;s also working on over 30 countries.</p>
<blockquote><p>&#8220;This is our moment. This is our time. This is our chance to stand up for  what&#8217;s right. We&#8217;re not looking for charity, we&#8217;re looking for justice. We  cannot fix every problem, but the ones we can, we must.&#8221; Bono, Live 8  Concert</p></blockquote>
<p>Following are some blog posts I&#8217;ve read so far related to Blog Action Day 2008. Let&#8217;s make a different Guys&#8230;</p>
<ul>
<li><a href="http://www.zoewesthof.com/http:/www.zoewesthof.com/blog/how-10-can-actually-make-a-difference" title="How $10 Can Actually Make a Difference" target="_blank">Zoe Westhof - How $10 Can Actually Make a Difference</a></li>
<li><a href="http://www.productiveflourishing.com/four-easy-reasons-to-ignore-world-poverty/" target="_blank" title="Four Easy Reasons to Ignore World Poverty">Charlie Gilkey - Four Easy Reasons to Ignore World Poverty</a></li>
<li><a href="http://danceadvantage.wordpress.com/2008/10/15/astep-poverty/" title="ASTEP Toward Ending Poverty" target="_blank">Nichelle Strzepek - Blog Action Day: ASTEP Toward Ending Poverty</a></li>
<li><a href="http://marketingyoursmallbiz.typepad.com/marketing/2008/10/blog-action-day.html" title="Blog Action Day 2008: Abadou's Birthday" target="_blank">Judy Dunn - Blog Action Day 2008: Abadou&#8217;s Birthday</a></li>
</ul>
<p><script src="http://blogactionday.org/js/e0ab1e164085e92c9baa6c39f6076d483cdf909e"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://averagecoder.net/the-lack-of-chances-is-the-source-of-poverty-can-we-make-a-different.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>SmartFTP Client is no longer Free. What would be the best replacement for it?</title>
		<link>http://averagecoder.net/smartftp-client-is-no-longer-free-what-would-be-the-best-replacement-for-it.htm</link>
		<comments>http://averagecoder.net/smartftp-client-is-no-longer-free-what-would-be-the-best-replacement-for-it.htm#comments</comments>
		<pubDate>Wed, 15 Oct 2008 03:23:56 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
		
		<category><![CDATA[Tested Software]]></category>

		<guid isPermaLink="false">http://www.averagecoder.net/smartftp-client-is-no-longer-free-what-would-be-the-best-replacement-for-it.htm</guid>
		<description><![CDATA[I had been using SmartFTP (Free Version) for about 3 years, but it was about a month ago when I checked their website they stated there that they can not give SmartFTP for free anymore. Yep, it&#8217;s hard to be forced to use the other FTP Clients when I already get used to it but [...]


Related posts:<ol><li><a href='http://averagecoder.net/free-softwares-to-help-you-learn-regular-expression-or-to-enhance-your-regex-skill.htm' rel='bookmark' title='Permanent Link: Free Softwares to help you learn Regular Expression or to enhance your RegEx skill'>Free Softwares to help you learn Regular Expression or to enhance your RegEx skill</a></li><li><a href='http://averagecoder.net/kantaris-free-media-player-the-most-suitable-media-player-on-my-audio-environment.htm' rel='bookmark' title='Permanent Link: Kantaris Media Player, The most suitable Free Media Player on my Audio Environment'>Kantaris Media Player, The most suitable Free Media Player on my Audio Environment</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.averagecoder.net/wp-content/uploads/smartftp.png" title="smartftp.png"><img src="http://www.averagecoder.net/wp-content/uploads/smartftp.thumbnail.png" alt="smartftp.png" align="left" /></a>I had been using SmartFTP (Free Version) for about 3 years, but it was about a month ago when I checked their website they stated there that they can not give SmartFTP for free anymore. Yep, it&#8217;s hard to be forced to use the other FTP Clients when I already get used to it but there&#8217;s nothing I can do except to find a replacement since I have no plan to buy it. Well, SmartFTP is a good FTP Client especially with the look and the arrangement of the panels, even I just found out that it&#8217;s a little bit slow. Do they limit the speed on the free version? I am not going to speculate, I am leaving it anyway.</p>
<p>The painful part when finding a new FTP Client is when I need to test-run it on my machine to choose the most suitable one since I don&#8217;t fully rely on screenshots and online descriptions. My requirements are:</p>
<ul>
<li>It should give me an easy ways to browse both local files and remote files. It means that the local file browser and the remote file browser should be accessible on a single window (split arrangement is preferred) and it should be placed close to each other so I can easily drag files between them.</li>
<li>It should have transfer queue feature, real time debug information to monitor each process, a reporting feature such as failed transfer report, a good account manager to save my existing accounts.</li>
<li>and of course it have to be FREE :D</li>
</ul>
<p>There are so many of them available on the net. <a href="http://www.google.com/search?hl=en&amp;safe=off&amp;q=free+ftp+client&amp;btnG=Search" title="Free FTP Client - Google Search" target="_blank">Free FTP Client</a> key phrase with your search engine will give you a list. I tested some of them including CoreFTP, GoFTP, WinSCP, FileZilla and FireFTP. All of them perform good with the basic function but the last two are my favourite since they met the requirements I need. Let&#8217;s talk a bit about them,</p>
<p><strong>FireFTP Client</strong></p>
<p><a href="http://www.averagecoder.net/wp-content/uploads/fireftp.png" title="fireftp.png"><img src="http://www.averagecoder.net/wp-content/uploads/fireftp.thumbnail.png" alt="fireftp.png" align="left" /></a>It&#8217;s not a stand alone FTP Client but it&#8217;s a Mozilla Firefox add-on originally created by Mime ?uvalo, this gives me a lightweight impression when using it, but it works like the other stand alone one. You can get it for free from <a href="http://fireftp.mozdev.org/" title="FireFTP Client" target="_blank">it&#8217;s official website</a>. Once installed it is accessible via Firefox&#8217;s [Tools] menu. Fire FTP has several features such as Search/Filter, Sync Directories and Sub Directories. A bit surprised from it when I can&#8217;t see my .htaccess file on the server but it&#8217;s because files with a period in front of them like .htaccess are considered &#8216;hidden&#8217; in the FTP world. To display these files go to Tools-&gt;Options-&gt;Show Hidden Files.</p>
<p><strong>FileZilla FTP Client</strong></p>
<p><a href="http://www.averagecoder.net/wp-content/uploads/filezilla.png" title="filezilla.png"><img src="http://www.averagecoder.net/wp-content/uploads/filezilla.thumbnail.png" alt="filezilla.png" align="left" /></a>I found this before on 2005 but it was not like what I see today. I got surprised with the development. It&#8217;s far more complete now. <a href="http://filezilla-project.org/index.php" title="FileZilla FTP Client" target="_blank">FileZilla</a> is open source software distributed under the terms of the GNU General Public License, a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface. Although it needs a window for each connection since it does not provide a tabbed style interface, it supports resume and transfer of large files &gt;4GB (I haven&#8217;t had time to test it) and the Account Manager is cool - love it :) It is also available in many languages.</p>
]]></content:encoded>
			<wfw:commentRss>http://averagecoder.net/smartftp-client-is-no-longer-free-what-would-be-the-best-replacement-for-it.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Kantaris Media Player, The most suitable Free Media Player on my Audio Environment</title>
		<link>http://averagecoder.net/kantaris-free-media-player-the-most-suitable-media-player-on-my-audio-environment.htm</link>
		<comments>http://averagecoder.net/kantaris-free-media-player-the-most-suitable-media-player-on-my-audio-environment.htm#comments</comments>
		<pubDate>Thu, 09 Oct 2008 21:33:06 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
		
		<category><![CDATA[Tested Software]]></category>

		<guid isPermaLink="false">http://www.averagecoder.net/kantaris-free-media-player-the-most-suitable-media-player-on-my-audio-environment.htm</guid>
		<description><![CDATA[ Kantaris is an all new media player based on code from Videolan client (VLC) and Bass audio library. Kantaris has a graphical user interface similar to that of Windows Media Player. The latest version works with Windows 2000, XP and Vista.
Kantaris can play almost anything you can throw at it: AVI, MPEG, MGEG-AVC, WMV, [...]


Related posts:<ol><li><a href='http://averagecoder.net/mpeg-audio-component-a-delphi-component-to-play-mpeg-audio-files.htm' rel='bookmark' title='Permanent Link: MPEG Audio Component (A Delphi component to play audio files)'>MPEG Audio Component (A Delphi component to play audio files)</a></li><li><a href='http://averagecoder.net/smartftp-client-is-no-longer-free-what-would-be-the-best-replacement-for-it.htm' rel='bookmark' title='Permanent Link: SmartFTP Client is no longer Free. What would be the best replacement for it?'>SmartFTP Client is no longer Free. What would be the best replacement for it?</a></li><li><a href='http://averagecoder.net/free-softwares-to-help-you-learn-regular-expression-or-to-enhance-your-regex-skill.htm' rel='bookmark' title='Permanent Link: Free Softwares to help you learn Regular Expression or to enhance your RegEx skill'>Free Softwares to help you learn Regular Expression or to enhance your RegEx skill</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.averagecoder.net/wp-content/uploads/kantaris.jpg" title="Kantaris Media Player"><img src='http://averagecoder.net/wp-content/uploads/image.php/kantaris_small.jpg?width=150&#038;cropratio=1:1&#038;image=http://www.averagecoder.net/wp-content/uploads/kantaris.jpg' alt='kantaris_small.jpg' /></a> Kantaris is an all new media player based on code from <a href="http://www.videolan.org/" target="_blank" title="VideoLAN - VLC">Videolan client (VLC)</a> and <a href="http://www.un4seen.com/" target="_blank" title="Bass Audio Library">Bass audio library</a>. Kantaris has a graphical user interface similar to that of Windows Media Player. The latest version works with Windows 2000, XP and Vista.</p>
<p><a href="http://www.kantaris.org/" title="Download Kantaris Media Player" target="_blank">Kantaris</a> can play almost anything you can throw at it: AVI, MPEG, MGEG-AVC, WMV, MOV, MKV, quicktime, matroska, divx, xvid, H264, MP3, WMA, OGG files and more.</p>
<p>Kantaris can also play DVDs and audio CDs. The player also displays some of the most beautiful music visualizations ever seen.<strong> All this is completely free</strong>.</p>
<p>I am not good in digital music requirements but I guess the quality of digital music depends on many factors such as the quality of source file, the soundcard, the speaker including the placement and the software player itself.</p>
<blockquote><p>I am now using Realtek HD Audio Soundcard - it&#8217;s an  OnBoard card on my GigaByte mainboard, a GigaByte software mixer, and a tiny low-end 2.1 Camac Speaker.</p></blockquote>
<p>I have been testing those combination with several payers including WinAmp, Windows Media Player, AShampoo Media Player and Kantaris Media Player. If you ask me which one is the best according to my ears, I choose <a href="http://www.kantaris.org/" title="Download Kantaris Media Player" target="_blank">Kantaris Media Player</a>.</p>
<p><a href="http://www.averagecoder.net/wp-content/uploads/gigabyte_mixer.jpg" title="GigaByte Mixer"><img src="http://averagecoder.net/wp-content/uploads/image.php/processed.jpg?width=150&amp;image=/wp-content/uploads/gigabyte_mixer.jpg" alt="GigaByte Mixer" align="left" /></a> <strong>Why?</strong> Because acoording to me, the combination of GigaByte Mixer Features and Kantaris Equalizer - <em>with that speaker, I know it&#8217;s not that good</em> - can produce the sound of music that I really like. A relatively clear sound which doesn&#8217;t necessarily need to be loud but when I hear it I can differentiate the bass, the middle and the treble in a clean shape/form with a solid mixing so almost every detail can be heard.</p>
<blockquote><p>I play the file, in this case an mp3 file using the software combination of <em>Kantaris&#8217; Equalizer Preset called &#8220;Clear&#8221;</em>, <em>GigaByte&#8217;s Equalizer Preset called &#8220;Rock&#8221;</em> and <em>GigaByte&#8217;s Environment Effect called &#8220;Carpeted Hallway&#8221;</em>. It sounds pretty good, at least with my ears :D</p></blockquote>
<p>Interested to test it yourself? You can visit <a href="http://www.kantaris.org/" title="Download Kantaris Media Player" target="_blank">Kantaris Homepage</a> to download it. Kantaris is completely free! No hidden fees, spyware or adware.</p>
]]></content:encoded>
			<wfw:commentRss>http://averagecoder.net/kantaris-free-media-player-the-most-suitable-media-player-on-my-audio-environment.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>TCPView for Windows, Tool to check TCP and UDP Connections on your system</title>
		<link>http://averagecoder.net/tcpview-for-windows-tool-to-check-tcp-and-udp-connections-on-your-system.htm</link>
		<comments>http://averagecoder.net/tcpview-for-windows-tool-to-check-tcp-and-udp-connections-on-your-system.htm#comments</comments>
		<pubDate>Thu, 09 Oct 2008 20:02:51 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
		
		<category><![CDATA[Tested Software]]></category>

		<guid isPermaLink="false">http://www.averagecoder.net/tcpview-for-windows-tool-to-check-tcp-and-udp-connections-on-your-system.htm</guid>
		<description><![CDATA[It was a suggestion from a good friend of mine who told me to try TCPView when I asked him about a tool to check SQLServer Connection instances created by my program.
All I need is to check whether my program is not forgetting to free any DB connection instances when it is terminated and this [...]


Related posts:<ol><li><a href='http://averagecoder.net/d2-remover-d2-virus-removal-tool.htm' rel='bookmark' title='Permanent Link: D2 Remover (d2 virus removal tool)'>D2 Remover (d2 virus removal tool)</a></li><li><a href='http://averagecoder.net/pduspy-a-good-tool-to-deal-with-gsm-sms-pdu.htm' rel='bookmark' title='Permanent Link: PDUSpy (A good tool to deal with GSM SMS PDU)'>PDUSpy (A good tool to deal with GSM SMS PDU)</a></li><li><a href='http://averagecoder.net/installing-apache-php-mysql-and-wordpress-on-windows-platform-part-1.htm' rel='bookmark' title='Permanent Link: Installing Apache, PHP, MySQL and Wordpress on Windows Platform - Part 1'>Installing Apache, PHP, MySQL and Wordpress on Windows Platform - Part 1</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.averagecoder.net/wp-content/uploads/tcpview.jpg" title="TCPView Screenshot Fullsize"><img src="http://www.averagecoder.net/wp-content/uploads/tcpview_small.jpg" alt="tcpview_small.jpg" align="left" /></a>It was a suggestion from a good friend of mine who told me to try TCPView when I asked him about a tool to check SQLServer Connection instances created by my program.</p>
<p>All I need is to check whether my program is not forgetting to free any DB connection instances when it is terminated and this TCPView for windows give me what I need.</p>
<p><strong>Using TCPView</strong></p>
<p>When you start TCPView it will enumerate all active TCP and UDP endpoints, resolving all IP addresses to their domain name versions. You can use a toolbar button or menu item to toggle the display of resolved names. On Windows NT, 2000 and XP systems TCPView shows the name of the process that owns each endpoint.</p>
<p>By default, TCPView updates every second, but you can use the View|Update Speed menu item to change the rate. Endpoints that change state from one update to the next are highlighted in yellow; those that are deleted are shown in red, and new endpoints are shown in green.</p>
<p>You can close established TCP/IP connections (those labeled with a state of ESTABLISHED) by selecting File|Close Connections, or by right-clicking on a connection and choosing Close Connections from the resulting context menu.</p>
<p>If you want to see who owns the domain registered for a remote address, select the item containing the name and choose Whois from the context menu or the File menu. You can save TCPView&#8217;s output window to a file using the Save menu item.</p>
<p><strong>Available Download<br />
</strong></p>
<ul>
<li><a href="http://technet.microsoft.com/en-us/sysinternals/bb897437.aspx" title="Download TCPView" target="_blank">Download TCPView For Windows</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://averagecoder.net/tcpview-for-windows-tool-to-check-tcp-and-udp-connections-on-your-system.htm/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
