<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Chintoju's blog</title>
	<link>http://blog.chintoju.com</link>
	<description>Can you get something out of nothing...</description>
	<lastBuildDate>Thu, 08 Oct 2009 02:07:03 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>JBoss and Oracle connection failing with java.lang.NoSuchMethodError: oracle.sql.converter.CharacterConverters.toUnicodeChars</title>
		<description><![CDATA[Ever saw some/none of the DB calls in jboss (4.2.3) and oracle (9i) failing with the following error. The exceptions can be all different types, but eventually caused by this following exception.
 .
.
Caused by: java.lang.NoSuchMethodError: oracle.sql.converter.CharacterConverters.toUnicodeChars([BI[CII)I
.
.
This happened when I tried to switch databases this morning (both Oracle 9i) . Nothing fixed it till I replaced [...]]]></description>
		<link>http://blog.chintoju.com/2009/10/jboss-and-oracle-connection-failing-with-java-lang-nosuchmethoderror-oracle-sql-converter-characterconverters-tounicodechars.html</link>
			</item>
	<item>
		<title>Refresh ID3 tags of entire music library in iTunes (Windows)</title>
		<description><![CDATA[If you are like me and manage your ID3 tags outside iTunes for your music, this is how you force iTunes to refresh all ID3 info without having to recreate the entire library.

Select all songs (Ctrl+A)
Right click the selection, click on &#8216;Get info&#8217;
Without entering any data, just click on &#8216;Ok&#8217; this will force iTunes to [...]]]></description>
		<link>http://blog.chintoju.com/2009/07/refresh-id3-tags-of-entire-music-library-in-itunes-windows.html</link>
			</item>
	<item>
		<title>Google Chrome Offline Installer (From Google)</title>
		<description><![CDATA[Download Google Chrome Offline Installer from Google]]></description>
		<link>http://blog.chintoju.com/2009/03/google-chrome-offline-installer-from-google.html</link>
			</item>
	<item>
		<title>Subversion proxy connection issues with Eclipse (In windows)</title>
		<description><![CDATA[If you are having issues connecting to your subversion repositories from Eclipse (May be with Subversive/Subclipse). Try the following.
Enter proxy details into Subversion configuration:
Open servers file in the following location

Window XP
C:\Documents and Settings\MyUserId\Application Data\Subversion\servers
Windows Vista
C:\Users\Clientside\AppData\Roaming\Subversion\servers

Update following lines at the end of file
[global]
http-proxy-exceptions = yourproxy exceptions (e.g. dev.company.com.au)
http-proxy-host = yourproxyhost (e.g. proxy.company.com.au)
http-proxy-port = your proxy port [...]]]></description>
		<link>http://blog.chintoju.com/2009/03/subversion-proxy-connection-issues-with-eclipse-in-windows.html</link>
			</item>
	<item>
		<title>How to install OpenOffice.org 3.0 in Linux Mint</title>
		<description><![CDATA[This is pretty simple in the linux mint. (You usually already have OpenOffice.org 2.4 which comes by default, so this is more like an upgrade procedure)
You add the OpenOffice deb repository as this is not yet available from Ubuntu reps and do a mintUpdate which will quickly tell you what is ready to be updated. [...]]]></description>
		<link>http://blog.chintoju.com/2008/12/how-to-install-openofficeorg-30-in-linux-mint.html</link>
			</item>
	<item>
		<title>Filter email from spam sites which uses different email id&#8217;s every time (in Gmail)</title>
		<description><![CDATA[There is a cheap trick being played by one of those social networking sites (Siliconindia.com , Siliconindia.net, Siliconindia etc.), which has even managed to avoid the very good spam filter google has in gmail.  They use different pictures of girls (mostly good looking), different from addresses. Opt out does nothing, and both &#8216;Yes&#8217; and &#8216;No&#8217; [...]]]></description>
		<link>http://blog.chintoju.com/2008/12/filter-email-from-spam-sites-which-uses-different-email-ids-every-time-in-gmail.html</link>
			</item>
	<item>
		<title>Free Pattern/Stripe background tile image generator</title>
		<description><![CDATA[Ever searched google for some nice background stripe tile images only to be stuck at god awful pattern sites with patterns like dead wood and rusty steel to pink flowers. I DID!! like a gazillion times.
Finally someone to the rescue.
http://www.stripgenrator.com/
Pick choose create and download your own stripes all for FREE. Pretty much on the lines [...]]]></description>
		<link>http://blog.chintoju.com/2008/09/free-patternstripe-background-tile-image-generator.html</link>
			</item>
	<item>
		<title>Retrieve items from Browser Cache (Firefox, Opera, IE)</title>
		<description><![CDATA[Have you ever had to work on a live site and while uploading the changes something goes bad with whatever and your live copy gets deleted and that&#8217;s the only copy you have at the moment. (This can happen easily if you are using those file manager tools provided by hosting accounts which edit files [...]]]></description>
		<link>http://blog.chintoju.com/2008/07/retrieve-filesitems-from-browser-cache-firefox-opera-ie.html</link>
			</item>
	<item>
		<title>A particular session variable&#8217;s value disappearing from $_SESSION in PHP</title>
		<description><![CDATA[A particular session variable&#8217;s value disappearing from $_SESSION in PHP&#8230; ??
Just check to make sure you DON&#8217;T have register_globals turned On. This took me a few hour&#8217;s to figure out..
Example scenario..
Form Bean class

class FormBean
{
public $email;
public $name;
}

page1.php

$form = new FormBean();
$form-&#62;email = "someone@something.com.au";
$_SESSION['form'] = serialize($form);
header("location:page2.php");

page2.php

$form =NULL;
if(isset($_SESSION['form']))
{
$form = unserialize($_SESSION['form']);
}
echo $form-&#62;email;

Expected to print &#8220;someone@something.com.au&#8221; right. Usually it does. If [...]]]></description>
		<link>http://blog.chintoju.com/2008/07/a-particular-session-variables-value-disappearing-from-_session-in-php.html</link>
			</item>
	<item>
		<title>Eclipse/RAD debugger timing out before starting server</title>
		<description><![CDATA[Is your RAD/Eclipse Java debugger timing out before starting the server?
Have a gazillion projects in RAD/Eclipse which all have to be deployed in server for debugging all the time like I do?
There is an easy way to increase RAD/Eclipse debugger timeout.

Go to Windows &#62; Preferences &#62; Java &#62; Debug

Increase both &#8220;Debugger time-out&#8221; and &#8220;Launch time-out&#8221; [...]]]></description>
		<link>http://blog.chintoju.com/2008/06/eclipserad-debugger-timing-out-before-starting-server.html</link>
			</item>
</channel>
</rss>
