<?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>zyrax &#187; Blog</title>
	<atom:link href="http://blog.zyrax.net/archives/category/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.zyrax.net</link>
	<description></description>
	<lastBuildDate>Thu, 31 Mar 2011 02:04:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Bacula Cancel Job Script</title>
		<link>http://blog.zyrax.net/archives/355</link>
		<comments>http://blog.zyrax.net/archives/355#comments</comments>
		<pubDate>Tue, 29 Mar 2011 05:39:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=355</guid>
		<description><![CDATA[This script when execute will grab all scheduled job and running job and cancelling all of them through Bacula interface. It&#8217;s useful for people who need to cancel job before the start of working days. I initially wrote this for my company use.Now I&#8217;m sharing the love with everyone else.Releasing under GPL 2. cancel_job.sh.tar]]></description>
			<content:encoded><![CDATA[<p>This script when execute will grab all scheduled job and running job and cancelling all of them through Bacula interface. It&#8217;s useful for people who need to cancel job before the start of working days.</p>
<p>I initially wrote this for my company use.Now I&#8217;m sharing the love with everyone else.Releasing under GPL 2.</p>
<p><a href='http://blog.zyrax.net/wp-content/uploads/2011/03/cancel_job.sh.tar.gz'>cancel_job.sh.tar</a></p>
<p><script type="text/javascript">// <![CDATA[
    google_ad_client = "pub-1448498315411856"; /* blog.zyrax.net 468x60 */ google_ad_slot = "0751533246"; google_ad_width = 468; google_ad_height = 60;
// ]]&gt;</script></p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/355/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugs in TPEGML entities</title>
		<link>http://blog.zyrax.net/archives/345</link>
		<comments>http://blog.zyrax.net/archives/345#comments</comments>
		<pubDate>Fri, 31 Dec 2010 14:30:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=345</guid>
		<description><![CDATA[I&#8217;m currently write a simple web based TPEGML editor.I used information available at http://www.bbc.co.uk/travelnews/xml/ In order to accommodate future entities changes,I regex code to parse entities into a array. While parsing English RTM entity, I notice the result was weird. I thought there was something wrong with my code. After hours of debugging, I found [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently write a simple web based TPEGML editor.I used information available at http://www.bbc.co.uk/travelnews/xml/</p>
<p>In order to accommodate future entities changes,I regex code to parse entities into a array. While parsing English RTM entity, I notice the result was weird. I thought there was something wrong with my code. After hours of debugging, I found out that it was 3 non ASCII characters in rtm45_33 and rtm35_7 message.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/345/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Fahrenheit to Celsius Estimation Formula</title>
		<link>http://blog.zyrax.net/archives/315</link>
		<comments>http://blog.zyrax.net/archives/315#comments</comments>
		<pubDate>Thu, 23 Sep 2010 06:15:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[math]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=315</guid>
		<description><![CDATA[I HATE having to convert Fahrenheit to Celsius.Especially when reading recipes.Even if you remember the formula,you still have to pull out a calculator(unless your a walking calculator). I spend some time trying to find a best way( it must have lowest margin of error and ease to calculate ) to estimate Fahrenheit to Celsius as [...]]]></description>
			<content:encoded><![CDATA[<p>I HATE having to convert Fahrenheit to Celsius.Especially when reading recipes.Even if you remember the formula,you still have to pull out a calculator(unless your a walking calculator).</p>
<p>I spend some time trying to find a best way( it must have lowest margin of error and ease to calculate ) to estimate Fahrenheit to Celsius as simple as possible.</p>
<p><strong>My Quick Formula For Fahrenheit to Celsius Estimation</strong><br />
<code>[ (F/2) - 16 ]+10%</code><br />
where F is a variable in °F</p>
<p>Example:<br />
<strong>102°F</strong> : 102/2=51-16=35+10%=38.5<br />
<a href="http://www.google.com.my/search?hl=en&#038;safe=off&#038;q=102+fahrenheit+to+celsius&#038;aq=f&#038;aqi=&#038;aql=&#038;oq=&#038;gs_rfai=">102 degrees Fahrenheit = 38.8888889 degrees Celsius</a></p>
<p><strong>76°F</strong> : 76/2=38-16=22+10%=24.2<br />
<a href="http://www.google.com.my/search?hl=en&#038;safe=off&#038;q=76+fahrenheit+to+celsius&#038;aq=f&#038;aqi=&#038;aql=&#038;oq=&#038;gs_rfai=">76 degrees Fahrenheit = 24.4444444 degrees Celsius</a></p>
<p><strong>32°F</strong> : 32/2=16-16=0*1.1=0</p>
<p><strong>4°F</strong> : 4/2=2-16=-14+10%=-15.4<br />
<a href="http://www.google.com.my/search?hl=en&#038;safe=off&#038;q=4+fahrenheit+to+celsius&#038;aq=f&#038;aqi=&#038;aql=&#038;oq=&#038;gs_rfai=">4 degrees Fahrenheit = -15.5555556 degrees Celsius</a></p>
<p><strong>0°F</strong> : 0/2=0-16=-16+10%=-17.6<br />
<a href="http://www.google.com.my/search?hl=en&#038;safe=off&#038;q=0+fahrenheit+to+celsius&#038;aq=f&#038;aqi=&#038;aql=&#038;oq=&#038;gs_rfai=">0 degrees Fahrenheit = -17.7777778 degrees Celsius</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/315/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CodeIgniter Tag for Geany</title>
		<link>http://blog.zyrax.net/archives/304</link>
		<comments>http://blog.zyrax.net/archives/304#comments</comments>
		<pubDate>Fri, 02 Jul 2010 11:37:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=304</guid>
		<description><![CDATA[I compile a codeigniter tag file for Geany.I&#8217;m no expert in codeigniter,so if i make any mistake/suggestion/changes,please let me know. Releasing under GPL 2,so feel free to do any modification on it.Please inform me if you did,I&#8217;ll like to have a better version codeigniter.php.tags]]></description>
			<content:encoded><![CDATA[<p>I compile a codeigniter tag file for Geany.I&#8217;m no expert in codeigniter,so if i make any mistake/suggestion/changes,please let me know.</p>
<p>Releasing under GPL 2,so feel free to do any modification on it.Please inform me if you did,I&#8217;ll like to have a better version</p>
<p><a href='http://blog.zyrax.net/wp-content/uploads/2010/07/codeigniter.php_.tags_.zip'>codeigniter.php.tags</a></p>
<p><script type="text/javascript">// <![CDATA[
   google_ad_client = "pub-1448498315411856"; /* blog.zyrax.net 468x60 */ google_ad_slot = "0751533246"; google_ad_width = 468; google_ad_height = 60;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/304/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Jamendo&#8217;s Radio Podcast</title>
		<link>http://blog.zyrax.net/archives/280</link>
		<comments>http://blog.zyrax.net/archives/280#comments</comments>
		<pubDate>Sun, 15 Nov 2009 10:16:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=280</guid>
		<description><![CDATA[I love to listen to jamendo but the disadvantage is I need to be connected to listen. In order to make things easier for me,since I&#8217;m very lazy.I wrote a script that convert m3u list from jamendo into podcast. http://feeds.feedburner.com/JamendoRadioLounge http://feeds.feedburner.com/JamendoRadioJazz also in the spirits of open source,I&#8217;ll release the php code soon.Hope to see [...]]]></description>
			<content:encoded><![CDATA[<p>I love to listen to jamendo but the disadvantage is I need to be connected to listen.</p>
<p>In order to make things easier for me,since I&#8217;m very lazy.I wrote a script that convert m3u list from jamendo into podcast.</p>
<p><a href="http://feeds.feedburner.com/JamendoRadioLounge">http://feeds.feedburner.com/JamendoRadioLounge</a><br />
<a href="http://feeds.feedburner.com/JamendoRadioJazz">http://feeds.feedburner.com/JamendoRadioJazz</a></p>
<p>also in the spirits of open source,I&#8217;ll release the php code soon.Hope to see more podcast for jamendo especially Jamendo Top 100 Tracks.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/280/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Traffic Announcements Through TPEGML</title>
		<link>http://blog.zyrax.net/archives/275</link>
		<comments>http://blog.zyrax.net/archives/275#comments</comments>
		<pubDate>Tue, 15 Sep 2009 15:15:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=275</guid>
		<description><![CDATA[TPEG (Transport Protocol Experts Group) is a standardised format for travel news reports, allowing incidents relating to many different modes of transport to be captured in a structured way. It&#8217;s basically a XML format containing traffic information. It would be nice to have an editor using google map or openstreetmap. FYI,AndNav2 support it. Link More [...]]]></description>
			<content:encoded><![CDATA[<p>TPEG (Transport Protocol Experts Group) is a standardised format for travel news reports, allowing incidents relating to many different modes of transport to be captured in a structured way. It&#8217;s basically a XML format containing traffic information.</p>
<p>It would be nice to have an editor using google map or openstreetmap.</p>
<p>FYI,AndNav2 support it. <a href="http://www.andnav.org/index.php/menu-andnav2-userguide/traffic-feeds">Link</a><br />
<a href="http://www.bbc.co.uk/travelnews/xml/">More Info</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/275/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase Mplayer volume</title>
		<link>http://blog.zyrax.net/archives/248</link>
		<comments>http://blog.zyrax.net/archives/248#comments</comments>
		<pubDate>Sat, 22 Aug 2009 10:48:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=248</guid>
		<description><![CDATA[You can also put all these configurations in the config file: ( ~/.mplayer/config ) # Write your default config options here! softvol=1 softvol-max=400 #stop-xscreensaver=1 zoom=1 vm=1]]></description>
			<content:encoded><![CDATA[<p>You can also put all these configurations in the config file: ( ~/.mplayer/config )</p>
<p># Write your default config options here!<br />
softvol=1<br />
softvol-max=400<br />
#stop-xscreensaver=1<br />
zoom=1<br />
vm=1</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/248/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MioPocket for GPSBay</title>
		<link>http://blog.zyrax.net/archives/240</link>
		<comments>http://blog.zyrax.net/archives/240#comments</comments>
		<pubDate>Tue, 09 Jun 2009 07:57:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[hack]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=240</guid>
		<description><![CDATA[WARNING: I&#8217;m not responsible for any damage resulted by following my guide. 1. Create shell.ini in your SDcard open up shell.ini and paste /windows/explorer.exe 2.Download MioPocket http://www.netfresco.com/MioPocket/ 3. Extract and copy the following to SDcard Media folder MioAutoRun folder MioAutoRun.exe MioAutoRun.mscr MortScript.exe 4.Turn on your GPSBay with sd card in it.Click on Navigation.A window should [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000;">WARNING: I&#8217;m not responsible for any damage resulted by following my guide.</span></strong></p>
<p>1. Create shell.ini in your SDcard<br />
open up shell.ini and paste</p>
<blockquote><p>/windows/explorer.exe</p></blockquote>
<p>2.Download <a href="http://www.netfresco.com/MioPocket/">MioPocket http://www.netfresco.com/MioPocket/</a></p>
<p>3. Extract and copy the following to SDcard <strong><br />
Media</strong> folder<br />
<strong>MioAutoRun</strong> folder<br />
<strong>MioAutoRun.exe</strong><br />
<strong>MioAutoRun.mscr</strong><br />
<strong>MortScript.exe</strong></p>
<p>4.Turn on your GPSBay with sd card in it.Click on <strong>Navigation</strong>.A window should appear,open <strong>SDMMC</strong> and run <strong>MioAutoRun.exe</strong></p>
<p>5.Here onward,please refer to MioPocket guide.</p>
<p>6.When your done,there&#8217;s a bug bring up the old main menu.To solve this,you need to go to <strong>MP Setting</strong> -&gt; <strong>System</strong> -&gt; <strong>Disable PowerButton on startup</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/240/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7 wm6.1 free apps you must have</title>
		<link>http://blog.zyrax.net/archives/228</link>
		<comments>http://blog.zyrax.net/archives/228#comments</comments>
		<pubDate>Sat, 23 May 2009 04:22:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PDA]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=228</guid>
		<description><![CDATA[CleanRAM CleanRAM save your phone from lag and soft reset by clearing out non-responding tasks and services. http://forum.xda-developers.com/showthread.php?t=514333 Pwrstat Get rid of your battery icon and make way for clock http://www.freewarepocketpc.net/ppc-download-pwrstat.html TouchResponse Hate screen taps sound but want to have respond for screen taps.How about vibrate respond?It&#8217;s not going to annoy people around you. http://forum.xda-developers.com/showthread.php?t=450256 [...]]]></description>
			<content:encoded><![CDATA[<h2><a href="http://forum.xda-developers.com/showthread.php?t=514333">CleanRAM</a></h2>
<p>CleanRAM save your phone from lag and soft reset by clearing out non-responding tasks and services.<br />
<a href="http://forum.xda-developers.com/showthread.php?t=514333">http://forum.xda-developers.com/showthread.php?t=514333</a></p>
<h2><a href="http://www.freewarepocketpc.net/ppc-download-pwrstat.html">Pwrstat</a></h2>
<p>Get rid of your battery icon and make way for clock<br />
<img class="alignnone size-medium wp-image-229" title="pwrstat1_1" src="http://blog.zyrax.net/wp-content/uploads/2009/05/pwrstat1_1-225x300.gif" alt="pwrstat1_1" width="225" height="300" /><br />
<a href="http://www.freewarepocketpc.net/ppc-download-pwrstat.html">http://www.freewarepocketpc.net/ppc-download-pwrstat.html</a></p>
<h2><strong><a href="http://forum.xda-developers.com/showthread.php?t=450256">TouchResponse</a><br />
</strong></h2>
<p>Hate screen taps sound but want to have respond for screen taps.How about vibrate respond?It&#8217;s not going to annoy people around you.<br />
<a href="http://forum.xda-developers.com/showthread.php?t=450256">http://forum.xda-developers.com/showthread.php?t=450256</a></p>
<h2><a href="http://forum.xda-developers.com/showthread.php?t=437279">VAlert</a></h2>
<p>We all know that people at Micro$oft have no creativity and they make boring vibrate alert.You may wonder how does the vibrate rhythm feels like&#8230;Well,it feels like a plain boring sex toy with an on/off switch.VAlert unleash your creativity by allowing your to design your own vibrate rhythm.<br />
<a href="http://forum.xda-developers.com/showthread.php?t=437279">http://forum.xda-developers.com/showthread.php?t=437279</a></p>
<h2><a href="http://www.acbpocketsoft.com/">acbPowerMeter (Free)</a></h2>
<p>New apps make our phone better,but does it drain your battery juice?acbPowerMeter allow you to compare battery life before and after an apps installed.So now you know whether it&#8217;s worth it to keep an apps.<br />
<a href="http://www.acbpocketsoft.com/">http://www.acbpocketsoft.com/</a></p>
<h2><a href="http://forum.xda-developers.com/showthread.php?t=459125">FingerSuite</a></h2>
<p>Nice menu and finger friendly menus.<br />
<img class="alignnone size-medium wp-image-230" title="pc_capture3" src="http://blog.zyrax.net/wp-content/uploads/2009/05/pc_capture3-225x300.jpg" alt="pc_capture3" width="225" height="300" /><br />
<a href="http://forum.xda-developers.com/showthread.php?t=459125">http://forum.xda-developers.com/showthread.php?t=459125</a></p>
<h2><a href="http://forum.xda-developers.com/showthread.php?t=487677">FingerKeyboard2</a></h2>
<p>This is one of my favorite on screen keyboard.<br />
<a href="http://forum.xda-developers.com/showthread.php?t=487677">http://forum.xda-developers.com/showthread.php?t=487677</a></p>
<h2><a href="http://rapidshare.com/files/207431339/Official_Rhodium_Rings.rar">Extra: Official Rhodium Rings</a></h2>
<p>The guys at XDA-developer extracted this ringtones from HTC Rhodium.<br />
<a href="http://rapidshare.com/files/207431339/Official_Rhodium_Rings.rar">http://rapidshare.com/files/207431339/Official_Rhodium_Rings.rar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/228/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New pda phone</title>
		<link>http://blog.zyrax.net/archives/212</link>
		<comments>http://blog.zyrax.net/archives/212#comments</comments>
		<pubDate>Tue, 31 Mar 2009 18:15:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PDA]]></category>

		<guid isPermaLink="false">http://blog.zyrax.net/?p=212</guid>
		<description><![CDATA[Just got my white HTC Touch (Elfin) for 2 weeks.I like what they did to fix the phone.i know it the OS fault and HTC did a wonderful job to fix as much as they can.Bravo to them.In order to show appreciation to their work,i try to preserve HTC original software as much as i [...]]]></description>
			<content:encoded><![CDATA[<p>Just got my white HTC Touch (Elfin) for 2 weeks.I like what they did to fix the phone.i know it the OS fault and HTC did a wonderful job to fix as much as they can.Bravo to them.In order to show appreciation to their work,i try to preserve HTC original software as much as i can.</p>
<p>The following are some tips and fix for HTC Touch (Elfin)</p>
<ul>
<li>Weather Fix closest city from me is about 100km away.The fix:
<ol>
<li> Get the cab and install from http://forum.xda-developers.com/showpost.php?p=2638566&amp;postcount=50<br />
There nothing much you need to do other then restart after your done installing</li>
<li>Make a copy of the HH_0409_WeatherCities.xml in the Windows folder.</li>
<li>Modify the file to include your info(get from accuweather.com).   See the examples below:<strong><br />
&lt;city name=&#8221;Idaho Falls, ID, US&#8221; loca=&#8221;NAM|US|ID|IDAHO-FALLS&#8221; land=&#8221;United States&#8221;/&gt;</strong></li>
<li>Copy the HH_0409_WeatherCities.xml back to your device (your storage card or My Documents)</li>
<li>Disable TouchFlo in your Today Screen settings</li>
<li>Using TotalCommander overwrite the HH_0409_WeatherCities.xml file in the Windows folder</li>
</ol>
</li>
<li> Opera Browser as Default Browser
<ol>
<li>Launch Opera browser.</li>
<li>In the address bar, enter <strong>opera:config</strong> and go.</li>
<li>In &#8220;Preferences Editor&#8221; page scroll down until you see <strong>Install</strong>. Tap on it to expand the section. Enable the tickbox for <strong>Browser First Time Launch</strong>, then tap <strong>Save</strong>.</li>
</ol>
</li>
<li>Make an application exclusive<br />
The Exclusive option allows users to add programs to a list that makes them exempt from the Button setting; these applications will not be closed out when the X is used within the application.</p>
<ol>
<li>Open the application you wanted.</li>
<li>Go to <strong>Start</strong> -&gt;<strong> Settings</strong> -&gt;<strong> System</strong> Tab -&gt; <strong>Task Manager -</strong>&gt; <strong>Running</strong> tab.</li>
<li>Check the box next to the application.</li>
<li>Tap on the application name.In <strong>menu</strong>,select <strong>Add Exclusive</strong>.</li>
</ol>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.zyrax.net/archives/212/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

