<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Against All Odds</title>
	<atom:link href="http://ppshein.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ppshein.wordpress.com</link>
	<description>All of my solutions in my web developer life.</description>
	<lastBuildDate>Sat, 07 Nov 2009 03:26:10 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ppshein.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/5c7d9584ae0c9554627c3a575a746e86?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Against All Odds</title>
		<link>http://ppshein.wordpress.com</link>
	</image>
			<item>
		<title>Crop image proportionally with PHP</title>
		<link>http://ppshein.wordpress.com/2009/11/06/crop-image-proportionally-with-php/</link>
		<comments>http://ppshein.wordpress.com/2009/11/06/crop-image-proportionally-with-php/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 08:07:22 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[crop]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=251</guid>
		<description><![CDATA[First of all, I&#8217;m not PHP geek. But, PHP is my second expert language after CF. I&#8217;ve created some freelance projects with PHP . You can hire me if you have some freelance projects for low cost and full reliable.
When I surf website for cropping image, I found this site. It&#8217;s cool. Check it out.
http://deepliquid.com/projects/Jcrop/demos/crop.php
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=251&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/11/06/crop-image-proportionally-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>Coldfuion Report Builder</title>
		<link>http://ppshein.wordpress.com/2009/11/06/coldfuion-report-builder/</link>
		<comments>http://ppshein.wordpress.com/2009/11/06/coldfuion-report-builder/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 05:53:37 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[crystal reports]]></category>
		<category><![CDATA[report builder]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=248</guid>
		<description><![CDATA[Of the most powerful and convenient report builder is Coldfusion Report Builder. It&#8217;s absolutely just like crystal report. You can make your report design in CF report builder or you can use their built-in theme, either. Are you getting sick of writing query in cf report builder? It&#8217;s ok. You can write Query in your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=248&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/11/06/coldfuion-report-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>CFQUERYPARAM and Oracle Databases</title>
		<link>http://ppshein.wordpress.com/2009/11/05/cfqueryparam-and-oracle-databases/</link>
		<comments>http://ppshein.wordpress.com/2009/11/05/cfqueryparam-and-oracle-databases/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 07:14:10 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[cfqueryparam]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=246</guid>
		<description><![CDATA[I&#8217;ve already shown in my old posts about the benefit of using cfqueryparam tag. Using this tag can prevent SQL inject and output data format what SQL like.
Generally, we use old-fashioned style like
&#60;CFQUERY DATASOURCE=&#8221;DSN_NAME&#8221;&#62;
SELECT username
FROM users
WHERE user_id=#SESSION.USER_ID#
&#60;/CFQUERY&#62;
In modern style, we use cfqueryparam tag within cfquery tag like
&#160;
&#60;CFQUERY DATASOURCE=&#8221;DSN_NAME&#8221;&#62;
SELECT username
FROM users
WHERE user_id=&#60;cfqueryparam value=&#8221;#SESSION.USER_ID#&#8221; cfsqltype=&#8221;cf_sql_number&#8221;&#62;
&#60;/CFQUERY&#62;
&#160;
It&#8217;s ok for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=246&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/11/05/cfqueryparam-and-oracle-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>Check mouse pointer location</title>
		<link>http://ppshein.wordpress.com/2009/11/02/check-mouse-pointer-location/</link>
		<comments>http://ppshein.wordpress.com/2009/11/02/check-mouse-pointer-location/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 08:12:49 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[Informations]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[pointer]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=242</guid>
		<description><![CDATA[Do you want to check your mouse pointer location? It&#8217;s kinda simple. Check it out.
&#160;
&#60;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01//EN&#8221; &#8220;http://www.w3.org/TR/html4/strict.dtd&#8221;&#62;
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Browser Coordinate Computation Demo&#60;/title&#62;
&#60;script type=&#8221;text/javascript&#8221;&#62;
function move(e)
{
if (!e) e= event;
var docX,docY;
if (e.pageX == null)
{
// IE case
var d= (document.documentElement &#38;&#38;
document.documentElement.scrollLeft != null) ?
document.documentElement : document.body;
docX= e.clientX + d.scrollLeft;
docY= e.clientY + d.scrollTop;
}
else
{
// all other browsers
docX= e.pageX;
docY= e.pageY;
}
var coord= [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=242&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/11/02/check-mouse-pointer-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>raphael js</title>
		<link>http://ppshein.wordpress.com/2009/10/30/raphael-js/</link>
		<comments>http://ppshein.wordpress.com/2009/10/30/raphael-js/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 08:41:48 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[Informations]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[raphaeljs]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=240</guid>
		<description><![CDATA[I was speechless after surfing this website. All of his projects make me awe. We can refer or modify more useful projects by the way of learning his javascript projects.
Cheers,
http://raphaeljs.com/
&#160;
 Tagged: awesome, Javascript, raphaeljs      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=240&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/10/30/raphael-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>Refresh parent window from child window with ShowModalDialog</title>
		<link>http://ppshein.wordpress.com/2009/10/28/refresh-parent-window-from-child-window-with-showmodaldialog/</link>
		<comments>http://ppshein.wordpress.com/2009/10/28/refresh-parent-window-from-child-window-with-showmodaldialog/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 02:31:33 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[Informations]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[showmodaldialog]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=237</guid>
		<description><![CDATA[Yesterday, I was in problem. Because, my supervisor told me to refresh main window from child window when child window is closed. I thought, I could do it with window.opener.location.href. Actually, it doesn&#8217;t work because this new window is created by showmodaldialog of javascript. That&#8217;s why I was running through on it. Finally, I got [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=237&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/10/28/refresh-parent-window-from-child-window-with-showmodaldialog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>Increase and decrease count by clicking with Javascript</title>
		<link>http://ppshein.wordpress.com/2009/10/22/increase-and-decrease-count-by-clicking-with-javascript/</link>
		<comments>http://ppshein.wordpress.com/2009/10/22/increase-and-decrease-count-by-clicking-with-javascript/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 03:45:46 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[decrease]]></category>
		<category><![CDATA[increase]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=235</guid>
		<description><![CDATA[Today, my supervisor wants me to do simple javascript program. It seems, it&#8217;s kinda simple but complicated when I implement it. This program is, to increase or decrease count by clicking on button. I took 1 hour to implement this program. Voilà..!!
&#60;form name=&#8221;myform&#8221;&#62;
&#60;input type=&#8221;Hidden&#8221; name=&#8221;init&#8221; value=&#8221;3&#8243;&#62;
&#60;input type=&#8221;Button&#8221; name=&#8221;actoin&#8221; value=&#8221;+&#8221; onclick=&#8221;increase()&#8221;&#62;
&#60;input type=&#8221;Button&#8221; name=&#8221;actoin&#8221; value=&#8221;-&#8221; onclick=&#8221;decrease()&#8221;&#62;
&#60;/form&#62;
&#60;script&#62;
&#60;!&#8211;
var x [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=235&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/10/22/increase-and-decrease-count-by-clicking-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamically Create Rounded Button</title>
		<link>http://ppshein.wordpress.com/2009/10/20/dynamically-create-rounded-button/</link>
		<comments>http://ppshein.wordpress.com/2009/10/20/dynamically-create-rounded-button/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 08:00:18 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[Informations]]></category>
		<category><![CDATA[StyleSheet (CSS)]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[button html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[rounded]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=226</guid>
		<description><![CDATA[My boss wants me to create rounded button with dynamically color generated by database. At that time, I was dilemma because I know, I couldn&#8217;t crop rounded corner images with different color. Because, as I told above, these colors will come from database. So, I consider other ways and how to solve this problem. Eventually, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=226&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/10/20/dynamically-create-rounded-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>

		<media:content url="http://ppshein.files.wordpress.com/2009/10/untitled-1.gif" medium="image">
			<media:title type="html">output</media:title>
		</media:content>

		<media:content url="http://ppshein.files.wordpress.com/2009/10/rounded_left.gif" medium="image">
			<media:title type="html">rounded_left</media:title>
		</media:content>

		<media:content url="http://ppshein.files.wordpress.com/2009/10/rounded_right1.gif" medium="image">
			<media:title type="html">rounded_right1</media:title>
		</media:content>
	</item>
		<item>
		<title>MVC (Model View Controller)</title>
		<link>http://ppshein.wordpress.com/2009/10/20/mvc-model-view-controller/</link>
		<comments>http://ppshein.wordpress.com/2009/10/20/mvc-model-view-controller/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 02:25:12 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[Informations]]></category>
		<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[architectural]]></category>
		<category><![CDATA[frameword]]></category>
		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=223</guid>
		<description><![CDATA[I&#8217;m not used to this architectural but I&#8217;ve created so many applications with this style. In coldfusion, we categorize all of query CFM in model folder. In view folder, we put vier HTML cfm files. For calling page, we use controller file. In controller file, all of model files and view files are included. Why [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=223&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/10/20/mvc-model-view-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>

		<media:content url="http://ppshein.files.wordpress.com/2009/10/350px-modelviewcontrollerdiagram-svg.png" medium="image">
			<media:title type="html">350px-ModelViewControllerDiagram.svg</media:title>
		</media:content>
	</item>
		<item>
		<title>CFChart with LightBox</title>
		<link>http://ppshein.wordpress.com/2009/10/12/cfchart-with-lightbox/</link>
		<comments>http://ppshein.wordpress.com/2009/10/12/cfchart-with-lightbox/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 07:37:19 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[StyleSheet (CSS)]]></category>
		<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[cfchart]]></category>
		<category><![CDATA[lightbox]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=220</guid>
		<description><![CDATA[In these days, my client want me to integrate CFchart and Lightbox. I know, it&#8217;s not easy doing and kinda complicated. That&#8217;s why I was doing for that project around 3 hours.
First of all, I need to show pop-up window when users click on each slide of CFchart. That&#8217;s why I consider to use &#8220;URL&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=220&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2009/10/12/cfchart-with-lightbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>

		<media:content url="http://ppshein.files.wordpress.com/2009/10/cfchart.png" medium="image">
			<media:title type="html">CFChart</media:title>
		</media:content>
	</item>
	</channel>
</rss>