<?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>webslave.ws</title>
	<atom:link href="http://www.webslave.ws/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webslave.ws</link>
	<description>Web Slave</description>
	<lastBuildDate>Tue, 13 Jul 2010 14:52:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Linux Shell Wordlist making</title>
		<link>http://www.webslave.ws/07/linux-shell-wordlist-making/</link>
		<comments>http://www.webslave.ws/07/linux-shell-wordlist-making/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 22:27:52 +0000</pubDate>
		<dc:creator>webslave</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.webslave.ws/?p=501</guid>
		<description><![CDATA[just type for v in {a..z}; do for x in {a..z}; do for y in {a..z}; do for z in {a..z}; do echo $v$x$y$z; done; done; done; done > wordlist It will create a file called &#8220;wordlist&#8221; with 4 letters combination like: aaab aabb abbb bbbb baaa bbaa bbba bbbb etc..]]></description>
			<content:encoded><![CDATA[<p>just type</p>
<p>for v in {a..z}; do for x in {a..z}; do for y in {a..z}; do for z in {a..z}; do echo $v$x$y$z; done; done; done; done > wordlist</p>
<p>It will create a file called &#8220;wordlist&#8221; with 4 letters combination like:<br />
aaab<br />
aabb<br />
abbb<br />
bbbb<br />
baaa<br />
bbaa<br />
bbba<br />
bbbb<br />
etc..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webslave.ws/07/linux-shell-wordlist-making/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux SCP: how to copy a file from another server</title>
		<link>http://www.webslave.ws/05/linux-scp-how-to-copy-a-file-from-another-server/</link>
		<comments>http://www.webslave.ws/05/linux-scp-how-to-copy-a-file-from-another-server/#comments</comments>
		<pubDate>Wed, 26 May 2010 07:23:23 +0000</pubDate>
		<dc:creator>webslave</dc:creator>
				<category><![CDATA[Linux Issues]]></category>
		<category><![CDATA[file-transfer]]></category>
		<category><![CDATA[scp]]></category>

		<guid isPermaLink="false">http://www.webslave.ws/?p=491</guid>
		<description><![CDATA[scp user@host:/path/to/file /root After you hit the enter it will ask remote servers password. When you entered the password file under /path/to/ will copy to local /root folder]]></description>
			<content:encoded><![CDATA[<p><strong>scp user@host:/path/to/file /root</strong></p>
<p>After you hit the enter it will ask remote servers password.<br />
When you entered the password file under /path/to/ will copy to local /root folder</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webslave.ws/05/linux-scp-how-to-copy-a-file-from-another-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shell Grep:  Search a word in a file</title>
		<link>http://www.webslave.ws/05/shell-grep-search-a-word-in-a-file/</link>
		<comments>http://www.webslave.ws/05/shell-grep-search-a-word-in-a-file/#comments</comments>
		<pubDate>Wed, 26 May 2010 01:02:40 +0000</pubDate>
		<dc:creator>webslave</dc:creator>
				<category><![CDATA[Linux Issues]]></category>

		<guid isPermaLink="false">http://www.webslave.ws/?p=488</guid>
		<description><![CDATA[Just type: grep -i yourword /etc/php5/apache2/php.ini]]></description>
			<content:encoded><![CDATA[<p>Just type:</p>
<p><strong>grep -i yourword /etc/php5/apache2/php.ini</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webslave.ws/05/shell-grep-search-a-word-in-a-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP : How to hide errors</title>
		<link>http://www.webslave.ws/05/php-how-to-hide-errors/</link>
		<comments>http://www.webslave.ws/05/php-how-to-hide-errors/#comments</comments>
		<pubDate>Sat, 22 May 2010 05:38:26 +0000</pubDate>
		<dc:creator>webslave</dc:creator>
				<category><![CDATA[Php Issues]]></category>
		<category><![CDATA[hide-errors]]></category>

		<guid isPermaLink="false">http://www.webslave.ws/?p=485</guid>
		<description><![CDATA[You can try this one: error_reporting(0);]]></description>
			<content:encoded><![CDATA[<p>You can try this one:</p>
<p><strong>error_reporting(0); </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webslave.ws/05/php-how-to-hide-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php: get yesterday&#8217;s and last week&#8217;s date (d-m-Y)</title>
		<link>http://www.webslave.ws/05/php-get-yesterdays-and-last-weeks-date-d-m-y/</link>
		<comments>http://www.webslave.ws/05/php-get-yesterdays-and-last-weeks-date-d-m-y/#comments</comments>
		<pubDate>Fri, 21 May 2010 20:22:51 +0000</pubDate>
		<dc:creator>webslave</dc:creator>
				<category><![CDATA[Php Issues]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webslave.ws/?p=483</guid>
		<description><![CDATA[Get yesterday: $yesterday=date(&#8220;d-m-Y&#8221;, time()-86400); Get Last week&#8217;s: $lastweek=date(&#8220;d-m-Y&#8221;, time()-604800); $yesterday = date(&#8216;d/m/y&#8217;, mktime(0, 0, 0, date(&#8220;m&#8221;) , date(&#8220;d&#8221;) &#8211; 1, date(&#8220;Y&#8221;)));]]></description>
			<content:encoded><![CDATA[<p>Get yesterday:</p>
<p>$yesterday=date(&#8220;d-m-Y&#8221;, time()-86400);<br />
Get Last week&#8217;s:<br />
$lastweek=date(&#8220;d-m-Y&#8221;, time()-604800);</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">$yesterday = date(&#8216;d/m/y&#8217;, mktime(0, 0, 0, date(&#8220;m&#8221;) , date(&#8220;d&#8221;) &#8211; 1, date(&#8220;Y&#8221;)));</div>
]]></content:encoded>
			<wfw:commentRss>http://www.webslave.ws/05/php-get-yesterdays-and-last-weeks-date-d-m-y/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to tar a directory?</title>
		<link>http://www.webslave.ws/05/how-to-tar-a-directory/</link>
		<comments>http://www.webslave.ws/05/how-to-tar-a-directory/#comments</comments>
		<pubDate>Fri, 21 May 2010 19:59:59 +0000</pubDate>
		<dc:creator>webslave</dc:creator>
				<category><![CDATA[Linux Issues]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://www.webslave.ws/?p=479</guid>
		<description><![CDATA[I just needed to tar a directory with all files inside of it under Debian 5. Open shell prompt or putty whatever and write: tar -cf &#8220;files.tar&#8221; /path/to/yourfiles by the way &#8220;c&#8221; means youre creating a tar file and &#8220;f&#8221; means you want to use a file name as you pleased. If you want to [...]]]></description>
			<content:encoded><![CDATA[<p>I just needed to tar a directory with all files inside of it under Debian 5.</p>
<p>Open shell prompt or putty whatever and write:</p>
<h3>tar -cf &#8220;files.tar&#8221; /path/to/yourfiles</h3>
<p>by the way &#8220;c&#8221; means youre creating a tar file and &#8220;f&#8221; means you want to use a file name as you pleased.</p>
<p>If you want to update this tar file you can use:</p>
<h3>tar -uf &#8220;files.tar&#8221; /path/to/yourfiles</h3>
]]></content:encoded>
			<wfw:commentRss>http://www.webslave.ws/05/how-to-tar-a-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Webslave</title>
		<link>http://www.webslave.ws/11/about-webslave/</link>
		<comments>http://www.webslave.ws/11/about-webslave/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 19:24:19 +0000</pubDate>
		<dc:creator>webslave</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.webslave.ws/?p=267</guid>
		<description><![CDATA[WEBSLAVE is the best and informative way to make you absolutely addict to the website development. Our site helps you to get the latest news related to the realm of the World Wide Web, WEB2.0, Ajax, Apache Server, ASP.NET, CSS, Linux, MySQL Server, PHP, Python, SEO, and more. Moreover, WEBSLAVE is like your study room [...]]]></description>
			<content:encoded><![CDATA[<p>WEBSLAVE is the best and informative way to make you absolutely addict to the website development. Our site helps you to get the latest news related to the realm of the World Wide Web, WEB2.0, Ajax, Apache Server, ASP.NET, CSS, Linux, MySQL Server, PHP, Python, SEO, and more. Moreover, WEBSLAVE is like your study room where you can learn a lot through our updated tutorials and also have in your hands the most informative articles by reputable writers of our staff.</p>
<p>WEBSLAVE is highly interested in your comments and opinions. That’s why you can have the opportunity to leave your comments and share with the WEBSLAVE community about your experience or ask your questions. Our staff of developers and writers is going to response your questions soon.  Enjoy the web experience of WEBSLAVE.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webslave.ws/11/about-webslave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
