<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>But what if...</title>
	<link>http://eremiya.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 04 Nov 2010 22:52:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.5" -->

	<item>
		<title>Jquery, HighCharts, and Coldfusion tutorial (Part 0 &#8211; the data)</title>
		<description><![CDATA[In my previous post, I talked about the various options allowed by the HighCharts library to draw a chart. Now let&#8217;s talk about data! Things are beginning to be interesting! There are 2 things we must know when we want to use a charting library to represent our data: Our own data (knowing our data [...]]]></description>
		<link>http://eremiya.net/2010/11/02/jquery-highcharts-and-coldfusion-tutorial-part-0-the-data/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-highcharts-and-coldfusion-tutorial-part-0-the-data</link>
			</item>
	<item>
		<title>Jquery, HighCharts, and Coldfusion tutorial (Part 1)</title>
		<description><![CDATA[Flot is great. But, lately I discovered the HighCharts library and frankly speaking, it is blowing my mind. So, let&#8217;s chart again! Let&#8217;s try to adapt the examples of my previous posts  to the HighCharts and see what that awesome library can bring on! On our newly created cfm page (or anything else for the [...]]]></description>
		<link>http://eremiya.net/2010/11/02/jquery-highcharts-and-coldfusion-tutorial-part-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-highcharts-and-coldfusion-tutorial-part-1</link>
			</item>
	<item>
		<title>fixing cfgrid trigger.gif problem</title>
		<description><![CDATA[There is a slight css problem that keep the trigger.gif (you know, the small blue arrow that appear when your grid is in edit mode and you have to select a value) and it is quite easy to fix. Replace in /CFIDE/scripts/ajax/resources/ext/css/ext-all.css  the 10 lines from line 552 to line 562 by the following: .x-trigger-wrap-focus [...]]]></description>
		<link>http://eremiya.net/2010/10/22/fixing-cfgrid-trigger-gif-problem/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fixing-cfgrid-trigger-gif-problem</link>
			</item>
	<item>
		<title>Jquery, Flot Tutorial (Part 2 revisited)</title>
		<description><![CDATA[Woaw, I&#8217;ve never blogged that much in a row. In my previous post, I showed you how to create a pod, and having ajax request to get the data. Actually, this is not the best way to use flot. Flot can redraw your chart &#8220;on the fly&#8220;, if I can say, if your code is [...]]]></description>
		<link>http://eremiya.net/2010/06/30/jquery-flot-tutorial-part-2-revisited/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-flot-tutorial-part-2-revisited</link>
			</item>
	<item>
		<title>Jquery, Flot Tutorial (Part 2)</title>
		<description><![CDATA[In my previous post, we created a chart that represent the increase of a given year by month (from january to december). In this post, we&#8217;ll see how to create a pod, for a dashboard for example, that uses the previously created page and gives the possibility to query for a special year, and also [...]]]></description>
		<link>http://eremiya.net/2010/06/27/jquery-flot-tutorial-part-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-flot-tutorial-part-2</link>
			</item>
	<item>
		<title>Free Currency converter using Coldfusion, Google and Regex</title>
		<description><![CDATA[Here is an easy and free way to add a currency converter to you application. First, let&#8217;s define some variables. &#60;cfset from = &#039;EUR&#039;&#62; &#60;cfset to = &#039;JPY&#039;&#62; &#60;cfset amount = 1&#62; Then, let&#8217;s get an HTTP request to Google search page. &#60;cfhttp  url=&#34;http://www.google.co.jp/search?hl=en&#38;source=hp&#38;q=#arguments.amount##arguments.from#+in+#arguments.to#&#34;  useragent=&#34;MOZILLA&#34;  method=&#34;GET&#34; resolveurl=&#34;Yes&#34; throwOnError=&#34;Yes&#34;/&#62; Pretty simple stuff so far. If you [...]]]></description>
		<link>http://eremiya.net/2010/06/22/free-currency-converter-using-google-search-and-regex/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=free-currency-converter-using-google-search-and-regex</link>
			</item>
	<item>
		<title>Jquery, Flot Tutorial (Part 1.5)</title>
		<description><![CDATA[Sorry for not posting more often. thanks for all the comments. I&#8217;ll work on the frequency of my posts! Flot is indeed a great plugin. There is a lot of things that can be done using it. Let&#8217;s say, I want to create a chart that represent the increase of a given year by month [...]]]></description>
		<link>http://eremiya.net/2009/10/16/jquery-flot-tutorial-part-1-5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-flot-tutorial-part-1-5</link>
			</item>
	<item>
		<title>Jquery, Flot Tutorial (Part 1)</title>
		<description><![CDATA[Flot is a great plugin for JQuery! I decided to make a simple tutorial in this part and then try to have something more complex (ajax request pulling out data from the database).  Let&#8217;s make things first: let&#8217;s invoke the scripts. &#60;script src=&#34;../jquery/jquery-1.3.2.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62; &#60;script src=&#34;../js/jquery/flot/jquery.flot.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62; &#60;!--[if IE]&#62;&#60;script language=&#34;javascript&#34; type=&#34;text/javascript&#34; src=&#34;../excanvas.pack.js&#34;&#62;&#60;/script&#62;&#60;![endif]--&#62; Then, let&#8217;s place [...]]]></description>
		<link>http://eremiya.net/2009/07/08/jquery-flot-tutorial-part-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-flot-tutorial-part-1</link>
			</item>
	<item>
		<title>Hello world! (eremiya version)</title>
		<description><![CDATA[Hi and welcome to my blog. I am new to the blogging community but I&#8217;ve been there for years, hiding among you guys! I decided to create that blog for many reasons, but mainly to : make tutorials for newbies like me, blog about Coldfusion, Model-Glue and MVC dev as well as ORM dev RIA [...]]]></description>
		<link>http://eremiya.net/2009/07/04/hello-world/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hello-world</link>
			</item>
</channel>
</rss>

