<?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>blog.webwesen.com &#187; programming</title>
	<atom:link href="http://blog.webwesen.com/category/software/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.webwesen.com</link>
	<description>tail -f /var/log/braindump &#62;&#62; blog.webwesen.com</description>
	<lastBuildDate>Sun, 13 Jun 2010 18:42:49 +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>What packaging tool to choose for AIX deployments?</title>
		<link>http://blog.webwesen.com/2009/07/12/what-packaging-to-choose-for-aix-deployments/</link>
		<comments>http://blog.webwesen.com/2009/07/12/what-packaging-to-choose-for-aix-deployments/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 22:42:32 +0000</pubDate>
		<dc:creator>webwesen</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[rpm]]></category>

		<guid isPermaLink="false">http://blog.webwesen.com/?p=39</guid>
		<description><![CDATA[rpm vs. installp It seems it was  impossible for a long time to find an installp-experienced engineer outside IBM. rpm on the other hand has been freely available for years. For scripty type stuff there should be no special considerations for AIX so the large body of experience, knowledge and example code available for rpm [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<h1>rpm vs. installp</h1>
<p>It seems it was  impossible for a long time to find an <strong>installp</strong>-experienced engineer outside IBM. <strong>rpm</strong> on the other hand has been freely available for years. For scripty type stuff there should be no special considerations for AIX so the large body of experience, knowledge and example code available for <strong>rpm</strong> on Linux is very helpful.</p>
<blockquote><p>IBM is not dropping AIX anytime soon, but at the same time they are actively porting the standard linux tools to AIX and some of the AIX tools to Linux so the environments are converging. This might mean that its only a matter of time before <strong>installp </strong> become &#8220;depreciated&#8221; in favor of <strong>rpm</strong>.</p></blockquote>
<h1>rpm resources</h1>
<ul>
<li><a href="http://www.ibm.com/developerworks/library/l-rpm1/">http://www.ibm.com/developerworks/library/l-rpm1/</a></li>
<li><a href="http://www.ibm.com/developerworks/library/l-rpm2/">http://www.ibm.com/developerworks/library/l-rpm2/</a></li>
</ul>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.webwesen.com/2009/07/12/what-packaging-to-choose-for-aix-deployments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows PowerShell Execution policy</title>
		<link>http://blog.webwesen.com/2009/07/09/windows-powershell-execution-policy/</link>
		<comments>http://blog.webwesen.com/2009/07/09/windows-powershell-execution-policy/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 16:02:34 +0000</pubDate>
		<dc:creator>webwesen</dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://blog.webwesen.com/?p=33</guid>
		<description><![CDATA[The first time you try to execute a script from PowerShell you will most likely have to change the execution policy for PowerShell. It is recommended to set it to RemoteSigned. This would mean that all remote scripts must be signed or PowerShell will refuse to execute them. To change the execution policy: Set-ExecutionPolicy RemoteSigned [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>The first time you try to execute a script from PowerShell you will most likely have to change the execution policy for PowerShell. It is recommended to set it to <strong>RemoteSigned</strong>. This would mean that all remote scripts must be signed or PowerShell will refuse to execute them. To change the execution policy:</p>
<pre>Set-ExecutionPolicy RemoteSigned</pre>
<p>If you&#8217;re uncertain what your execution policy setting is, type :</p>
<pre>Get-ExecutionPolicy</pre>
<p>For reference &#8211; these are all supported policy types:</p>
<ul>
<li><strong>Restricted</strong><br />
No scripts can run.</li>
<li><strong>AllSigned</strong><br />
Ps1 and .Ps1xml files must be digitally signed.</li>
<li><strong>RemoteSigned</strong><br />
Ps1 and .Ps1xml files from the internet must be digitally signed.</li>
<li><strong>Unrestricted</strong><br />
No digital signatures are required and all scripts can be executed.</li>
</ul>



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.webwesen.com/2009/07/09/windows-powershell-execution-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install and configure PMD on CentOS 5.3</title>
		<link>http://blog.webwesen.com/2009/07/06/install-and-configure-pmd-on-centos-5-3/</link>
		<comments>http://blog.webwesen.com/2009/07/06/install-and-configure-pmd-on-centos-5-3/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 21:42:31 +0000</pubDate>
		<dc:creator>webwesen</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://blog.webwesen.com/?p=21</guid>
		<description><![CDATA[cd /opt mkdir static_analysis cd static_analysis/ wget http://downloads.sourceforge.net/pmd/pmd-bin-4.2.5.zip unzip pmd-bin-4.2.5.zip ln -s pmd-4.2.5/ pmd to be continued&#8230; Related posts:How to install git on Ubuntu Karmic


Related posts:<ol><li><a href='http://blog.webwesen.com/2010/01/14/how-to-install-git-on-ubuntu-karmic/' rel='bookmark' title='Permanent Link: How to install git on Ubuntu Karmic'>How to install git on Ubuntu Karmic</a></li></ol>]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>opt
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> static_analysis
<span style="color: #7a0874; font-weight: bold;">cd</span> static_analysis<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>downloads.sourceforge.net<span style="color: #000000; font-weight: bold;">/</span>pmd<span style="color: #000000; font-weight: bold;">/</span>pmd-bin-4.2.5.zip
<span style="color: #c20cb9; font-weight: bold;">unzip</span> pmd-bin-4.2.5.zip
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> pmd-4.2.5<span style="color: #000000; font-weight: bold;">/</span> pmd</pre></div></div>

<p>to be continued&#8230;</p>


<p>Related posts:<ol><li><a href='http://blog.webwesen.com/2010/01/14/how-to-install-git-on-ubuntu-karmic/' rel='bookmark' title='Permanent Link: How to install git on Ubuntu Karmic'>How to install git on Ubuntu Karmic</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.webwesen.com/2009/07/06/install-and-configure-pmd-on-centos-5-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
