<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3" -->
<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/"
	>

<channel>
	<title>T.Bogard's Journey Blog 2.0</title>
	<link>http://www.cyberfanatix.com/tbogard</link>
	<description>Coldfusion, Ajax and Trips</description>
	<pubDate>Sat, 31 May 2008 22:08:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
	<language>en</language>
			<item>
		<title>Tutorial : How to JSONP with jQuery using $.getJSON or $.ajax</title>
		<link>http://www.cyberfanatix.com/tbogard/2008/05/31/tutorial-how-to-jsonp-with-jquery-using-getjson-or-ajax/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2008/05/31/tutorial-how-to-jsonp-with-jquery-using-getjson-or-ajax/#comments</comments>
		<pubDate>Sat, 31 May 2008 22:05:53 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2008/05/31/tutorial-how-to-jsonp-with-jquery-using-getjson-or-ajax/</guid>
		<description><![CDATA[Hello.
My most recent development was to make &#8220;talk&#8221; two web application using json as &#8220;protocol&#8221; of communications . I tried to use $.getJSON and $.ajax in order to use jsonp and make the communication. Really jQuery website do not have enough documentation to how do that, even in the example.
For us, who have firebug, was [...]]]></description>
			<content:encoded><![CDATA[<p>Hello.</p>
<p>My most recent development was to make &#8220;talk&#8221; two web application using json as &#8220;protocol&#8221; of communications . I tried to use $.getJSON and $.ajax in order to use jsonp and make the communication. Really jQuery website do not have enough documentation to how do that, even in the example.</p>
<p>For us, who have firebug, was completely useless because IT DO NOT DEBUG jsonp request!!!!, so what is the real problem???</p>
<p>i want to share with you my solution for this problem, and also the problem of the famous &#8220;callback&#8221;.<br />
 <a href="http://www.cyberfanatix.com/tbogard/2008/05/31/tutorial-how-to-jsonp-with-jquery-using-getjson-or-ajax/#more-93" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2008/05/31/tutorial-how-to-jsonp-with-jquery-using-getjson-or-ajax/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to make a mysql query a PHP Native Array</title>
		<link>http://www.cyberfanatix.com/tbogard/2008/04/17/how-to-make-a-mysql-query-a-php-native-array/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2008/04/17/how-to-make-a-mysql-query-a-php-native-array/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 05:11:33 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[Computers]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2008/04/17/how-to-make-a-mysql-query-a-php-native-array/</guid>
		<description><![CDATA[Hello everyone
surely you have the problem how to convert a mysql query in a PHP array using an X * Y dimentional table, ideal if you are working with JSON and need to convert it.
it&#8217;s really easy to do, look

$recordset = mysql_query&#40;$query, $database&#41; or die&#40;mysql_error&#40;&#41;&#41;;
do&#123;
           [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone</p>
<p>surely you have the problem how to convert a mysql query in a PHP array using an X * Y dimentional table, ideal if you are working with JSON and need to convert it.</p>
<p>it&#8217;s really easy to do, look</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #0000ff;">$recordset</span> = <span style="color: #000066;">mysql_query</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$query</span>, <span style="color: #0000ff;">$database</span><span style="color: #66cc66;">&#41;</span> or <span style="color: #000066;">die</span><span style="color: #66cc66;">&#40;</span><span style="color: #000066;">mysql_error</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #b1b100;">do</span><span style="color: #66cc66;">&#123;</span>
                <span style="color: #b1b100;">for</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$x</span>=<span style="color: #cc66cc;">0</span>;<span style="color: #0000ff;">$x</span>&lt;mysql_num_fields<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$recordset</span><span style="color: #66cc66;">&#41;</span>;<span style="color: #0000ff;">$x</span>++<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
                    <span style="color: #0000ff;">$current_col</span> = <span style="color: #000066;">mysql_field_name</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$recordset</span>,<span style="color: #0000ff;">$x</span><span style="color: #66cc66;">&#41;</span>;
                    <span style="color: #0000ff;">$rows</span><span style="color: #66cc66;">&#91;</span><span style="color: #0000ff;">$current_col</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span> = <span style="color: #0000ff;">$row_recordset</span><span style="color: #66cc66;">&#91;</span><span style="color: #0000ff;">$current_col</span><span style="color: #66cc66;">&#93;</span>;
                <span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span><span style="color: #b1b100;">while</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$row_recordset</span> = <span style="color: #000066;">mysql_fetch_assoc</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$recordset</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$rows</span>;</pre></div></div>

<p>later you can use JSON to encode your array&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span style="color: #0000ff;">$JSON</span> = <span style="color: #000000; font-weight: bold;">new</span> jsonService<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$JSON</span>-&gt;<span style="color: #006600;">encode</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$rows</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>Easy isn&#8217;t?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2008/04/17/how-to-make-a-mysql-query-a-php-native-array/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One powerfull reason to use firefox</title>
		<link>http://www.cyberfanatix.com/tbogard/2008/02/04/one-powerfull-reason-to-use-firefox/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2008/02/04/one-powerfull-reason-to-use-firefox/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 06:10:38 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2008/02/04/one-powerfull-reason-to-use-firefox/</guid>
		<description><![CDATA[And this, my most powerfull reason to use firefox



]]></description>
			<content:encoded><![CDATA[<p>And this, my most powerfull reason to use firefox</p>
<p><object width="425" height="373">
<param name="movie" value="http://www.youtube.com/v/T7SI6tiUfG0&#038;rel=1&#038;border=1"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/T7SI6tiUfG0&#038;rel=1&#038;border=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="373"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2008/02/04/one-powerfull-reason-to-use-firefox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A million voices against FARC.</title>
		<link>http://www.cyberfanatix.com/tbogard/2008/01/15/a-million-voices-against-farc/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2008/01/15/a-million-voices-against-farc/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 03:18:39 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2008/01/15/a-million-voices-against-farc/</guid>
		<description><![CDATA[http://www.colombiasoyyo.org/index.html
We need our voices to be heard. Let’s not be silent anymore, let the world hear us; let every guerrilla man or woman hear us: We repel FARC - EP (Revolutionary Armed Forces of Colombia - People&#8217;s Army). We DON’T want more armed fight.
FARC have deceived the world once again by not freeing the thousands [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.colombiasoyyo.org/index.html</p>
<p>We need our voices to be heard. Let’s not be silent anymore, let the world hear us; let every guerrilla man or woman hear us: We repel FARC - EP (Revolutionary Armed Forces of Colombia - People&#8217;s Army). We DON’T want more armed fight.</p>
<p>FARC have deceived the world once again by not freeing the thousands of kidnapped people they have kept captive for almost a decade now, recurring one more time to all kinds of tricks and evasive lies.</p>
<p>Kidnapping is the worst of acts against human dignity, and FARC have kidnapped and kept captive thousands of people over the last years, while they keep growing their drug production and drug traffic business, perpetrating all kinds of crimes and terrorist attacks against people, bringing poverty and misery to our country, which has suffered this plague and humanitarian tragedy for more than forty years now.</p>
<p>Colombia, Colombians, friends from all over the world, let’s unite to shout loudly:</p>
<p>NO MORE!<br />
NO MORE KIDNAPPING!<br />
NO MORE LIES!<br />
NO MORE MURDER!<br />
NO MORE FARC!</p>
<p>Let’s commit ourselves to join a million voices in this group so we can make a difference, and let the entire world know that we don’t need that “People’s Army” here in Colombia; that FARC is a terrorist group, led by murderers and enemies of the Colombian and World’s People.</p>
<p>This is a cause beyond all political interests or colors. It’s a humanitarian cause, encouraged by a simple sense of solidarity, for the sake and welfare of our citizens.</p>
<p>Join us; We need our voices to be heard.</p>
<p>A million voices against FARC.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2008/01/15/a-million-voices-against-farc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Snow, Snow and more Snow</title>
		<link>http://www.cyberfanatix.com/tbogard/2007/12/21/snow-snow-and-more-snow/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2007/12/21/snow-snow-and-more-snow/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 17:16:06 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[Daily lifestyle]]></category>

		<category><![CDATA[Photo Gallery]]></category>

		<category><![CDATA[Trip]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2007/12/21/snow-snow-and-more-snow/</guid>
		<description><![CDATA[Now i&#8217;m in winter vacations, time to study adobe master suite cs3, developing facebooks apps and get fun with snow&#8230;
click in the pic to start the gallery

]]></description>
			<content:encoded><![CDATA[<p>Now i&#8217;m in winter vacations, time to study adobe master suite cs3, developing facebooks apps and get fun with snow&#8230;</p>
<p>click in the pic to start the gallery</p>
<p><a href="javascript:void(0)" onclick="startRssLightbox('http://s61.photobucket.com/albums/h69/tbogard_photos/eu_winterbreak/feed.rss','photobucket')"><img src="http://s61.photobucket.com/albums/h69/tbogard_photos/eu_winterbreak/th_IMG_0163.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2007/12/21/snow-snow-and-more-snow/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Visit to New York</title>
		<link>http://www.cyberfanatix.com/tbogard/2007/11/06/visit-to-new-york/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2007/11/06/visit-to-new-york/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 17:40:28 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Daily lifestyle]]></category>

		<category><![CDATA[Photo Gallery]]></category>

		<category><![CDATA[Public Activities]]></category>

		<category><![CDATA[Trip]]></category>

		<category><![CDATA[New York]]></category>

		<category><![CDATA[Small Group]]></category>

		<category><![CDATA[UTS]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2007/11/06/visit-to-new-york/</guid>
		<description><![CDATA[Hello everybody.
Last saturday i went to New York with my small group of UTS. It was a nice experience! If you don&#8217;t know new york, you MOST see the gallery below.
Click in the image to display the gallery.

]]></description>
			<content:encoded><![CDATA[<p>Hello everybody.</p>
<p>Last saturday i went to New York with my small group of UTS. It was a nice experience! If you don&#8217;t know new york, you MOST see the gallery below.</p>
<p>Click in the image to display the gallery.</p>
<p><a href="javascript:void(0)" onclick="startRssLightbox('http://feed61.photobucket.com/albums/h69/tbogard_photos/eu_ny1/feed.rss','photobucket')"><img src="http://i61.photobucket.com/albums/h69/tbogard_photos/eu_ny1/th_032.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2007/11/06/visit-to-new-york/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The symbol of one gaming generation</title>
		<link>http://www.cyberfanatix.com/tbogard/2007/10/31/the-symbol-of-one-gaming-generation/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2007/10/31/the-symbol-of-one-gaming-generation/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 16:25:17 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<category><![CDATA[Daily lifestyle]]></category>

		<category><![CDATA[Gaming]]></category>

		<category><![CDATA[gaming culture]]></category>

		<category><![CDATA[japan]]></category>

		<category><![CDATA[sega saturn]]></category>

		<category><![CDATA[Segata Sanshiro]]></category>

		<category><![CDATA[videogames]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2007/10/31/the-symbol-of-one-gaming-generation/</guid>
		<description><![CDATA[This post is dedicated for every one that invest time in videogaming. And this is for fans of Segata Sanshiro-sama!
he was a symbol of culture gaming in 90&#8217;s, and we still remember him&#8230;



Sorry for my incomplete games! i&#8217;ll try to finish!
]]></description>
			<content:encoded><![CDATA[<p>This post is dedicated for every one that invest time in videogaming. And this is for fans of Segata Sanshiro-sama!</p>
<p>he was a symbol of culture gaming in 90&#8217;s, and we still remember him&#8230;</p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/o3lCF8O2N50&#038;rel=1"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/o3lCF8O2N50&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>Sorry for my incomplete games! i&#8217;ll try to finish!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2007/10/31/the-symbol-of-one-gaming-generation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Diferences between prototype and jQuery</title>
		<link>http://www.cyberfanatix.com/tbogard/2007/10/26/diferences-between-prototype-and-jquery/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2007/10/26/diferences-between-prototype-and-jquery/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 12:34:37 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[prototype]]></category>

		<category><![CDATA[slide]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2007/10/26/diferences-between-prototype-and-jquery/</guid>
		<description><![CDATA[i you&#8217;re confused about which Ajax framework you want to use, this little slide may help you.




 &#124; View &#124; Upload your own

enyoy it!
]]></description>
			<content:encoded><![CDATA[<p>i you&#8217;re confused about which Ajax framework you want to use, this little slide may help you.</p>
<div style="width:425px;text-align:left" id="__ss_145849"><object style="margin:0px" height="355" width="425">
<param name="movie" value="http://s3.amazonaws.com/slideshare/ssplayer2.swf?doc=prototype-jquery-going-from-one-to-the-other-1193346036472971-5"/>
<param name="allowFullScreen" value="true"/>
<param name="allowScriptAccess" value="always"/><embed src="http://s3.amazonaws.com/slideshare/ssplayer2.swf?doc=prototype-jquery-going-from-one-to-the-other-1193346036472971-5" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img src="http://s3.amazonaws.com/slideshare/logo_embd.png" style="border:0px none;margin-top:-5px" alt="SlideShare"/></a> | <a href="http://slideshare.net/remy.sharp/prototype-jquery-going-from-one-to-the-other" title="View this slideshow on SlideShare">View</a> | <a href="http://www.slideshare.net/upload">Upload your own</a></div>
</div>
<p>enyoy it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2007/10/26/diferences-between-prototype-and-jquery/feed/</wfw:commentRss>
		</item>
		<item>
		<title>And? what&#8217;s new?</title>
		<link>http://www.cyberfanatix.com/tbogard/2007/10/24/and-whats-new/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2007/10/24/and-whats-new/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 04:26:03 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[rss lightbox]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[wp-bofh]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2007/10/24/and-whats-new/</guid>
		<description><![CDATA[Ok, now is time for a little update, i add the &#8220;Bastard Operator from Hell&#8221; to my blog, adding new quotes under my Blog&#8217;s title&#8230;
Also i&#8217;m re-design rss lightbox. May be i&#8217;ll change their name like &#8220;Remote lightbox&#8221; or something like this&#8230;
tomorrow i will upload a new gallery of pictures&#8230; of course using my own [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, now is time for a little update, i add the &#8220;Bastard Operator from Hell&#8221; to my blog, adding new quotes under my Blog&#8217;s title&#8230;</p>
<p>Also i&#8217;m re-design rss lightbox. May be i&#8217;ll change their name like &#8220;Remote lightbox&#8221; or something like this&#8230;</p>
<p>tomorrow i will upload a new gallery of pictures&#8230; of course using my own plugin to display it&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2007/10/24/and-whats-new/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Judo Club</title>
		<link>http://www.cyberfanatix.com/tbogard/2007/10/09/the-judo-club/</link>
		<comments>http://www.cyberfanatix.com/tbogard/2007/10/09/the-judo-club/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 20:12:27 +0000</pubDate>
		<dc:creator>T.Bogard</dc:creator>
		
		<category><![CDATA[Daily lifestyle]]></category>

		<category><![CDATA[Photo Gallery]]></category>

		<guid isPermaLink="false">http://www.cyberfanatix.com/tbogard/2007/10/09/the-judo-club/</guid>
		<description><![CDATA[Since i join UTS i have the oportunity to join the Tongil Mu Do club, i hope you can enjoy these sport. Also we have a judo practice today&#8230;

]]></description>
			<content:encoded><![CDATA[<p>Since i join UTS i have the oportunity to join the Tongil Mu Do club, i hope you can enjoy these sport. Also we have a judo practice today&#8230;</p>
<p><a href="javascript:startRssLightbox('http://feed61.photobucket.com/albums/h69/tbogard_photos/eu_tongilmudo/feed.rss','photobucket')"><img src="http://i61.photobucket.com/albums/h69/tbogard_photos/eu_tongilmudo/th_006.jpg" alt="in the Judo Club" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyberfanatix.com/tbogard/2007/10/09/the-judo-club/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
