<?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>How To ... &#187; Uncategorized</title>
	<atom:link href="http://howto.tawaret.com/c/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://howto.tawaret.com</link>
	<description></description>
	<lastBuildDate>Fri, 27 May 2011 08:53:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>SCJP resources</title>
		<link>http://howto.tawaret.com/scjp-resources/</link>
		<comments>http://howto.tawaret.com/scjp-resources/#comments</comments>
		<pubDate>Fri, 27 May 2011 08:53:25 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/?p=73</guid>
		<description><![CDATA[A collection of resources, information, examples, compilation of topics and some cheat sheets for preparation for java certification SCJP. For example here is the link for the Java collection cheat sheet.]]></description>
			<content:encoded><![CDATA[<p>A collection of resources, information, examples, compilation of topics and some <a href="http://pedrocardoso.eu/scjp-java-collections-cheat-sheet/">cheat sheets</a> for preparation for <a href="http://pedrocardoso.eu/tag/scjp/">java certification SCJP</a>.</p>
<p>For example here is the link for the <a href="http://pedrocardoso.eu/scjp-java-collections-cheat-sheet/">Java collection cheat sheet</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/scjp-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extract pages from pdf file</title>
		<link>http://howto.tawaret.com/extract-pages-from-pdf-file/</link>
		<comments>http://howto.tawaret.com/extract-pages-from-pdf-file/#comments</comments>
		<pubDate>Fri, 27 May 2011 08:48:55 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/?p=71</guid>
		<description><![CDATA[The pdftk (PDF Toolkit) can be used for that: pdftk A=input.pdf cat A106-111  output o.pdf It&#8217;s possible also to split file, merge files, rotate pages and so on&#8230; See more examples here.]]></description>
			<content:encoded><![CDATA[<p>The pdftk (PDF Toolkit) can be used for that:</p>
<p>pdftk A=input.pdf cat A106-111  output o.pdf</p>
<p>It&#8217;s possible also to split file, merge files, rotate pages and so on&#8230;</p>
<p>See more examples <a href="http://www.pdflabs.com/docs/pdftk-cli-examples/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/extract-pages-from-pdf-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add picture watermark in batch</title>
		<link>http://howto.tawaret.com/how-to-add-picture-watermark-in-batch/</link>
		<comments>http://howto.tawaret.com/how-to-add-picture-watermark-in-batch/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 16:20:38 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/?p=66</guid>
		<description><![CDATA[mogrify -font /usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf pointsize 22 -verbose -draw &#8220;gravity south fill black text 0,33 &#8216;Focused On The Unfocused&#8217; fill white text 1,32 &#8216;Focused On The Unfocused&#8217; &#8221; *.jpg source]]></description>
			<content:encoded><![CDATA[<p>mogrify -font /usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf pointsize 22 -verbose -draw &#8220;gravity south fill black text 0,33 &#8216;Focused On The Unfocused&#8217; fill white text 1,32 &#8216;Focused On The Unfocused&#8217; &#8221; *.jpg</p>
<p><a href="http://blog.shevin.info/2007/05/how-to-add-watermark-to-300-photos-in.html">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/how-to-add-picture-watermark-in-batch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux &#8211; find files inside zips</title>
		<link>http://howto.tawaret.com/linux-find-files-inside-zips/</link>
		<comments>http://howto.tawaret.com/linux-find-files-inside-zips/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 13:49:41 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/?p=64</guid>
		<description><![CDATA[How to locate a file inside a zip file or inside a jar file: find . -name &#8220;*jar&#8221; -exec unzip -l {} \; &#124; grep persistence.xml]]></description>
			<content:encoded><![CDATA[<p>How to locate a file inside a zip file or inside a jar file:</p>
<p>find . -name &#8220;*jar&#8221; -exec unzip -l {} \; | grep persistence.xml</p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/linux-find-files-inside-zips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse tomcat work and deploy folder location</title>
		<link>http://howto.tawaret.com/eclipse-tomcat-work-deployfolder-location/</link>
		<comments>http://howto.tawaret.com/eclipse-tomcat-work-deployfolder-location/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 13:52:24 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/eclipse-tomcat-work-folder-location/</guid>
		<description><![CDATA[workspace\.metadata\.plugins\org.eclipse.wst.server.core\]]></description>
			<content:encoded><![CDATA[<p>workspace\.metadata\.plugins\org.eclipse.wst.server.core\</p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/eclipse-tomcat-work-deployfolder-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extend IBM Websphere Trial Period</title>
		<link>http://howto.tawaret.com/extend-ibm-websphere-trial-period/</link>
		<comments>http://howto.tawaret.com/extend-ibm-websphere-trial-period/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 08:06:06 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/?p=59</guid>
		<description><![CDATA[How to Extend IBM Websphere Trial Period. This is applicable at least form IBM Webshpere 6.1 and 7. Simple delete the $WAS_HOME/properties/was.license file. When restarting the WAS server, the file will be recreated and the eval period restarts. This avoids full reinstall of the product]]></description>
			<content:encoded><![CDATA[<p>How to Extend IBM Websphere Trial Period. This is applicable at least form IBM Webshpere 6.1 and 7.</p>
<p>Simple delete the $WAS_HOME/properties/was.license file. When restarting the WAS server, the file will be recreated and the eval period restarts.</p>
<p>This avoids full reinstall of the product <img src='http://howto.tawaret.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/extend-ibm-websphere-trial-period/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Untar a tar.gz file in php script</title>
		<link>http://howto.tawaret.com/untar-a-targz-file-in-php-script/</link>
		<comments>http://howto.tawaret.com/untar-a-targz-file-in-php-script/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 17:15:36 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/?p=56</guid>
		<description><![CDATA[how to untar a tar.gz file in php script &#60;?php system("tar -zxvf filename.tar.gz"); ?&#62;]]></description>
			<content:encoded><![CDATA[<p><strong>how to untar a tar.gz file in php script </strong></p>
<pre lang="php">&lt;?php

system("tar -zxvf filename.tar.gz");

?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/untar-a-targz-file-in-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run scripts at startup</title>
		<link>http://howto.tawaret.com/run-scripts-at-startup/</link>
		<comments>http://howto.tawaret.com/run-scripts-at-startup/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 10:40:24 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/run-scripts-at-startup/</guid>
		<description><![CDATA[To run scripts or programs at startup on a linux/unix machine. create a sh script in /etc/init.d create a link on rc3.d or rc5.d pointing to the previous created script]]></description>
			<content:encoded><![CDATA[<p>To run scripts or programs at startup on a linux/unix machine.</p>
<p>create a sh script in /etc/init.d<br />
create a link on rc3.d or rc5.d pointing to the previous created script</p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/run-scripts-at-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SeLinux does not Allow Dropbox to work</title>
		<link>http://howto.tawaret.com/selinux-does-not-allow-dropbox-to-work/</link>
		<comments>http://howto.tawaret.com/selinux-does-not-allow-dropbox-to-work/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 23:54:12 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/selinux-does-not-allow-dropbox-to-work/</guid>
		<description><![CDATA[SELinux is preventing dropboxd from loading /home/chad/.dropbox-dist/libSDL-1.2.so.0 which requires text relocation. Fix Command: chcon -t textrel_shlib_t '/home/chad/.dropbox-dist/libSDL-1.2.so.0' full fedora bug description here]]></description>
			<content:encoded><![CDATA[<pre class="bz_comment_text">SELinux is preventing dropboxd from loading
/home/chad/.dropbox-dist/libSDL-1.2.so.0 which requires text relocation.

Fix Command:

chcon -t textrel_shlib_t '/home/chad/.dropbox-dist/libSDL-1.2.so.0'
</pre>
<p>full fedora bug description <a href="https://bugzilla.redhat.com/show_bug.cgi?id=474493">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/selinux-does-not-allow-dropbox-to-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrum Cheat Sheet</title>
		<link>http://howto.tawaret.com/scrum-cheat-sheet/</link>
		<comments>http://howto.tawaret.com/scrum-cheat-sheet/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 16:54:23 +0000</pubDate>
		<dc:creator>pjdc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://howto.tawaret.com/scrum-cheat-sheet/</guid>
		<description><![CDATA[download]]></description>
			<content:encoded><![CDATA[<p><a href="http://dl.getdropbox.com/u/602677/docs/agile/scrum%20cheat%20sheet.pdf">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://howto.tawaret.com/scrum-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

