<?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/"
	>

<channel>
	<title>AntiTeori&#187; d_anank</title>
	<atom:link href="http://www.antiteori.com/author/d_anank/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.antiteori.com</link>
	<description>Practice can be fun</description>
	<lastBuildDate>Sat, 31 Jul 2010 05:17:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>FCKeditor-Javascript and Codeigniter integration</title>
		<link>http://www.antiteori.com/fckeditor-javascript-and-codeigniter-integration/</link>
		<comments>http://www.antiteori.com/fckeditor-javascript-and-codeigniter-integration/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 16:13:14 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[FCKeditor]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[text javascript]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=337</guid>
		<description><![CDATA[this post is got from another blog. we try to use it, but we little confuse with that tutorial. so we create the better tutorial just for you.  
fisrt what is FCKeditor? oh you can find it here. that is WYSIWYG Text and HTML Editor for the web
and what is CodeIgniter? well you can [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/fckeditor-javascript-and-codeigniter-integration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Date and Time validation using Regular Expression</title>
		<link>http://www.antiteori.com/date-time-validation-regular-expression/</link>
		<comments>http://www.antiteori.com/date-time-validation-regular-expression/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 14:36:02 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[date validation]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[time validation]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=333</guid>
		<description><![CDATA[This function is used for date validation on a string
Return of this function is boolean.
function is_date($str){
$return = (bool) preg_match("(\b([1-9]([0-9]{3}))\-(1[0-2]&#124;0[1-9])\-(3[01]&#124;[12][0-9]&#124;0[1-9])\b)",$str);
if(strlen($str)==10){
return $this-&#62;is_date_time($str);
}
if($return){
$return = (bool) (strlen($str)==10);
}
return $return;
}
This function is used for time validation on a string
Return of this function is boolean.
function is_time($str){
$return = (bool) preg_match("(\b(2[0-3]&#124;[01][0-9])\:([0-5][0-9])\:([0-5][0-9])\b)",$str);
if($return){
$return = (bool) (strlen($str)==8);
}
return $return;
}
And This function is used for date_time validation on a [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/date-time-validation-regular-expression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Website or Application using One Model in Code Igniter</title>
		<link>http://www.antiteori.com/multiple-website-or-application-using-one-model-in-code-igniter/</link>
		<comments>http://www.antiteori.com/multiple-website-or-application-using-one-model-in-code-igniter/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 05:38:06 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[apppath]]></category>
		<category><![CDATA[basepath]]></category>
		<category><![CDATA[code igniter]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=329</guid>
		<description><![CDATA[Your application in code igniter is a PHP-Site.You can use Code Igniter to create multiple application using one core. You can create subdomain for each application (not only one domain).
But still in one model for one application. so the application has their own model. and the model can&#8217;t be used by other application. :p
Imagine if [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/multiple-website-or-application-using-one-model-in-code-igniter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reset root password on MySQL</title>
		<link>http://www.antiteori.com/reset-root-password-on-mysql/</link>
		<comments>http://www.antiteori.com/reset-root-password-on-mysql/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 12:11:32 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[Forgot Password root]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[privileges]]></category>
		<category><![CDATA[programmers]]></category>
		<category><![CDATA[reminder]]></category>
		<category><![CDATA[Reset password]]></category>
		<category><![CDATA[reset root password]]></category>
		<category><![CDATA[script mysql]]></category>
		<category><![CDATA[sql script]]></category>
		<category><![CDATA[stderr]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=322</guid>
		<description><![CDATA[This is a common problem among programmers who are lazy to remember passwords and finally a reminder machine. but what if the engine suddenly broken and the reminder had no backups. hehehe &#8230;. forgotten it. right?
if you forget, reset the root password. easy right? 
problem is how do I reset the root password? 
this is [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/reset-root-password-on-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>change style forbidden access page on apache(linux/suse)</title>
		<link>http://www.antiteori.com/change-style-forbidden-access-page-on-apachelinuxsuse/</link>
		<comments>http://www.antiteori.com/change-style-forbidden-access-page-on-apachelinuxsuse/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 16:33:03 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[access forbidden]]></category>
		<category><![CDATA[access page]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache error]]></category>
		<category><![CDATA[css style]]></category>
		<category><![CDATA[index document]]></category>
		<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[page location]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=263</guid>
		<description><![CDATA[this is just a tips how to change the style forbidden access page.

1st find the location where the forbidden page location/folder. you can find the location in usually location is
/usr/share/apache2/error/
if you not find that location try to find the other apache location in &#8220;/usr/share&#8221; than goto there.
if there is not found in that location. cek [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/change-style-forbidden-access-page-on-apachelinuxsuse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>get video from youtube without software or tools</title>
		<link>http://www.antiteori.com/get-video-from-youtube-without-software-or-tools/</link>
		<comments>http://www.antiteori.com/get-video-from-youtube-without-software-or-tools/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 06:41:26 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[.flv]]></category>
		<category><![CDATA[Copy YouTube Video]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Streaming]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=252</guid>
		<description><![CDATA[
how to copy videos from youtube without using software?
that is very easy man&#8230;.
NB: but here i using linux.

search the video on youtube

select one video you want to download.

pause the video, and wait the streaming finished.

open in your location
/tmp

seacrh the file named Flash* without extension

copy/move the video in your document or other location.
and rename the video [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/get-video-from-youtube-without-software-or-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>dofollow comment on wordpress blog</title>
		<link>http://www.antiteori.com/dofollow-comment-on-wordpress-blog/</link>
		<comments>http://www.antiteori.com/dofollow-comment-on-wordpress-blog/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 09:36:40 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[author link]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Comment]]></category>
		<category><![CDATA[Dofollow]]></category>
		<category><![CDATA[Exploration]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[wordpress blog]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=244</guid>
		<description><![CDATA[
this is about how to dofollow comment on your wordpress blog without plugin, as manually you can dofollow your comment by editing the comment template (comments.php)
fint the script
comment_author_link();
this will display the complete link in your single page/post like
&#60;a id="commentauthor-2306" href="http://antiteori.com" rel="external nofollow"&#62;d_anank&#60;/a&#62;
now change that script to:
&#60;?php if (get_comment_author_url()) : ?&#62;
&#60;a id="commentauthor-&#60;?php comment_ID() ?&#62;" href="&#60;?php comment_author_url() [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/dofollow-comment-on-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Deleting Desktop Icon in GNOME</title>
		<link>http://www.antiteori.com/deleting-desktop-icon-in-gnome/</link>
		<comments>http://www.antiteori.com/deleting-desktop-icon-in-gnome/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 06:04:52 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[Exploration]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Desktop Icon]]></category>
		<category><![CDATA[desktop press]]></category>
		<category><![CDATA[gconf-editor]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[gnome desktop]]></category>
		<category><![CDATA[Icon]]></category>
		<category><![CDATA[OpenSUSE]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=235</guid>
		<description><![CDATA[there is very easy to deleting desktop icon in gnome.or disabling the desktop icon in your gnome desktop.
Press Alt + F2 and type gconf-editor,

then hit enter or klik run.
and you goto the gconf-editor

click Apps -&#62; Nautilus -&#62; Desktop. And uncheck the Icons you don&#8217;t want to see in desktop.
see the rows &#8220;predefined_items_dir&#8221;, there is the [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/deleting-desktop-icon-in-gnome/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Add Printer using Samba Sharing on OpenSUSE (GNOME)</title>
		<link>http://www.antiteori.com/add-printer-using-samba-sharing-on-opensuse-gnome/</link>
		<comments>http://www.antiteori.com/add-printer-using-samba-sharing-on-opensuse-gnome/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 10:41:58 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[connection wizard]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[microsoft windows]]></category>
		<category><![CDATA[network printer]]></category>
		<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[print server]]></category>
		<category><![CDATA[Printer]]></category>
		<category><![CDATA[printer server]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[server machine]]></category>
		<category><![CDATA[test connection]]></category>
		<category><![CDATA[traditional]]></category>
		<category><![CDATA[using samba]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=220</guid>
		<description><![CDATA[My Experience using OpenSUSE 11.1 i confuse how to add printer, i try to used manual or traditional method but failed. I ask my friend and he said &#8220;why not using YaST&#8221;hmmm&#8230;. and why i dont think about that! how stupid am i?
now this is the easy way to add network printer using samba (printer [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/add-printer-using-samba-sharing-on-opensuse-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Countdown Timer using Javascript</title>
		<link>http://www.antiteori.com/countdown-timer-using-javascript/</link>
		<comments>http://www.antiteori.com/countdown-timer-using-javascript/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 02:37:42 +0000</pubDate>
		<dc:creator>d_anank</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Countdown]]></category>
		<category><![CDATA[countdown script]]></category>
		<category><![CDATA[countdown timer]]></category>
		<category><![CDATA[downdload]]></category>
		<category><![CDATA[javascript function]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Timer]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=214</guid>
		<description><![CDATA[this script is using for countdown (waiting) timer.
you can use for download script, website popUp, and other think.  
let’s check it out.
this is the container or targer for countdown script:
&#60;div id="antiteori"&#62;
&#60;a href="#" onclick="return false;"&#62;link for what you  want to go&#60;/a&#62;
&#60;/div&#62;
this is the javascript function
&#60;script&#62;
dn4 = 5; // how long the countdown
function countdown(){
if ((0 [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/countdown-timer-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
