<?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>HIDEN.org</title>
	<atom:link href="http://hiden.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://hiden.org</link>
	<description>EDV mit System</description>
	<lastBuildDate>Wed, 28 Jul 2010 14:33:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Firefox and file uploads from network-shares</title>
		<link>http://hiden.org/sysadmin/firefox-and-file-uploads-from-network-shares/</link>
		<comments>http://hiden.org/sysadmin/firefox-and-file-uploads-from-network-shares/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 14:32:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=343</guid>
		<description><![CDATA[There are serveral reports that Firefox (as well as Epiphany) is not able to upload files from a network-share on recent versions of Ubuntu. See Bug #279193 for example.
You can solve this by linking your ~/.gvfs directory to the bookmarks in nautilus.


Locate the .gvfs directory in your home directory (ctrl-h displays the hidden entries)
Right click [...]]]></description>
			<content:encoded><![CDATA[<p>There are serveral reports that Firefox (as well as Epiphany) is not able to upload files from a network-share on recent versions of Ubuntu. See <a href="https://bugs.launchpad.net/ubuntu/+source/firefox-3.0/+bug/279193">Bug #279193</a> for example.</p>
<p>You can solve this by linking your ~/.gvfs directory to the bookmarks in nautilus.</p>
<p><span id="more-343"></span></p>
<ol>
<li>Locate the .gvfs directory in your home directory (ctrl-h displays the hidden entries)</li>
<li>Right click on .gvfs and make a link.</li>
<li>Rename the &#8220;Link to .gvfs&#8221; to something like &#8220;Network&#8221;</li>
<li>Drag the entry from above to your bookmarks</li>
</ol>
<p>You could omit steps 2 and 3 but you would end up with a not very descruptive link called .gvfs</p>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=343&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/sysadmin/firefox-and-file-uploads-from-network-shares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Birt Reports with OpenJacob</title>
		<link>http://hiden.org/open-jacob/birt-reports-with-openjacob/</link>
		<comments>http://hiden.org/open-jacob/birt-reports-with-openjacob/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 06:19:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open-Jacob]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=339</guid>
		<description><![CDATA[Integrating Birt Reports into OpenJacob is quite straightforward but note that (at the time of this writing) you need Birt Version 2.5 !

When creating the report&#8217;s datasource you have to use the same name you use in your jACOB application. Otherwise jACOB will not be able to use your Report.
Create your report and specify the [...]]]></description>
			<content:encoded><![CDATA[<p>Integrating Birt Reports into OpenJacob is quite straightforward but note that (at the time of this writing) you need Birt Version 2.5 !</p>
<ol>
<li>When creating the report&#8217;s datasource you have to use the same name you use in your jACOB application. Otherwise jACOB will not be able to use your Report.</li>
<li>Create your report and specify the required parameters.</li>
<li>When having finished your report, upload the .rptdesign file to a document field in your application. (e.g. a config table)</li>
<li>The following code opens the report, hands over a parameter and returns a .pdf</li>
</ol>
<pre>	BirtReport rpt = new BirtReport(cnfrec.getDocumentValue("report"));
	rpt.setParameterValue("mypar", currentRecord.getStringValue("pkey"));
	byte[] barr = rpt.createPDF();
	context.createDocumentDialog(null, "doc.pdf", barr).show();</pre>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=339&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/open-jacob/birt-reports-with-openjacob/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux talking Modbus</title>
		<link>http://hiden.org/uncategorized/linux-talking-modbus/</link>
		<comments>http://hiden.org/uncategorized/linux-talking-modbus/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 16:07:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=329</guid>
		<description><![CDATA[Whenever you need to talk with a ModBus device, take look at ModPoll. ModPoll runs on virtually any Platform and is able to talk over RS232, RS485 and TCP. The only drawback is that it can only read data (but not write).
The Advantech Adam 6015 has 7 input channels for use with Pt100 and others. [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever you need to talk with a ModBus device, take look at <a href="http://www.modbusdriver.com/modpoll.html">ModPoll</a>. ModPoll runs on virtually any Platform and is able to talk over RS232, RS485 and TCP. The only drawback is that it can only read data (but not write).</p>
<p><a href="http://hiden.org/wp-content/uploads/2010/06/ADAM_6015_g.jpg"><img class="alignleft size-medium wp-image-331" title="ADAM_6015_g" src="http://hiden.org/wp-content/uploads/2010/06/ADAM_6015_g-248x300.jpg" alt="" width="248" height="300" /></a>The Advantech Adam 6015 has 7 input channels for use with Pt100 and others. You can configure the module using a proprietary Windows Software where you can set the type of thermocouple as well as the module&#8217;s IP address. Once the module is available on your network you can create a small bash script to retrieve the values.<span id="more-329"></span></p>
<p>Take care when assembling the sensors. The Adam6015 has 7 input channels but only 6 COM clips. You have to use the COM clip #6 for #7 too. And this is not noted in the manual.</p>
<p>The script below now connects to the device using modpoll from the link above, extracts the 7 data channels including a 8th average channel and writes them to stdout.<br />
Although the manual states that the values are available starting on address 40000 you have to start at address 1.</p>
<p>The values you receive are 16bit Integers. When your sensor now has a range of -50°C to 150°C you have to calculate them by<br />
TempRange/2¹⁶*Value-50</p>
<p>Ok, I know that the bash script below is NOT state of the art, but it works <img src='http://hiden.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<pre>
<pre>#!/bin/bash

rm /tmp/ad6015
rm /tmp/ad6015err
modpoll -mtcp -r1 -c9 -1 192.168.6.220 2&gt; /tmp/ad6015err &gt; /tmp/ad6015
errsize=`stat -c %s /tmp/ad6015err`
if [ "$errsize" = "0" ]; then

out=`cat /tmp/ad6015|grep "\[1\]:"`
out=${out#*:}
out=$(echo "200/65536*$out-50"|bc -l)
f1=${out:0:6}

out=`cat /tmp/ad6015|grep "\[2\]:"`
out=${out#*:}
out=$(echo "200/65536*$out-50"|bc -l)
f2=${out:0:6}

out=`cat /tmp/ad6015|grep "\[3\]:"`
out=${out#*:}
out=$(echo "200/65536*$out-50"|bc -l)
f3=${out:0:6}

out=`cat /tmp/ad6015|grep "\[4\]:"`
out=${out#*:}
out=$(echo "200/65536*$out-50"|bc -l)
f4=${out:0:6}

out=`cat /tmp/ad6015|grep "\[5\]:"`
out=${out#*:}
out=$(echo "200/65536*$out-50"|bc -l)
f5=${out:0:6}

out=`cat /tmp/ad6015|grep "\[6\]:"`
out=${out#*:}
out=$(echo "200/65536*$out-50"|bc -l)
f6=${out:0:6}

out=`cat /tmp/ad6015|grep "\[7\]:"`
out=${out#*:}
out=$(echo "200/65536*$out-50"|bc -l)
f7=${out:0:6}

out=`cat /tmp/ad6015|grep "\[9\]:"`
out=${out#*:}
out=$(echo "200/65536*$out-50"|bc -l)
fa=${out:0:6}

echo "F1|"$f1
echo "F2|"$f2
echo "F3|"$f3
echo "F4|"$f4
echo "F5|"$f5
echo "F6|"$f6
echo "F7|"$f7
echo "AVG|"$fa

fi
</pre>
</pre>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=329&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/uncategorized/linux-talking-modbus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Friend and the fight against a foreign Digicam</title>
		<link>http://hiden.org/uncategorized/a-friend-and-the-fight-against-a-foreign-digicam/</link>
		<comments>http://hiden.org/uncategorized/a-friend-and-the-fight-against-a-foreign-digicam/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 15:41:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=327</guid>
		<description><![CDATA[Just in case you have a friend that looses the fight against a foreign digicam and accidentially deletes all pictures&#8230;&#8230;.
Then you should be able to give him the link to http://www.cgsecurity.org
Because TestDisk is a outstanding piece of software that is able to recover really almost everything  
]]></description>
			<content:encoded><![CDATA[<p><a href="http://hiden.org/wp-content/uploads/2010/06/jaguar.jpg"><img class="alignleft size-medium wp-image-337" title="jaguar" src="http://hiden.org/wp-content/uploads/2010/06/jaguar-300x182.jpg" alt="" width="300" height="182" /></a>Just in case you have a friend that looses the fight against a foreign digicam and accidentially deletes all pictures&#8230;&#8230;.</p>
<p>Then you should be able to give him the link to <a href="http://www.cgsecurity.org">http://www.cgsecurity.org</a><br />
Because TestDisk is a outstanding piece of software that is able to recover really almost everything <img src='http://hiden.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=327&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/uncategorized/a-friend-and-the-fight-against-a-foreign-digicam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Lucid (10.04) and USB Storage</title>
		<link>http://hiden.org/sysadmin/ubuntu-lucid-10-04-and-usb-storage/</link>
		<comments>http://hiden.org/sysadmin/ubuntu-lucid-10-04-and-usb-storage/#comments</comments>
		<pubDate>Fri, 21 May 2010 17:54:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=322</guid>
		<description><![CDATA[For some reason it may happen in Ubuntu Lucid (10.04) that your USB storage devices aren&#8217;t detected anymore.
The indeed _very_ strange solution is to turn off LEGACY FLOPPY SUPPORT in the BIOS setup. If you don&#8217;t have such a setting (i.e like my Dell Precision T3400) and don&#8217;t have any floppy drive either then try [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason it may happen in Ubuntu Lucid (10.04) that your USB storage devices aren&#8217;t detected anymore.</p>
<p>The indeed _very_ strange solution is to turn off LEGACY FLOPPY SUPPORT in the BIOS setup. If you don&#8217;t have such a setting (i.e like my Dell Precision T3400) and don&#8217;t have any floppy drive either then try deactivating everything that refers to floppy drives in the BIOS setup.</p>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=322&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/sysadmin/ubuntu-lucid-10-04-and-usb-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ping all clients on a network</title>
		<link>http://hiden.org/sysadmin/ping-all-clients-on-a-network/</link>
		<comments>http://hiden.org/sysadmin/ping-all-clients-on-a-network/#comments</comments>
		<pubDate>Wed, 12 May 2010 09:19:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=315</guid>
		<description><![CDATA[A short (one line) script for linux that pings all clients on your network. If using another subnet than 192.168.0 then you have to adjust the numbers.
export i=0;
while [[ $((++i)) -le 254 ]];
do ping -c1 -w1 192.168.0.$i &#124; grep ttl &#124; cut -d " " -f4 &#124; cut -d ":" -f1;
done;
Thanks to snipplr.com
]]></description>
			<content:encoded><![CDATA[<p>A short (one line) script for linux that pings all clients on your network. If using another subnet than 192.168.0 then you have to adjust the numbers.</p>
<pre>export i=0;
while [[ $((++i)) -le 254 ]];
do ping -c1 -w1 192.168.0.$i | grep ttl | cut -d " " -f4 | cut -d ":" -f1;
done;</pre>
<p>Thanks to snipplr.com</p>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=315&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/sysadmin/ping-all-clients-on-a-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a Company Wide GPS Logging Solution</title>
		<link>http://hiden.org/gps/building-a-company-wide-gps-logging-solution/</link>
		<comments>http://hiden.org/gps/building-a-company-wide-gps-logging-solution/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 10:15:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[GPS]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=304</guid>
		<description><![CDATA[&#8230; with Open Source Tools.
There are a lot of companies around that offer GPS car logging solutions. But if you take a closer look on what they offer then you find out that they are not really flexible when you have non standard needs.
The following describes a work in progress. Basically it works as intended [...]]]></description>
			<content:encoded><![CDATA[<h4>&#8230; with Open Source Tools.</h4>
<p>There are a lot of companies around that offer GPS car logging solutions. But if you take a closer look on what they offer then you find out that they are not really flexible when you have non standard needs.</p>
<p><em><strong>The following describes a work in progress. Basically it works as intended but it still has to prove it&#8217;s long time stability.</strong></em><span id="more-304"></span></p>
<h4>Hardware</h4>
<p>In the cars we have installed a HTC Tattoo mobile phone without SIM card. The phone is placed somewhere behind the dashboard and connected to a 12V jack with as 5V USB plug. The 12V jack is connected to constant power.</p>
<p>The reason that we&#8217;ve chosen the HTC Tattoo is because they run Android and are quite cheap.</p>
<h4>Phone Software</h4>
<p>On the phone we are running a customized version of &#8220;<a href="http://gpslogger.codeplex.com/">GPSLogger for Android</a>&#8221; and <a href="http://code.google.com/p/swiftp/">swiftp</a> . GPSLogger constantly collects the GPS positions and stores them into a .gpx file in the SD-Card of the phone.</p>
<p>Swiftp offers a FTP server on the phone that is also accessible through the internet via proxy.</p>
<h4>Collecting the data</h4>
<p>Actually there a 2 ways on how to move the .gpx files to the webserver. Pushing from the phone or pulling by the server. We decided to pull the data from the server by a few simple ftp commands.</p>
<h4>Displaying the data</h4>
<p>In the first round we simply display the collected data by running <a href="http://www.j-berkemeier.de/GPXViewer/">GPX Viewer</a>. In the second step we will add some filtering functionality. For example we want to be able to extract data based on a timeframe, compare 2 cars and so on. Therefore we&#8217;ll probably place a <a href="http://www.openjacob.org">Open-jACOB</a> software in between.</p>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=304&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/gps/building-a-company-wide-gps-logging-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jACOB 2.9 has been released</title>
		<link>http://hiden.org/open-jacob/jacob2/</link>
		<comments>http://hiden.org/open-jacob/jacob2/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 17:31:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open-Jacob]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=300</guid>
		<description><![CDATA[With Open-jACOB 2.9 tarragon-software.com made another big step forward.
The new version contains many many improvements compared to the previous official release like:

 Tree browser with drag and drop.
 Radio buttons to select functions.
 Hideable Forms
 Enum fields with I18N
 Tooltips. A combination of error messages and tips on how to correct.
 Foreign fields as combo [...]]]></description>
			<content:encoded><![CDATA[<p>With Open-jACOB 2.9 <a href="http://www.tarragon-software.com">tarragon-software.com</a> made another big step forward.<br />
The new version contains many many improvements compared to the previous official release like:</p>
<ul>
<li> Tree browser with drag and drop.</li>
<li> Radio buttons to select functions.</li>
<li> Hideable Forms</li>
<li> Enum fields with I18N</li>
<li> Tooltips. A combination of error messages and tips on how to correct.</li>
<li> Foreign fields as combo box.</li>
<li> Breadcrumb control.</li>
<li> Single sign on functionality through CAS.</li>
<li> Embedded transactions</li>
<li> Dynamic changeable forms.</li>
<li> Full text search on long text fields.</li>
<li> Distinguish between primary and secondary DB’s in multiple databases, dependent on who owns the data.</li>
</ul>
<p>Installation instructions can be found at <a href="http://www.openjacob.org/">openjacob.org</a></p>
<p>The Java Docs are <a href="http://www.tarragon-software.com/wiki/javadoc/index.html">here</a>.</p>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=300&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/open-jacob/jacob2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Google Toilet</title>
		<link>http://hiden.org/uncategorized/the-google-toilet/</link>
		<comments>http://hiden.org/uncategorized/the-google-toilet/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 18:59:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=298</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/hrontojPWEE&#038;hl=de_DE&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/hrontojPWEE&#038;hl=de_DE&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=298&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/uncategorized/the-google-toilet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VPN with IPCop/Zerina and Ubuntu</title>
		<link>http://hiden.org/sysadmin/vpn-with-ipcop-zerina-and-ubuntu/</link>
		<comments>http://hiden.org/sysadmin/vpn-with-ipcop-zerina-and-ubuntu/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 18:06:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://hiden.org/?p=281</guid>
		<description><![CDATA[Building VPN Connections from any Windows client against IPCop running Zerina is actually very straightforward. Doing that from a Ubuntu client is a little bit tricky since ubuntu&#8217;s network manager cannot handle Zerina&#8217;s .p12 (pkcs) files.

Install  network-manager-openvpn using synaptic

I know it&#8217;s not linux style &#8211; but do a reboot know &#8211; just to insure [...]]]></description>
			<content:encoded><![CDATA[<p>Building VPN Connections from any Windows client against IPCop running Zerina is actually very straightforward. Doing that from a Ubuntu client is a little bit tricky since ubuntu&#8217;s network manager cannot handle Zerina&#8217;s .p12 (pkcs) files.</p>
<ul>
<li>Install  <strong>network-manager-openvpn</strong> using synaptic</li>
<p></p>
<li>I know it&#8217;s not linux style &#8211; but do a reboot know &#8211; just to insure that all services are running. I had no success with the next steps without rebooting. Or I&#8217;ve been too lazy searching for the services that needed a restart.</li>
<p></p>
<li>Download the .p12 file from IPCop or ask someone to do it for you.</li>
<p></p>
<li>Now you have to extract 3 certificate files out of your .p12 file.<br />
<code><br />
openssl pkcs12 -nocerts -in (filename).p12 -out userkey.pem<br />
openssl pkcs12 -nokeys -clcerts -in (filename).p12 -out usercert.pem<br />
openssl pkcs12 -nokeys -cacerts -in (filename).p12 -out userca.pem<br />
</code><br />
Or download <a href="/files/pkcs2certs.sh">that script</a> and call it with <strong>pkcs2certs.sh your-username.p12</strong> and it&#8217;ll create the required files for you.</li>
<p></p>
<li>Now place the files into your vpn configuration and make the settings match your zerina configuration (cipher, compression etc.)</li>
</ul>
<img src="http://hiden.org/wp-content/plugins/pixelstats/trackingpixel.php?post_id=281&amp;ts=1280502474" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://hiden.org/sysadmin/vpn-with-ipcop-zerina-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	<img style='margin:0;padding:0;border:0;' width='1px' height='1px' src="http://hiden.org/wp-content/plugins/mystat/mystat.php?act=time_load&id=54346&rnd=1977329889" /></channel>
</rss>
