<?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>[M7IM][COM]</title>
	<atom:link href="http://www.m7im.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.m7im.com</link>
	<description>Developer notes about php, mysql and ubuntu</description>
	<lastBuildDate>Thu, 15 Mar 2012 13:05:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Backup remote database quickly</title>
		<link>http://www.m7im.com/2012/03/backup-remote-database-quickly/</link>
		<comments>http://www.m7im.com/2012/03/backup-remote-database-quickly/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 14:24:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=90</guid>
		<description><![CDATA[Quick cmd to backup a remote database locally without storing data on remote server: ssh -C user@host "mysqldump --lock-tables=false -uuser -ppass --compress database-name &#124; gzip -9 -c" &#62; backup.sql.gz It uses compression to speedup the data transfer]]></description>
			<content:encoded><![CDATA[<p>Quick cmd to backup a remote database locally without storing data on remote server:</p>
<p>ssh -C user@host "mysqldump --lock-tables=false -uuser -ppass --compress database-name | gzip -9 -c" &gt; backup.sql.gz</p>
<p>It uses compression to speedup the data transfer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/03/backup-remote-database-quickly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: list count of files, dirs or sym links</title>
		<link>http://www.m7im.com/2012/03/linux-list-count-of-files-dirs-or-sym-links/</link>
		<comments>http://www.m7im.com/2012/03/linux-list-count-of-files-dirs-or-sym-links/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 08:46:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=88</guid>
		<description><![CDATA[ls -l &#124; grep ^- &#124; wc -l ls -l &#124; grep ^d &#124; wc -l ls -l &#124; grep ^l &#124; wc -l]]></description>
			<content:encoded><![CDATA[<p>ls -l | grep ^- | wc -l</p>
<p>ls -l | grep ^d | wc -l</p>
<p>ls -l | grep ^l | wc -l</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/03/linux-list-count-of-files-dirs-or-sym-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: count files in dir</title>
		<link>http://www.m7im.com/2012/03/linux-count-files-in-dir/</link>
		<comments>http://www.m7im.com/2012/03/linux-count-files-in-dir/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 08:36:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=86</guid>
		<description><![CDATA[Usefull cmd for counting files in a dir: ls "path" &#124; wc -l If a specific files should be counted this works as well: ls "path/filename_*" &#124; wc -l]]></description>
			<content:encoded><![CDATA[<p>Usefull cmd for counting files in a dir:</p>
<p>ls "path" | wc -l</p>
<p>If a specific files should be counted this works as well:</p>
<p>ls "path/filename_*" | wc -l</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/03/linux-count-files-in-dir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nnmap</title>
		<link>http://www.m7im.com/2012/03/nnmap/</link>
		<comments>http://www.m7im.com/2012/03/nnmap/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 10:09:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=84</guid>
		<description><![CDATA[quickly check if the host is reponding to the port: nmap -PN -p80 www.hostname.com]]></description>
			<content:encoded><![CDATA[<p>quickly check if the host is reponding to the port:</p>
<p>nmap -PN -p80 <a href="http://www.hostnavn.dk" target="_blank">www.host</a>name.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/03/nnmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenConnect VPN client.</title>
		<link>http://www.m7im.com/2012/03/openconnect-vpn-client/</link>
		<comments>http://www.m7im.com/2012/03/openconnect-vpn-client/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 21:36:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=82</guid>
		<description><![CDATA[usefull for vpn connections OpenConnect VPN client..]]></description>
			<content:encoded><![CDATA[<p>usefull for vpn connections<a href="http://www.infradead.org/openconnect/vpnc-script.html"></p>
<p>OpenConnect VPN client.</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/03/openconnect-vpn-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notification</title>
		<link>http://www.m7im.com/2012/02/notification/</link>
		<comments>http://www.m7im.com/2012/02/notification/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 08:36:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[growl]]></category>
		<category><![CDATA[phpunit]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=80</guid>
		<description><![CDATA[Growl noticfication interface to test listnerrs in phpunit Notification.]]></description>
			<content:encoded><![CDATA[<p>Growl noticfication interface to test listnerrs in phpunit<a href="http://php5.laurent-laville.org/phpunit/growlTestListener/"></p>
<p>Notification</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/02/notification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Close and re-open tickets from tests: Fogbugz PHPUnit TicketListener &#124; Olle Jonssons blog</title>
		<link>http://www.m7im.com/2012/02/close-and-re-open-tickets-from-tests-fogbugz-phpunit-ticketlistener-olle-jonssons-blog/</link>
		<comments>http://www.m7im.com/2012/02/close-and-re-open-tickets-from-tests-fogbugz-phpunit-ticketlistener-olle-jonssons-blog/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 08:33:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fogbugz]]></category>
		<category><![CDATA[phpunit]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=78</guid>
		<description><![CDATA[Direct integration of Fogbugz into PHPUnit. Whenever af test fail the corrosponding case will reopen. Close and re-open tickets from tests: Fogbugz PHPUnit TicketListener &#124; Olle Jonssons blog.]]></description>
			<content:encoded><![CDATA[<p>Direct integration of Fogbugz into PHPUnit. Whenever af test fail the corrosponding case will reopen.<a href="http://ollehost.dk/blog/2011/01/21/fogbugz-phpunit-ticketlistener/"></p>
<p>Close and re-open tickets from tests: Fogbugz PHPUnit TicketListener | Olle </a></p>
<p><a href="http://ollehost.dk/blog/2011/01/21/fogbugz-phpunit-ticketlistener/">Jonssons blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/02/close-and-re-open-tickets-from-tests-fogbugz-phpunit-ticketlistener-olle-jonssons-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 11.10 GNOME Shell Guide</title>
		<link>http://www.m7im.com/2012/02/ubuntu-11-10-gnome-shell-guide/</link>
		<comments>http://www.m7im.com/2012/02/ubuntu-11-10-gnome-shell-guide/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 19:09:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=76</guid>
		<description><![CDATA[&#160; Install the gnome shell with an official install Ubuntu 11.10 GNOME Shell Guide.]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Install the gnome shell with an official install<a href="http://www.omgubuntu.co.uk/2011/10/gnome-shell-ubuntu-11-10-guide/"><br />
Ubuntu 11.10 GNOME Shell Guide</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/02/ubuntu-11-10-gnome-shell-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ohloh, the open source network</title>
		<link>http://www.m7im.com/2012/01/ohloh-the-open-source-network-2/</link>
		<comments>http://www.m7im.com/2012/01/ohloh-the-open-source-network-2/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 07:46:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=74</guid>
		<description><![CDATA[&#160; &#160; &#160; &#160; list of open source projects Ohloh, the open source network.]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>list of open source projects<a href="http://www.ohloh.net/"></p>
<p>Ohloh, the open source network</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2012/01/ohloh-the-open-source-network-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing / Using Classic GNOME Desktop In Ubuntu 11.10 Oneiric Ocelot ~ Web Upd8: Ubuntu / Linux blog</title>
		<link>http://www.m7im.com/2011/10/installing-using-classic-gnome-desktop-in-ubuntu-11-10-oneiric-ocelot-web-upd8-ubuntu-linux-blog/</link>
		<comments>http://www.m7im.com/2011/10/installing-using-classic-gnome-desktop-in-ubuntu-11-10-oneiric-ocelot-web-upd8-ubuntu-linux-blog/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 19:10:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.m7im.com/?p=72</guid>
		<description><![CDATA[sudo apt-get install gnome-session-fallback via Installing / Using Classic GNOME Desktop In Ubuntu 11.10 Oneiric Ocelot ~ Web Upd8: Ubuntu / Linux blog.]]></description>
			<content:encoded><![CDATA[<p>sudo apt-get install gnome-session-fallback</p>
<p>via <a href="http://www.webupd8.org/2011/08/installing-using-classic-gnome-desktop.html">Installing / Using Classic GNOME Desktop In Ubuntu 11.10 Oneiric Ocelot ~ Web Upd8: Ubuntu / Linux blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.m7im.com/2011/10/installing-using-classic-gnome-desktop-in-ubuntu-11-10-oneiric-ocelot-web-upd8-ubuntu-linux-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

