<?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</title>
	<atom:link href="http://www.antiteori.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.antiteori.com</link>
	<description>Practice can be fun</description>
	<lastBuildDate>Thu, 11 Mar 2010 14:39:23 +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>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>0</slash:comments>
		</item>
		<item>
		<title>Live Streaming In Sidebar Firefox</title>
		<link>http://www.antiteori.com/live-streaming-sidebar-firefox/</link>
		<comments>http://www.antiteori.com/live-streaming-sidebar-firefox/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 02:47:06 +0000</pubDate>
		<dc:creator>Andri</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[Streaming]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=325</guid>
		<description><![CDATA[Ever seen live TV streaming in sidebar Firefox??
i got this idea when i want to watch e-lifestyle on MetroTV. and i combined it with trick of facebook chat in sidebar.
ok i&#8217;ll take metroTV streaming for example.
first open your notepad application. copy and paste this code to your notepad. 
&#60;object style=”visibility: visible;” id=”player” data=”http://www.metrotvnews.com/us_player.swf” type=”application/x-shockwave-flash” height=”229″ [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/live-streaming-sidebar-firefox/feed/</wfw:commentRss>
		<slash:comments>2</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>Save Website Link on Start Menu</title>
		<link>http://www.antiteori.com/save-website-link-on-start-menu/</link>
		<comments>http://www.antiteori.com/save-website-link-on-start-menu/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 15:24:30 +0000</pubDate>
		<dc:creator>antiteori</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[default icon]]></category>
		<category><![CDATA[double click]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Notebook]]></category>
		<category><![CDATA[notepad]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[shell32]]></category>
		<category><![CDATA[start menu]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[windows registry editor]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=275</guid>
		<description><![CDATA[Internet is just become need for some people. Most of us has a favorite website to surf for some information there. If there is any site that we need to check or surf everyday, better we place this link to our start menu on windows.
Here tips and trick to put your favorite website link on [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/save-website-link-on-start-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detect DVD Decoder On Your Computer</title>
		<link>http://www.antiteori.com/detect-dvd-decoder-on-your-computer/</link>
		<comments>http://www.antiteori.com/detect-dvd-decoder-on-your-computer/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:57:45 +0000</pubDate>
		<dc:creator>antiteori</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computer pc]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[DVD-Room]]></category>
		<category><![CDATA[Notebook]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[usefull]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=273</guid>
		<description><![CDATA[Nowdays DVD-ROM is more preverable, because DVD can save more data than CD. DVD can save data 8 to 10 times VCD format. DVD film produce more clear and detail picture than CD.
We can play DVD film with software decoder DVD. Before you instal DVD decoder on your computer ( PC or notebook ) better [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/detect-dvd-decoder-on-your-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shutting Automatic Restart Function</title>
		<link>http://www.antiteori.com/shutting-automatic-restart-function/</link>
		<comments>http://www.antiteori.com/shutting-automatic-restart-function/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 04:24:49 +0000</pubDate>
		<dc:creator>antiteori</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[control panel]]></category>
		<category><![CDATA[default windows]]></category>
		<category><![CDATA[double click]]></category>
		<category><![CDATA[Notebook]]></category>
		<category><![CDATA[notebook system]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[start menu]]></category>
		<category><![CDATA[windows explorer]]></category>
		<category><![CDATA[windows xp]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.antiteori.com/?p=270</guid>
		<description><![CDATA[Normally, default Windows XP will restart PC or Notebook when there is problem occur without displaying blue screen, so we can&#8217;t see what cause this problem. But if we like to see what cause a problem to our PC or Notebook we can change this default setting.
To change this default setting, we must open &#8220;Control [...]]]></description>
		<wfw:commentRss>http://www.antiteori.com/shutting-automatic-restart-function/feed/</wfw:commentRss>
		<slash:comments>0</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>
	</channel>
</rss>
