<?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>/// mohdNeoTech v3.2 /// &#187; NIX</title>
	<atom:link href="http://www.mohdneotech.com/v3/category/nix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mohdneotech.com/v3</link>
	<description>perjalanan hidup seorang g33k melayu</description>
	<lastBuildDate>Tue, 29 Nov 2011 06:55:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Finding Duplicates with SQL</title>
		<link>http://www.mohdneotech.com/v3/2011/06/06/finding-duplicates-with-sql/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=finding-duplicates-with-sql</link>
		<comments>http://www.mohdneotech.com/v3/2011/06/06/finding-duplicates-with-sql/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 07:43:15 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[@ Work]]></category>
		<category><![CDATA[NIX]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=3225</guid>
		<description><![CDATA[Here&#8217;s a handy query for finding duplicates in a table. Suppose you want to find all email addresses in a table that exist more than once :- SELECT email, COUNT(email) AS NumOccurrences FROM users GROUP BY email HAVING ( COUNT(email) &#62; 1 ) You could also use this technique to find rows that occur exactly [...]]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2011/06/06/finding-duplicates-with-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prompt for iOS on iPad &amp; iPhone</title>
		<link>http://www.mohdneotech.com/v3/2011/05/09/prompt-for-ios-on-ipad-iphone/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=prompt-for-ios-on-ipad-iphone</link>
		<comments>http://www.mohdneotech.com/v3/2011/05/09/prompt-for-ios-on-ipad-iphone/#comments</comments>
		<pubDate>Mon, 09 May 2011 04:59:26 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gadgets & Gizmos]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[NIX]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/2011/05/09/prompt-for-ios-on-ipad-iphone/</guid>
		<description><![CDATA[If you guys looking for an iOS app which can connect via SSH to your NIX servers, here&#8217;s your answer Link : http://itunes.apple.com/us/app/prompt/id421507115?mt=8 More Info : https://www.panic.com/blog/2011/04/introducing-prompt-ssh-for-ios/ Related Posts24.08.2011 -- iOS 5 Beta 6 (0)06.04.2011 -- iPad Camera Connection Kit (4)30.03.2011 -- Plasticine iPad (1)21.03.2011 -- Transfer Default MySQL Database Directory From /var To /usr (0)04.03.2011 -- [...]]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2011/05/09/prompt-for-ios-on-ipad-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transfer Default MySQL Database Directory From /var To /usr</title>
		<link>http://www.mohdneotech.com/v3/2011/03/21/transfer-default-mysql-database-directory-from-var-to-usr/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=transfer-default-mysql-database-directory-from-var-to-usr</link>
		<comments>http://www.mohdneotech.com/v3/2011/03/21/transfer-default-mysql-database-directory-from-var-to-usr/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 05:10:35 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[NIX]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=2859</guid>
		<description><![CDATA[Default partition size for /var normally not enough to store databases, so we need to store it somewhere bigger (/usr). The steps will show how to transfer database from /var/db/mysql (default path installation for MySQL in FreeBSD) to /usr/local/mysql/data (suggested path). Steps as follows :- [root@dev /var/db/mysql]# /usr/local/etc/rc.d/mysql-server stop Stopping mysql. Waiting for PIDS: 993. [...]]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2011/03/21/transfer-default-mysql-database-directory-from-var-to-usr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My squid.conf</title>
		<link>http://www.mohdneotech.com/v3/2011/01/14/my-squid-conf/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-squid-conf</link>
		<comments>http://www.mohdneotech.com/v3/2011/01/14/my-squid-conf/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 03:00:40 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[@ Work]]></category>
		<category><![CDATA[NIX]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[squid]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=2693</guid>
		<description><![CDATA[Some of my friends asked how my squid.conf looks like. Here&#8217;s how it looks like. Feel free to comment so that i can improve on the configuration [root@squid ~]# cat /usr/local/etc/squid/squid.conf # # Recommended minimum configuration: # acl manager proto cache_object acl localhost src 127.0.0.1/32 ::1 acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1 acl SSL_ports port [...]]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2011/01/14/my-squid-conf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo Install iStat in FreeBSD for Server Monitoring</title>
		<link>http://www.mohdneotech.com/v3/2011/01/11/howto-install-istat-in-freebsd-for-server-monitoring/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=howto-install-istat-in-freebsd-for-server-monitoring</link>
		<comments>http://www.mohdneotech.com/v3/2011/01/11/howto-install-istat-in-freebsd-for-server-monitoring/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 02:01:05 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[NIX]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=2024</guid>
		<description><![CDATA[iStats for iPhone can be used to remotely monitor your Mac or Mac server. See your iPhone&#8217;s stats for battery, memory, disk space, Wi-Fi and Cell IP addresses, uptime &#38; load averages. No only you can monitor you Mac, but also for other OS (Linux, Solaris &#38; FreeBSD) as well. Assuming you&#8217;ve download the iStats [...]]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2011/01/11/howto-install-istat-in-freebsd-for-server-monitoring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO Delete Old Directory in UNIX</title>
		<link>http://www.mohdneotech.com/v3/2010/07/08/howto-delete-old-directory-in-unix/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=howto-delete-old-directory-in-unix</link>
		<comments>http://www.mohdneotech.com/v3/2010/07/08/howto-delete-old-directory-in-unix/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 03:04:02 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[NIX]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=2469</guid>
		<description><![CDATA[There are 2 ways u can do this. For example if u want to delete directory older than 7 days : First method : find /path/dir -type d -mtime +7 -exec rm -rf {} \; Second method : find /path/dir -type d -mtime +7 &#124; xargs rm -rf {} \; You can always change the [...]]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2010/07/08/howto-delete-old-directory-in-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Power of Virtualization</title>
		<link>http://www.mohdneotech.com/v3/2010/07/06/the-power-of-virtualization/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-power-of-virtualization</link>
		<comments>http://www.mohdneotech.com/v3/2010/07/06/the-power-of-virtualization/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 02:27:57 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[NIX]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=2456</guid>
		<description><![CDATA[Running Ubuntu 10.04 &#38; Fedora 12 on Mac OSX Snow Leopard via Parallels Desktop. Cool huh~! Related Posts19.11.2009 -- Ubuntu 9.10 &#8211; Karmic Koala (0)19.11.2009 -- Fedora 12 &#8211; Constantine (0)]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2010/07/06/the-power-of-virtualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mod_dosevasive for Apache</title>
		<link>http://www.mohdneotech.com/v3/2010/06/21/mod_dosevasive-for-apache/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mod_dosevasive-for-apache</link>
		<comments>http://www.mohdneotech.com/v3/2010/06/21/mod_dosevasive-for-apache/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 07:53:45 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[NIX]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=2397</guid>
		<description><![CDATA[mod_dosevasive is an evasive maneuvers module for Apache to provide evasive action in the event of an HTTP DoS or DDoS attack or brute force attack. It is also designed to be a detection and network management tool, and can be easily configured to talk to ipchains, firewalls, routers, and etcetera. mod_dosevasive presently reports abuses [...]]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2010/06/21/mod_dosevasive-for-apache/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Speed Up Connection to ProFTPD server</title>
		<link>http://www.mohdneotech.com/v3/2010/06/15/speed-up-connection-to-proftpd-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=speed-up-connection-to-proftpd-server</link>
		<comments>http://www.mohdneotech.com/v3/2010/06/15/speed-up-connection-to-proftpd-server/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 08:03:52 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[NIX]]></category>
		<category><![CDATA[daemon]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[proftpd]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=2351</guid>
		<description><![CDATA[Open the config file (/usr/local/etc/proftpd.conf) add these lines into the config &#60;Global&#62; IdentLookups                    off &#60;/Global&#62; UseReverseDNS off and restart your proFTPd services. Tadaa~! Related Posts21.03.2011 -- Transfer Default MySQL Database Directory From /var To /usr (0)14.01.2011 -- My squid.conf (0)08.07.2010 -- HOWTO Delete Old Directory in [...]]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2010/06/15/speed-up-connection-to-proftpd-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 &#8211; Karmic Koala</title>
		<link>http://www.mohdneotech.com/v3/2009/11/19/ubuntu-9-10-karmic-koala/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-9-10-karmic-koala</link>
		<comments>http://www.mohdneotech.com/v3/2009/11/19/ubuntu-9-10-karmic-koala/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 10:11:50 +0000</pubDate>
		<dc:creator>NeoTech</dc:creator>
				<category><![CDATA[NIX]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.mohdneotech.com/v3/?p=1464</guid>
		<description><![CDATA[Related Posts06.07.2010 -- The Power of Virtualization (0)]]></description>
		<wfw:commentRss>http://www.mohdneotech.com/v3/2009/11/19/ubuntu-9-10-karmic-koala/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

