<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Error Solved &#187; Uncategorized</title>
	<atom:link href="http://solveme.wordpress.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://solveme.wordpress.com</link>
	<description>Finally I solved the error</description>
	<lastBuildDate>Wed, 11 Nov 2009 07:19:00 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='solveme.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/605bab9a55109a23e84e1160bb1e5c3b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Error Solved &#187; Uncategorized</title>
		<link>http://solveme.wordpress.com</link>
	</image>
			<item>
		<title>DDD Without any ORM tool, is it possible !!</title>
		<link>http://solveme.wordpress.com/2009/11/11/ddd-without-any-orm-tool-is-it-possible/</link>
		<comments>http://solveme.wordpress.com/2009/11/11/ddd-without-any-orm-tool-is-it-possible/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 07:19:00 +0000</pubDate>
		<dc:creator>daringtakers</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DDD]]></category>

		<guid isPermaLink="false">http://solveme.wordpress.com/?p=86</guid>
		<description><![CDATA[DDD Without any ORM tool, is it possible !!  
Look at the thread http://tech.groups.yahoo.com/group/domaindrivendesign/message/16021
If you have done DDD without any ORM, your comments are valuable.
Please write your views.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=solveme.wordpress.com&blog=4112608&post=86&subd=solveme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>DDD Without any ORM tool, is it possible !!  </p>
<p>Look at the thread <a href="http://tech.groups.yahoo.com/group/domaindrivendesign/message/16021">http://tech.groups.yahoo.com/group/domaindrivendesign/message/16021</a></p>
<p>If you have done DDD without any ORM, your comments are valuable.<br />
Please write your views.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/solveme.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/solveme.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/solveme.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/solveme.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/solveme.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/solveme.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/solveme.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/solveme.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/solveme.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/solveme.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=solveme.wordpress.com&blog=4112608&post=86&subd=solveme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://solveme.wordpress.com/2009/11/11/ddd-without-any-orm-tool-is-it-possible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e04160aa66aeb25c4340959c5f2995?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daringtakers</media:title>
		</media:content>
	</item>
		<item>
		<title>Javascript CSV parser</title>
		<link>http://solveme.wordpress.com/2009/02/10/javascript-csv-parser/</link>
		<comments>http://solveme.wordpress.com/2009/02/10/javascript-csv-parser/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 13:41:38 +0000</pubDate>
		<dc:creator>daringtakers</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[parser]]></category>
		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://solveme.wordpress.com/?p=61</guid>
		<description><![CDATA[
var expr = /,(?=(?:[^\"]*\”[^\"]*\”)*(?![^\"]*\”))/g;
var array = str.split(expr);

it works for me

function parseLineCSV(lineCSV) {
// parse csv line by line into array
 var CSV = new Array();
 // Insert space before character ",". This is to anticipate 'split' in IE
 // try this:
 //
 // var a=",,,a,,b,,c,,,,d";
 // a=a.split(/\,/g);
 // document.write(a.length);
 //
 // You will see unexpected result!
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=solveme.wordpress.com&blog=4112608&post=61&subd=solveme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><code><br />
var expr = /,(?=(?:[^\"]*\”[^\"]*\”)*(?![^\"]*\”))/g;<br />
var array = str.split(expr);<br />
</code><br />
it works for me</p>
<p><code><br />
function parseLineCSV(lineCSV) {<br />
// parse csv line by line into array<br />
 var CSV = new Array();</p>
<p> // Insert space before character ",". This is to anticipate 'split' in IE<br />
 // try this:<br />
 //<br />
 // var a=",,,a,,b,,c,,,,d";<br />
 // a=a.split(/\,/g);<br />
 // document.write(a.length);<br />
 //<br />
 // You will see unexpected result!<br />
 //<br />
 lineCSV = lineCSV.replace(/,/g," ,");</p>
<p> lineCSV = lineCSV.split(/,/g);</p>
<p> // This is continuing of 'split' issue in IE<br />
 // remove all trailing space in each field<br />
 for (var i=0;i<br />
	&lt;lineCSV.length;i++) {<br />
 lineCSV[i] = lineCSV[i].replace(/\s*$/g,"");<br />
 }</p>
<p> lineCSV[lineCSV.length-1]=lineCSV[lineCSV.length-1].replace(/^\s*|\s*$/g,"");<br />
 var fstart = -1;</p>
<p> for (var i=0;i=0) {<br />
 for (var j=fstart+1;j&lt;=i;j++) {<br />
 lineCSV[fstart]=lineCSV[fstart]+","+lineCSV[j];<br />
 lineCSV[j]="-DELETED-";<br />
 }<br />
 fstart=-1;<br />
 }<br />
 }<br />
 fstart = (lineCSV[i].match(/^"/)) ? i : fstart;<br />
 }</p>
<p> var j=0;</p>
<p> for (var i=0;i<br />
	&lt;lineCSV.length;i++) {<br />
 if (lineCSV[i]!="-DELETED-") {<br />
 CSV[j] = lineCSV[i];<br />
 CSV[j] = CSV[j].replace(/^\s*|\s*$/g,"");     // remove leading &amp; trailing space<br />
 CSV[j] = CSV[j].replace(/^"|"$/g,"");         // remove " on the beginning and end<br />
 CSV[j] = CSV[j].replace(/""/g,'"');           // replace "" with "<br />
 j++;<br />
 }<br />
 }</p>
<p> return CSV;<br />
}<br />
</code><br />
It works for me, I got it from here http://purbayubudi.wordpress.com/2008/11/09/csv-parser-using-javascript/</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/solveme.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/solveme.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/solveme.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/solveme.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/solveme.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/solveme.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/solveme.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/solveme.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/solveme.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/solveme.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=solveme.wordpress.com&blog=4112608&post=61&subd=solveme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://solveme.wordpress.com/2009/02/10/javascript-csv-parser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e04160aa66aeb25c4340959c5f2995?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daringtakers</media:title>
		</media:content>
	</item>
		<item>
		<title>Could not perform XSLT transformation. Make sure PHP has been compiled/configured to support XSLT.</title>
		<link>http://solveme.wordpress.com/2008/11/13/could-not-perform-xslt-transformation-make-sure-php-has-been-compiledconfigured-to-support-xslt/</link>
		<comments>http://solveme.wordpress.com/2008/11/13/could-not-perform-xslt-transformation-make-sure-php-has-been-compiledconfigured-to-support-xslt/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 13:42:31 +0000</pubDate>
		<dc:creator>daringtakers</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wamp]]></category>

		<guid isPermaLink="false">http://solveme.wordpress.com/?p=35</guid>
		<description><![CDATA[Error when running symfony on wamp server.
Description:   I was trying to run the symfony PHP framework. I tried to build the model using command
php symfony propel:build-model.
And it gave error Could not perform XSLT transformation. Make sure PHP has been compiled/configured to support XSLT. 
Environment: Wamp server 2.0, PHP 5.2.5, Apache 2.2.6.
Reason: PHP-XSL extension is not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=solveme.wordpress.com&blog=4112608&post=35&subd=solveme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Error when running symfony on wamp server.</p>
<p><strong>Description</strong>:   I was trying to run the <a href="http://www.symfony-project.org">symfony PHP framework</a>. I tried to build the model using command<br />
<code>php symfony propel:build-model.</code></p>
<p>And it gave error <strong>Could not perform XSLT transformation. Make sure PHP has been compiled/configured to support XSLT. </strong></p>
<p><strong>Environment</strong>: Wamp server 2.0, PHP 5.2.5, Apache 2.2.6.</p>
<p><strong>Reason</strong>: PHP-XSL extension is not enabled. By default, Wamp server doesnt enable php-xsl php extension. and php-xsl is required.</p>
<p><strong>Solution</strong>: Enable php-xsl extension.</p>
<p align="justify">left click on WAMP’s tray icon and than in PHP&gt;PHP extensions select php-xsl and enable it.But there is one more <em>php.ini</em> file, which WAMP won’t change, we need to do it by hand, open: <em>C:\wamp\bin\php\php5.2.5\php.ini</em> and remove “;” from the line</p>
<p align="justify"><strong>;extension=php_xsl.dll</strong></p>
<p align="justify">And then restart the server. Try to run the build command again.</p>
<p align="justify">Some useful links to get symfony running properly on wamp.</p>
<p align="justify"><a href="http://trac.symfony-project.org/wiki/SymfonyOnWAMP">http://trac.symfony-project.org/wiki/SymfonyOnWAMP</a></p>
<p align="justify"><a href="http://anandshahil11.wordpress.com/symfony-php-framwework-installation-on-windows-wamp/">http://anandshahil11.wordpress.com/symfony-php-framwework-installation-on-windows-wamp/</a></p>
<p align="justify">
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/solveme.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/solveme.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/solveme.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/solveme.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/solveme.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/solveme.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/solveme.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/solveme.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/solveme.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/solveme.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=solveme.wordpress.com&blog=4112608&post=35&subd=solveme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://solveme.wordpress.com/2008/11/13/could-not-perform-xslt-transformation-make-sure-php-has-been-compiledconfigured-to-support-xslt/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e04160aa66aeb25c4340959c5f2995?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daringtakers</media:title>
		</media:content>
	</item>
		<item>
		<title>What this blog is about?</title>
		<link>http://solveme.wordpress.com/2008/07/01/what-this-blog-is-about/</link>
		<comments>http://solveme.wordpress.com/2008/07/01/what-this-blog-is-about/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 05:37:03 +0000</pubDate>
		<dc:creator>daringtakers</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[errors]]></category>

		<guid isPermaLink="false">http://solveme.wordpress.com/?p=3</guid>
		<description><![CDATA[You may be wondering what this blog is about !!.
This blog is about the errors, problems, configuration issues that I faced when doing my job of a Java programmer.
Here I write about the problems which casued me to open the google and seach atleast for an hour, ask questions on forums, post questions in mailing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=solveme.wordpress.com&blog=4112608&post=3&subd=solveme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You may be wondering what this blog is about !!.</p>
<p>This blog is about the errors, problems, configuration issues that I faced when doing my job of a Java programmer.</p>
<p>Here I write about the problems which casued me to open the google and seach atleast for an hour, ask questions on forums, post questions in mailing lists, or take whatever the alternatives are to solve the problem. When the problem is solved finally, I write the solution here so that it can save the time of others.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/solveme.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/solveme.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/solveme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/solveme.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/solveme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/solveme.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/solveme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/solveme.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/solveme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/solveme.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/solveme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/solveme.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=solveme.wordpress.com&blog=4112608&post=3&subd=solveme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://solveme.wordpress.com/2008/07/01/what-this-blog-is-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e04160aa66aeb25c4340959c5f2995?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daringtakers</media:title>
		</media:content>
	</item>
	</channel>
</rss>