<?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>Seek A Shop</title>
	<atom:link href="http://www.seekashop.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seekashop.com</link>
	<description>Or read something</description>
	<lastBuildDate>Wed, 21 Sep 2011 13:50:29 +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>Password crypt Perl</title>
		<link>http://www.seekashop.com/password-crypt-perl/2011/09/21/</link>
		<comments>http://www.seekashop.com/password-crypt-perl/2011/09/21/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 13:50:21 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=527</guid>
		<description><![CDATA[Um ein passwort zu vercrypten, kann man in Perl so etwas machen: perl -le ' my @salt = ("a".."z","A".."Z",0..9,".","/"); my $salt = $salt[rand @salt] . $salt[rand @salt]; print crypt shift, shift&#124;&#124;$salt ' password xx Das Programm nimmt ein oder zwei Argumente. Das erste Argument ist das Passwort, das man vercrypten möchte, das zweite ist das [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/password-crypt-perl/2011/09/21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Content Encoding&#8221; &#8211; nginx</title>
		<link>http://www.seekashop.com/content-encoding-nginx/2011/06/14/</link>
		<comments>http://www.seekashop.com/content-encoding-nginx/2011/06/14/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 07:27:02 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=525</guid>
		<description><![CDATA[I have NGINX running as proxy for accessing my applications that are running on a apache server. One of the applications, a WBB3 forum is making me trouble . I got Content Encoding errors when i try to login as administrator. The solution is to add to nginx config file the line: proxy_set_header Accept-Encoding &#8220;&#8221;; [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/content-encoding-nginx/2011/06/14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xen Domain, some tips and hints.</title>
		<link>http://www.seekashop.com/xen-domain-some-tips-and-hints/2011/03/02/</link>
		<comments>http://www.seekashop.com/xen-domain-some-tips-and-hints/2011/03/02/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 10:08:48 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=521</guid>
		<description><![CDATA[If you have to create a xen virtual domain use this command: xen-create-image &#8211;hostname=DOMAINNAME &#8211;size=2Gb &#8211;swap=256Mb &#8211;ide &#8211;ip=IPADDRESS &#8211;netmask=255.255.255.192 &#8211;gateway=IP_ADDRESS_HOST_SYSTEM &#8211;dir=/xen &#8211;memory=1024M &#8211;kernel=/boot/vmlinuz-2.6.26-2-xen-amd64 &#8211;initrd=/boot/initrd.img-2.6.26-2-xen-amd64 &#8211;debootstrap &#8211;dist=lenny &#8211;mirror=http://ftp2.de.debian.org/debian/ &#8211;passwd in the DOMAINNAME.cfg please enter : extra = &#8220;console=hvc0 xencons=tty&#8221; to be able to login trough xm console DOMAINNAME.cfg Shutdown of the DOMAIN is used by xm [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/xen-domain-some-tips-and-hints/2011/03/02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make a image of your SD card</title>
		<link>http://www.seekashop.com/how-to-make-a-image-of-your-sd-card/2010/12/16/</link>
		<comments>http://www.seekashop.com/how-to-make-a-image-of-your-sd-card/2010/12/16/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 09:30:51 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=518</guid>
		<description><![CDATA[If you have a sd card and want to make a identical copy of it, the process is very easy. Just use the dd command, on linux or mac. Here is the example how to make the image: $ dd if=/dev/sdd1 conv=sync,noerror bs=64k &#124;gzip -c > sdcard.img.gz This makes a sdcard.img.gz file in the actual [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/how-to-make-a-image-of-your-sd-card/2010/12/16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>find command, how to exclude a directory from the search</title>
		<link>http://www.seekashop.com/find-command-how-to-exclude-a-directory-from-the-search/2010/10/26/</link>
		<comments>http://www.seekashop.com/find-command-how-to-exclude-a-directory-from-the-search/2010/10/26/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 12:32:31 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[exclude]]></category>
		<category><![CDATA[find command]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=506</guid>
		<description><![CDATA[When i use the find command i use it with grep to find some pattern in files. Usage: find . -name "*.java" -exec grep "foobar" {] \; -print If i want to search only in a specific directory (in the next example &#8220;source&#8221; ) i use : find ./source -name "*.java" -exec grep "foobar" {] [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/find-command-how-to-exclude-a-directory-from-the-search/2010/10/26/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to transfer files with in-house utilities</title>
		<link>http://www.seekashop.com/how-to-transfer-file-with-in-house-utilities/2010/10/13/</link>
		<comments>http://www.seekashop.com/how-to-transfer-file-with-in-house-utilities/2010/10/13/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 09:28:46 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=502</guid>
		<description><![CDATA[Yesterday i was working on a machine which has a very strict environment. Access to the server was gained only for 1 hour, after 1 hour my account was deleted. Access to the machine was not gained again. I had this one shell open and have developed a solution for the problem. Actually, lucky was [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/how-to-transfer-file-with-in-house-utilities/2010/10/13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ffmpeg commands, for everyday use</title>
		<link>http://www.seekashop.com/ffmpeg-commands-for-everyday-use/2010/10/11/</link>
		<comments>http://www.seekashop.com/ffmpeg-commands-for-everyday-use/2010/10/11/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 12:43:37 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=499</guid>
		<description><![CDATA[FFMPEG is (from Wikipedia.org) is a free software / open source project that produces libraries and programs for handling multimedia data. The most notable parts of FFmpeg are libavcodec, an audio/video codec library used by several other projects, libavformat, an audio/video container mux and demux library, and the ffmpeg command line program for transcoding multimedia [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/ffmpeg-commands-for-everyday-use/2010/10/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listening Smooth Jazz Radio and recovering a domU root password</title>
		<link>http://www.seekashop.com/listening-smooth-jazz-radio-and-recovering-a-domu-root-password/2010/09/08/</link>
		<comments>http://www.seekashop.com/listening-smooth-jazz-radio-and-recovering-a-domu-root-password/2010/09/08/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 12:28:03 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=496</guid>
		<description><![CDATA[Lazy way to achive something is not god this days. We have to work hard to pay the loans and to have a bright future for us and our kids. But there is allways a solution for a big problem in a lazy way. What was the problem this days ? I have forgot the [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/listening-smooth-jazz-radio-and-recovering-a-domu-root-password/2010/09/08/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boosting Alexa Rank – How to fake it ?</title>
		<link>http://www.seekashop.com/boosting-alexa-rank-how-to-fake-it/2010/07/06/</link>
		<comments>http://www.seekashop.com/boosting-alexa-rank-how-to-fake-it/2010/07/06/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 08:19:50 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=494</guid>
		<description><![CDATA[You want to spoof, improve or fake your alexa.com rank. Really ? How this value is relevant for your site ? Is the alexa.com value so important for you ? Do you have the right site, with the right content ? If the answer on this question is yes, you can leave now and make [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/boosting-alexa-rank-how-to-fake-it/2010/07/06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://www.seekashop.com/hello-world/2010/06/18/</link>
		<comments>http://www.seekashop.com/hello-world/2010/06/18/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 08:48:47 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=492</guid>
		<description><![CDATA[How the way people code “Hello World” varies depending on their age and job: High School/Jr. High 10 PRINT &#8220;HELLO WORLD&#8221; 20 END First year in College program Hello(input, output) begin writeln(&#8216;Hello World&#8217;) end. Senior year in College (defun hello (print (cons &#8216;Hello (list &#8216;World)))) New professional #include void main(void) { char *message[] = {&#8220;Hello [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/hello-world/2010/06/18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rip a CD with Ubuntu and abcde tool</title>
		<link>http://www.seekashop.com/rip-a-cd-with-ubuntu-and-abcde-tool/2010/04/08/</link>
		<comments>http://www.seekashop.com/rip-a-cd-with-ubuntu-and-abcde-tool/2010/04/08/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:26:51 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=484</guid>
		<description><![CDATA[Life can be so simple, if you have the right skills and tools . I hate the noise of my cd player in the laptop. It&#8217;s something that i can miss, so i decide to rip my CD&#8217;s. But how to do that in a easy way ? Google tells me that there are few [...]]]></description>
		<wfw:commentRss>http://www.seekashop.com/rip-a-cd-with-ubuntu-and-abcde-tool/2010/04/08/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now are all files changed in last 24 hours in a tarfile</title>
		<link>http://www.seekashop.com/now-are-all-files-changed-in-last-24-hours-in-a-tarfile/2010/03/30/</link>
		<comments>http://www.seekashop.com/now-are-all-files-changed-in-last-24-hours-in-a-tarfile/2010/03/30/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 12:24:13 +0000</pubDate>
		<dc:creator>bo</dc:creator>
				<category><![CDATA[Business News]]></category>

		<guid isPermaLink="false">http://www.seekashop.com/?p=482</guid>
		<description><![CDATA[And now something spectacular. $ find . -name &#8220;*.java&#8221; -cmin -1440 $ tar -cvzf patch.tgz $(!!) Now are all files changed in last 24 hours in a tarfile]]></description>
		<wfw:commentRss>http://www.seekashop.com/now-are-all-files-changed-in-last-24-hours-in-a-tarfile/2010/03/30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

