<?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/"
	>

<channel>
	<title>Soapiece.com</title>
	<atom:link href="http://soapiece.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://soapiece.com</link>
	<description>IT errends</description>
	<lastBuildDate>Thu, 26 Aug 2010 18:01:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Outlook 2007 file size limit reached</title>
		<link>http://soapiece.com/?p=120</link>
		<comments>http://soapiece.com/?p=120#comments</comments>
		<pubDate>Thu, 26 Aug 2010 17:56:29 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Coding Tips]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=120</guid>
		<description><![CDATA[One of my coworker has reached her maximum outlook PST file size which is 20GB. (windows 7) Run &#8220;regedit&#8221; and look for keys under for Policy change : &#8220;HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\12.0\Outlook\PST&#8221; for User preference : &#8220;HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\PST&#8221; Create entries if there are none. and Enter maximum values (bold in table) for each entry. REG_DWORD is 32 bit. Outlook [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 13.3333px;">One of my coworker has reached her maximum outlook PST file size which is 20GB. (windows 7)</span></p>
<p>Run &#8220;regedit&#8221; and look for keys under<br />
for Policy change :<br />
&#8220;HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\12.0\Outlook\PST&#8221;<br />
for User preference :<br />
&#8220;HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\PST&#8221;</p>
<p>Create entries if there are none. and Enter maximum values (bold in table) for each entry.</p>
<p>REG_DWORD is 32 bit.</p>
<h4 id="tocHeadRef">Outlook 2007 and Outlook 2003</h4>
<table class="table" cellspacing="1">
<tbody>
<tr>
<td><strong>Name</strong></td>
<td><strong>Type</strong></td>
<td><strong>Valid Data Range</strong></td>
<td><strong>Default</strong></td>
</tr>
<tr>
<td>MaxLargeFileSize</td>
<td>REG_DWORD</td>
<td>0&#215;00000001 – <strong>0x0000C800</strong></td>
<td>0&#215;00005000 20,480 (20 GB)</td>
</tr>
<tr>
<td>WarnLargeFileSize</td>
<td>REG_DWORD</td>
<td>0&#215;00000000 –<br />
<strong> 0x0000BE00</strong></td>
<td>0x00004C00 19,456 (19 GB)</td>
</tr>
<tr>
<td>MaxFileSize</td>
<td>REG_DWORD</td>
<td>0x001F4400 –<br />
<strong> 0x7C004400</strong></td>
<td>0x7BB04400 2,075,149,312 (1.933 GB)</td>
</tr>
<tr>
<td>WarnFileSize</td>
<td>REG_DWORD</td>
<td>0&#215;00042400 –<br />
<strong> 0x7C004400</strong></td>
<td>0&#215;74404400 1,950,368,768 (1.816 GB)</td>
</tr>
</tbody>
</table>
<p>more on <a href="http://support.microsoft.com/kb/832925" target="_blank" onclick="pageTracker._trackPageview('/outgoing/support.microsoft.com/kb/832925?referer=');">http://support.microsoft.com/kb/832925</a></p>
]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=120</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Edit html table using JQuery</title>
		<link>http://soapiece.com/?p=107</link>
		<comments>http://soapiece.com/?p=107#comments</comments>
		<pubDate>Wed, 25 Aug 2010 23:06:47 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Coding Tips]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=107</guid>
		<description><![CDATA[html table edit javascript ajax jquery This is a library that can edit HTML page contents on the screen. Just cilck the text (div in cell) and edit. It can also be used as ajax to update/retrieve data from database. Request is sent to save.php file, you can simply echo the change or manipulate database [...]]]></description>
			<content:encoded><![CDATA[<p>html table edit javascript ajax jquery</p>
<p>This is a library that can edit HTML page contents on the screen.</p>
<p>Just cilck the text (div in cell) and edit. It can also be used as ajax to update/retrieve data from database.</p>
<p>Request is sent to save.php file, you can simply echo the change or manipulate database if you want to.</p>
<p><a href="/wp-content/code/jeditable/jeditable.html" target="_blank">demo.html</a></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot; src=&quot;jquery-1.3.2.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.jeditable.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt; 
$(function() {
  $(&quot;.editable_textarea&quot;).editable(&quot;save.php&quot;, { 
      indicator : &quot;&lt;img src='indicator.gif'&gt;&quot;,
      type   : 'text',
	  select : false,
      submitdata: { _method: &quot;post&quot; },
	  id : 'elementid',
	  name : 'newvalue',
      submit : 'OK',
      cancel : 'C',
      cssclass : &quot;editable&quot;
  });
});
&lt;/script&gt; 
&lt;style&gt;
.tx1 {
FONT-SIZE: 11px;
COLOR: #333333;
font-family: Arial, Helvetica, sans-serif;
}
.tx2 {
FONT-SIZE: 11px;
COLOR: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
text-align:center;
}
&lt;/style&gt;
&lt;table name=&quot;table01&quot; id=&quot;table01&quot; cellspacing=&quot;0&quot; cellpadding=&quot;4&quot; border=&quot;1&quot; style=&quot;color:#333333;font-family:Arial;width:600px;border-collapse:collapse;&quot;&gt; 
	&lt;tr  style=&quot;color:White;background-color:#5D7B9D;border-color:Black;border-width:1px;border-style:Solid;font-weight:bold;&quot;&gt; 
		&lt;td class=&quot;tx2&quot;&gt;No&lt;/td&gt; 
		&lt;td class=&quot;tx2&quot;&gt;Column 1&lt;/td&gt; 
		&lt;td class=&quot;tx2&quot;&gt;Column 2&lt;/td&gt; 
		&lt;td class=&quot;tx2&quot;&gt;Column 3&lt;/td&gt; 
		&lt;td class=&quot;tx2&quot;&gt;Column 4&lt;/td&gt; 
		&lt;td class=&quot;tx2&quot;&gt;Column 5&lt;/td&gt; 
		&lt;td class=&quot;tx2&quot;&gt;Column 6&lt;/td&gt; 
	&lt;/tr&gt; 
	&lt;tr class=&quot;tx1&quot;&gt;
		&lt;td class=&quot;tx1&quot;&gt;1&lt;/td&gt; 
		&lt;td class=&quot;tx1&quot;&gt;&lt;div class=&quot;editable_textarea&quot; &gt;135-135-157&lt;/div&gt;&lt;/td&gt; 
		&lt;td class=&quot;tx1&quot;&gt;&lt;div class=&quot;editable_textarea&quot; &gt;IEY1026471&lt;/div&gt;&lt;/td&gt; 
		&lt;td class=&quot;tx1&quot;&gt;&lt;div class=&quot;editable_textarea&quot; &gt;GOOGLE.COM Inc&lt;/div&gt;&lt;/td&gt; 
		&lt;td class=&quot;tx1&quot;&gt;&lt;div class=&quot;editable_textarea&quot; &gt;1047&lt;/div&gt;&lt;/td&gt; 
		&lt;td class=&quot;tx1&quot;&gt;&lt;div class=&quot;editable_textarea&quot; &gt;5129&lt;/div&gt;&lt;/td&gt; 
		&lt;td class=&quot;tx1&quot;&gt;&lt;div class=&quot;editable_textarea&quot; &gt;TEST&lt;/div&gt;&lt;/td&gt; 
	&lt;/tr&gt;
&lt;/table&gt;</pre></div></div>

<p>save.php</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'newvalue'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>

<p>for more info visit <a href="http://www.appelsiini.net/projects/jeditable" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.appelsiini.net/projects/jeditable?referer=');">http://www.appelsiini.net/projects/jeditable</a></p>
]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=107</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch mp3/mp4 encoding</title>
		<link>http://soapiece.com/?p=85</link>
		<comments>http://soapiece.com/?p=85#comments</comments>
		<pubDate>Tue, 03 Aug 2010 07:33:08 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Coding Tips]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=85</guid>
		<description><![CDATA[Let&#8217;s say you have a bunch of folders and endless list of media files, and you want to encode them into h264 and mp3 format. Since there are good open source encoders (in this case x264, ffmpeg, lame) all you need to do is just write a simple script to output batch commands. Here&#8217;s the [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you have a bunch of folders and endless list of media files, and you want to encode them into h264 and mp3 format. Since there are good open source encoders (in this case x264, ffmpeg, lame) all you need to do is just write a simple script to output batch commands. Here&#8217;s the java code that reads a list of files from J:/vod folder and encode (wmv-&gt;mp4, wma-&gt;mp3) them and saves to C:\vod folder.</p>
<p>Some prerequisites<br />
<span style="font-size: 13.3333px;">1. Need same directory structure. (xcopy /t/e j:\vod c:\vod) will do the trick. (copy directories only)<br />
</span><span style="font-size: 13.3333px;">2. Handbrake CLI/FFMpeg/Lame command line windows binaries.<br />
3. Below java compiled. </span></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.util.*</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.io.*</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">final</span> <span style="color: #000000; font-weight: bold;">class</span> FileListing <span style="color: #009900;">&#123;</span>
&nbsp;
  <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span>... <span style="color: #006633;">aArgs</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">throws</span> <span style="color: #003399;">FileNotFoundException</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003399;">File</span> startingDirectory<span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">File</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;J:<span style="color: #000099; font-weight: bold;">\\</span>vod&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #003399;">List</span> files <span style="color: #339933;">=</span> FileListing.<span style="color: #006633;">getFileListing</span><span style="color: #009900;">&#40;</span>startingDirectory<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #003399;">FileOutputStream</span> out<span style="color: #339933;">;</span>
    <span style="color: #003399;">PrintStream</span> p<span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// declare a print stream object</span>
    <span style="color: #003399;">Integer</span> start <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
    <span style="color: #003399;">Integer</span> end   <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1000</span><span style="color: #339933;">;</span>
    <span style="color: #003399;">Integer</span> count <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
    out <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">FileOutputStream</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;wmv_wma_&quot;</span><span style="color: #339933;">+</span>start<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">+</span>end<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;.bat&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    p <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">PrintStream</span><span style="color: #009900;">&#40;</span> out <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span><span style="color: #003399;">File</span> file <span style="color: #339933;">:</span> files <span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
    	<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>count<span style="color: #339933;">%</span>1000 <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span>
    	<span style="color: #009900;">&#123;</span>
    		start<span style="color: #339933;">+=</span> <span style="color: #cc66cc;">1000</span><span style="color: #339933;">;</span>
    		end <span style="color: #339933;">+=</span> <span style="color: #cc66cc;">1000</span><span style="color: #339933;">;</span>
    		p.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    		out <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">FileOutputStream</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;wmv_wma_&quot;</span><span style="color: #339933;">+</span>start<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">+</span>end<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;.bat&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	    p <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">PrintStream</span><span style="color: #009900;">&#40;</span> out <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #009900;">&#125;</span>
    	<span style="color: #003399;">String</span> filepath <span style="color: #339933;">=</span> file.<span style="color: #006633;">getAbsolutePath</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #003399;">String</span> target_path <span style="color: #339933;">=</span> filepath.<span style="color: #006633;">replaceAll</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;J:&quot;</span>, <span style="color: #0000ff;">&quot;C:&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #003399;">String</span> query <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
&nbsp;
    	<span style="color: #000066; font-weight: bold;">int</span> file_index <span style="color: #339933;">=</span> filepath.<span style="color: #006633;">lastIndexOf</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #003399;">String</span> path <span style="color: #339933;">=</span> filepath.<span style="color: #006633;">substring</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span>, file_index<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	target_path <span style="color: #339933;">=</span> target_path.<span style="color: #006633;">substring</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span>, file_index<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    	<span style="color: #003399;">String</span> filename <span style="color: #339933;">=</span> filepath.<span style="color: #006633;">substring</span><span style="color: #009900;">&#40;</span>file_index<span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span>, filepath.<span style="color: #006633;">length</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    	<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #009900;">&#40;</span>filename.<span style="color: #006633;">contains</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
    	<span style="color: #009900;">&#123;</span>
    		<span style="color: #000000; font-weight: bold;">continue</span><span style="color: #339933;">;</span>
    	<span style="color: #009900;">&#125;</span>
    	<span style="color: #000066; font-weight: bold;">int</span> dot_index <span style="color: #339933;">=</span> filename.<span style="color: #006633;">lastIndexOf</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #003399;">String</span> file_front <span style="color: #339933;">=</span> filename.<span style="color: #006633;">substring</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span>, dot_index<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #003399;">String</span> file_ext <span style="color: #339933;">=</span> filename.<span style="color: #006633;">substring</span><span style="color: #009900;">&#40;</span>dot_index<span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span>, filename.<span style="color: #006633;">length</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	file_ext <span style="color: #339933;">=</span> file_ext.<span style="color: #006633;">toLowerCase</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    	<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>file_ext.<span style="color: #006633;">equals</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;wmv&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
    	<span style="color: #009900;">&#123;</span>
    		query <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span><span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;C:<span style="color: #000099; font-weight: bold;">\\</span>Program Files (x86)<span style="color: #000099; font-weight: bold;">\\</span>Handbrake<span style="color: #000099; font-weight: bold;">\\</span>HandBrakeCLI.exe<span style="color: #000099; font-weight: bold;">\&quot;</span> &quot;</span> <span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;-i <span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span> <span style="color: #339933;">+</span> filepath <span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> -t 1 -c 1 -o <span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span> <span style="color: #339933;">+</span>
    		target_path<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>&quot;</span><span style="color: #339933;">+</span>file_front<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;.mp4<span style="color: #000099; font-weight: bold;">\&quot;</span> -f mp4 --strict-anamorphic  --decomb -e x264 -S &quot;</span><span style="color: #339933;">+</span>file.<span style="color: #006633;">length</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">1048576</span><span style="color: #339933;">+</span><span style="color: #0000ff;">&quot; -a 1 &quot;</span> <span style="color: #339933;">+</span>
    				<span style="color: #0000ff;">&quot;-E faac -6 dpl2 -R 22.05 -B 96 -D 0 -x ref=2:bframes=2:subq=6:mixed-refs=0:weightb=0:8x8dct=0:trellis=0 -v 1&quot;</span><span style="color: #339933;">;</span>
    		<span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>count<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">+</span>query<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    		p.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>query<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    		count<span style="color: #339933;">++;</span>
    	<span style="color: #009900;">&#125;</span>
    	<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>file_ext.<span style="color: #006633;">equals</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;wma&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
    	<span style="color: #009900;">&#123;</span>
    		query <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;C:<span style="color: #000099; font-weight: bold;">\\</span>lame<span style="color: #000099; font-weight: bold;">\\</span>ffmpeg.exe -i &quot;</span><span style="color: #339933;">+</span>filepath<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot; -vn -f wav - | c:<span style="color: #000099; font-weight: bold;">\\</span>lame<span style="color: #000099; font-weight: bold;">\\</span>lame.exe -V 6 - &quot;</span><span style="color: #339933;">+</span> target_path <span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>&quot;</span><span style="color: #339933;">+</span>file_front<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot;.mp3&quot;</span><span style="color: #339933;">;</span>
    		<span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>count<span style="color: #339933;">+</span><span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">+</span>query<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    		p.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>query<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    		count<span style="color: #339933;">++;</span>
    	<span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    p.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #008000; font-style: italic; font-weight: bold;">/**
  * Recursively walk a directory tree and return a List of all
  * Files found; the List is sorted using File.compareTo().
  *
  * @param aStartingDir is a valid directory, which can be read.
  */</span>
  <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #003399;">List</span> getFileListing<span style="color: #009900;">&#40;</span>
    <span style="color: #003399;">File</span> aStartingDir
  <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">throws</span> <span style="color: #003399;">FileNotFoundException</span> <span style="color: #009900;">&#123;</span>
    validateDirectory<span style="color: #009900;">&#40;</span>aStartingDir<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #003399;">List</span> result <span style="color: #339933;">=</span> getFileListingNoSort<span style="color: #009900;">&#40;</span>aStartingDir<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #003399;">Collections</span>.<span style="color: #006633;">sort</span><span style="color: #009900;">&#40;</span>result<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">return</span> result<span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">// PRIVATE //</span>
  <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000000; font-weight: bold;">private</span> <span style="color: #003399;">List</span> getFileListingNoSort<span style="color: #009900;">&#40;</span>
    <span style="color: #003399;">File</span> aStartingDir
  <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">throws</span> <span style="color: #003399;">FileNotFoundException</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003399;">List</span> result <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">ArrayList</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #003399;">File</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> filesAndDirs <span style="color: #339933;">=</span> aStartingDir.<span style="color: #006633;">listFiles</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #003399;">List</span> filesDirs <span style="color: #339933;">=</span> <span style="color: #003399;">Arrays</span>.<span style="color: #006633;">asList</span><span style="color: #009900;">&#40;</span>filesAndDirs<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span><span style="color: #003399;">File</span> file <span style="color: #339933;">:</span> filesDirs<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      result.<span style="color: #006633;">add</span><span style="color: #009900;">&#40;</span>file<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//always add, even if directory</span>
      <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span> file.<span style="color: #006633;">isFile</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #666666; font-style: italic;">//must be a directory</span>
        <span style="color: #666666; font-style: italic;">//recursive call!</span>
        <span style="color: #003399;">List</span> deeperList <span style="color: #339933;">=</span> getFileListingNoSort<span style="color: #009900;">&#40;</span>file<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        result.<span style="color: #006633;">addAll</span><span style="color: #009900;">&#40;</span>deeperList<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">return</span> result<span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #008000; font-style: italic; font-weight: bold;">/**
  * Directory is valid if it exists, does not represent a file, and can be read.
  */</span>
  <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000000; font-weight: bold;">private</span> <span style="color: #000066; font-weight: bold;">void</span> validateDirectory <span style="color: #009900;">&#40;</span>
    <span style="color: #003399;">File</span> aDirectory
  <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">throws</span> <span style="color: #003399;">FileNotFoundException</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>aDirectory <span style="color: #339933;">==</span> <span style="color: #000066; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000000; font-weight: bold;">throw</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">IllegalArgumentException</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Directory should not be null.&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>aDirectory.<span style="color: #006633;">exists</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000000; font-weight: bold;">throw</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">FileNotFoundException</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Directory does not exist: &quot;</span> <span style="color: #339933;">+</span> aDirectory<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>aDirectory.<span style="color: #006633;">isDirectory</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000000; font-weight: bold;">throw</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">IllegalArgumentException</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Is not a directory: &quot;</span> <span style="color: #339933;">+</span> aDirectory<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>aDirectory.<span style="color: #006633;">canRead</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000000; font-weight: bold;">throw</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">IllegalArgumentException</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Directory cannot be read: &quot;</span> <span style="color: #339933;">+</span> aDirectory<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>end result is a batch file that contains 1000 encoding commands each. Here&#8217;s the sample.</p>

<div class="wp_syntax"><div class="code"><pre class="bat" style="font-family:monospace;">&quot;C:\Program Files (x86)\Handbrake\HandBrakeCLI.exe&quot; -i &quot;J:\vod\ccm\achim\oursong_achim.wmv&quot; -t 1 -c 1 -o &quot;C:\vod\ccm\achim\oursong_achim.mp4&quot; -f mp4 --strict-anamorphic  --decomb -e x264 -S 32 -a 1 -E faac -6 dpl2 -R 22.05 -B 96 -D 0 -x ref=2:bframes=2:subq=6:mixed-refs=0:weightb=0:8x8dct=0:trellis=0 -v 1
C:\lame\ffmpeg.exe -i J:\vod\ccm\adagio.wma -vn -f wav - | c:\lame\lame.exe -V 6 - C:\vod\ccm\adagio.mp3</pre></div></div>

<p>as for the crazy HandBrakeCLI query, you can use GUI version of HandBrake to test out your favorite encoding setting and get the query from there queue after adding it there. Encoding 20000 files (1TB wmv/wma) will take about a full month on my personal computer. Now make sure your computer&#8217;s cooling is in good condition because encoding usually uses 100% of CPU&#8217;s resource.</p>
]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=85</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database servers down alarm</title>
		<link>http://soapiece.com/?p=80</link>
		<comments>http://soapiece.com/?p=80#comments</comments>
		<pubDate>Thu, 22 Jul 2010 07:48:35 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Coding Tips]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=80</guid>
		<description><![CDATA[This script checks DB server and sends alert emails in case of server problem. Written in PHP by Alexander Selifonov Download]]></description>
			<content:encoded><![CDATA[<p>This script checks DB server and sends alert emails in case of server problem.</p>
<p>Written in PHP by Alexander Selifonov</p>
<p><a href="http://soapiece.com/wp-content/uploads/2010/07/dbserver_check.zip">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=80</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Laptop as a Wifi router</title>
		<link>http://soapiece.com/?p=66</link>
		<comments>http://soapiece.com/?p=66#comments</comments>
		<pubDate>Wed, 21 Jul 2010 00:31:32 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Interesting Programs]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=66</guid>
		<description><![CDATA[Today I am going to introduce a program that&#8217;s quite useful. It&#8217;s called &#8220;Connectify&#8221;, which is a windows-7 based program to turn your regular laptop into a WIFI access point. Set up is truly simple and wizard helps you build a wifi network in a few minutes. It&#8217;s not an ad-hoc network, any device that can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://soapiece.com/wp-content/uploads/2010/07/connectify.png" rel="lightbox"><img class="alignleft size-medium wp-image-67" title="connectify" src="http://soapiece.com/wp-content/uploads/2010/07/connectify-182x300.png" alt="" width="182" height="300" /></a><span style="font-size: 13.3333px;">Today I am going to introduce a program that&#8217;s quite useful. It&#8217;s called &#8220;Connectify&#8221;, which is a windows-7 based program to turn your regular laptop into a WIFI access point. Set up is truly simple and wizard helps you build a wifi network in a few minutes. It&#8217;s not an ad-hoc network, any device that can connect to the network. (PS3/Printers/iPhone/Etc.)<br />
Network is secured with WPA2 but cannot be turned off, maybe because we can so easily see others&#8217; information we we wanted to. Connectify requires Windows7/2008 R2 but &#8216;Windows7 Starter Edition&#8217; is not supported. This Virtual Access Point feature was to be included in Windows7, but Microsoft had to rush the release before finishing the project. So developers of Connectify picked up the parts in Win7 and finished the program.</span></p>
<p><a href="http://www.connectify.me" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.connectify.me?referer=');">http://www.connectify.me</a></p>
]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=66</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recursively search and replace content of files</title>
		<link>http://soapiece.com/?p=33</link>
		<comments>http://soapiece.com/?p=33#comments</comments>
		<pubDate>Tue, 13 Jul 2010 22:06:23 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Coding Tips]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=33</guid>
		<description><![CDATA[I have encountered a problem when moving an old website to a newer server. Older website was using &#8216;HTTP_POST_VARS&#8217; which is deprecated in PHP5 and there were thousands of files included older version variable. Here&#8217;s the solution using  regular expression to swap &#8216;HTTP_POST_VARS&#8217; to &#8216;_POST&#8217; in all files under current &#38; sub directories. find ./ [...]]]></description>
			<content:encoded><![CDATA[<p>I have encountered a problem when moving an old website to a newer server. Older website was using &#8216;HTTP_POST_VARS&#8217; which is deprecated in PHP5 and there were thousands of files included older version variable. Here&#8217;s the solution using  regular expression to swap &#8216;HTTP_POST_VARS&#8217; to &#8216;_POST&#8217; in all files under current &amp; sub directories.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">find ./ -type f | xargs perl -pi -w -e 's/HTTP_POST_VARS/_POST/g;'</pre></div></div>

<p><tt><em>* Or you can change the php.ini file (</em><em>register_long_arrays=off) to use the deprecated long predefined variables, though it's not recommended.</em></tt></p>
]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert to UTF8</title>
		<link>http://soapiece.com/?p=23</link>
		<comments>http://soapiece.com/?p=23#comments</comments>
		<pubDate>Tue, 13 Jul 2010 21:26:47 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Interesting Programs]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=23</guid>
		<description><![CDATA[Ascii to UTF8 converter. This program is useful when you&#8217;re working with foreign websites. Just drag and drop a folder, then you can choose which file extensions to convert. All subdirectories and files are added to work list, so you can save time if you have bunch of files. Author http://iwoohaha.tistory.com/110 Download http://iwoohaha.tistory.com/attachment/4993e54daa7abAX.zip]]></description>
			<content:encoded><![CDATA[<p><a href="http://soapiece.com/wp-content/uploads/2010/07/utf8.jpg" target="_blank" rel="lightbox"><img class="size-medium wp-image-24 alignleft" title="Ascii to UTF8 Screenshot" rel="lightbox" src="http://soapiece.com/wp-content/uploads/2010/07/utf8-300x211.jpg" alt="" width="300" height="211" /></a><strong>Ascii to UTF8 converter.</strong><br />
This program is useful when you&#8217;re working with foreign websites. Just drag and drop a folder, then you can choose which file extensions to convert. All subdirectories and files are added to work list, so you can save time if you have bunch of files.</p>
<p>Author <a href="http://iwoohaha.tistory.com/110" target="_blank" onclick="pageTracker._trackPageview('/outgoing/iwoohaha.tistory.com/110?referer=');">http://iwoohaha.tistory.com/110<br />
</a>Download <a href="http://iwoohaha.tistory.com/attachment/4993e54daa7abAX.zip" onclick="pageTracker._trackPageview('/outgoing/iwoohaha.tistory.com/attachment/4993e54daa7abAX.zip?referer=');">http://iwoohaha.tistory.com/attachment/4993e54daa7abAX.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=23</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSSQL query escape in PHP</title>
		<link>http://soapiece.com/?p=12</link>
		<comments>http://soapiece.com/?p=12#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:20:22 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Coding Tips]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=12</guid>
		<description><![CDATA[PHP supports mysql_escape_string but if you use PHP with MSSQL you need to use your own method. Here&#8217;s the code snippet to escape characters. A better solution than using addslashes. function ms_escape_string&#40;$data&#41; &#123; if &#40; !isset&#40;$data&#41; or empty&#40;$data&#41; &#41; return ''; if &#40; is_numeric&#40;$data&#41; &#41; return $data; &#160; $non_displayables = array&#40; '/%0[0-8bcef]/', // url encoded [...]]]></description>
			<content:encoded><![CDATA[<p>PHP supports mysql_escape_string but if you use PHP with MSSQL you need to use your own method. Here&#8217;s the code snippet to escape characters. A better solution than using addslashes.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> ms_escape_string<span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span> or <span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">is_numeric</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">return</span> <span style="color: #000088;">$data</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000088;">$non_displayables</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
            <span style="color: #0000ff;">'/%0[0-8bcef]/'</span><span style="color: #339933;">,</span>            <span style="color: #666666; font-style: italic;">// url encoded 00-08, 11, 12, 14, 15</span>
            <span style="color: #0000ff;">'/%1[0-9a-f]/'</span><span style="color: #339933;">,</span>             <span style="color: #666666; font-style: italic;">// url encoded 16-31</span>
            <span style="color: #0000ff;">'/[\x00-\x08]/'</span><span style="color: #339933;">,</span>            <span style="color: #666666; font-style: italic;">// 00-08</span>
            <span style="color: #0000ff;">'/\x0b/'</span><span style="color: #339933;">,</span>                   <span style="color: #666666; font-style: italic;">// 11</span>
            <span style="color: #0000ff;">'/\x0c/'</span><span style="color: #339933;">,</span>                   <span style="color: #666666; font-style: italic;">// 12</span>
            <span style="color: #0000ff;">'/[\x0e-\x1f]/'</span>             <span style="color: #666666; font-style: italic;">// 14-31</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$non_displayables</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$regex</span> <span style="color: #009900;">&#41;</span>
            <span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$regex</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;''&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$data</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$data</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://soapiece.com/?p=1</link>
		<comments>http://soapiece.com/?p=1#comments</comments>
		<pubDate>Sun, 11 Jul 2010 13:00:08 +0000</pubDate>
		<dc:creator>soapiece</dc:creator>
				<category><![CDATA[Usuals]]></category>

		<guid isPermaLink="false">http://soapiece.com/?p=1</guid>
		<description><![CDATA[Hello world, I just opened up a wordpress so I can talk about things I&#8217;m interested into, it&#8217;s totally going to be a personal site.  :) Have a nice day]]></description>
			<content:encoded><![CDATA[<p>Hello world, I just opened up a wordpress so I can talk about things I&#8217;m interested into, it&#8217;s totally going to be a personal site.  :) Have a nice day</p>
]]></content:encoded>
			<wfw:commentRss>http://soapiece.com/?feed=rss2&amp;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
