<?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>Pete&#039;s Blog - Pete&#039;s Blog</title>
	<atom:link href="http://hmastuff.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://hmastuff.com/blog</link>
	<description>Useful stuff...</description>
	<lastBuildDate>Fri, 24 May 2013 16:33:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Getting OpenVPN on ChromeOS working</title>
		<link>http://hmastuff.com/blog/chromeos</link>
		<comments>http://hmastuff.com/blog/chromeos#comments</comments>
		<pubDate>Sun, 21 Apr 2013 15:31:31 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=1034</guid>
		<description><![CDATA[<p>Many users of ChromeOS (e.g. on ChromeBooks or on virtual machines) probably noticed that they can&#8217;t connect via OpenVPN. This happens because ChromeOS at the moment only supports rather uncommon certificates/keys for it.</p> <p>That leaves only L2TP as protocol of choice, since PPTP is not supported at all by ChromeOS.</p>  … <a href="http://hmastuff.com/blog/chromeos"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Many users of ChromeOS (e.g. on ChromeBooks or on virtual machines) probably noticed that they can&#8217;t connect via OpenVPN. This happens because ChromeOS at the moment only supports rather uncommon certificates/keys for it.</p>
<p>That leaves only L2TP as protocol of choice, since PPTP is not supported at all by ChromeOS.</p>
<p>But with a little workaround you can get OpenVPN working. ChromeOS is just another Linux distribution, so you can go into terminal mode and connect manually.</p>
<p>How this can be done is explained in the tutorial I wrote about it, you can find it here:</p>
<p><a href="http://wiki.hidemyass.com/Chrome_OS#OpenVPN_on_ChromeOS" target="_blank">http://wiki.hidemyass.com/Chrome_OS#OpenVPN_on_ChromeOS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/chromeos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to put the GoogleAnalytics code on MediaWiki into header instead of body</title>
		<link>http://hmastuff.com/blog/google-analytics-mediawiki-header</link>
		<comments>http://hmastuff.com/blog/google-analytics-mediawiki-header#comments</comments>
		<pubDate>Mon, 15 Apr 2013 14:11:51 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=1028</guid>
		<description><![CDATA[<p>There are to ways to enable GoogleAnalytics for MediaWiki:</p> <p>One is to use the extension <a href="http://www.mediawiki.org/wiki/Extension:Google_Analytics_Integration" target="_blank">Google Analytics Integration</a> &#8211; it&#8217;s easy and works fine, but puts the script into the pages body instead of the header. That makes no difference in regards of it working properly, but it&#8217;s  … <a href="http://hmastuff.com/blog/google-analytics-mediawiki-header"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>There are to ways to enable GoogleAnalytics for MediaWiki:</p>
<p>One is to use the extension <a href="http://www.mediawiki.org/wiki/Extension:Google_Analytics_Integration" target="_blank">Google Analytics Integration</a> &#8211; it&#8217;s easy and works fine, but puts the script into the pages body instead of the header. That makes no difference in regards of it working properly, but it&#8217;s not the way Google wants us to do it.<br />
The alternative is to just put the code into the skin.<br />
Let&#8217;s say you&#8217;re using the Vector skin. Open the file /skins/Vector.php and search for this text:</p>
<pre><span style="font-size: 12px;">$out-&gt;addHeadItem( 'csshover',
'&lt;!--[if lt IE 7]&gt;&lt;style type="text/css"&gt;body{behavior:url("' .
htmlspecialchars( $wgLocalStylePath ) .
"/{$this-&gt;stylename}/csshover{$min}.htc\")}&lt;/style&gt;&lt;![endif]--&gt;");</span></pre>
<p>Below it, enter the following (while replacing the profile data with yours, of course)</p>
<pre><span>  <span style="font-size: 12px;"> $out-&gt;addHeadItem( 'analytics',
            '&lt;script type="text/javascript"&gt;'."

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-00000000-1']);
  _gaq.push(['_setDomainName', 'yourdomain.com']);
  _gaq.push(['_setAllowHash', 'false']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

&lt;/script&gt;"
        );</span> </span></pre>
<p>Lastly, remove any usage of GoogleAnalytics related extensions from your LocalSettings.php to prevent double-use of the script. Now check your real-time stats in GoogleAnalytics to see if the script is active.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/google-analytics-mediawiki-header/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finally a working Linux image for the APC Rock 8950</title>
		<link>http://hmastuff.com/blog/apcrock</link>
		<comments>http://hmastuff.com/blog/apcrock#comments</comments>
		<pubDate>Sun, 14 Apr 2013 11:10:27 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=1001</guid>
		<description><![CDATA[<p><img style="float: right; margin: 5px 10px;" alt="Linux on APC Rock 8950" src="http://hmastuff.com/rockpingu.jpg" width="250" height="289" /></p> <p>For a long time the APC Rock 8950 was a huge disappointment due to no available Linux image for it.<br /> That&#8217;s over now &#8211; thanks to the nice <a href="http://forum.apc.io/profile/4107/hari" target="_blank">forum member Hari</a>, who  … <a href="http://hmastuff.com/blog/apcrock"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; margin: 5px 10px;" alt="Linux on APC Rock 8950" src="http://hmastuff.com/rockpingu.jpg" width="250" height="289" /></p>
<p>For a long time the APC Rock 8950 was a huge disappointment due to no available Linux image for it.<br />
That&#8217;s over now &#8211; thanks to the nice <a href="http://forum.apc.io/profile/4107/hari" target="_blank">forum member Hari</a>, who provided a backup of his image and much help in getting it working for me, I&#8217;m able to share the image here.</p>
<p><strong>Related APC forum thread:</strong> <a href="http://forum.apc.io/discussion/342/apc-rock-8950-non-android-distribution" target="_blank">http://forum.apc.io/discussion/342/apc-rock-8950-non-android-distribution</a></p>
<p><strong>Hari&#8217;s blog post about APC Rock:</strong> <a href="http://www.agocontrol.com/2013/05/very-bad-experience-with-linux-on-via-apc-rock/" target="_blank">http://www.agocontrol.com/2013/05/very-bad-experience-with-linux-on-via-apc-rock/</a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>Latest version (v2): Debian Wheezy &#8211; incl. auto-boot+ethernet fix (2.5 GB): <a href="http://hmastuff.com/apcrock/apcrock-4gb.v2.img.zip" target="_blank">apcrock-4gb.v2.img.zip</a></strong></p>
<p>This version should auto-boot into Linux, so that no serial connection or modifications of the boot process are necessary. The ethernet problem (occuring in v1 of the image) has been also fixed in this version.</p>
<p>The system will try to get a network IP from your local DHCP server, you can then connect via SSH to it through port 22. Due to missing graphic drivers from Wondermedia, all you will see when plugging in a screen into the boards HDMI or VGA port is the APC logo.</p>
<p><strong>Root password: apc</strong></p>
<p>Known issues: No HDMI+VGA output, possible problems with repartitioning/resizing filesystem</p>
<p>I&#8217;m open for suggestions on how to improve the image, so I can repack and reupload improved versions here.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>Previous version (v1): Debian Wheezy (2.5 GB): <a href="http://hmastuff.com/apcrock/apcrock-4gb.img.bz2" target="_blank">apcrock-4gb.img.bz2</a></strong><br />
To get this version booting, you&#8217;ll need to put this <a href="http://hmastuff.com/apcrock/scriptcmd" target="_blank">scriptcmd file</a> on the FAT partition of the SD-Card (watch out &#8211; some browsers save the file as .txt file instead without extension, as needed). The alternative is to break the auto-boot process by plugging a USB/RS232 3, 3V TTL adapter cable into the debug pins of the board (bottom right). The order I had to use with my cable was <a href="http://hmastuff.com/debugorder.jpg" target="_blank">black+empty+white+green</a>. You can then connect via tools like e.g. Putty to this serial connection and break the boot process by pressing a key when prompted and then modify the boot options like this:</p>
<div>
<pre><span style="font-size: 12px;">setenv bootcmd "mmcinit 0; fatload mmc 0:1 0x01000000 uImage 500000; bootm 0x01000000"
setenv bootargs "mem=416M root=/dev/mmcblk0p3 rw rootfstype=ext3 noinitrd mbtotal=76M console=ttyS0,115200n8 rootwait"
saveenv
reset
</span></pre>
</div>
<p>Should you get problems with the ethernet (<strong>Error: &#8220;Cannot find device &#8220;eth0&#8243; &#8211; Bind socket to interface: No such device &#8211; Failed to bring up eth0.&#8221;</strong>), delete the file <strong>/etc/udev/rules.d/70-persistent-net.rules</strong> and reboot.</p>
<p><strong>Root password: apc</strong></p>
<p>Known issues: No HDMI+VGA output, possible problems with repartitioning/resizing filesystem</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/apcrock/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Alternatives to Google Play Android Market</title>
		<link>http://hmastuff.com/blog/google-play-alternatives</link>
		<comments>http://hmastuff.com/blog/google-play-alternatives#comments</comments>
		<pubDate>Sun, 31 Mar 2013 20:58:00 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[market]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=952</guid>
		<description><![CDATA[<p>Most people just download their apps at Google Play and don&#8217;t even know that there are alternatives &#8211; good ones.</p> <p><strong>For example:</strong></p> <ul> <li>Aptoide (Bazaarandroid): <a href="http://hmastuff.com/android/aptoide.apk">aptoide.apk</a> -&#62; <a href="http://www.aptoide.com/" target="_blank">http://www.aptoide.com/</a></li> <li>1Mobile Market: <a href="http://hmastuff.com/android/1mobilemarket.apk">1mobilemarket.apk</a> -&#62; <a href="http://www.1mobile.com/" target="_blank">http://www.1mobile.com/</a></li> <li>BestAppsMarket: <a href="http://hmastuff.com/android/bestappsmarket.apk">bestappsmarket.apk</a> -&#62; <a href="http://www.bestappsmarket.com/" target="_blank">http://www.bestappsmarket.com/</a></li> <li>Amazon Apps Market: <a  … <a href="http://hmastuff.com/blog/google-play-alternatives"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Most people just download their apps at Google Play and don&#8217;t even know that there are alternatives &#8211; good ones.</p>
<p><strong>For example:</strong></p>
<ul>
<li>Aptoide (Bazaarandroid): <a href="http://hmastuff.com/android/aptoide.apk">aptoide.apk</a> -&gt; <a href="http://www.aptoide.com/" target="_blank">http://www.aptoide.com/</a></li>
<li>1Mobile Market: <a href="http://hmastuff.com/android/1mobilemarket.apk">1mobilemarket.apk</a> -&gt; <a href="http://www.1mobile.com/" target="_blank">http://www.1mobile.com/</a></li>
<li>BestAppsMarket: <a href="http://hmastuff.com/android/bestappsmarket.apk">bestappsmarket.apk</a> -&gt; <a href="http://www.bestappsmarket.com/" target="_blank">http://www.bestappsmarket.com/</a></li>
<li>Amazon Apps Market: <a href="http://hmastuff.com/android/amazonappstore.apk">amazonappstore.apk</a> -&gt; <a href="http://www.amazon.com/appstore" target="_blank">http://www.amazon.com/appstore</a></li>
<li>GetJar Market: <a href="http://hmastuff.com/android/getjarmarket.apk">getjar.apk</a> -&gt; <a href="http://www.getjar.com/" target="_blank">http://www.getjar.com/</a></li>
</ul>
<p>Found more recommendable Android app markets? Leave a comment <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/google-play-alternatives/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Waco &#8211; A New Revelation</title>
		<link>http://hmastuff.com/blog/waco-new-revelation-documentary</link>
		<comments>http://hmastuff.com/blog/waco-new-revelation-documentary#comments</comments>
		<pubDate>Sun, 31 Mar 2013 15:16:42 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[documentary]]></category>
		<category><![CDATA[terror]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[waco]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=967</guid>
		<description><![CDATA[<p>Speaking of <a href="http://hmastuff.com/blog/9-11-inside-wtc-documentary">good documentaries</a>, here&#8217;s another one. It&#8217;s about the &#8220;Waco&#8221; incident in Texas, see <a href="http://en.wikipedia.org/wiki/Waco_siege" target="_blank">wiki article</a>. It&#8217;s a must-see.</p>]]></description>
				<content:encoded><![CDATA[<p>Speaking of <a href="http://hmastuff.com/blog/9-11-inside-wtc-documentary">good documentaries</a>, here&#8217;s another one. It&#8217;s about the &#8220;Waco&#8221; incident in Texas, see <a href="http://en.wikipedia.org/wiki/Waco_siege" target="_blank">wiki article</a>. It&#8217;s a must-see.</p>
<!-- Begin - Secure HTML5 Video Player -->
<div class='video-js-box sh5vp-video-box hu-css'>
<video class='video-js sh5vp-video' width='544' height='400' poster="http://hmastuff.com/videos/Waco-A-New-Revelation.png" controls="controls" preload="none"   >
<source src="http://proxy.hmastuff.com/videos/Waco-A-New-Revelation.mp4" type="video/mp4" />
<object id='vjs-ff-http://proxy-hmastuff-com/videos/Waco-A-New-Revelation' class='vjs-flash-fallback'  width='544' height='400' type='application/x-shockwave-flash' data='http://hmastuff.com/blog/wp-content/plugins/secure-html5-video-player/flowplayer/flowplayer-3.2.7.swf'>
<param name='movie' value='http://hmastuff.com/blog/wp-content/plugins/secure-html5-video-player/flowplayer/flowplayer-3.2.7.swf' />
<param name='wmode' value='transparent' />
<param name='allowfullscreen' value='true' />
<param name='flashvars' value='config={"playlist":[ "http%3A%2F%2Fhmastuff.com%2Fvideos%2FWaco-A-New-Revelation.png",  {"url": "http%3A%2F%2Fproxy.hmastuff.com%2Fvideos%2FWaco-A-New-Revelation.mp4" ,"autoPlay":false ,"autoBuffering":false }]}' />
<img src='http://hmastuff.com/videos/Waco-A-New-Revelation.png' width='544' height='400' alt='Poster Image' title='No video playback capabilities.' />
</object>
</video>
</div>
<!-- End - Secure HTML5 Video Player -->

]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/waco-new-revelation-documentary/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://proxy.hmastuff.com/videos/Waco-A-New-Revelation.mp4" length="844688136" type="video/mp4" />
		</item>
		<item>
		<title>9/11 &#8211; Inside WTC &#8211; Documentary (Naudet)</title>
		<link>http://hmastuff.com/blog/9-11-inside-wtc-documentary</link>
		<comments>http://hmastuff.com/blog/9-11-inside-wtc-documentary#comments</comments>
		<pubDate>Fri, 29 Mar 2013 11:58:46 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[9/11]]></category>
		<category><![CDATA[footage]]></category>
		<category><![CDATA[terror]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wtc]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=928</guid>
		<description><![CDATA[<p>Although it&#8217;s now almost 12 years since the event, and everybody was bombarded with footage, watched videos over and over again &#8211; this one is a must-see.<br /> If you haven&#8217;t seen this documentary yet which was actually planned by the 2 French Naudet brothers to be just about the  … <a href="http://hmastuff.com/blog/9-11-inside-wtc-documentary"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Although it&#8217;s now almost 12 years since the event, and everybody was bombarded with footage, watched videos over and over again &#8211; this one is a must-see.<br />
If you haven&#8217;t seen this documentary yet which was actually planned by the 2 French Naudet brothers to be just about the daily life of a firefighters squad, and then turned into one of the most important documentaries ever &#8211; then it&#8217;s time. It&#8217;s the only footage existing that shows the collapse of the towers from within them.</p>
<p>I ripped the DVD to get the best quality and removed the black borders, that means this video has a higher quality than all other versions you&#8217;ll find online. Best viewed with Firefox or Chrome.</p>
<!-- Begin - Secure HTML5 Video Player -->
<div class='video-js-box sh5vp-video-box hu-css'>
<video class='video-js sh5vp-video' width='712' height='388' poster="http://hmastuff.com/videos/9-11-Inside-The-WTC-Naudet-Documentary.png" controls="controls" preload="none"   >
<source src="http://proxy.hmastuff.com/videos/9-11-Inside-The-WTC-Naudet-Documentary.mp4" type="video/mp4" />
<object id='vjs-ff-http://proxy-hmastuff-com/videos/9-11-Inside-The-WTC-Naudet-Documentary' class='vjs-flash-fallback'  width='712' height='388' type='application/x-shockwave-flash' data='http://hmastuff.com/blog/wp-content/plugins/secure-html5-video-player/flowplayer/flowplayer-3.2.7.swf'>
<param name='movie' value='http://hmastuff.com/blog/wp-content/plugins/secure-html5-video-player/flowplayer/flowplayer-3.2.7.swf' />
<param name='wmode' value='transparent' />
<param name='allowfullscreen' value='true' />
<param name='flashvars' value='config={"playlist":[ "http%3A%2F%2Fhmastuff.com%2Fvideos%2F9-11-Inside-The-WTC-Naudet-Documentary.png",  {"url": "http%3A%2F%2Fproxy.hmastuff.com%2Fvideos%2F9-11-Inside-The-WTC-Naudet-Documentary.mp4" ,"autoPlay":false ,"autoBuffering":false }]}' />
<img src='http://hmastuff.com/videos/9-11-Inside-The-WTC-Naudet-Documentary.png' width='712' height='388' alt='Poster Image' title='No video playback capabilities.' />
</object>
</video>
</div>
<!-- End - Secure HTML5 Video Player -->

]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/9-11-inside-wtc-documentary/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://proxy.hmastuff.com/videos/9-11-Inside-The-WTC-Naudet-Documentary.mp4" length="647896925" type="video/mp4" />
		</item>
		<item>
		<title>Getting VPN to work on Proxmox OpenVZ container (VPS)</title>
		<link>http://hmastuff.com/blog/openvpn-on-proxmox-openvz-container</link>
		<comments>http://hmastuff.com/blog/openvpn-on-proxmox-openvz-container#comments</comments>
		<pubDate>Tue, 26 Mar 2013 17:14:33 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[container]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[openvz]]></category>
		<category><![CDATA[proxmox]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=905</guid>
		<description><![CDATA[<p>When trying to connect via OpenVPN on my Proxmox-based OpenVZ VPS, I always received this error message:</p> <pre>SIOCSIFADDR: No such device: ERROR while getting interface flags: No such device SIOCSIFNETMASK: No such device SIOCSIFMTU: No such device SIOCSIFBRDADDR: No such device: ERROR while getting interface flags: No such device Linux  … <a href="http://hmastuff.com/blog/openvpn-on-proxmox-openvz-container"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>When trying to connect via OpenVPN on my Proxmox-based OpenVZ VPS, I always received this error message:</p>
<pre><span style="font-size: 12px;">SIOCSIFADDR: No such device: ERROR while getting interface flags: No such device
SIOCSIFNETMASK: No such device
SIOCSIFMTU: No such device
SIOCSIFBRDADDR: No such device: 
ERROR while getting interface flags: No such device
Linux ifconfig failed: external program exited with error status: 255
Exiting</span></pre>
<p>After googling a while, I found the fix for that. You need to modify the file &#8220;<strong>/etc/vz/vz.conf</strong>&#8221; on your host machine.<br />
Look for the line &#8220;<strong>## IPv4 iptables kernel modules</strong>&#8220;.<br />
The line below it should begin with &#8220;<strong>IPTABLES=</strong>&#8220;. Set it to this:</p>
<pre><span style="font-size: 12px;">IPTABLES="ipt_REJECT ipt_tos ipt_TOS ipt_LOG ip_conntrack ipt_limit ipt_multiport iptable_filter iptable_mangle ipt_TCPMSS ipt_tcpmss ipt_ttl ipt_length ipt_state iptable_nat ip_nat_ftp"</span></pre>
<p>Next, run the following commands, while replacing &#8220;<strong>VEID</strong>&#8221; with the container ID of the container you want to have access to the hosts modules. (e.g. 100, 101, etc.)</p>
<pre><span style="font-size: 12px;">vzctl set VEID --devices c:10:200:rw --save
vzctl set VEID --capability net_admin:on --save
vzctl exec VEID mknod /dev/as0t0 c 10 200
vzctl exec VEID chmod 600 /dev/as0t0</span></pre>
<p>Restart the corresponding container and try to connect to the VPN. Worked fine for me <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In case the VPN connects fine, but the OpenVPN process tells you<br />
<strong>&#8220;unable to redirect default gateway &#8212; Cannot read current default gateway from system&#8221;</strong>, just add a default route; like this:</p>
<pre><span style="font-size: 12px;">route add default dev tun0</span></pre>
<p>You can easily check your current IP before and after by running this (package &#8220;curl&#8221; is required though):</p>
<pre><span style="font-size: 12px;">curl http://checkip.dyndns.org/</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/openvpn-on-proxmox-openvz-container/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freetz custom firmware for AVM FritzBox 7270 v3 routers</title>
		<link>http://hmastuff.com/blog/freetz-firmware-for-fritzbox</link>
		<comments>http://hmastuff.com/blog/freetz-firmware-for-fritzbox#comments</comments>
		<pubDate>Wed, 13 Mar 2013 13:47:37 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[avm]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[freetz]]></category>
		<category><![CDATA[fritzbox]]></category>
		<category><![CDATA[router]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=861</guid>
		<description><![CDATA[<p><img style="border: 1px solid black; float: right; margin: 11px;" alt="Freetz" src="http://hmastuff.com/freetz_motd.png" width="231" height="95" />With the instructions from <a href="http://freetz.org/wiki/help/howtos/common/install.en" target="_blank">freetz.org</a> (<a href="http://freetz.org/wiki/help/howtos/common/newbie" target="_blank">alt. newbie version</a>) I&#8217;ve built a few firmware images for my AVM! FritzBox 7270 v3. So if you have that router and don&#8217;t want to build the firmware  … <a href="http://hmastuff.com/blog/freetz-firmware-for-fritzbox"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="border: 1px solid black; float: right; margin: 11px;" alt="Freetz" src="http://hmastuff.com/freetz_motd.png" width="231" height="95" />With the instructions from <a href="http://freetz.org/wiki/help/howtos/common/install.en" target="_blank">freetz.org</a> (<a href="http://freetz.org/wiki/help/howtos/common/newbie" target="_blank">alt. newbie version</a>) I&#8217;ve built a few firmware images for my AVM! FritzBox 7270 v3. So if you have that router and don&#8217;t want to build the firmware by yourself, you can download my version here:</p>
<ul>
<li><strong>Basic version v1.0</strong>: <a href="http://hmastuff.com/hmastuff.com_7270_v3_05.23-freetz-basic-v1.zip"><strong>hmastuff.com_7270_v3_05.23-freetz-basic-v1.zip</strong></a></li>
<li><strong>Full version v2.0: </strong><a href="http://hmastuff.com/hmastuff.com_7270_v3_05.23-freetz-full-v2.zip"><strong>hmastuff.com_7270_v3_05.23-freetz-full-v2.zip</strong></a></li>
<li><strong>Full version v3.0: </strong><a href="http://hmastuff.com/hmastuff.com_7270_v3_05.23-freetz-full-v3.zip"><strong>hmastuff.com_7270_v3_05.23-freetz-full-v3.zip</strong></a></li>
</ul>
<p>It contains all many features, plugins, modules and everything else that sounded interesting during the selection in the compiling process.</p>
<p>You might also want to check out the image by <a href="http://hehnblog.wordpress.com/">hehnblog</a>, he included his .config file, so you can use it as template for building your image. Included packages are amongst others: dsld, ip commands from the iproute package, dnsmasq, dropbear, traceroute, tcpdump, and iptables. Based on the German 3.74.05.50 image.</p>
<p><strong>Download: <a href="http://hmastuff.com/7270_v3_05.50-freetz-devel.de_20130329-122017.image_config.tar">7270_v3_05.50-freetz-devel.de_20130329-122017.image_config.tar</a></strong></p>
<p>&nbsp;</p>
<table border="0">
<tbody>
<tr>
<td><strong>Notes:</strong></p>
<ul>
<li>If the AVM webconfiguration refuses to install freetz, your options are:<br />
<strong>-</strong> switch the Annex drivers between A and B and/or remove the branding, then try again. I&#8217;ve done that with <a href="http://rukerneltool.rainerullrich.de/">ruKernel</a> (<a href="http://hmastuff.com/ruKernelTool.zip">Download).</a> It&#8217;s German but website has English tutorials<br />
<strong>-</strong> flash Freetz with <a href="http://rukerneltool.rainerullrich.de/">ruKernel</a>. I had to start it with parameter &#8220;<strong>-u2</strong>&#8221; to make the process work</li>
<li><strong>Version 1.0:</strong> Due to the size limit for images, the archive contains an .external file that you can flash within the freetz webconfiguration onto an external USB device.</li>
<li><strong>Version 2.0:</strong> This one is using the integrated Downloader for installation of apps. Plugin an USB stick, set the downloader to use <a href="http://hmastuff.com/freetz" target="_blank">http://hmastuff.com/freetz</a></li>
<li><strong>Version 3.0:</strong> Changed some settings and added even more packages.</li>
<li>Having login problems? Disable password as explained <a href="http://freetz.org/wiki/FAQ.en#HowcanidisablethepasswordfortheFreetz-Website" target="_blank"><strong>here</strong></a>.</li>
<li>I&#8217;ll keep optimizing the image and expanding its functionality and post future updates here. Let me know if you need a custom build with certain options or packages.</li>
</ul>
</td>
<td align="center"><strong>Version 2.0 + 3.0: Downloader usage to install additional apps:</strong></p>
<p style="text-align: center;"><img style="border: 1px solid black; vertical-align: top;" alt="Freetz Downloader" src="http://hmastuff.com/freetzdownloader.png" width="473" height="553" /><strong></strong></p>
<p><strong>(</strong><a href="http://hmastuff.com/freetzdownloader.png" target="_blank">enlarge<strong>)</strong></a></td>
</tr>
<tr>
<td colspan="2"><strong>Questions? </strong><a href="http://hmastuff.com/blog/freetz-firmware-for-fritzbox#respond" target="_blank"><strong>Leave a comment!</strong><br />
</a><strong><br />
Don&#8217;t know what freetz is?</strong> It&#8217;s a linux based operating system for Fritzbox routers, which is far more advanced than normal firmwares, allowing the installation of many different applications and server software, e.g. Torrent-client, VPN-clients/servers, Proxyservers/clients, etc.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/freetz-firmware-for-fritzbox/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Cutting SIM to MicroSIM to NanoSIM</title>
		<link>http://hmastuff.com/blog/cutting-sim-card</link>
		<comments>http://hmastuff.com/blog/cutting-sim-card#comments</comments>
		<pubDate>Sun, 10 Mar 2013 11:23:20 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[nano]]></category>
		<category><![CDATA[nanosim]]></category>
		<category><![CDATA[sim]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=854</guid>
		<description><![CDATA[<p><img style="margin: 11px; border: 1px solid black; float: right;" alt="Cutting instructions" src="http://hmastuff.com/nanosim.png" width="241" height="400" /></p> <p>Many cell service providers don&#8217;t send out Nano-SIM cards, which are needed for e.g. the iPad-mini. They expect you to order a normal SIM and once received, call their hotline to get the Nano version.  … <a href="http://hmastuff.com/blog/cutting-sim-card"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="margin: 11px; border: 1px solid black; float: right;" alt="Cutting instructions" src="http://hmastuff.com/nanosim.png" width="241" height="400" /></p>
<p>Many cell service providers don&#8217;t send out Nano-SIM cards, which are needed for e.g. the iPad-mini. They expect you to order a normal SIM and once received, call their hotline to get the Nano version. This can take weeks and of course is annoying.</p>
<p>I found this image very useful, which helped me cutting down my SIM first to a MicroSIM and then down to a NanoSIM. Make sure to rather cut less and often than much.</p>
<p>Work on it till you can insert the NanoSIM into the cardholder, so that it&#8217;s not falling out by itself.<br />
Worked fine for me <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/cutting-sim-card/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PiTool cmd v0.1 &#8211; Command-line tool for the Raspberry Pi</title>
		<link>http://hmastuff.com/blog/pitool-cmd</link>
		<comments>http://hmastuff.com/blog/pitool-cmd#comments</comments>
		<pubDate>Sat, 09 Mar 2013 00:55:22 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=844</guid>
		<description><![CDATA[<p>Following the GUI-based <a href="http://hmastuff.com/blog/pitool">PiTool v0.2</a>, there&#8217;s <img style="border: 1px solid black; margin: 11px; float: right;" alt="PiTool v0.1 CMD" src="http://hmastuff.com/pitoolcmd.png" width="400" height="247" />now a command-line version available.</p> <p><strong>Features:<br /> </strong></p> <ul> <li>full system upgrade</li> <li>install/run hexxeh&#8217;s firmware update tool</li> <li>show CPU temperature</li> <li>show voltages</li> <li>show clock frequencies</li> <li>clear RAM</li> <li>show  … <a href="http://hmastuff.com/blog/pitool-cmd"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Following the GUI-based <a href="http://hmastuff.com/blog/pitool">PiTool v0.2</a>, there&#8217;s <img style="border: 1px solid black; margin: 11px; float: right;" alt="PiTool v0.1 CMD" src="http://hmastuff.com/pitoolcmd.png" width="400" height="247" />now a command-line version available.</p>
<p><strong>Features:<br />
</strong></p>
<ul>
<li>full system upgrade</li>
<li>install/run hexxeh&#8217;s firmware update tool</li>
<li>show CPU temperature</li>
<li>show voltages</li>
<li>show clock frequencies</li>
<li>clear RAM</li>
<li>show internal+external IP</li>
<li>show MAC address, sent+received bytes and megabytes</li>
</ul>
<p><strong>Download:</strong> <a href="http://hmastuff.com/pitoolcmd.zip">pitoolcmd.zip (142 KB)</a></p>
<p>Except for showing voltages and clock frequencies, all functions also work on various other ARM-based devices, such as Cubieboard, OLinuXino, Hackberry, ODroidX etc.</p>
<p>As always, I&#8217;m open for suggestions on what other things might be useful to add to the app &#8211; via comment or <a  href="javascript:smae_decode('cGV0ZUBobWFzdHVmZi5jb20=');" >&#101;&#109;&#097;&#105;&#108;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/pitool-cmd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternate Universe &#8211; a MUD taking worth a look at! :)</title>
		<link>http://hmastuff.com/blog/alternate-universe-mud</link>
		<comments>http://hmastuff.com/blog/alternate-universe-mud#comments</comments>
		<pubDate>Wed, 06 Mar 2013 17:32:14 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[mud]]></category>
		<category><![CDATA[multi-user-dungeon]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[telnet]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=814</guid>
		<description><![CDATA[<p>I was never really into MUD games, found &#8216;em boring without graphics. But this one, &#8220;<a href="http://alternateuniverse.dyndns.org/index.html" target="_blank">Alternate Universe</a>&#8220;, is really taking a look at. You have to solve a puzzle at the beginning (hint: look for a button to push *g*), then you come into the area where other  … <a href="http://hmastuff.com/blog/alternate-universe-mud"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>I was never really into MUD games, found &#8216;em boring without graphics. But this one, &#8220;<a href="http://alternateuniverse.dyndns.org/index.html" target="_blank">Alternate Universe</a>&#8220;, is really taking a look at. You have to solve a puzzle at the beginning (hint: look for a button to push *g*), then you come into the area where other players are. The possibilities are basically endless &#8211; and the most interesting part &#8211; its server runs on a Raspberry Pi!<br />
To play, just telnet into <strong>alternateuniverse.dyndns.org 1063</strong> &#8211; or use the applet below:</p>
<p><iframe src="http://hmastuff.com/applet.html" height="385" width="605"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/alternate-universe-mud/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Raspberry Pi as a VPN router alternative</title>
		<link>http://hmastuff.com/blog/pi-as-vpn-router-alternative</link>
		<comments>http://hmastuff.com/blog/pi-as-vpn-router-alternative#comments</comments>
		<pubDate>Tue, 05 Mar 2013 15:01:09 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[pptp]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=809</guid>
		<description><![CDATA[<p>I&#8217;ve written 2 tutorials on how you can use any Linux device, e.g. the Raspberry Pi, but also similar devices like <a href="https://play.google.com/store/apps/details?id=ru.meefik.linuxdeploy&#38;feature=search_result" target="_blank">Linux-on-Android</a> or even a virtual machine as VPN router.</p> <p><a href="http://wiki.hidemyass.com/Tutorials:Using_Proxyserver_as_VPN_router_alternative" target="_blank">Tutorial No. 1</a> explains how to use a local proxyserver on your linux device to share  … <a href="http://hmastuff.com/blog/pi-as-vpn-router-alternative"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve written 2 tutorials on how you can use any Linux device, e.g. the Raspberry Pi, but also similar devices like <a href="https://play.google.com/store/apps/details?id=ru.meefik.linuxdeploy&amp;feature=search_result" target="_blank">Linux-on-Android</a> or even a virtual machine as VPN router.</p>
<p><a href="http://wiki.hidemyass.com/Tutorials:Using_Proxyserver_as_VPN_router_alternative" target="_blank">Tutorial No. 1</a> explains how to use a local proxyserver on your linux device to share an OpenVPN connection along your network. You can even connect from outside of your network; in addition, this allows even devices with no VPN support to use the VPN connection. You will just need a little tool called tinyproxy, allow the client IPs and + needed ports in the tinyproxy.conf and connect to the VPN.</p>
<p><a href="http://wiki.hidemyass.com/Tutorials:Using_local_PPTP_server_as_VPN_router_alternative" target="_blank">Tutorial No. 2</a> explains how to use a local PPTP server on your linux device to share an OpenVPN connection along your network. You can even connect from outside of your network; this method has the advantage that certain apps will not fallback to use your real IP, and your complete system is secured by the VPN &#8211; instead of only applications that support the use of proxies.</p>
<p><strong>See here:</strong></p>
<ul>
<li><a href="http://wiki.hidemyass.com/Tutorials:Using_Proxyserver_as_VPN_router_alternative" target="_blank">http://wiki.hidemyass.com/Tutorials:Using_Proxyserver_as_VPN_router_alternative</a></li>
<li><a href="http://wiki.hidemyass.com/Tutorials:Using_local_PPTP_server_as_VPN_router_alternative" target="_blank">http://wiki.hidemyass.com/Tutorials:Using_local_PPTP_server_as_VPN_router_alternative</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/pi-as-vpn-router-alternative/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[UPDATE!!] The Via APC Rock &#8211; disappointing!</title>
		<link>http://hmastuff.com/blog/apc-rock-8950</link>
		<comments>http://hmastuff.com/blog/apc-rock-8950#comments</comments>
		<pubDate>Sun, 03 Mar 2013 13:27:36 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apc rock]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sbc]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=802</guid>
		<description><![CDATA[<p><strong><img style="float: right; margin: 11px;" alt="APC Rock 8950" src="http://hmastuff.com/apcrock.jpg" width="350" height="181" /></strong></p> <p><strong>UPDATE:</strong> There is a working Linux-image for the APC Rock 8950 available now. Check my post &#8220;<a href="http://hmastuff.com/blog/apcrock"><strong>Finally a working Linux image for the APC Rock 8950</strong></a>&#8221; for downloads and info.</p> <p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p> <p>I got my<a href="http://apc.io/products/rock/" target="_blank"> APC  … <a href="http://hmastuff.com/blog/apc-rock-8950"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><strong><img style="float: right; margin: 11px;" alt="APC Rock 8950" src="http://hmastuff.com/apcrock.jpg" width="350" height="181" /></strong></p>
<p><strong><span style="color: red;">UPDATE:</span></strong> There is a working Linux-image for the APC Rock 8950 available now. Check my post &#8220;<a href="http://hmastuff.com/blog/apcrock"><strong>Finally a working Linux image for the APC Rock 8950</strong></a>&#8221; for downloads and info.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>I got my<a href="http://apc.io/products/rock/" target="_blank"> APC Rock 8950</a> and must admit, I&#8217;m pretty disappointed so far. Although the hardware is quite good (though no comparison to the genius <a href="http://hmastuff.com/blog/odroid-x2">ODroid-X2</a>!), the support by Via is extremely poor so far.</p>
<p>The main problem is that there is no working Linux image available for the APC Rock 8950 yet, and installing e.g. the <a href="http://www.raspbian.org/ApricotImages" target="_blank">Apricot image</a> does not work, because it&#8217;s made for the predecessor, <a href="http://apc.io/products/8750a" target="_blank">APC 8750</a>.</p>
<p>In addition, it&#8217;s not possible to root the APC Rock 8950s preinstalled Android system. I&#8217;ve tried all avail. rooting tools, no luck. The <a href="http://forum.apc.io/discussion/77/how-to-root-your-apc-using-adb-included-usb-and-zerg-rush" target="_blank">rooting tutorial from the APC forums</a> also won&#8217;t work, guess what? Yea, it&#8217;s been made for the APC 8750 and the differences are too big.</p>
<p>I&#8217;ll re-review this board once I find a working Linux image or at least a proper way to root the boards Android system, so I can install Linux embedded via the <a href="https://play.google.com/store/apps/details?id=ru.meefik.linuxdeploy" target="_blank">Linux Deploy</a> app.</p>
<p>My advise: Get the <a href="http://apc.io/products/8750a" target="_blank">APC 8750</a> if you don&#8217;t want to buy an Android-only singleboard-computer.</p>
<p><strong>Specifications of the APC Rock 8950:</strong></p>
<p><strong>Model:</strong> Via APC Rock 8950<br />
<strong>OS:</strong> Android 4.0 (PC System)<br />
<strong>CPU:</strong> Chip VIA ARM Cortex-A9 @800Mhz Processor<br />
<strong>Memory:</strong> DDR3 512MB Memory<br />
<strong>Integrated storage:</strong> 4GB NAND Flash<br />
<strong>Graphics:</strong> Built-in 2D/3D Graphic<br />
Resolution up to 1080p<br />
Input and Output: HDMI, VGA<br />
<strong>Ports:</strong> 2x USB 2.0, 1x microUSB (OTG)<br />
Audio out / Mic in<br />
microSD Slot<br />
<strong>Network:</strong> 10/100 Ethernet<br />
<strong>Size:</strong> 170 x 85mm (W x H)</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/apc-rock-8950/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Debian image for the ODroid-X2</title>
		<link>http://hmastuff.com/blog/odroid-x2</link>
		<comments>http://hmastuff.com/blog/odroid-x2#comments</comments>
		<pubDate>Thu, 28 Feb 2013 13:25:59 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=790</guid>
		<description><![CDATA[<p><img style="float: right; margin: 11px;" alt="ODroid-X2" src="http://hmastuff.com/odroidx2.png" width="350" height="248" />If you&#8217;re in need of a Debian image for the ODroid-X2 &#8211; you can just use the one from the X, download here: <a href="http://hmastuff.com/odroidx-debian-R2.rar">odroidx-debian-R2.rar</a> (<a href="magnet:?xt=urn:btih:D2C2A0D822C69A0A8B13B060298747281EE22764&#38;dn=odroidx-debian-R2.rar&#38;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80&#38;tr=udp%3a%2f%2ftracker.publicbt.com%3a80&#38;tr=udp%3a%2f%2ftracker.ccc.de%3a80&#38;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&#38;tr=udp%3a%2f%2ftracker.publicbt.com%3a80%2fannounce&#38;tr=http%3a%2f%2ftracker.ex.ua%2fannounce&#38;tr=http%3a%2f%2ftracker.torrentbay.to%3a6969%2fannounce&#38;tr=udp%3a%2f%2ftracker.istole.it%3a80&#38;tr=http%3a%2f%2ffr33dom.h33t.com%3a3310%2fannounce&#38;tr=http%3a%2f%2fexodus.desync.com%3a6969%2fannounce">Magnet</a> / <a href="http://hmastuff.com/odroidx-debian-R2.rar.torrent">Torrent</a>). User/Pass is &#8220;<strong>odroidx</strong>&#8220;.</p> <p>The image contains a 3 GB filesystem. When  … <a href="http://hmastuff.com/blog/odroid-x2"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; margin: 11px;" alt="ODroid-X2" src="http://hmastuff.com/odroidx2.png" width="350" height="248" />If you&#8217;re in need of a Debian image for the ODroid-X2 &#8211; you can just use the one from the X, download here: <a href="http://hmastuff.com/odroidx-debian-R2.rar">odroidx-debian-R2.rar</a> (<a href="magnet:?xt=urn:btih:D2C2A0D822C69A0A8B13B060298747281EE22764&amp;dn=odroidx-debian-R2.rar&amp;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80&amp;tr=udp%3a%2f%2ftracker.publicbt.com%3a80&amp;tr=udp%3a%2f%2ftracker.ccc.de%3a80&amp;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&amp;tr=udp%3a%2f%2ftracker.publicbt.com%3a80%2fannounce&amp;tr=http%3a%2f%2ftracker.ex.ua%2fannounce&amp;tr=http%3a%2f%2ftracker.torrentbay.to%3a6969%2fannounce&amp;tr=udp%3a%2f%2ftracker.istole.it%3a80&amp;tr=http%3a%2f%2ffr33dom.h33t.com%3a3310%2fannounce&amp;tr=http%3a%2f%2fexodus.desync.com%3a6969%2fannounce">Magnet</a> / <a href="http://hmastuff.com/odroidx-debian-R2.rar.torrent">Torrent</a>). User/Pass is &#8220;<strong>odroidx</strong>&#8220;.</p>
<p>The image contains a 3 GB filesystem. When flashing it on a bigger SDcard using <a href="http://hmastuff.com/win32diskimager.zip">w32diskimager (odroid edition)</a>,  you can resize the filesystem later on the X2 by running &#8220;<strong>resize2fs /dev/mmcblk0p3</strong>&#8221; (not working? Then you need to recreate the 3rd partition. <a href="http://hmastuff.com/x2resizelog.txt" target="_blank">Here&#8217;s a log</a> that shows you how I did it)</p>
<p>Don&#8217;t know what the ODroid-X2 is? It&#8217;s the fastest and best single-board-computer you can get at the moment. Where to get it? Here: <a href="http://www.hardkernel.com/renewal_2011/products/prdt_info.php?g_code=G135235611947" target="_blank">hardkernel.com<br />
</a></p>
<p><span style="font-size: 14px;"><strong>Specifications:</strong></span></p>
<p><strong>Processor:</strong>     Samsung Exynos4412 Cortex-A9 Quad Core 1.7Ghz with 1MB L2 cache<br />
<strong>Memory:</strong>     2GB LP-DDR2 880Mega data rate<br />
<strong>3D Accelerator:</strong>     Mali-400 Quad Core 440MHz<br />
<strong>Video:</strong>     supports 1080p via HDMI cable(H.264+AAC based MP4 container format)<br />
<strong>Video Out:</strong>     micro HDMI connector / RGB-24bit LCD interface port<br />
<strong>Audio:</strong>     Standard 3.5mm headphone jack and microphone jack<br />
<strong>LAN:</strong>     10/100Mbps Ethernet with RJ-45 Jack ( Auto-MDIX support)<br />
<strong>USB2.0 Host:</strong>      High speed standard A type connector x 6 ports<br />
<strong>USB2.0 Device:  </strong>    ADB/Mass storage(Micro USB)<br />
<strong>Display:</strong>     HDMI monitor / LCD panel with RGB or LVDS interface<br />
<strong>Storage:</strong>     Full size SDHC Card Slot, eMMC module socket<br />
<strong>Power:</strong>    5V 2A Power<br />
<strong>System Software:</strong>     u-boot 2010.12, Kernel 3.0.15, Android4.0.x(ICS)<br />
<strong>Size:</strong>      90 x 94 mm</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/odroid-x2/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Bitcoin mining on arm/armhf devices such as the Raspberry Pi</title>
		<link>http://hmastuff.com/blog/bitcoin-mining-on-raspberry-pi</link>
		<comments>http://hmastuff.com/blog/bitcoin-mining-on-raspberry-pi#comments</comments>
		<pubDate>Sun, 24 Feb 2013 13:10:57 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=768</guid>
		<description><![CDATA[<p><strong>Method 1) Mining via Android via LTCMiner</strong><br /> If you have a single-board-computer that runs Android (such as the Cubieboard, Gooseberry, APC Rock, OLinuXino, Hackberry etc.), you can just use the app <a href="https://play.google.com/store/apps/details?id=com.ltcminer.miner" target="_blank"><strong>LTCMiner</strong></a>. For downloads, see my blog post “<a href="http://hmastuff.com/blog/finally-a-working-bitcoin-miner-for-android">Finally a working bitcoin miner for Android</a>”</p> <p><strong>Method  … <a href="http://hmastuff.com/blog/bitcoin-mining-on-raspberry-pi"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><strong>Method 1) Mining via Android via LTCMiner</strong><br />
If you have a single-board-computer that runs Android (such as the Cubieboard, Gooseberry, APC Rock, OLinuXino, Hackberry etc.), you can just use the app <a href="https://play.google.com/store/apps/details?id=com.ltcminer.miner" target="_blank"><strong>LTCMiner</strong></a>. For downloads, see my blog post “<a href="http://hmastuff.com/blog/finally-a-working-bitcoin-miner-for-android">Finally a working bitcoin miner for Android</a>”</p>
<p><strong>Method 2) Mining on Linux via UFAMiner</strong></p>
<pre>wget <a href="http://darkgamex.ch/ufasoft/ufasoft_bitcoin-miner-0.32.tar.lzma">http://darkgamex.ch/ufasoft/ufasoft_bitcoin-miner-0.32.tar.lzma</a>
apt-get install -y --force-yes lzma libpcre3-dev
tar --lzma -xvpf ufasoft_bitcoin-miner-0.32.tar.lzma
cd ufasoft_bitcoin-miner-0.32
./configure
make
make install
./bitcoin-miner -o http://Username:Password@pit.deepbit.net:8332</pre>
<p><strong>Method 3) Mining on Linux via CPUMiner</strong></p>
<pre>
wget <a href="https://github.com/jgarzik/cpuminer/archive/master.zip" target="_blank">https://github.com/jgarzik/cpuminer/archive/master.zip</a>
unzip master.zip
cd cpuminer-master
apt-get install -y --force-yes curl libjansson-dev libjansson4 automake autoconf
./autogen.sh CFLAGS="-O3 -Wall -msse2" 
./configure
make
make install
./minerd --url http://pit.deepbit.net:8332 --userpass Username:Password</pre>
<hr />
<p>&nbsp;</p>
<p>You might want to use <strong><a href="https://github.com/slush0/stratum-mining-proxy" target="_blank">StratumProxy</a></strong> rather than mining on a Pool directly, to make sure your miner is using the best mining methods.<br />
Unfortunately devices like the Pi, OLinuXino, Hackberry, Cubieboard etc. only give around 290 khash/sec.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/bitcoin-mining-on-raspberry-pi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Measuring the maximal network throughput of your network devices</title>
		<link>http://hmastuff.com/blog/how-to-measure-your-networks-max-bandwidth</link>
		<comments>http://hmastuff.com/blog/how-to-measure-your-networks-max-bandwidth#comments</comments>
		<pubDate>Sat, 23 Feb 2013 01:04:32 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[throughput]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=744</guid>
		<description><![CDATA[<p><img style="float: right; margin: 15px;" alt="Speed check" src="http://hmastuff.com/speedtest.jpg" width="190" height="191" />There are times when you might want to measure the maximal network throughput / bandwidth of your network devices via LAN or WLAN. This is especially useful if you want to compare the results between e.g. your wired Raspberry Pi,  … <a href="http://hmastuff.com/blog/how-to-measure-your-networks-max-bandwidth"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; margin: 15px;" alt="Speed check" src="http://hmastuff.com/speedtest.jpg" width="190" height="191" />There are times when you might want to measure the maximal network throughput / bandwidth of your network devices via LAN or WLAN. This is especially useful if you want to compare the results between e.g. your wired Raspberry Pi, the wireless OLinuxino, Hackberry&#8230; or you just want to check if getting expensive network cables was worth it.</p>
<p>A pretty easy tool for doing this is PCATTCP / TTCP, download it here -&gt;</p>
<p><strong>Windows:</strong> <a href="http://www.pcausa.com/Utilities/pcattcp/PCATTCP-0114.zip" target="_blank">http://www.pcausa.com/Utilities/pcattcp/PCATTCP-0114.zip</a><br />
<strong>Linux (source):</strong> <a href="http://www.pcausa.com/Utilities/pcattcp/LinuxTTCP.zip" target="_blank">http://www.pcausa.com/Utilities/pcattcp/LinuxTTCP.zip</a><br />
(to compile the Linux source, just enter &#8220;make&#8221; and then start it via &#8220;<strong>./ttcp</strong>&#8220;)</p>
<p>The how-to can be found @ <a href="http://www.pcausa.com/Utilities/pcattcp.htm" target="_blank">http://www.pcausa.com/Utilities/pcattcp.htm</a><br />
But it&#8217;s pretty easy. Here&#8217;s what you need to enter:</p>
<p><strong>To let a host wait for a TCP test:</strong> ./ttcp -r<br />
<strong>To let a host wait for a UDP test (faster):</strong> ./ttcp -r -u</p>
<p><strong>To do a TCP test with a host:</strong> ./ttcp -t 192.168.0.2<br />
<strong>To do a UDP test with a host (faster):</strong> ./ttcp -t -u 192.168.0.2</p>
<p>A possible output looks like this:</p>
<pre>ttcp-t: buflen=8192, nbuf=2048, align=16384/0, port=5001  udp  -&gt; 192.168.0.2
ttcp-t: socket
ttcp-t: 16777216 bytes in 5.59 real seconds = 2928.80 KB/sec +++
ttcp-t: 2054 I/O calls, msec/call = 2.79, calls/sec = 367.17
ttcp-t: 0.0user 1.9sys 0:05real 35% 0i+0d 290maxrss 0+3pf 162+29018csw</pre>
<p>For lots of Windows-related speed tweaks, see this Wiki article: <a href="http://wiki.hidemyass.com/Speed" target="_blank"><strong>Speed</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/how-to-measure-your-networks-max-bandwidth/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring your Raspberry Pis as a cluster using Ganglia</title>
		<link>http://hmastuff.com/blog/overviewing-your-raspberry-pis-with-ganglia</link>
		<comments>http://hmastuff.com/blog/overviewing-your-raspberry-pis-with-ganglia#comments</comments>
		<pubDate>Thu, 21 Feb 2013 17:29:41 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[ganglia]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[overview]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[webinterface]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=703</guid>
		<description><![CDATA[<p><strong><img style="float: right; margin: 11px;" alt="Ganglia graphs" src="http://hmastuff.com/ganglia.png" width="450" height="285" /></strong>If you own multiple Raspberry Pis or other single-board-computers, you might want to have a way to view and compare their processor and network usage as well as other system-related data.</p> <p>A good tool for this is Ganglia, and it&#8217;s  … <a href="http://hmastuff.com/blog/overviewing-your-raspberry-pis-with-ganglia"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><strong><img style="float: right; margin: 11px;" alt="Ganglia graphs" src="http://hmastuff.com/ganglia.png" width="450" height="285" /></strong>If you own multiple Raspberry Pis or other single-board-computers, you might want to have a way to view and compare their processor and network usage as well as other system-related data.</p>
<p>A good tool for this is Ganglia, and it&#8217;s pretty easy to setup; just run<br />
<strong>apt-get install ganglia-monitor gmetad</strong><br />
on every computer that you want monitored. Ganglia is pretty lightweight, uses just around 5% CPU usage every few seconds.</p>
<p>Then you need to select a device that should host the webinterface to display all the data.<br />
Make sure this device has apache2 and php5 installed (by just running &#8220;<strong>apt-get install apache2 php5</strong>&#8220;). On this device you extract the content of the &#8220;ganglia-web-3.5.7&#8243; folder from <a href="http://sourceforge.net/projects/ganglia/files/ganglia-web/3.5.7/" target="_blank"><strong>this archive</strong> (download)</a> into the <strong>/var/www</strong> folder.</p>
<p>That&#8217;s pretty much it &#8211; when now accessing the selected device via browser, you should see the Ganglia webinterface. It will automatically pick up all devices in the network that have Ganglia installed, and regularly produce informative graphs and usage data.<br />
See their wiki for a quick-start guide:<br />
<a href="http://sourceforge.net/apps/trac/ganglia/wiki/ganglia_quick_start" target="_blank">http://sourceforge.net/apps/trac/ganglia/wiki/ganglia_quick_start</a></p>
<p>If you&#8217;re looking for a good way to administrate and configure your Pi via webinterface, you should use Webmin; see my post <a href="http://hmastuff.com/blog/cpanel-vs-webmin" target="_blank"><strong>CPanel vs. Webmin</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/overviewing-your-raspberry-pis-with-ganglia/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the A13-OLinuXino-WIFI to work</title>
		<link>http://hmastuff.com/blog/getting-the-a13-olinuxino-wifi-to-work</link>
		<comments>http://hmastuff.com/blog/getting-the-a13-olinuxino-wifi-to-work#comments</comments>
		<pubDate>Tue, 19 Feb 2013 18:06:27 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[olinuxino]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=655</guid>
		<description><![CDATA[<p>Today I received my <a href="https://www.olimex.com/Products/OLinuXino/A13/A13-OLinuXino-WIFI/" target="_blank">A13-OLinuXino-WIFI</a>, mainly to be able to compare it with the Raspberry Pi and Cubieboard. As with the Cubieboard, Android is preinstalled on the NAND integrated storage of the OLinuXino A13. I decided to get the Wifi version (just $10 more) since I liked the  … <a href="http://hmastuff.com/blog/getting-the-a13-olinuxino-wifi-to-work"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Today I received my <a href="https://www.olimex.com/Products/OLinuXino/A13/A13-OLinuXino-WIFI/" target="_blank">A13-OLinuXino-WIFI</a>, mainly to be able to compare it with the Raspberry Pi and Cubieboard. As with the Cubieboard, Android is preinstalled on the NAND integrated storage of the OLinuXino A13. I decided to get the Wifi version (just $10 more) since I liked the idea of having a single-computer-board with WLAN without having to use an external WLAN dongle.</p>
<p>Now to spare you some trouble, I recommend to install the &#8220;<a href="http://files.wisch.org/olinuxino_xfce-r10-video.zip" rel="nofollow">Video-enabled A13 Debian Image, R10</a>&#8221; (<a href="http://hmastuff.com/olinuxino_xfce-r10-video.7z">mirror</a> / <a href="http://flashmirrors.com/files/9v6gygksvhc3uj3/olinuxino_xfce-r10-video.7z" target="_blank">Flashmirrors</a>), otherwise you&#8217;ll have no video output. For other images, see:<br />
<a href="https://www.olimex.com/wiki/Prebuilt_SD_card_images_running_debian#Images" target="_blank">https://www.olimex.com/wiki/Prebuilt_SD_card_images_running_debian#Images</a></p>
<p>The user/pass are: <strong>root : olinuxino</strong> and there&#8217;s also a <strong>olinuxino : olinuxino</strong> user.<br />
Once logged in, you might want to change the password via &#8220;passwd&#8221;.<br />
Now you need to configure the network for the WLAN to work.<br />
Run &#8220;<strong>ifconfig -a</strong>&#8220;. It should show you a loopback, a tun and a wlan device.<br />
Important is here the number behind &#8220;<strong>wlan</strong>&#8220;, so &#8220;<strong>wlan1</strong>&#8220;, &#8220;<strong>wlan2</strong>&#8221; etc.</p>
<p>Next, open <strong>/etc/network/interfaces</strong> with nano or whatever editor you prefer.<br />
Change the number behind the &#8220;<strong>wlan</strong>&#8221; here accordingly as ifconfig has shown you, so if the interfaces file says &#8220;<strong>wlan1</strong>&#8221; and ifconfig told you &#8220;<strong>wlan2</strong>&#8220;, make it &#8220;<strong>wlan2</strong>&#8221; here as well on both places (auto wlan2 + iface wlan2 inet dhcp). Then change the ssid and the psk accordingly as your WLAN is set.</p>
<p>So your interfaces file should look like this:</p>
<pre><span style="font-size: 12px;">auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto wlan2
iface wlan2 inet dhcp
wpa-ssid mywlanssid
wpa-key-mgmt WPA-PSK
wpa-psk mywlanpsk
</span></pre>
<p>To make the changes have effect, run &#8220;<strong>service networking restart</strong>&#8220;.</p>
<p>That&#8217;s all &#8211; you should have net access now. If not, check the interfaces file for any mistyping. You might also want to edit your WLANs security settings, for me it worked while using WPA/WPA2 TKIP.</p>
<p>Some info about the A13 OLinuXino-WIFI:</p>
<div>
<h4><img style="float: right;" alt="Olinuxino A13 Wifi" src="http://hmastuff.com/olinuxino.jpg" width="310" height="230" />FEATURES</h4>
<ul>
<li><span style="font-size: 12px;">A13 Cortex A8 processor at 1GHz, 3D Mali400 GPU</span></li>
<li><span style="font-size: 12px;">512 MB RAM (2 x 256Mbit x 8)</span></li>
<li><span style="font-size: 12px;">4GB NAND flash</span></li>
<li><span style="font-size: 12px;">3 USB + 1 Mini-USB hosts</span></li>
<li><span style="font-size: 12px;">1 USB OTG which can power the board</span></li>
<li><span style="font-size: 12px;">Android OS preinstalled on the NAND memory</span></li>
<li><span style="font-size: 12px;">SD-card connector for booting optional Linux image</span></li>
<li><span style="font-size: 12px;">VGA video output</span></li>
<li><span style="font-size: 12px;">Audio Output, Microphone Input</span></li>
<li><span style="font-size: 12px;">RTC PCF8536 on board for real time clock and alarms</span></li>
<li><span style="font-size: 12px;">5 Keys on board for android navigation</span></li>
<li><span style="font-size: 12px;">Dimensions: 120 x 120 mm (4.7&#215;4.7&#8221;)</span></li>
</ul>
</div>
<p>My benchmarks: 192 Whetstones, 2142 Dhrystones (tested with BOINC)</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/getting-the-a13-olinuxino-wifi-to-work/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PiTool GUI v0.2 &#8211; Useful tool for Raspberry Pis</title>
		<link>http://hmastuff.com/blog/pitool</link>
		<comments>http://hmastuff.com/blog/pitool#comments</comments>
		<pubDate>Fri, 15 Feb 2013 21:10:50 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[useful]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=615</guid>
		<description><![CDATA[<p><a href="http://hmastuff.com/pitool.zip"><img style="border: 1px solid black; margin: 11px; float: right;" alt="PiTool" src="http://hmastuff.com/pitool.png" width="500" height="224" /></a>I made a little tool with Lazarus for Raspberry Pis which might come in handy,<br /> check it out &#8211; Current features:</p> <ul> <li>Display CPU temperature</li> <li>Display network usage (received+sent traffic)</li> <li>Display MAC address</li> <li>Display all  … <a href="http://hmastuff.com/blog/pitool"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://hmastuff.com/pitool.zip"><img style="border: 1px solid black; margin: 11px; float: right;" alt="PiTool" src="http://hmastuff.com/pitool.png" width="500" height="224" /></a>I made a little tool with Lazarus for Raspberry Pis which might come in handy,<br />
check it out &#8211; Current features:</p>
<ul>
<li>Display CPU temperature</li>
<li>Display network usage (received+sent traffic)</li>
<li>Display MAC address</li>
<li>Display all clock frequencies</li>
<li>Do full system upgrade</li>
<li>Clear memory</li>
<li>Console</li>
<li>Display voltages</li>
<li>Display LAN and external IP</li>
</ul>
<p><strong>Download:</strong> <a href="http://hmastuff.com/pitool.zip">PiTool GUI v 0.2 (855 KB)</a></p>
<p>Of course there&#8217;s also a command-line based version available: <a href="http://hmastuff.com/blog/pitool-cmd"><span style="color: #3366ff;"><span style="color: #3366ff;"><strong>pitool-cmd</strong></span></span></a></p>
<p>I&#8217;d like suggestions on how to improve the tool, e.g. other useful information to be displayed, more commands, etc. Let me know via comment or <a  href="javascript:smae_decode('cGV0ZUBobWFzdHVmZi5jb20=');" >&#101;&#109;&#097;&#105;&#108;</a>.</p>
<p>The next release will be able to:</p>
<ul>
<li>Display routing tables</li>
<li>Catch all possible exception errors</li>
<li>Install/run Hexxeh&#8217;s update tool</li>
<li>Modifying boot.txt and cmdline.txt for tweaking</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/pitool/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Seti@home to work on Android devices</title>
		<link>http://hmastuff.com/blog/seitathome-on-android</link>
		<comments>http://hmastuff.com/blog/seitathome-on-android#comments</comments>
		<pubDate>Thu, 14 Feb 2013 16:20:05 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[boinc]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nativeboinc]]></category>
		<category><![CDATA[seti]]></category>
		<category><![CDATA[seti@home]]></category>
		<category><![CDATA[setiathome]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=580</guid>
		<description><![CDATA[<p><img style="float: right; margin: 11px; border: 1px solid black;" alt="Nativeboinc" src="http://hmastuff.com/nativeboinc.jpg" width="250" height="417" /><strong>UPDATE (28th March 2013): NativeBoinc now supports Seti@home without needing to use workarounds like the one below!!</strong></p> <p>Although there is <a href="http://hmastuff.com/blog/finally-a-working-boinc-client-on-android">NativeBoinc</a> for Android, Seti@home will not work when being added as a project with it.  There  … <a href="http://hmastuff.com/blog/seitathome-on-android"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; margin: 11px; border: 1px solid black;" alt="Nativeboinc" src="http://hmastuff.com/nativeboinc.jpg" width="250" height="417" /><strong>UPDATE (28th March 2013): NativeBoinc now supports Seti@home without needing to use workarounds like the one below!!</strong></p>
<p>Although there is <a href="http://hmastuff.com/blog/finally-a-working-boinc-client-on-android">NativeBoinc</a> for Android, Seti@home will not work when being added as a project with it.  There are rumors about an Android client from the Boinc developers which will hopefully include full support for all projects on various Android systems.</p>
<p>Till then, you&#8217;ll have to use a workaround to get Seti@home working on your Android device, by compiling and running Boinc on Linux within Android, and using NativeBoinc as manager only. Here is how to:</p>
<p>1. Your device needs to be rooted. Install <a href="https://play.google.com/store/apps/details?id=ru.meefik.linuxdeploy" target="_blank"><strong>Linux Deploy</strong></a> and <strong><a href="https://play.google.com/store/apps/details?id=org.connectbot&amp;hl=en" target="_blank">ConnectBot</a>.</strong></p>
<p>2. Install your favorite Linux distribution with Linux Deploy; enable SSH with it and connect to Linux via SSH.</p>
<p>3. Make sure that you&#8217;re logged in as root. Now enter:</p>
<pre><span style="font-size: 14px;">wget http://hmastuff.com/boinc/installseti.sh &amp;&amp; chmod +x installseti.sh &amp;&amp; ./installseti.sh</span></pre>
<p>4. This will take a while. When done, make sure you&#8217;re in <strong>/var/lib/boinc</strong> and start boinc in daemon mode:</p>
<pre><span style="font-size: 14px;">boinc --daemon --allow_remote_gui_rpc</span></pre>
<p>5. Lookup your account key:</p>
<pre><span style="font-size: 14px;">boinccmd --lookup_account http://setiathome.berkeley.edu my@email.com password</span></pre>
<p>6. Add the project to boinc:</p>
<pre><span style="font-size: 14px;">boinccmd --project_attach http://setiathome.berkeley.edu the-key-you-just-got</span></pre>
<p>7. Now start NativeBoinc, let it connect to the client running on localhost. Don&#8217;t start the integrated boinc client &#8211; just connect to the running one on localhost.</p>
<p>This method has the disadvantage that you have to run Boinc via Linux on your Android device, and you have to start it there manually each time you want to use Seti@home. But it works <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/seitathome-on-android/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comparison Raspberry Pi vs. Cubieboard</title>
		<link>http://hmastuff.com/blog/comparison-raspberry-pi-cubieboard</link>
		<comments>http://hmastuff.com/blog/comparison-raspberry-pi-cubieboard#comments</comments>
		<pubDate>Wed, 13 Feb 2013 12:17:34 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[beagleboard]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[cubieboard]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mini]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry pi]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=493</guid>
		<description><![CDATA[<p>After playing around a lot with my 2 Raspberry Pis and being pretty satisfied with it, today I received my Cubieboard. Specification comparison:</p> <strong>Raspberry Pi Model-B</strong><br /> <strong> Developer:</strong> Raspberry Pi Foundation<br /> <strong> Operating system:</strong> Linux<br /> <strong> Power:</strong> 3.5 W (model B) via Micro-USB<br /> <strong> CPU:</strong> ARM1176JZF-S  … <a href="http://hmastuff.com/blog/comparison-raspberry-pi-cubieboard"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>After playing around a lot with my 2 Raspberry Pis and being pretty satisfied with it, today I received my Cubieboard. Specification comparison:</p>
<table style="width: 100%;" border="0">
<tbody>
<tr>
<td valign="top"><span style="font-size: 12px;"><strong>Raspberry Pi Model-B</strong></span><br />
<span style="font-size: 12px;"><strong> Developer:</strong> Raspberry Pi Foundation</span><br />
<span style="font-size: 12px;"><strong> Operating system:</strong> Linux</span><br />
<span style="font-size: 12px;"><strong> Power:</strong> 3.5 W (model B) via Micro-USB</span><br />
<span style="font-size: 12px;"> <strong> CPU:</strong> ARM1176JZF-S (armv6k) @ 700 MHz</span><br />
<span style="font-size: 12px;"><strong>SoC:</strong> Broadcom BCM2835</span><br />
<span style="font-size: 12px;"><strong>GPU:</strong> VideoCore IV</span><br />
<span style="font-size: 12px;"> <strong>RAM:</strong> 512 MByte (Model B rev 2)</span><br />
<span style="font-size: 12px;"> <strong>Storage:</strong> SD card slot (SD or MicroSDHC card), USB</span><br />
<span style="font-size: 12px;"> <strong> Graphics:</strong> Broadcom VideoCore IV</span><br />
<span style="font-size: 12px;"> <strong>Video:</strong> Composite, HDMI</span><br />
<span style="font-size: 12px;"> <strong>Audio:</strong> 3.5mm jack, HDMI</span><br />
<span style="font-size: 12px;"><strong> Network:</strong> 10/100 RJ45</span><br />
<span style="font-size: 12px;"><strong>Other:</strong> 2x USB</span><br />
<span style="font-size: 12px;"><strong>Dimensions:</strong> 85,60 x 53,98 x 17 mm<br />
</span><span style="font-size: 12px;"><strong>My benchmarks:</strong> 273 Whetstones / 1108 Dhrystones (tested with BOINC)<br />
</span></td>
<td valign="top"><span style="font-size: 12px;"><strong>Cubieboard</strong></span><br />
<span style="font-size: 12px;"><strong>Manufacturer:</strong> CubieTech</span><br />
<span style="font-size: 12px;"><strong>Operating system:</strong> Android preinstalled, Linux via MicroSDHC or SATA</span><br />
<span style="font-size: 12px;"><strong>Power:</strong> via Mini-USB or DC</span><br />
<span style="font-size: 12px;"><strong>CPU:</strong> ARM Cortex-A8 @ 1Ghz</span><br />
<span style="font-size: 12px;"><strong>SoC:</strong> Allwinner A10</span><br />
<span style="font-size: 12px;"><strong>GPU:</strong> ARM Mali-400</span><br />
<span style="font-size: 12px;"><strong>RAM:</strong> DRAM 1GB DDR3 @ 480MHz</span><br />
<span style="font-size: 12px;"><strong>Integrated storage:</strong> NAND 4GB</span><br />
<span style="font-size: 12px;"><strong>Video:</strong> HDMI</span><br />
<span style="font-size: 12px;"><strong>Audio:</strong> 3.5mm jack, HDMI</span><br />
<span style="font-size: 12px;"><strong>Network:</strong> 10/100 RJ45</span><br />
<span style="font-size: 12px;"><strong>Storage:</strong> MicroSDHC, SATA (+5v power), USB</span><br />
<span style="font-size: 12px;"><strong>Other:</strong> Infrared</span>,<span style="font-size: 12px;"> 2x USB</span><br />
<span style="font-size: 12px;"><strong>Dimensions:</strong> 10cm x 6cm x 2cm<br />
</span><span style="font-size: 12px;"><strong>My benchmarks:  </strong>199 Whetstones / 2000 Dhrystones (tested with BOINC)<br />
</span></td>
</tr>
</tbody>
</table>
<p>The advantage of the Pi is that it&#8217;s widely being used, so there is much more specialized software for it available, more information on the net, etc.<br />
The advantage of the Cubieboard is clearly its better hardware; I especially like that it comes preinstalled with Android, and you can easily install Linux on a SDHC card or on an attached SATA hard drive &#8211; where the SATA slot is another advantage, of course.<br />
If you need to decide &#8211; should you be after the faster mini-linux computer, get the Cubieboard. If you&#8217;re more after playing around with it and programming, get the Pi <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
BUT: If you&#8217;re after max. speed, you have to get the <a href="http://hmastuff.com/blog/odroid-x2">ODroid-X2</a>!</p>
<p>There are other mini computers besides the Pi and Cubieboard, see below for links of all that are worth mentioning:</p>
<p><img style="float: right; margin: 11px;" alt="Pi vs. Cubie" src="http://hmastuff.com/pivscubie.png" width="566" height="178" /></p>
<ul>
<li><strong>Raspberry Pi:</strong> <a href="http://www.raspberrypi.org/" target="_blank">http://www.raspberrypi.org/</a></li>
<li><strong>Cubieboard:</strong> <a href="http://cubieboard.org/" target="_blank">http://cubieboard.org/</a></li>
<li><strong>BeagleBoard:</strong> <a href="http://beagleboard.org/" target="_blank">http://beagleboard.org/</a></li>
<li><strong>APC:</strong> <a href="http://apc.io/" target="_blank">http://apc.io/</a></li>
<li><strong>Pandaboard:</strong> <a href="http://pandaboard.org/" target="_blank">http://pandaboard.org/</a></li>
<li><strong>ODROID-X2:</strong> <a href="http://tinyurl.com/odroidx2" target="_blank">http://tinyurl.com/odroidx2</a></li>
<li><strong>OLinuXino:</strong> <a href="https://www.olimex.com/Products/OLinuXino" target="_blank">https://www.olimex.com/Products/OLinuXino</a></li>
</ul>
<p>You might also want to check out this site: <a href="http://tinyurl.com/sbccomparison" target="_blank">http://tinyurl.com/sbccomparison</a> &#8211; it contains a comparison table of this boards: Arduino, Raspberry Pi, CubieBoard, Gooseberry, APC Rock, OLinuXino, Hackberry A10<br />
Also informative: Wiki articles &#8220;<a href="http://en.wikipedia.org/wiki/List_of_single-board_computers" target="_blank">List of single-board computers</a>&#8221; and &#8220;<a href="http://en.wikipedia.org/wiki/Comparison_of_single-board_computers" target="_blank">Comparison of single-board computers</a>&#8220;.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/comparison-raspberry-pi-cubieboard/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi hints, tips and tricks</title>
		<link>http://hmastuff.com/blog/raspberry-pi-tricks</link>
		<comments>http://hmastuff.com/blog/raspberry-pi-tricks#comments</comments>
		<pubDate>Sat, 09 Feb 2013 15:52:31 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[cheats]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=543</guid>
		<description><![CDATA[<p><img style="float: right; margin: 11px;" alt="Pi rocks!" src="http://hmastuff.com/pithumbs.png" width="266" height="196" />Below I&#8217;ve compiled a list of useful things regarding the Raspberry Pi that I found along the web:</p> <p><strong>Install hexxeh&#8217;s rpi-update tool:</strong><br /> sudo wget http://goo.gl/1BOfJ -O /usr/bin/rpi-update &#38;&#38; sudo chmod +x /usr/bin/rpi-update</p> <p><strong>Get CPU temperature:</strong><br /> vcgencmd measure_temp<br />  … <a href="http://hmastuff.com/blog/raspberry-pi-tricks"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; margin: 11px;" alt="Pi rocks!" src="http://hmastuff.com/pithumbs.png" width="266" height="196" />Below I&#8217;ve compiled a list of useful things regarding the Raspberry Pi that I found along the web:</p>
<p><strong>Install hexxeh&#8217;s rpi-update tool:</strong><br />
sudo wget http://goo.gl/1BOfJ -O /usr/bin/rpi-update &amp;&amp; sudo chmod +x /usr/bin/rpi-update</p>
<p><strong>Get CPU temperature:</strong><br />
vcgencmd measure_temp<br />
(you can also watch the temperature by running &#8220;watch -d vcgencmd measure_temp&#8221;)</p>
<p><strong>Get CPU temperature in milli-centigrades:</strong><br />
cat /sys/class/thermal/thermal_zone0/temp<br />
(same as above, watch it via &#8220;watch -d cat /sys/class/thermal/thermal_zone0/temp&#8221;)</p>
<p><strong>Get amount of network adapters received bytes:</strong><br />
cat /sys/class/net/eth0/statistics/rx_bytes<br />
<strong>Get Megabytes:</strong><br />
awk &#8216;{printf(&#8220;%.1f\n&#8221;,$1/1024/1024)}&#8217; &#8220;/sys/class/net/eth0/statistics/rx_bytes&#8221;</p>
<p><strong>Get amount of network adapters sent bytes:</strong><br />
cat /sys/class/net/eth0/statistics/tx_bytes<br />
<strong>Get Megabytes:</strong><br />
awk &#8216;{printf(&#8220;%.1f\n&#8221;,$1/1024/1024)}&#8217; &#8220;/sys/class/net/eth0/statistics/tx_bytes&#8221;</p>
<p><strong>Get the Pi&#8217;s MAC address:</strong><br />
cat /sys/class/net/eth0/address</p>
<p><strong>Show CPU clock frequency:</strong><br />
vcgencmd measure_clock arm<br />
<strong>Show all available clock frequencies:</strong><br />
for src in arm core h264 isp v3d uart pwm emmc pixel vec hdmi dpi ; do echo -e &#8220;$src:\t$(vcgencmd measure_clock $src)&#8221; ; done</p>
<p><strong>Show core voltage:</strong><br />
vcgencmd measure_volts core<br />
<strong>Show all voltages:</strong><br />
for id in core sdram_c sdram_i sdram_p ; do echo -e &#8220;$id:\t$(vcgencmd measure_volts $id)&#8221; ; done</p>
<p>&#8230;<br />
the mentioned folders contain more possible values, but imho none of them are really interesting or useful. Let me know if you found anything else and I&#8217;ll add it here. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/raspberry-pi-tricks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop wasting your computers idle time, CPU power and bandwidth!</title>
		<link>http://hmastuff.com/blog/distributed-computing</link>
		<comments>http://hmastuff.com/blog/distributed-computing#comments</comments>
		<pubDate>Wed, 06 Feb 2013 21:25:18 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apt-p2p]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[bitcoin]]></category>
		<category><![CDATA[bitcoins]]></category>
		<category><![CDATA[boinc]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mining]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[torrents]]></category>
		<category><![CDATA[yacy]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=455</guid>
		<description><![CDATA[<p>Billions of computers are running without doing anything, or at least without fully using their processing power and bandwidth. What a waste! Why not using your computers idle time for something useful, e.g. to fight diseases, share information and software, or crawl the web? See below for examples what you  … <a href="http://hmastuff.com/blog/distributed-computing"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Billions of computers are running without doing anything, or at least without fully using their processing power and bandwidth. What a waste! Why not using your computers idle time for something useful, e.g. to fight diseases, share information and software, or crawl the web? See below for examples what you can let your computer/server do while you&#8217;re not using it:</p>
<ul>
<li><a href="http://www.camrdale.org/apt-p2p/" target="_blank">apt-p2p</a>: This linux-based package aims to reduce the usage of Linux distribution hosts by sharing packages to other users via DHT. Give it a try!</li>
<li><a href="http://yacy.net/en/" target="_blank">yacy</a>: Yacy is a decentralized search-engine. You can install it on your computer or server and crawl the web, contributing to Yacy or creating your own search engine with it. Check it&#8217;s <a href="http://www.yacy-websuche.de/wiki/index.php/En:Start" target="_blank">wiki</a>. There&#8217;s also a science-related Yacy version called <a href="http://sciencenet.kit.edu/" target="_blank">ScienceNet</a></li>
<li><a href="http://boinc.berkeley.edu/" target="_blank">boinc</a>: With boinc you can let your CPU and GPU work for a good cause. It offers many projects for different aims, e.g. finding cures for diseases, predicting earthquakes, search life in outta space, etc. There&#8217;s also an <a href="http://nativeboinc.org/site/uncat/downloads" target="_blank">Android client</a>!</li>
<li><a href="http://en.wikipedia.org/wiki/Bitcoin" target="_blank">bitcoins</a>: Why not letting your server or computer earn bitcoins for you, that you can even sell for real money? I’m using <a href="https://bitcointalk.org/index.php?topic=3486.60" target="_blank">ufaminer</a> for this on the <a href="http://mining.bitcoin.cz/" target="_blank">bitcoin.cz</a> pool (which seems to be better than <a href="http://deepbit.net" target="_blank">deepbit.net</a> in my opinion)</li>
<li>sharing torrents (e.g. <a href="http://www.clearbits.net/" target="_blank">legal torrents</a>, <a href="http://linuxtracker.org/index.php?page=torrents" target="_blank">linux distributions</a>, <a href="http://thepiratebay.se/top" target="_blank">illegal torrents</a> *g*): Just download torrents you&#8217;d like to share and make known, e.g.  <a href="http://www.debian.org/CD/torrent-cd/" target="_blank">debian</a> or <a href="http://www.tuxdistro.com/">others</a> and share them as long as you like and can spare bandwidth.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/distributed-computing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really good Android apps</title>
		<link>http://hmastuff.com/blog/top-android-apps</link>
		<comments>http://hmastuff.com/blog/top-android-apps#comments</comments>
		<pubDate>Wed, 06 Feb 2013 21:00:22 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[programs]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=470</guid>
		<description><![CDATA[<p>There are tons of android apps, but most of them simply suck. There&#8217;s also lots of sites that review apps, but they suck as well. So see below for apps that are REALLY worth installing:</p> <ul> <li>Best file manager: <a href=" https://play.google.com/store/apps/details?id=com.rhmsoft.fm" target="_blank">File Manager</a> + <a href="https://play.google.com/store/apps/details?id=com.rhmsoft.fm.hd&#38;feature=search_result" target="_blank">File Manager Tablet</a></li>  … <a href="http://hmastuff.com/blog/top-android-apps"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>There are tons of android apps, but most of them simply suck. There&#8217;s also lots of sites that review apps, but they suck as well. So see below for apps that are REALLY worth installing:</p>
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0" align="left">
<tbody>
<tr>
<td>
<ul>
<li><span style="font-size: 12px;">Best file manager: <a href=" https://play.google.com/store/apps/details?id=com.rhmsoft.fm" target="_blank">File Manager</a> + <a href="https://play.google.com/store/apps/details?id=com.rhmsoft.fm.hd&amp;feature=search_result" target="_blank">File Manager Tablet</a></span></li>
<li><span style="font-size: 12px;">Best keyboard app: <a href="https://play.google.com/store/apps/details?id=org.pocketworkstation.pckeyboard" target="_blank">Hacker&#8217;s Keyboard</a></span></li>
<li><span style="font-size: 12px;">Best market: <a href="http://aptoide.com/apks/Aptoide.apk" target="_blank">Aptoide</a>, app you need to download from blackmarket <a href="http://bazaarandroid.com" target="_blank">bazaarandroid.com</a></span></li>
<li><span style="font-size: 12px;">Best VPN client: Either <a href="https://play.google.com/store/apps/details?id=net.openvpn.openvpn" target="_blank">OpenVPN Connect</a> or <a href="http://www.featvpn.com/" target="_blank">FeatVPN</a>, as you like</span></li>
<li><span style="font-size: 12px;">Best Linux installer: <a href="https://play.google.com/store/apps/details?id=ru.meefik.linuxdeploy" target="_blank">Linux Deploy</a></span></li>
<li><span style="font-size: 12px;">Best DOSBox: <a href="https://www.aptoide.com/search/view?search_top=dosbox+turbo" target="_blank">DOSBox Turbo</a></span></li>
<li><span style="font-size: 12px;">Best Multiplayer-Shooter: <a href="https://play.google.com/store/apps/details?id=com.StudioOnMars.CSPortable" target="_blank">Critical Strike Portable</a> and <a href="https://play.google.com/store/apps/details?id=ws.openarena.sdl" target="_blank">OpenArena</a></span></li>
</ul>
</td>
<td valign="top">
<ul>
<li><span style="font-size: 12px;">Best Audio-Recorder: <a href="https://play.google.com/store/apps/details?id=com.coffeebeanventures.easyvoicerecorder" target="_blank">Easy Voice Recorder</a></span></li>
<li><span style="font-size: 12px;">Best Cell/WLAN Tracker: <a href="https://play.google.com/store/apps/details?id=de.carknue.gmon2" target="_blank">G-Mon</a> and <a href="https://play.google.com/store/apps/details?id=com.hotrod.utility.rfsignaltrackereclair" target="_blank">RF Signal Tracker</a> and <a href="https://play.google.com/store/apps/details?id=net.wigle.wigleandroid" target="_blank">Wigle Wifi Wardriving</a></span></li>
<li><span style="font-size: 12px;">Best Antivirus/Security/Phonetracker: <a href="https://play.google.com/store/apps/details?id=com.lookout" target="_blank">Lookout</a></span></li>
<li><span style="font-size: 12px;">Best App-Sharing-Tool: <a href="https://www.aptoide.com/search/view?search_top=myappsharer" target="_blank">MyAppSharer</a></span></li>
<li><span style="font-size: 12px;">Best VNC/RDP/VMwareView app: <a href="https://www.aptoide.com/search/view?search_top=pocketcloud" target="_blank">PocketCloud Pro</a></span></li>
<li><span style="font-size: 12px;">Best Multi-Server-app: <a href="https://www.aptoide.com/search/view?search_top=servers+ultimate" target="_blank">Servers Ultimate Pro</a></span></li>
<li><span style="font-size: 12px;">Best Navigation app: <a href="https://www.aptoide.com/search/view?search_top=sygic" target="_blank">Sygic</a></span></li>
</ul>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/top-android-apps/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[UPDATE!] Getting Seti@home to work on Raspberry Pi (and other armel/armhf devices)</title>
		<link>http://hmastuff.com/blog/setiathome-on-raspberry-pi</link>
		<comments>http://hmastuff.com/blog/setiathome-on-raspberry-pi#comments</comments>
		<pubDate>Mon, 04 Feb 2013 16:56:17 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[armel]]></category>
		<category><![CDATA[armhf]]></category>
		<category><![CDATA[boinc]]></category>
		<category><![CDATA[compiling]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[seti]]></category>
		<category><![CDATA[seti@home]]></category>
		<category><![CDATA[setiathome]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=480</guid>
		<description><![CDATA[<p>As mentioned in an <a href="http://hmastuff.com/blog/finally-a-working-boinc-client-on-android">earlier post</a>, you can use <a href="http://nativeboinc.org/site/uncat/downloads" target="_blank">NativeBoinc</a> to use BOINC on Android devices. But what about Raspberry Pi and other ARM/ARMHF devices?<br /> When installing BOINC on Raspberry Pi, you might notice that only certain projects support armel/armhf devices. Unfortunately this excludes Seti@home and  … <a href="http://hmastuff.com/blog/setiathome-on-raspberry-pi"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><span style="font-size: 12px;">As mentioned in an <a href="http://hmastuff.com/blog/finally-a-working-boinc-client-on-android">earlier post</a>, you can use <a href="http://nativeboinc.org/site/uncat/downloads" target="_blank">NativeBoinc</a> to use BOINC on Android devices. But what about Raspberry Pi and other ARM/ARMHF devices?</span><br />
<span style="font-size: 12px;"> When installing BOINC on Raspberry Pi, you might notice that only certain projects support armel/armhf devices. Unfortunately this excludes Seti@home and some other projects, resulting in them not working at all.</span><br />
<span style="font-size: 12px;"> There&#8217;s a fix for this now, checkout this page:</span><br />
<span style="font-size: 12px;"> <a href="http://burdeview.blogspot.de/p/raspberry-pi-boinc-project-ive-created.html" target="_blank">http://burdeview.blogspot.de/p/raspberry-pi-boinc-project-ive-created.html</a></span></p>
<p><span style="font-size: 12px;">It offers a quick-start guide and downloads that you can use to make projects like Seti@home working on armel/armhf devices such as the Raspberry Pi.<br />
Basically you just need to delete the content of the directory <strong>/var/lib/boinc/projects/setiathome.berkeley.edu/</strong><br />
and download <a href="http://hmastuff.com/boinc/setiathome_enhanced">setiathome_enhanced</a> and <a href="http://hmastuff.com/boinc/app_info.xml">app_info.xml</a> into it. Make sure to assign the projects folder to the boinc user v</span><span style="font-size: 12px;">ia &#8220;<strong>chown -R boinc:boinc projects/</strong>&#8221; while in the boinc main folder.<br />
Lastly, attach the Seti@home project to Boinc as explained <a href="#addseti"><strong>here</strong></a>.<br />
</span></p>
<p><span><span style="font-size: 12px;">I&#8217;ve compiled the Seti@home binaries on multiple devices, you can find binaries for<strong> Raspberry Pi, Cubieboard, OLinuxino A13, Samsung Galaxy S2 and Asus Transformer 101(G)</strong> at <a href="http://hmastuff.com/boinc" target="_blank"><strong>http://hmastuff.com/boinc</strong></a></span><br />
</span></p>
<p><span style="font-size: 12px;">Download the file that fits for your device, rename it into &#8220;<strong>setiathome_enhanced</strong>&#8221; and put it together with the <a href="http://hmastuff.com/boinc/app_info.xml">app_info.xml</a> into the <strong>/var/lib/boinc/projects/setiathome.berkeley.edu</strong> folder. <a href="#addseti">Start boinc and use boinccmd to attach the project</a> only while you&#8217;re in the <strong>/var/lib/boinc</strong> folder!</span></p>
<p><span style="font-size: 12px;">If that won&#8217;t do the trick for you, you&#8217;ll need to compile boinc+setiathome yourself, reboot, et voila &#8211; it works!</span><br />
<span style="font-size: 12px;"> Now your Raspberry Pi is finally searching for Aliens out there <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
The easiest way to compile Seti@home and Boinc is to use my script: <a href="http://hmastuff.com/boinc/installseti.sh" target="_blank"><strong>installseti.sh</strong></a><br />
</span></p>
<p><span style="font-size: 12px;"><strong>Some notes to spare you stress and wondering while co</strong><strong>mpiling:<br />
</strong></span></p>
<ul>
<li><span style="font-size: 12px;">You should purge all boinc related software before starting (<strong>apt-get purge boinc*</strong>)</span></li>
<li><span style="font-size: 12px;">If the scripts demand for libtoolize, install it via &#8220;<strong>apt-get install libtool</strong>&#8220;</span></li>
<li><span style="font-size: 12px;">If the boinc client gives you authorization errors, you&#8217;re in the wrong directory; just change to the boinc data directory (the one that contains the subfolder &#8220;projects&#8221; &#8211; standard should be <strong>/var/lib/boinc</strong>) and try again<br />
</span></li>
<li><span style="font-size: 12px;">If boinc still refuses to get tasks because of incompatible system,<br />
delete the content of the directory <strong>/var/lib/boinc/projects/setiathome.berkeley.edu/</strong><br />
and download <a href="http://hmastuff.com/boinc/setiathome_enhanced">setiathome_enhanced</a> and <a href="http://hmastuff.com/boinc/app_info.xml">app_info.xml</a> into it</span></li>
<li><span style="font-size: 12px;">Getting absent file or checksum errors? Copy the compiled executable from <strong>/usr/local/src/seti_boinc/client</strong> (should be named e.g. &#8220;<strong>setiathome-6.97.armv6l-unknown-linux-gnu</strong>&#8220;) to <strong>/var/lib/boinc/projects/setiathome.berkeley.edu/</strong> as &#8220;<strong>setiathome_enhanced</strong>&#8220;. Make sure the <a href="http://hmastuff.com/boinc/app_info.xml">app_info.xml</a> is in the same path.<br />
</span></li>
<li><span style="font-size: 12px;">At the end you might want to install the boinc-manager (<strong>apt-get install boinc-manager</strong>). It asks you if it&#8217;s supposed to replace existing parts &#8211; make sure to select &#8220;<strong>n</strong>&#8221; for no.</span></li>
</ul>
<hr />
<p>&nbsp;</p>
<p><span style="font-size: 12px;">I&#8217;ve put together a script you just need to run for compiling and configuring boinc+setiathome, see below. Of course all credits go to <a href="https://plus.google.com/102110921867961919297" target="_blank">Daniel Carrison</a>, who made the <a href="http://burdeview.blogspot.de/p/raspberry-pi-boinc-project-ive-created.html" target="_blank">original</a>.</span><br />
<span style="font-size: 12px;"> Just download this script: <a href="http://hmastuff.com/boinc/installseti.sh" target="_blank"><strong>installseti.sh</strong></a>, chmod +x it (chmod +x installseti.sh) and then run it (./installseti.sh).</span></p>
<p><span style="font-size: 12px;">Now</span><span style="font-size: 12px;"> you might want to install boinc-manager via apt-get.</span> <span style="font-size: 12px;">Make sure to not replace any existing data!</span><br />
<span style="font-size: 12px;"> Next, start BOINC in daemon mode using the daemon parameter; you might also want to add the allow_remote_gui_rpc parameter (uses the password from the file <strong>gui_rpc_auth.cfg</strong>) to be able to view boincs status on external devices via manager:<br />
</span></p>
<pre><span style="font-size: 12px;">boinc --daemon --allow_remote_gui_rpc</span></pre>
<p><span style="font-size: 12px;"><a name="addseti"></a>Now lookup your account key and add the project to BOINC:</span></p>
<pre><span style="font-size: 12px;">boinccmd --lookup_account http://setiathome.berkeley.edu my@email.com password
boinccmd --project_attach http://setiathome.berkeley.edu thekeyyoujustgot</span></pre>
<p><span style="font-size: 12px;">Again &#8211; running boinc or boinccmd must be done in /var/lib/boinc folder!<br />
If you did all correctly, Seti@home will now start to work after a few downloads (e.g. check CPU usage with &#8220;top&#8221;).<br />
This is the time to start the boinc-manager on your favorite GUI.</span><br />
<span style="font-size: 12px;"> If you prefer viewing BOINC in console, kill it (killall boinc) and start it undaemonized (boinc).</span></p>
<p><span style="font-size: 12px;">Please leave a comment if this isn&#8217;t working for you or you&#8217;re experiencing any issues.<br />
For possible issues and fixes, please scroll up to my notes.<br />
Of course I&#8217;d also be happy about any positive feedback <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/setiathome-on-raspberry-pi/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quake 1, 2 and 3 for Android</title>
		<link>http://hmastuff.com/blog/quake</link>
		<comments>http://hmastuff.com/blog/quake#comments</comments>
		<pubDate>Sun, 03 Feb 2013 12:07:38 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[quake]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=476</guid>
		<description><![CDATA[<ul> <li><img style="margin: 11px; border: 1px solid black; float: right;" alt="Quake 1+2+3" src="http://hmastuff.com/q123.jpg" width="155" height="350" />Quake 1: <a href="http://hmastuff.com/android/topapps/com.zodttd.quake.apk" target="_blank">Download .APK</a> &#124; Alternative Q1 Port: <a href="http://hmastuff.com/android/topapps/themehospital-full.apk" target="_blank">Download.APK</a></li> <li>Quake 2: <a href="http://tinyurl.com/quake2droid" target="_blank">Download from Aptoide<br /> </a></li> <li>Quake 3: <a href="http://tinyurl.com/quake3droid" target="_blank">Download from Aptoide<br /> </a></li> <li>OpenArena: Basically it&#8217;s Quake  … <a href="http://hmastuff.com/blog/quake"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<ul>
<li><img style="margin: 11px; border: 1px solid black; float: right;" alt="Quake 1+2+3" src="http://hmastuff.com/q123.jpg" width="155" height="350" />Quake 1: <a href="http://hmastuff.com/android/topapps/com.zodttd.quake.apk" target="_blank">Download .APK</a> | Alternative Q1 Port: <a href="http://hmastuff.com/android/topapps/themehospital-full.apk" target="_blank">Download.APK</a></li>
<li>Quake 2: <a href="http://tinyurl.com/quake2droid" target="_blank">Download from Aptoide<br />
</a></li>
<li>Quake 3: <a href="http://tinyurl.com/quake3droid" target="_blank">Download from Aptoide<br />
</a></li>
<li>OpenArena: Basically it&#8217;s Quake 3, the differences are rather minimal.<br />
<a href="https://play.google.com/store/apps/details?id=ws.openarena.sdl" target="_blank">Download from Google Play</a></li>
<li>Then there&#8217;s also <a href="https://play.google.com/store/apps/details?id=render6d.quake3.activity" target="_blank">Q3 Zombie Hunter</a>, but imho it&#8217;s rather trash.</li>
</ul>
<p>If you need the game data, download the original games e.g. from piratebay:<br />
<a href="http://thepiratebay.se/search/quake/0/7/0" target="_blank">http://thepiratebay.se/search/quake/0/7/0</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/quake/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theme Hospital for Windows, Mac, Linux and Android</title>
		<link>http://hmastuff.com/blog/theme-hospital</link>
		<comments>http://hmastuff.com/blog/theme-hospital#comments</comments>
		<pubDate>Sun, 03 Feb 2013 11:49:51 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[theme hospital]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=474</guid>
		<description><![CDATA[<p><img style="float: right; border: 1px solid black; margin: 11px;" alt="Theme Hospital Screenshot" src="http://hmastuff.com/themehospital.jpg" width="350" height="206" />Finally the opensource remake of Bullfrog&#8217;s &#8220;Theme Hospital&#8221; is available for Android as well, after it was only available for Win, Mac and Linux before:</p> <p>Download for Win, Mac, Linux:<br /> <a href="http://code.google.com/p/corsix-th/downloads/list" target="_blank">http://code.google.com/p/corsix-th/downloads/list</a></p> <p>Download  … <a href="http://hmastuff.com/blog/theme-hospital"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; border: 1px solid black; margin: 11px;" alt="Theme Hospital Screenshot" src="http://hmastuff.com/themehospital.jpg" width="350" height="206" />Finally the opensource remake of Bullfrog&#8217;s &#8220;Theme Hospital&#8221; is available for Android as well, after it was only available for Win, Mac and Linux before:</p>
<p>Download for Win, Mac, Linux:<br />
<a href="http://code.google.com/p/corsix-th/downloads/list" target="_blank">http://code.google.com/p/corsix-th/downloads/list</a></p>
<p>Download for Android:<br />
<a href="https://play.google.com/store/apps/details?id=uk.co.armedpineapple.cth&amp;hl=en" target="_blank">https://play.google.com/store/apps/details?id=uk.co.armedpineapple.cth&amp;hl=en</a><br />
<a href="http://www.armedpineapple.co.uk/downloads/?category=1&amp;sortby=date" target="_blank">http://www.armedpineapple.co.uk/downloads/?category=1&amp;sortby=date</a></p>
<p>Download for Android incl. Game Data:<br />
<a href="http://hmastuff.com/android/topapps/themehospital-full.apk" target="_blank">http://hmastuff.com/android/topapps/themehospital-full.apk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/theme-hospital/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why uploading to one hoster when there&#8217;s multi-uploading?</title>
		<link>http://hmastuff.com/blog/upload</link>
		<comments>http://hmastuff.com/blog/upload#comments</comments>
		<pubDate>Tue, 29 Jan 2013 20:27:31 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[multi]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[uploading]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=462</guid>
		<description><![CDATA[<p>Why would you want to upload just to e.g. Rapidshare or uploaded.to, when there&#8217;s websites and tools that upload your files simultaneously to multiple, even hundreds of hosters?</p> <p>You might already know places like <a href="http://multiupload.com" target="_blank">multiupload.com</a>, <a href="http://mirrorcreator.com" target="_blank">mirrorcreator.com</a> or <a href="http://flashmirrors.com" target="_blank">flashmirrors.com</a> &#8211; all pretty good, but limit  … <a href="http://hmastuff.com/blog/upload"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Why would you want to upload just to e.g. Rapidshare or uploaded.to, when there&#8217;s websites and tools that upload your files simultaneously to multiple, even hundreds of hosters?</p>
<p>You might already know places like <a href="http://multiupload.com" target="_blank">multiupload.com</a>, <a href="http://mirrorcreator.com" target="_blank">mirrorcreator.com</a> or <a href="http://flashmirrors.com" target="_blank">flashmirrors.com</a> &#8211; all pretty good, but limit the amount of used mirrors in some way.<br />
(check <a href="http://alternativeto.net/software/multiupload/" target="_blank">this link</a> for more web-based multi-uploaders)</p>
<p>Also take a look at this 2 tools &#8211; they allow you to upload your files to hundreds of different file-hosting services automatically:</p>
<ul>
<li><strong>Neembuu Uploader:</strong> <a href="http://neembuuuploader.sourceforge.net/" target="_blank">http://neembuuuploader.sourceforge.net/</a></li>
<li><strong>File &amp; Image Uploader:</strong> <a href="http://z-o-o-m.eu/down.htm" target="_blank">http://z-o-o-m.eu/down.htm</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/upload/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB drives mounted on Raspberry Pi via Samba &#8211; but why read-only?</title>
		<link>http://hmastuff.com/blog/usb-drives-mounted-on-raspberry-pi-via-samba-read-only</link>
		<comments>http://hmastuff.com/blog/usb-drives-mounted-on-raspberry-pi-via-samba-read-only#comments</comments>
		<pubDate>Thu, 10 Jan 2013 22:45:40 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[drives]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[read-only]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[sticks]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[writeable]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=436</guid>
		<description><![CDATA[<p>When plugging in your USB drives (or sticks) into the Raspberry Pi, they get automatically mounted and are accessible. So far, so good. The next step is to make them accessible over the networ, even for Windows PCs. Here are 2 good tutorials on how to do that (I personally  … <a href="http://hmastuff.com/blog/usb-drives-mounted-on-raspberry-pi-via-samba-read-only"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>When plugging in your USB drives (or sticks) into the Raspberry Pi, they get automatically mounted and are accessible. So far, so good. The next step is to make them accessible over the networ, even for Windows PCs. Here are 2 good tutorials on how to do that (I personally had to mix them to get it working):</p>
<ul>
<li><a href="http://simonthepiman.com/how_to_setup_windows_file_server.php" target="_blank">http://simonthepiman.com/how_to_setup_windows_file_server.php</a></li>
<li><a href="http://chirale.wordpress.com/2012/08/31/turn-raspberry-into-a-small-nas-with-samba/" target="_blank">http://chirale.wordpress.com/2012/08/31/turn-raspberry-into-a-small-nas-with-samba/</a></li>
</ul>
<p>Unfortunately my drives were mounted read-only, and when I wanted to change that via Webmin, my commands were refused.</p>
<p>Googled a while, the trick was this:</p>
<ol>
<li>Install ntfs-3g (apt-get install ntfs-3g)</li>
<li>Modify /etc/fstab like this (nano /etc/fstab):</li>
</ol>
<p><strong>Before:</strong></p>
<pre>/dev/sda1       /media/Serien   ntfs user,dev,errors=continue,relatime,mft_zone_multiplier=1,fmask=0177,nosuid,dmask=077,exec,nls=utf8 0       0</pre>
<p><strong>After:</strong></p>
<pre>/dev/sda1       /media/Serien   ntfs-3g user,dev,errors=continue,relatime,mft_zone_multiplier=1,fmask=0177,nosuid,dmask=077,exec,nls=utf8,uid=pi,gid=pi 0       0</pre>
<p>So by changing &#8220;<strong>ntfs</strong>&#8221; to &#8220;<strong>ntfs-3g</strong>&#8221; and adding &#8220;<strong>uid=pi,gid=pi</strong>&#8221; and lastly, rebooting the Raspberry Pi I was finally able to write on my HDs and sticks.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/usb-drives-mounted-on-raspberry-pi-via-samba-read-only/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally a working Bitcoin-Miner for Android!</title>
		<link>http://hmastuff.com/blog/finally-a-working-bitcoin-miner-for-android</link>
		<comments>http://hmastuff.com/blog/finally-a-working-bitcoin-miner-for-android#comments</comments>
		<pubDate>Thu, 10 Jan 2013 17:25:33 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[bitcoin]]></category>
		<category><![CDATA[bitcoins]]></category>
		<category><![CDATA[deepbit]]></category>
		<category><![CDATA[miner]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=431</guid>
		<description><![CDATA[<p><img style="float: right; margin: 11px;" alt="" src="http://hmastuff.com/bitcoinminer.png" width="225" height="195" />Even when it&#8217;s just a few dozen kilohashes you&#8217;ll get with this miner, it&#8217;s still a nice project.<br /> And with improving hardware and improving of the miners code, I&#8217;m sure there will be even more possible.</p> <ul> <li><strong>-&#62; <a href="https://play.google.com/store/apps/details?id=com.ltcminer.miner&#38;hl=en"  … <a href="http://hmastuff.com/blog/finally-a-working-bitcoin-miner-for-android"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; margin: 11px;" alt="" src="http://hmastuff.com/bitcoinminer.png" width="225" height="195" />Even when it&#8217;s just a few dozen kilohashes you&#8217;ll get with this miner, it&#8217;s still a nice project.<br />
And with improving hardware and improving of the miners code, I&#8217;m sure there will be even more possible.</p>
<ul>
<li><strong>-&gt; <a href="https://play.google.com/store/apps/details?id=com.ltcminer.miner&amp;hl=en" target="_blank">https://play.google.com/store/apps/details?id=com.ltcminer.miner&amp;hl=en</a></strong></li>
<li><strong>-&gt; <a href="http://hmastuff.com/ltcminer.apk" target="_blank">http://hmastuff.com/ltcminer.apk</a></strong></li>
</ul>
<p>The code of LTCMiner can be found here -> <a href="https://github.com/LTCMiner/LTCMiner" target="_blank">https://github.com/LTCMiner/LTCMiner</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/finally-a-working-bitcoin-miner-for-android/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Finally a working BOINC-client on Android</title>
		<link>http://hmastuff.com/blog/finally-a-working-boinc-client-on-android</link>
		<comments>http://hmastuff.com/blog/finally-a-working-boinc-client-on-android#comments</comments>
		<pubDate>Thu, 10 Jan 2013 17:18:43 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[boinc]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[distributed]]></category>
		<category><![CDATA[seti]]></category>
		<category><![CDATA[seti@home]]></category>
		<category><![CDATA[shared]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=428</guid>
		<description><![CDATA[<p><img style="float: right; margin: 11px;" alt="" src="http://hmastuff.com/boinclogo.png" width="350" height="146" />Finally there is a working BOINC-client for Android. And not just one of this useless managers that just display your work status from another device. A real BOINC-client!</p> <p>Even Seti@home is working on it since 28th March 2013!</p> <ul> <li><strong>-&#62; <a  … <a href="http://hmastuff.com/blog/finally-a-working-boinc-client-on-android"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; margin: 11px;" alt="" src="http://hmastuff.com/boinclogo.png" width="350" height="146" />Finally there is a working BOINC-client for Android. And not just one of this useless managers that just display your work status from another device. A real BOINC-client!</p>
<p>Even Seti@home is working on it since 28th March 2013!</p>
<ul>
<li><strong>-&gt; <a href="http://nativeboinc.org/site/uncat/downloads" target="_blank">http://nativeboinc.org/site/uncat/downloads</a></strong></li>
<li><strong>-&gt; <a href="http://hmastuff.com/nativeboinc.apk" target="_blank">http://hmastuff.com/nativeboinc.apk</a></strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/finally-a-working-boinc-client-on-android/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Total Video Converter + Ultra Video Converter</title>
		<link>http://hmastuff.com/blog/video-converter</link>
		<comments>http://hmastuff.com/blog/video-converter#comments</comments>
		<pubDate>Tue, 08 Jan 2013 01:57:50 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[converter]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[total]]></category>
		<category><![CDATA[ultra]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=411</guid>
		<description><![CDATA[<p>There are <a href="http://thepiratebay.se/search/video%20converter/0/7/0" target="_blank">plenty</a> of video converter apps out there, but the best are certainly Ultra Video Converter (Win) and Total Video Converter (Win); simply because they support all video and audio formats on the market, are small and easy to use. I recommend to just install both, in  … <a href="http://hmastuff.com/blog/video-converter"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>There are <a href="http://thepiratebay.se/search/video%20converter/0/7/0" target="_blank">plenty</a> of video converter apps out there, but the best are certainly Ultra Video Converter (Win) and Total Video Converter (Win); simply because they support all video and audio formats on the market, are small and easy to use. I recommend to just install both, in case the converting result of one is not as expected.</p>
<p><strong>Total Video Converter HD 3.71:</strong> <a href="magnet:?xt=urn:btih:121057284f30e162beeb26b30e69e437a5f46533&amp;dn=Total+Video+Converter+HD+v3.71+%2B+Serials+%5BChattChitto+RG%5D&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80" target="_blank">Magnet</a> + <a href="http://www.multiupload.nl/MUBUAF9OQT" target="_blank">Multiupload</a> + <a href="http://mir.cr/B942TLUG" target="_blank">MirrorCreator</a> + <a href="http://flashmirrors.com/files/0wbpqtft0galxmp/tvc.zip" target="_blank">FlashMirrors</a></p>
<p><strong>Ultra Video Converter 5.1.0108:</strong> <a href="magnet:?xt=urn:btih:8495cfa70f7f1160072c25e514c1838f503fb6b1&amp;dn=Ultra+Video+Converter+and+Splitter+and+Joiner%2Bserials&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80" target="_blank">Magnet</a> + <a href="http://www.multiupload.nl/RMVWE7CGGM" target="_blank">Multiupload</a> + <a href="http://mir.cr/PG6OLETS" target="_blank">MirrorCreator</a> + <a href="http://flashmirrors.com/files/03mu84vrfhovx24/uvc.zip" target="_blank">FlashMirrors</a></p>
<p>&nbsp;</p>
<p><img title="Total + Ultra Video Converter" alt="Total + Ultra Video Converter" src="http://hmastuff.com/blog/vc.jpg" width="527" height="254" /></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/video-converter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anonymous email inbox + anonymous email sending</title>
		<link>http://hmastuff.com/blog/anonymous-browsing-and-mailing</link>
		<comments>http://hmastuff.com/blog/anonymous-browsing-and-mailing#comments</comments>
		<pubDate>Mon, 31 Dec 2012 10:50:01 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[anon]]></category>
		<category><![CDATA[anonym]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[inbox]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[mailer]]></category>
		<category><![CDATA[mailing]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[send]]></category>
		<category><![CDATA[sending]]></category>
		<category><![CDATA[trashmail]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=326</guid>
		<description><![CDATA[<p>There&#8217;s different approaches to fetch and send emails as anonymously as possible, for example trashmail-services and anonymous mailer applications.</p> <p>Unfortunately trash-mail services usually can&#8217;t be used via POP3/IMAP and so are only web-based; but the best anonymous email inbox service is for sure the one from HideMyAss, since it offers  … <a href="http://hmastuff.com/blog/anonymous-browsing-and-mailing"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>There&#8217;s different approaches to fetch and send emails as anonymously as possible, for example trashmail-services and anonymous mailer applications.</p>
<p>Unfortunately trash-mail services usually can&#8217;t be used via POP3/IMAP and so are only web-based; but the best anonymous email inbox service is for sure the one from HideMyAss, since it offers the most features (like auto-expiration and notification emails): <a href="https://hidemyass.com/anonymous-email/" target="_blank">https://hidemyass.com/anonymous-email/</a></p>
<p>Emails sent with anonymous mailer apps usually never arrive because they are considered spam somewhere along the way. But I found a working one, which delivered all my test emails properly: the Mixminion Message Sender: <a href="http://hmastuff.com/mms.zip" target="_blank">mms.zip</a> (<a href="http://peculiarplace.com/mixminion-message-sender/" target="_blank">Website</a>)</p>
<table style="width: 730px;" border="0" cellspacing="0" cellpadding="0" align="left">
<tbody>
<tr>
<td><a href="http://hmastuff.com/mms.zip" target="_blank"><img class="alignleft" style="border: 1px solid black;" title="Anonymous Mailer" alt="Anonymous Mailer" src="http://hmastuff.com/blog/mmsender.png" width="330" height="226" /></a></td>
<td><a href="https://hidemyass.com/anonymous-email/" target="_blank"><img class="alignleft" style="border: 1px solid black;" title="HideMyAss Anonymous Email" alt="HideMyAss Anonymous Email" src="http://hmastuff.com/blog/anonmail.png" width="330" height="226" /></a></td>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">Ahya, and for anonymous browsing there&#8217;s of course the webproxy: <a href="http://proxy.hmastuff.com">http://proxy.hmastuff.com</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/anonymous-browsing-and-mailing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IP and system-check</title>
		<link>http://hmastuff.com/blog/ip-and-system-check</link>
		<comments>http://hmastuff.com/blog/ip-and-system-check#comments</comments>
		<pubDate>Sat, 29 Dec 2012 12:39:08 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[checkup]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[reverse]]></category>
		<category><![CDATA[ripe]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[whois]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=321</guid>
		<description><![CDATA[<p>You should be aware that your browser reveals much information about you &#8211; see below for some examples (turn off AdBlock if you don&#8217;t see anything). For how it&#8217;s done, check the <a href="http://hmastuff.com/blog-ipcheck.php" target="_blank">sourcecode</a>. You can use browser-addons like Ghostery (<a href="https://addons.mozilla.org/en-US/firefox/addon/ghostery/" target="_blank">Firefox</a> + <a href="https://chrome.google.com/webstore/detail/ghostery/mlomiejdfkolichcflejclcbmpeaniij?hl=en" target="_blank">Chrome</a>) and <a  … <a href="http://hmastuff.com/blog/ip-and-system-check"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>You should be aware that your browser reveals much information about you &#8211; see below for some examples (turn off AdBlock if you don&#8217;t see anything). For how it&#8217;s done, check the <a href="http://hmastuff.com/blog-ipcheck.php" target="_blank">sourcecode</a>. You can use browser-addons like Ghostery (<a href="https://addons.mozilla.org/en-US/firefox/addon/ghostery/" target="_blank">Firefox</a> + <a href="https://chrome.google.com/webstore/detail/ghostery/mlomiejdfkolichcflejclcbmpeaniij?hl=en" target="_blank">Chrome</a>) and <a href="https://addons.mozilla.org/en-US/firefox/addon/noscript/" target="_blank">NoScript</a> (Firefox) / <a href="https://chrome.google.com/webstore/detail/notscripts/odjhifogjcknibkahlpidmdajjpkkcfn?hl=en" target="_blank">NotScript</a> (Chrome) to stop your browser from giving away this and other information.</p>
<p><iframe src="http://hmastuff.com/blog-ipcheck.php" height="750" width="790" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/ip-and-system-check/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New place for HideMyAss-related and general tools + apps</title>
		<link>http://hmastuff.com/blog/new-place-for-hidemyass-related-and-general-tools-apps</link>
		<comments>http://hmastuff.com/blog/new-place-for-hidemyass-related-and-general-tools-apps#comments</comments>
		<pubDate>Tue, 25 Dec 2012 13:15:46 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[appz]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[hidemyass]]></category>
		<category><![CDATA[hma]]></category>
		<category><![CDATA[programs]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[toolz]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=213</guid>
		<description><![CDATA[All available general and HideMyAss-related tools and apps are now to be found on the page &#8220;<a href="http://hmastuff.com/blog/?page_id=204">HideMyAss Apps &#38; Tools</a>&#8221; as displayed here -&#62;</p> <p>Just in case you were wondering where the tools</p> <ul> <li><strong>Quicklink-Traytool<br /> </strong></li> <li><strong>Windows PPTP + L2TP Dialer<br /> </strong></li> <li><strong>OpenVPN GUI Login-Tool<br /> </strong></li>  … <a href="http://hmastuff.com/blog/new-place-for-hidemyass-related-and-general-tools-apps"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<table style="width: 978px; height: 377px;" border="0" cellspacing="0" cellpadding="0" align="left">
<tbody>
<tr>
<td style="width: 300px;" valign="top">All available general and HideMyAss-related tools and apps are now to be found on the page &#8220;<a href="http://hmastuff.com/blog/?page_id=204">HideMyAss Apps &amp; Tools</a>&#8221; as displayed here -&gt;</p>
<p>Just in case you were wondering where the tools</p>
<ul>
<li><strong>Quicklink-Traytool<br />
</strong></li>
<li><strong>Windows PPTP + L2TP Dialer<br />
</strong></li>
<li><strong>OpenVPN GUI Login-Tool<br />
</strong></li>
<li><strong>IP and VPN-Check<br />
</strong></li>
<li><strong>Random Server Connector<br />
</strong></li>
<li><strong>WebProxy Browser<br />
</strong></li>
<li><strong>UNrouting Utility<br />
</strong></li>
<li><strong>HMA-TrayTool </strong></li>
</ul>
<p>have gone&#8230; <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</td>
<td valign="top"><a href="http://hmastuff.com/blog/?page_id=204" target="_self"><img alt="" src="http://hmastuff.com/newplace.png" width="381" /></a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/new-place-for-hidemyass-related-and-general-tools-apps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily installing Firefox, SeaMonkey and Thunderbird on Debian</title>
		<link>http://hmastuff.com/blog/easily-installing-firefox-seamonkey-and-thunderbird-on-debian</link>
		<comments>http://hmastuff.com/blog/easily-installing-firefox-seamonkey-and-thunderbird-on-debian#comments</comments>
		<pubDate>Sun, 23 Dec 2012 22:23:22 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[seamonkey]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[thunderbird]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=196</guid>
		<description><![CDATA[<p>There are plenty of different ways to install Firefox on Linux &#8211; which you should do, since Iceweasel or other standard-browsers keep crashing or just don&#8217;t have the same functionality. However, the easiest way is to just run this in terminal:</p> <pre>apt-get remove iceweasel echo -e "\ndeb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main"  … <a href="http://hmastuff.com/blog/easily-installing-firefox-seamonkey-and-thunderbird-on-debian"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>There are plenty of different ways to install Firefox on Linux &#8211; which you should do, since Iceweasel or other standard-browsers keep crashing or just don&#8217;t have the same functionality. However, the easiest way is to just run this in terminal:</p>
<pre>apt-get remove iceweasel
echo -e "\ndeb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main" | tee -a /etc/apt/sources.list &gt; /dev/null
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com C1289A29
apt-get update
apt-get install firefox-mozilla-build</pre>
<p>Check the <a href="http://sourceforge.net/apps/mediawiki/ubuntuzilla/index.php?title=Main_Page" target="_blank">Ubuntuzilla project</a> for a how-to of installing Thunderbird, Seamonkey, etc.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/easily-installing-firefox-seamonkey-and-thunderbird-on-debian/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make sure your visitors see your page, even when it&#8217;s offline &#8211; with simple JavaScript</title>
		<link>http://hmastuff.com/blog/making-sure-your-visitors-get-forwarded-to-an-online-page-with-simple-javascript</link>
		<comments>http://hmastuff.com/blog/making-sure-your-visitors-get-forwarded-to-an-online-page-with-simple-javascript#comments</comments>
		<pubDate>Sat, 22 Dec 2012 18:31:15 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[breaker]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[frame]]></category>
		<category><![CDATA[framebreaker]]></category>
		<category><![CDATA[frames]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[visitor]]></category>
		<category><![CDATA[visitors]]></category>
		<category><![CDATA[webpage]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=190</guid>
		<description><![CDATA[<p>Let&#8217;s imagine you want to make sure that your webpage is always available, even when your webhost is offline. I always wondered if that can be achieved with simple Frames and Framebreakers. Then I tried it &#8211; it works! <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p> <p><strong>Example:</strong> You have website A  … <a href="http://hmastuff.com/blog/making-sure-your-visitors-get-forwarded-to-an-online-page-with-simple-javascript"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Let&#8217;s imagine you want to make sure that your webpage is always available, even when your webhost is offline. I always wondered if that can be achieved with simple Frames and Framebreakers. Then I tried it &#8211; it works! <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Example:</strong> You have website A on some webhost, while website B is hosted on a server. Now you&#8217;re playing around with your server and sometimes it might be offline for a while. How would you automatically forward visitors of website B to website A in these cases?</p>
<p>Create a simple index.html with a frameset and either put it on the webhost, or on a third host &#8211; where you could then just let your domain point to:</p>
<pre>&lt;html&gt;&lt;head&gt;
&lt;title&gt;Online-check&lt;/title&gt;&lt;/head&gt;
&lt;frameset rows="0,0"&gt;
  &lt;frame src="http://mywebhost.com/mypage" name="page_a"&gt;
  &lt;frame src="http://myserver.com/mypage" name="page_b"&gt;
    &lt;/body&gt;&lt;/frameset&gt;
&lt;/html&gt;</pre>
<p>As you see, the index.html contains a invisible frameset of 2 frames, from which one leads to the webhost, and one to the webserver. Important is now that both pages contain a framebreaker in the body:</p>
<pre>&lt;SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript"&gt; 
  &lt;!-- 
   if(top.frames.length &gt; 0) top.location.href=self.location; 
  // --&gt; 
&lt;/SCRIPT&gt;</pre>
<p>This will result in showing the visitor only the page which is currently online, since the framebreaker of the offline page will not work.<br />
Of course when both pages are online, the visitor will see the page that loads faster. So you can either use this to show the visitor the fastest of both pages, or the page that is currently online.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/making-sure-your-visitors-get-forwarded-to-an-online-page-with-simple-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning MacOS X with Leopard 10.5.5 on VMware Workstation</title>
		<link>http://hmastuff.com/blog/learning-macos-x-with-leopard-10-5-5-on-vmware-workstation</link>
		<comments>http://hmastuff.com/blog/learning-macos-x-with-leopard-10-5-5-on-vmware-workstation#comments</comments>
		<pubDate>Fri, 21 Dec 2012 14:05:54 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[10.5.5]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[magnet]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[workstation]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=186</guid>
		<description><![CDATA[<p>If you worked all your life on Windows computers, and then suddenly encounter a Mac system &#8211; this might be problematic, especially if you&#8217;re supposed to know basic Mac stuff; e.g. for Work or when you suddenly find yourself on a Mac via remote desktop. That&#8217;s why it&#8217;s a good  … <a href="http://hmastuff.com/blog/learning-macos-x-with-leopard-10-5-5-on-vmware-workstation"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>If you worked all your life on Windows computers, and then suddenly encounter a Mac system &#8211; this might be problematic, especially if you&#8217;re supposed to know basic Mac stuff; e.g. for Work or when you suddenly find yourself on a Mac via remote desktop. That&#8217;s why it&#8217;s a good idea to train yourself a bit on a virtual machine. Unfortunately I was unable to get newer MacOSX versions running, only Leopard worked out-of-the-box. Downloads below:</p>
<table style="width: 950px; height: 293px;" border="0" cellspacing="0" cellpadding="0" align="left">
<tbody>
<tr>
<td style="width: 250px;" valign="top"><span style="font-size: 16px;"><strong>Download MacOSX 10.5.5</strong></span><br />
<span style="font-size: 16px;"> <strong>Leopard VMWare Image:</strong></span></p>
<ul>
<li><a href="magnet:?xt=urn:btih:8811be4a75d94410dc640a5e6b98e36024435fc5&amp;dn=MAC+OS+X+Leopard+10.5.5+VMware+Image&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80" target="_blank">Magnet Link</a><br />
(password is &#8220;password&#8221;)</li>
</ul>
<p>&nbsp;</p>
<p><span style="font-size: 16px;"><strong>Download VMware Workstation</strong></span><br />
<span style="font-size: 16px;"> <strong> v8.0.1.528992 incl. Keygen:</strong></span></p>
<ul>
<li><a href="magnet:?xt=urn:btih:043582c022d5847694434eb2a45dea2a07875d22&amp;dn=VMware.Workstation.v8.0.1.528992.Incl.Keymaker-ZWT&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80" target="_blank">Magnet Link </a></li>
</ul>
</td>
<td valign="top"><img class="alignleft" style="border: 1px solid black;" title="Mac OSX Leopard VMware" alt="Mac OSX Leopard VMware" src="http://hmastuff.com/blog/macosvm.jpg" width="314" height="258" /></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/learning-macos-x-with-leopard-10-5-5-on-vmware-workstation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>South Park &#8211; Censored Episodes S05E03 + 200 + 201 &#8211; Share and seed it, because censorship sucks!</title>
		<link>http://hmastuff.com/blog/south-park-censored-episodes-s05e03-200-201</link>
		<comments>http://hmastuff.com/blog/south-park-censored-episodes-s05e03-200-201#comments</comments>
		<pubDate>Thu, 20 Dec 2012 22:19:41 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[200]]></category>
		<category><![CDATA[201]]></category>
		<category><![CDATA[banned]]></category>
		<category><![CDATA[best]]></category>
		<category><![CDATA[censored]]></category>
		<category><![CDATA[central]]></category>
		<category><![CDATA[comedy]]></category>
		<category><![CDATA[comedycentral]]></category>
		<category><![CDATA[episode]]></category>
		<category><![CDATA[episodes]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[mohammed]]></category>
		<category><![CDATA[muhammed]]></category>
		<category><![CDATA[park]]></category>
		<category><![CDATA[s03e05]]></category>
		<category><![CDATA[south]]></category>
		<category><![CDATA[super]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=173</guid>
		<description><![CDATA[<p>Unfortunately 3 South Park episodes are not available on the (international!!) South Park – pages. So you have to download them via torrent, or watch them here <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <img style="float: right; margin: 10px; border: 1px solid black;" title="Mohammed" alt="Mohammed" src="http://hmastuff.com/blog/mohammed.jpg" width="220" height="212" /></p> <p><strong>South Park –  … <a href="http://hmastuff.com/blog/south-park-censored-episodes-s05e03-200-201"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Unfortunately 3 South Park episodes are not available on the (international!!) South Park – pages. So you have to download them via torrent, or watch them here <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <img style="float: right; margin: 10px; border: 1px solid black;" title="Mohammed" alt="Mohammed" src="http://hmastuff.com/blog/mohammed.jpg" width="220" height="212" /></p>
<p><strong>South Park – S05E04 – “Super Best Friends”: <a href="magnet:?xt=urn:btih:19a9f68a3514a4801fc17c52deb4fbecfd7fa396&amp;dn=South+Park+S05E03+The+One+With+Muhammad+Uncensored.avi&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80" target="_blank">Magnet Link</a> + </strong><a href="https://torrents.thepiratebay.se/5520725/South_Park_S05E03_The_One_With_Muhammad_Uncensored.avi.5520725.TPB.torrent" target="_blank"><strong>Torrent</strong></a><strong> + <a href="http://hmastuff.com/videos/" target="_blank">Watch online</a><br />
</strong>Stan, Kyle, Cartman and Kenny discover David Blaine, magician and cult leader, performing in the streets of South Park. Stan finds out early that the Blainiacs are not as nice as everyone thinks. He tries to convince the other boys they’ve been brainwashed, but they have forsaken their friends and families. Teaming up with Jesus, Stan calls upon all the Super Best Friends to destroy the magician and thwart the mass suicide pact he has launched.</p>
<p><strong>South Park – 200: <a href="magnet:?xt=urn:btih:7c8aef0f67640a79217e8bfcfa1c79427d423a28&amp;dn=South+Park+S14E05+200+HDTV+XviD-FQM+%5Beztv%5D&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80" target="_blank">Magnet Link</a> + <a href="magnet:?xt=urn:btih:6b9d930f794495e65c3d8c4e89abc60c2df82678&amp;dn=South.Park.S14E05.200.UNCENSORED.HDRIP.XviD-DEMENTA&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80" target="_blank">Alt. Magnet Link</a><strong> <strong>+ <a href="http://hmastuff.com/videos/" target="_blank">Watch online</a></strong></strong></strong><br />
This show marked South Park’s 200th episode. Led by Tom Cruise, two hundred celebrities, previously ridiculed by the town of South Park, file a class action lawsuit. They demand immunity from ever being made fun of again. When Stan begs them to accept his apology, they offer impossible terms and the boys ask the Super Best Friends for help.</p>
<p><strong>South Park – 201: <a href="magnet:?xt=urn:btih:2ac7956f6d81bf4bf48b642058d31912479d8d8e&amp;dn=South+Park+S14E06+201+HDTV+XviD-FQM+%5Beztv%5D&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80" target="_blank">Magnet Link</a><strong> + <a href="http://hmastuff.com/videos/" target="_blank">Watch online</a></strong></strong><br />
In the exciting conclusion to this two-part blockbuster celebrating South Park’s 200th episode, angry celebrities, violent ginger kids, and Mecha Streisand face off against the Super Best Friends and the South Park faithful. It’s a destructive battle on the largest scale, but all everyone wants to know is, “Who is Eric Cartman’s father?”</p>
<p>You can watch them online and download here -&gt; <a href="http://hmastuff.com/videos" target="_blank"><strong>Banned South Park Episodes @ HTML5 MP4 Player</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/south-park-censored-episodes-s05e03-200-201/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CPanel vs. Webmin</title>
		<link>http://hmastuff.com/blog/cpanel-vs-webmin</link>
		<comments>http://hmastuff.com/blog/cpanel-vs-webmin#comments</comments>
		<pubDate>Wed, 19 Dec 2012 14:05:51 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[cloudmin]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[usermin]]></category>
		<category><![CDATA[virtualmin]]></category>
		<category><![CDATA[webmin]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=167</guid>
		<description><![CDATA[<p>I&#8217;m currently considering getting a $15 <a href="http://cpanel.net/plans-pricing/" target="_blank">CPanel license</a> for my server, since installing it as <img style="float: right; margin: 11px;" title="CPanel vs. Webmin" alt="CPanel vs. Webmin" src="http://hmastuff.com/blog/webpanel.png" width="350" height="215" />some cracked version didn&#8217;t work.</p> <p>Up till now I&#8217;ve been using Webmin, which actually offers the same functionality as  … <a href="http://hmastuff.com/blog/cpanel-vs-webmin"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m currently considering getting a $15 <a href="http://cpanel.net/plans-pricing/" target="_blank">CPanel license</a> for my server, since installing it as <img style="float: right; margin: 11px;" title="CPanel vs. Webmin" alt="CPanel vs. Webmin" src="http://hmastuff.com/blog/webpanel.png" width="350" height="215" />some cracked version didn&#8217;t work.</p>
<p>Up till now I&#8217;ve been using Webmin, which actually offers the same functionality as CPanel &#8211; but it&#8217;s just not as nice and easy.</p>
<p>For those who don&#8217;t know Webmin, check it out: <a href="http://www.webmin.com/deb.html" target="_blank">http://www.webmin.com/deb.html</a></p>
<p>Quick install &#8211; just run:<br />
<strong>apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python &amp;&amp; wget http://prdownloads.sourceforge.net/webadmin/webmin_1.620_all.deb &amp;&amp; dpkg &#8211;install webmin_1.620_all.deb</strong></p>
<p>Together with <a href="http://www.webmin.com/vinstall.html" target="_blank">Virtualmin</a> and <a href="http://www.webmin.com/usermin.html" target="_blank">Usermin</a> you can do any server-related administrative actions that you need.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/cpanel-vs-webmin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switching from Gnome to LXDE? Good idea.</title>
		<link>http://hmastuff.com/blog/gnome-vs-lxde</link>
		<comments>http://hmastuff.com/blog/gnome-vs-lxde#comments</comments>
		<pubDate>Sun, 16 Dec 2012 11:30:50 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[gdm]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[lxde]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tightvnc]]></category>
		<category><![CDATA[vnc]]></category>
		<category><![CDATA[wheezy]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=133</guid>
		<description><![CDATA[<p>When I was using Gnome3 on Debian-Wheezy, I experienced the issue that gnome kept creating new processes of &#8220;gdm-simple-slave&#8221; &#8211; hundreds of them, slowing my server down extremely.<br /> I was unable to find the cause of this issue, however, bugs like that are to be expected when using Wheezy.  … <a href="http://hmastuff.com/blog/gnome-vs-lxde"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>When I was using Gnome3 on Debian-Wheezy, I experienced the issue that gnome kept creating new processes of &#8220;gdm-simple-slave&#8221; &#8211; hundreds of them, slowing my server down extremely.<br />
I was unable to find the cause of this issue, however, bugs like that are to be expected when using Wheezy. So I decided to try LXDE again. On my previous attempt this was problematic, because tightvncserver refused to work with it and kept bringing me to my old Gnome desktop &#8211; although I followed instructions to reconfigure tightvncserver correctly. Now I gave it another try, with different instructions. It worked &#8211; now I&#8217;m happily using LXDE on my server, instead of gnome. And that infinite-process problem is gone. Here&#8217;s how to:</p>
<p><strong><img style="float: right; margin: 10px; border: 1px solid black;" title="LXDE Desktop" alt="LXDE Desktop" src="http://hmastuff.com/blog/lxde.jpg" width="400" height="300" />Remove GNOME:<br />
</strong>apt-get purge gnome*</p>
<p><strong>Install LXDE and tightvncserver if not done yet:</strong><br />
apt-get install tightvncserver lxde</p>
<p><strong>Edit the vnc config with e.g. nano:</strong><br />
nano /root/.vnc/xstartup</p>
<p><strong>In nano, uncomment the line</strong><br />
/etc/X11/xsession<br />
<strong>so it looks like this:</strong><br />
#/etc/X11/xsession</p>
<p><strong>At the end, add this lines:</strong><br />
icewm &amp;<br />
lxsession</p>
<p><strong>Save. When now running</strong><br />
tightvncserver<br />
<strong>and connecting to your server,</strong><br />
<strong>you should see your LXDE desktop. Have fun!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/gnome-vs-lxde/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>German crime series: Autopsie &#8211; Mysteriöse Todesfälle + Medical Detectives + Quincy</title>
		<link>http://hmastuff.com/blog/autopsie-mysterioese-todesfaelle</link>
		<comments>http://hmastuff.com/blog/autopsie-mysterioese-todesfaelle#comments</comments>
		<pubDate>Thu, 13 Dec 2012 18:21:39 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[akte]]></category>
		<category><![CDATA[autopsie]]></category>
		<category><![CDATA[autopsy]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[detectives]]></category>
		<category><![CDATA[deutsch]]></category>
		<category><![CDATA[documentary]]></category>
		<category><![CDATA[doku]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[german]]></category>
		<category><![CDATA[magnet]]></category>
		<category><![CDATA[medical]]></category>
		<category><![CDATA[mord]]></category>
		<category><![CDATA[morde]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[ungeklärte]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[watch]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=124</guid>
		<description><![CDATA[<p>For all German-speaking fans of series like Autopsie, Medical Detectives, Akte Mord, Ungeklärte Morde, etc. and Quincy here some fine downloads and links (all German):</p> <ul> <li>Autopsie &#8211; Mysteriöse Todesfälle (Complete &#8211; 164 Episodes)<img style="float: right; margin: 10px;" title="Autopsie + Medical Detectives" alt="Autopsie + Medical Detectives" src="http://hmastuff.com/blog/autopsiemed.png" width="279" height="267" />  … <a href="http://hmastuff.com/blog/autopsie-mysterioese-todesfaelle"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>For all German-speaking fans of series like Autopsie, Medical Detectives, Akte Mord, Ungeklärte Morde, etc. and Quincy here some fine downloads and links (all German):</p>
<ul>
<li>Autopsie &#8211; Mysteriöse Todesfälle (Complete &#8211; 164 Episodes)<img style="float: right; margin: 10px;" title="Autopsie + Medical Detectives" alt="Autopsie + Medical Detectives" src="http://hmastuff.com/blog/autopsiemed.png" width="279" height="267" />
<ul>
<li><a href="http://hmastuff.com/blog/autopsie.torrent" target="_blank">Torrent</a></li>
<li><a href="magnet:?xt=urn:btih:FB2E948D57940751DC6C136A678898AE021760B8&amp;dn=Autopsie%20-%20Mysterioese%20Todesfaelle%20-%20shared%20for%20HideMyAss.com&amp;tr=http%3a%2f%2fbt.home-ix.ru%2fannounce&amp;tr=http%3a%2f%2ftracker.ex.ua%2fannounce&amp;tr=http%3a%2f%2fwww.h33t.com%3a3310%2fannounce&amp;tr=http%3a%2f%2ftr.w5h.ru%3a6969%2fannounce&amp;tr=udp%3a%2f%2ftracker.istole.it%3a80%2fannounce&amp;tr=udp%3a%2f%2ftracker.ex.ua%3a80%2fannounce&amp;tr=http%3a%2f%2f121.14.98.151%3a9090%2fannounce&amp;tr=http%3a%2f%2fexodus.desync.com%2fannounce&amp;tr=http%3a%2f%2fexodus.desync.com%3a6969%2fannounce&amp;tr=http%3a%2f%2f7ece.co.uk%3a6969%2fannounce&amp;tr=http%3a%2f%2f94.228.192.98.nyud.net%2fannounce&amp;tr=http%3a%2f%2ftracker.torrent.to%3a2710%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a6969%2fannounce&amp;tr=http%3a%2f%2fbt.poletracker.org%3a2710%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a8080%2fannounce.php&amp;tr=http%3a%2f%2fbigtorrent.org%3a2710%2fannounce&amp;tr=http%3a%2f%2fulfbrueggemann.no-ip.org%3a6969%2fannounce&amp;tr=http%3a%2f%2fbt.home-ix.ru%2fannounce.php&amp;tr=http%3a%2f%2fi.bandito.org%2fannounce&amp;tr=http%3a%2f%2fbigfoot1942.sektori.org%3a6969%2fannounce&amp;tr=http%3a%2f%2f94.228.192.98%2fannounce&amp;tr=http%3a%2f%2fannounce.opensharing.org%3a2710%2fannounce&amp;tr=http%3a%2f%2ftracker.xbs.com.br%2fannounce&amp;tr=http%3a%2f%2fcpleft.com%3a2710%2fannounce&amp;tr=udp%3a%2f%2ftracker.ccc.de%3a80%2fannounce&amp;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&amp;tr=http%3a%2f%2fbt.home-ix.ru.nyud.net%2fannounce.php&amp;tr=http%3a%2f%2ftracker.pubt.net%3a2710%2fannounce&amp;tr=http%3a%2f%2fbttrack.9you.com%2fannounce&amp;tr=http%3a%2f%2ftracker.anime-miako.to%3a6969%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a8080%2fannounce&amp;tr=udp%3a%2f%2ftracker.tfile.me%2fannounce&amp;tr=http%3a%2f%2ftracker.tfile.me%2fannounce&amp;tr=udp%3a%2f%2ftracker.publicbt.com%2fannounce&amp;tr=http%3a%2f%2ftracker.torrentbay.to%3a6969%2fannounce&amp;tr=http%3a%2f%2ftracker.fastsvr.com%3a2710%2fannounce&amp;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80&amp;tr=udp%3a%2f%2ftracker.ccc.de%3a80&amp;tr=udp%3a%2f%2ftracker.istole.it%3a80" target="_blank">Magnet</a></li>
<li><a href="http://hmastuff.com/videos/german/autopsie/" target="_blank">Download / Watch Online</a></li>
</ul>
</li>
</ul>
<ul>
<li>Medical Detectives (Complete &#8211; 145 Episodes)
<ul>
<li><a href="http://hmastuff.com/blog/medicaldetectives.torrent" target="_blank">Torrent</a></li>
<li><a href="magnet:?xt=urn:btih:1A638755580CA135F1C7F07A6EE123C5EE035AA4&amp;dn=Medical%20Detectives%20-%20shared%20for%20HideMyAss.com&amp;tr=http%3a%2f%2fck3r.org%2ftracker%2f&amp;tr=http%3a%2f%2fbt.home-ix.ru.nyud.net%2fannounce.php&amp;tr=http%3a%2f%2fwww.h33t.com%3a3310%2fannounce&amp;tr=http%3a%2f%2ftr.w5h.ru%3a6969%2fannounce&amp;tr=http%3a%2f%2fbttrack.9you.com%2fannounce&amp;tr=http%3a%2f%2f94.228.192.98%2fannounce&amp;tr=http%3a%2f%2f121.14.98.151%3a9090%2fannounce&amp;tr=http%3a%2f%2ftracker.tfile.me%2fannounce&amp;tr=http%3a%2f%2fannounce.opensharing.org%3a2710%2fannounce&amp;tr=http%3a%2f%2ftracker.torrentbay.to%3a6969%2fannounce&amp;tr=http%3a%2f%2fexodus.desync.com%2fannounce&amp;tr=udp%3a%2f%2ftracker.ccc.de%3a80%2fannounce&amp;tr=http%3a%2f%2fcpleft.com%3a2710%2fannounce&amp;tr=http%3a%2f%2fbt.home-ix.ru%2fannounce&amp;tr=http%3a%2f%2ftracker.xbs.com.br%2fannounce&amp;tr=http%3a%2f%2fi.bandito.org%2fannounce&amp;tr=http%3a%2f%2ftracker.pubt.net%3a2710%2fannounce&amp;tr=http%3a%2f%2ftracker.anime-miako.to%3a6969%2fannounce&amp;tr=udp%3a%2f%2ftracker.publicbt.com%2fannounce&amp;tr=http%3a%2f%2fexodus.desync.com%3a6969%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a8080%2fannounce&amp;tr=udp%3a%2f%2ftracker.ex.ua%3a80%2fannounce&amp;tr=http%3a%2f%2ftracker.fastsvr.com%3a2710%2fannounce&amp;tr=udp%3a%2f%2ftracker.tfile.me%2fannounce&amp;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&amp;tr=http%3a%2f%2ftracker.ex.ua%2fannounce&amp;tr=http%3a%2f%2f7ece.co.uk%3a6969%2fannounce&amp;tr=http%3a%2f%2f94.228.192.98.nyud.net%2fannounce&amp;tr=http%3a%2f%2ftracker.torrent.to%3a2710%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a6969%2fannounce&amp;tr=http%3a%2f%2fbigfoot1942.sektori.org%3a6969%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a8080%2fannounce.php&amp;tr=http%3a%2f%2fbigtorrent.org%3a2710%2fannounce&amp;tr=http%3a%2f%2fulfbrueggemann.no-ip.org%3a6969%2fannounce&amp;tr=http%3a%2f%2fbt.poletracker.org%3a2710%2fannounce&amp;tr=udp%3a%2f%2ftracker.istole.it%3a80%2fannounce&amp;tr=http%3a%2f%2fbt.home-ix.ru%2fannounce.php&amp;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80&amp;tr=udp%3a%2f%2ftracker.ccc.de%3a80&amp;tr=udp%3a%2f%2ftrac" target="_blank">Magnet</a></li>
<li><a href="http://hmastuff.com/videos/german/medicaldetectives/" target="_blank">Download / Watch Online</a></li>
</ul>
</li>
</ul>
<ul>
<li>Quincy (Complete &#8211; 148 Episodes)
<ul>
<li><a href="http://hmastuff.com/blog/quincy.torrent" target="_blank">Torrent</a></li>
<li><a href="magnet:?xt=urn:btih:78C4A299C58B1DF12CDFBC180E1A431A537C48A5&amp;dn=Quincy%20-%20shared%20for%20hmavpn.org&amp;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80&amp;tr=http%3a%2f%2fbt.home-ix.ru.nyud.net%2fannounce.php&amp;tr=http%3a%2f%2fwww.h33t.com%3a3310%2fannounce&amp;tr=udp%3a%2f%2ftracker.publicbt.com%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a8080%2fannounce.php&amp;tr=http%3a%2f%2f94.228.192.98%2fannounce&amp;tr=http%3a%2f%2f121.14.98.151%3a9090%2fannounce&amp;tr=http%3a%2f%2ftracker.tfile.me%2fannounce&amp;tr=http%3a%2f%2fannounce.opensharing.org%3a2710%2fannounce&amp;tr=http%3a%2f%2ftracker.torrent.to%3a2710%2fannounce&amp;tr=http%3a%2f%2fexodus.desync.com%2fannounce&amp;tr=udp%3a%2f%2ftracker.istole.it%3a6969&amp;tr=http%3a%2f%2fbt.home-ix.ru%2fannounce.php&amp;tr=http%3a%2f%2fbt.home-ix.ru%2fannounce&amp;tr=http%3a%2f%2ftracker.xbs.com.br%2fannounce&amp;tr=http%3a%2f%2fi.bandito.org%2fannounce&amp;tr=http%3a%2f%2ftracker.pubt.net%3a2710%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a6969%2fannounce&amp;tr=udp%3a%2f%2ftracker.istole.it%3a80&amp;tr=http%3a%2f%2fexodus.desync.com%3a6969%2fannounce&amp;tr=http%3a%2f%2fannounce.torrentsmd.com%3a8080%2fannounce&amp;tr=udp%3a%2f%2ftracker.ex.ua%3a80%2fannounce&amp;tr=udp%3a%2f%2ftracker.istole.it%3a80%2fannounce&amp;tr=http%3a%2f%2fbttrack.9you.com%2fannounce&amp;tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&amp;tr=http%3a%2f%2ftracker.ex.ua%2fannounce&amp;tr=http%3a%2f%2ftracker.fastsvr.com%3a2710%2fannounce&amp;tr=http%3a%2f%2f94.228.192.98.nyud.net%2fannounce&amp;tr=http%3a%2f%2fcpleft.com%3a2710%2fannounce" target="_blank">Magnet</a></li>
<li><a href="http://hmastuff.com/videos/german/quincy/" target="_blank">Download / Watch Online</a></li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/autopsie-mysterioese-todesfaelle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up virtual machines on your dedicated server with Proxmox</title>
		<link>http://hmastuff.com/blog/virtual-machines-with-proxmox</link>
		<comments>http://hmastuff.com/blog/virtual-machines-with-proxmox#comments</comments>
		<pubDate>Thu, 13 Dec 2012 17:50:28 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[container]]></category>
		<category><![CDATA[ct]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[dedicated]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[proxmox]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[squeeze]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=115</guid>
		<description><![CDATA[<p>As you may know, you can easily afford the costs of a dedicated server by just creating virtual machines on it for yourself and your friends. Just rent a few additional IPs (usually around 1€/IP), et voila! Everyone has his own server.</p> <p>The easiest method to achieve this is using  … <a href="http://hmastuff.com/blog/virtual-machines-with-proxmox"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>As you may know, you can easily afford the costs of a dedicated server by just creating virtual machines on it for yourself and your friends. Just rent a few additional IPs (usually around 1€/IP), et voila! Everyone has his own server.</p>
<p>The easiest method to achieve this is using Proxmox &#8211; I&#8217;d prefer that over VMware, Xen etc.; A tutorial for setting it up on a existing debian installation can be found here:<br />
<a href="http://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_Squeeze" target="_blank">http://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_Squeeze</a></p>
<p><strong>Something you should know:</strong> If you don&#8217;t want to fight with the network configuration on both host machine and VMs, better create containers (CTs) instead of virtual machines (VMs). Although you then may be restricted to use Linux distributions and have less possible settings, it will surely save you a lot of stress, time and effort.</p>
<p>And &#8211; when creating containers, you&#8217;ll most likely do this with templates. Note that proxmox by default seems to only offer 32 bit (i386) templates of various Linux distributions, for whatever reason. Download the 64 bit (amd64) templates to <strong>/var/lib/vz/template/cache</strong> from <a href="http://download2.proxmox.com/appliances/system/" target="_blank">http://download2.proxmox.com/appliances/system/</a> before you create your containers, so you can select the desired template in Proxmox.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/virtual-machines-with-proxmox/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fun things to do with your own dedicated (or virtual private) server</title>
		<link>http://hmastuff.com/blog/fun-things-to-do-with-your-server</link>
		<comments>http://hmastuff.com/blog/fun-things-to-do-with-your-server#comments</comments>
		<pubDate>Thu, 13 Dec 2012 17:40:56 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bitcoin]]></category>
		<category><![CDATA[bitcoins]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[dc]]></category>
		<category><![CDATA[dedicated]]></category>
		<category><![CDATA[deepbit]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[gnutella]]></category>
		<category><![CDATA[hub]]></category>
		<category><![CDATA[miner]]></category>
		<category><![CDATA[mining]]></category>
		<category><![CDATA[netrouting]]></category>
		<category><![CDATA[pool]]></category>
		<category><![CDATA[proxmox]]></category>
		<category><![CDATA[relay]]></category>
		<category><![CDATA[seed]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[tor]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[vpn]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[webtropia]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=111</guid>
		<description><![CDATA[<p>Now that servers have become affordable, everybody can get one. There are quite a few fun things to do with an own server, for example:</p> <ul> <li>Mining Bitcoins: Why letting your server idle around, doing nothing? Let it mine bitcoins for you! I&#8217;m using <a href="https://bitcointalk.org/index.php?topic=3486.60" target="_blank">ufaminer</a> for this on  … <a href="http://hmastuff.com/blog/fun-things-to-do-with-your-server"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Now that servers have become affordable, everybody can get one. There are quite a few fun things to do with an own server, for example:</p>
<ul>
<li>Mining Bitcoins: Why letting your server idle around, doing nothing? Let it mine bitcoins for you! I&#8217;m using <a href="https://bitcointalk.org/index.php?topic=3486.60" target="_blank">ufaminer</a> for this on the <a href="http://mining.bitcoin.cz/" target="_blank">bitcoin.cz</a> pool (which seems to be better than <a href="http://deepbit.net" target="_blank">deepbit.net</a> in my opinion)</li>
<li>Sharing your CPU power: Let your server search for extraterrestrial life in space with <a href="http://setiathome.berkeley.edu/" target="_blank">Seti@home</a> using <a href="http://boinc.berkeley.edu/wiki/Installing_BOINC" target="_blank">boinc-manager</a></li>
<li>Seeding torrents: Why not using the great bandwidth of servers to seed torrents?</li>
<li>More fun stuff to do: Running servers for games, SMTP, VPN, DNS, FTP &#8211; or be a powerful Gnutella or DC hub, <a href="https://www.torproject.org/docs/debian-vidalia.html.en" target="_blank">TOR relay</a> etc.</li>
</ul>
<p>I can recommend dedicated servers at <a href="http://www.webtropia.com/en/" target="_blank">Webtropia</a> and <a href="http://netrouting.com" target="_blank">Netrouting</a>. You should always prefer a dedicated server, since virtual private servers usually always have limitations regarding what you&#8217;re allowed to do with them, how much CPU power you may use etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/fun-things-to-do-with-your-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your own free Cloud with unlimited space</title>
		<link>http://hmastuff.com/blog/your-own-free-cloud</link>
		<comments>http://hmastuff.com/blog/your-own-free-cloud#comments</comments>
		<pubDate>Fri, 21 Sep 2012 11:11:43 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[asus]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloudhosting]]></category>
		<category><![CDATA[clouds]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[GB]]></category>
		<category><![CDATA[gigabyte]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[namecheap]]></category>
		<category><![CDATA[softaculous]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[webspace]]></category>
		<category><![CDATA[webstorage]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[zymic]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=98</guid>
		<description><![CDATA[<p>One annoying fact with Cloud services like Dropbox, Asus Webstorage or box.net is their space limit. Usually its a few GB, which you can extend by referring new users, or you have to pay for it. Mostly more than the space is really worth, and still you cannot save your  … <a href="http://hmastuff.com/blog/your-own-free-cloud"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>One annoying fact with Cloud services like Dropbox, Asus Webstorage or box.net is their space limit. Usually its a few GB, which you can extend by referring new users, or you have to pay for it. Mostly more than the space is really worth, and still you cannot save your whole HD on it.</p>
<p>Now there is ownCloud: <a href="http://owncloud.org/" target="_blank">http://owncloud.org/</a><br />
It works the same way as Dropbox, and has the same functionality.<br />
Just install it on your webspace (easiest via <a href="http://www.softaculous.com/softaculous/downloads" target="_blank">Softaculous</a>) and configure it.<br />
I recommend getting cheap and good webspace e.g. from <a href="	http://www.namecheap.com/?aff=25174" target="_blank"><strong>namecheap.com</strong></a></p>
<p>You can get the ownCloud clients for Windows, Mac and Linux<br />
here: <a href="http://owncloud.org/sync-clients/" target="_blank">http://owncloud.org/sync-clients/</a><br />
And download the Android client from here: <a href="http://hmastuff.com/owncloud.apk" target="_blank">http://hmastuff.com/owncloud.apk</a></p>
<p>Et voila &#8211; you have your own cloud, whose space is only limited by your webspace amount; and since webspace is cheaper (or even free from <a href="http://www.zymic.com" target="_blank">Zymic</a>) than &#8220;usual&#8221; cloud services, this is the best way to make your data accessible from anywhere.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/your-own-free-cloud/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems compiling JediVCL? Quick fix available!</title>
		<link>http://hmastuff.com/blog/problems-compiling-jedivcl</link>
		<comments>http://hmastuff.com/blog/problems-compiling-jedivcl#comments</comments>
		<pubDate>Sat, 15 Sep 2012 15:19:22 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[borland]]></category>
		<category><![CDATA[compiler]]></category>
		<category><![CDATA[compiling]]></category>
		<category><![CDATA[delphi]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[jcl]]></category>
		<category><![CDATA[jedi]]></category>
		<category><![CDATA[jvcl]]></category>
		<category><![CDATA[pascal]]></category>
		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=78</guid>
		<description><![CDATA[<p>When installing the <a href="http://sourceforge.net/projects/jvcl/files/" target="_blank">JediVCL</a> for Borland Delphi, you might get the following error messages:</p> <p><strong>Error: \jvcl\run\JvPageSetup.pas(1): Illegal character in input file: &#8216;ï&#8217; ($EF)<br /> Fatal: JvDlgs.dpk(86): Could not compile used unit &#8216;..\..\run\JvPageSetup.pas</strong></p> <p>This can easily be fixed by editing the files <strong>JvDialogs.pas</strong> and <strong>JvPageSetup.pas<br /> </strong> (located in  … <a href="http://hmastuff.com/blog/problems-compiling-jedivcl"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>When installing the <a href="http://sourceforge.net/projects/jvcl/files/" target="_blank">JediVCL</a> for Borland Delphi, you might get the following error messages:</p>
<p><strong>Error: \jvcl\run\JvPageSetup.pas(1): Illegal character in input file: &#8216;ï&#8217; ($EF)<br />
Fatal: JvDlgs.dpk(86): Could not compile used unit &#8216;..\..\run\JvPageSetup.pas</strong></p>
<p>This can easily be fixed by editing the files <strong>JvDialogs.pas</strong> and <strong>JvPageSetup.pas<br />
</strong> (located in folder \jvcl\run) with <a href="http://notepad-plus-plus.org/download/" target="_blank">NotepadPad++</a>.<br />
In the Notepad++ menu, select &#8220;<strong>ANSI</strong>&#8221; under &#8220;<strong>Encoding</strong>&#8221; and save the files.</p>
<p>Now try to install JVCL again &#8211; should work fine <img src='http://hmastuff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
You can also download a fixed JCL+JVCL setup version from here:<br />
<a href="http://hmastuff.com/JVCL345CompleteJCL231-Build4197_fixed.7z" target="_blank">JVCL345CompleteJCL231-Build4197_fixed.7z</a></p>
<p><strong>Edit:</strong> This problem seems finally to have been fixed in newer JediVCL versions.</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/problems-compiling-jedivcl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix Clockworkmod Recovery boot loop issue</title>
		<link>http://hmastuff.com/blog/how-to-fix-clockworkmod-recovery-boot-loop-issue</link>
		<comments>http://hmastuff.com/blog/how-to-fix-clockworkmod-recovery-boot-loop-issue#comments</comments>
		<pubDate>Sat, 16 Jun 2012 15:02:06 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[clockworkmod]]></category>
		<category><![CDATA[cwm]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[recovery]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[sgs2]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=65</guid>
		<description><![CDATA[<p>In case you installed Clockworkmod Recovery onto your Android device, you might encounter a serious bug that results in booting into Recovery each time. The only way to get into your system is a &#8220;cold-boot&#8221; (keep pressing power+VolDown, then select Android).</p> <p>A complicated and long way to fix this is  … <a href="http://hmastuff.com/blog/how-to-fix-clockworkmod-recovery-boot-loop-issue"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>In case you installed Clockworkmod Recovery onto your Android device, you might encounter a serious bug that results in booting into Recovery each time. The only way to get into your system is a &#8220;cold-boot&#8221; (keep pressing power+VolDown, then select Android).</p>
<p>A complicated and long way to fix this is explained @ <a href="http://goo.gl/RI0sH" target="_blank">http://goo.gl/RI0sH</a></p>
<p>But if your device is already rooted, this is much much easier.<br />
Open a terminal window, e.g. with Android Terminal Emulator from<br />
<a href="https://play.google.com/store/apps/details?id=jackpal.androidterm" target="_blank">https://play.google.com/store/apps/details?id=jackpal.androidterm</a></p>
<p>Now, enter &#8220;<strong>su</strong>&#8221; to get root access. Superuser might ask you for authorization.</p>
<p>Then enter</p>
<pre>echo boot | dd of=/dev/block/mmcblk0p3 bs=1 seek=0</pre>
<p>(please triple-check for mistyping!!!)</p>
<p>Reboot. Your device should now work normal again.<br />
Hope it worked so easily for you as it did for me on my Transformer TF101G.</p>
<hr />
<p><strong>ATTENTION:</strong></p>
<ul>
<li>As you can read in the <a href="http://hmastuff.com/blog/how-to-fix-clockworkmod-recovery-boot-loop-issue#comments">comments</a> to this blog post, using this method works great for some devices, while it seems to have resulted in a soft-brick for other devices (e.g. SGS+) I strongly recommend to first research the web for alternative ways to fix the bootloop issue which are ESPECIALLY MADE FOR YOUR DEVICE. I also recommend to collect links to unbrick tutorials (see <a href="http://forum.xda-developers.com/index.php?tab=all" target="_blank">xda forums</a>, Google and Youtube), so you immediately have some tools ready to unbrick your device.</li>
</ul>
<ul>
<li>The &#8220;cold-boot&#8221; way to get into your system (as described in this blog post) is only available for certain devices, like the ASUS Transformer 101(g). Some custom recovery systems also have a terminal-feature that you could try to run the command on. If your device does not offer a cold-boot or any way to get into terminal-mode, your options are<br />
<strong>a)</strong> try all wipe/format/reset options within Clockworkmod Recovery until you&#8217;re get into your system again (note that of course all your data will be lost)<br />
<strong>b)</strong> download either the original firmware for your device or a custom rom and flash it to your device. You can do this with Clockworkmod Recovery or from your computer via USB, using adb and 3rd party tools. This will also overwrite your bootloader and fix the bootloop issue. For links and downloads, please check all subforums for your device in the <a href="http://forum.xda-developers.com/index.php?tab=all" target="_blank">xda forums</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/how-to-fix-clockworkmod-recovery-boot-loop-issue/feed</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>Setting up VPN on iOS and Android devices</title>
		<link>http://hmastuff.com/blog/setting-up-vpn-on-ios-and-android-devices</link>
		<comments>http://hmastuff.com/blog/setting-up-vpn-on-ios-and-android-devices#comments</comments>
		<pubDate>Sun, 01 Apr 2012 19:41:19 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[hidemyass]]></category>
		<category><![CDATA[hma]]></category>
		<category><![CDATA[instructions]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[l2tp]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[pptp]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=52</guid>
		<description><![CDATA[<p>Should you experience problems with connecting to a VPN on iOS or Android devices via PPTP protocol, first thing to try would be L2TP protocol. Should you also experience problems here, it&#8217;s time to use OpenVPN.</p> <p>On iOS, you need to have a jailbroken device. On Android devices, there are  … <a href="http://hmastuff.com/blog/setting-up-vpn-on-ios-and-android-devices"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Should you experience problems with connecting to a VPN on iOS or Android devices via PPTP protocol, first thing to try would be L2TP protocol. Should you also experience problems here, it&#8217;s time to use OpenVPN.</p>
<p>On iOS, you need to have a jailbroken device. On Android devices, there are 2 ways to connect via OpenVPN; one without need of root access using FeatVPN (a tutorial for this will follow) and one where root is needed. Find the instructions here:</p>
<ul>
<li><a href="http://wiki.hidemyass.com/OpenVPN_setup_on_iPad_iPhone_iTouch" target="_blank">OpenVPN on iOS devices</a></li>
<li><a href="http://wiki.hidemyass.com/Android#OpenVPN_on_Android_devices" target="_blank">OpenVPN on Android devices</a></li>
<li><a href="http://wiki.hidemyass.com/Connection_Instructions" target="_blank">OpenVPN other devices and operating systems</a></li>
<li><a href="http://wiki.hidemyass.com/PPTP" target="_blank">PPTP on various devices and operating systems</a></li>
<li><a href="http://wiki.hidemyass.com/L2TP" target="_blank">L2TP on various devices and operating systems</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/setting-up-vpn-on-ios-and-android-devices/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kylix 3.0 Enterprise and Open Edition &#8211; Delphi for Linux</title>
		<link>http://hmastuff.com/blog/kylix-enterprise-and-open-edition</link>
		<comments>http://hmastuff.com/blog/kylix-enterprise-and-open-edition#comments</comments>
		<pubDate>Sun, 01 Apr 2012 19:27:19 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[borland]]></category>
		<category><![CDATA[delphi]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[inprise]]></category>
		<category><![CDATA[kylix]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pascal]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=47</guid>
		<description><![CDATA[<p>Ever tried Kylix 3.0 Enterprise or Open Edition for Linux? If yes, tell me how you managed to install it &#8211; it seems to be just incompatible with newer Linux distros&#8230; according to my trials and lots of sources on the web.</p> <p>Download Kylix 3 Enterprise here:</p> <ul> <li><a href="http://thepiratebay.se/torrent/3947815/Kylix_3"  … <a href="http://hmastuff.com/blog/kylix-enterprise-and-open-edition"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>Ever tried Kylix 3.0 Enterprise or Open Edition for Linux? If yes, tell me how you managed to install it &#8211; it seems to be just incompatible with newer Linux distros&#8230; according to my trials and lots of sources on the web.</p>
<p>Download Kylix 3 Enterprise here:</p>
<ul>
<li><a href="http://thepiratebay.se/torrent/3947815/Kylix_3" target="_blank">Torrent</a></li>
<li><a href="magnet:?xt=urn:btih:7efbaabf6a14154feed0a23717426a090607879c&amp;dn=Kylix%5F3&amp;tr=http://tpb.tracker.prq.to/announce" target="_blank">Magnet link</a></li>
<li><a href="ftp://ftp.lviv.farlep.net/Linux/Kylix_3/" target="_blank">FTP</a></li>
<li><a href="http://www.multiupload.nl/QNWM2GQRJQ" target="_blank">MultiUpload</a></li>
</ul>
<p>Download Kylix 3 Open Edition here:</p>
<ul>
<li><a href="http://hmastuff.com/kylix3_open.tar.gz" target="_blank">kylix3_open.tar.gz</a></li>
<li><a href="http://www.multiupload.nl/592W131VXZ" target="_blank">MultiUpload</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/kylix-enterprise-and-open-edition/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lots of free Android apps</title>
		<link>http://hmastuff.com/blog/lots-of-free-android-apps</link>
		<comments>http://hmastuff.com/blog/lots-of-free-android-apps#comments</comments>
		<pubDate>Sun, 01 Apr 2012 15:12:02 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[downloads]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=38</guid>
		<description><![CDATA[<ul> <li>Find lots of Android Apps + Games here -&#62; <a href="http://hmastuff.com/android" target="_blank">http://hmastuff.com/android</a></li> </ul> <ul> <li>You should also checkout this blackmarket:<br /> <a href="http://hmavpnorg.bazaarandroid.com/" target="_blank" class="broken_link">http://hmavpnorg.bazaarandroid.com/</a></li> </ul> <p><a href="http://hmavpnorg.bazaarandroid.com/" target="_blank" class="broken_link"><img class="aligncenter" alt="" src="http://hmastuff.com/blog/qrcode.png" width="145" height="145" /></a></p>]]></description>
				<content:encoded><![CDATA[<ul>
<li>Find lots of Android Apps + Games here -&gt; <a href="http://hmastuff.com/android" target="_blank">http://hmastuff.com/android</a></li>
</ul>
<ul>
<li>You should also checkout this blackmarket:<br />
<a href="http://hmavpnorg.bazaarandroid.com/" target="_blank" class="broken_link">http://hmavpnorg.bazaarandroid.com/</a></li>
</ul>
<p><a href="http://hmavpnorg.bazaarandroid.com/" target="_blank" class="broken_link"><img class="aligncenter" alt="" src="http://hmastuff.com/blog/qrcode.png" width="145" height="145" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/lots-of-free-android-apps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1500 .SWF Flash Games + 3538 Java Apps &amp; Games</title>
		<link>http://hmastuff.com/blog/1500-swf-flash-games</link>
		<comments>http://hmastuff.com/blog/1500-swf-flash-games#comments</comments>
		<pubDate>Fri, 30 Mar 2012 22:52:28 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flashlite]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[play]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=13</guid>
		<description><![CDATA[<p>You can download 1500 Flash games in .SWF format here (1.6 GB):</p> <ul> <li><a href="magnet:?xt=urn:btih:ENC7HPFKLPRYEVTXHT6WMNEI2K4WKHQ5" target="_blank">Magnet Link</a></li> <li><a href="http://torrent.to/torrent.php?Mod=Details&#38;ID=910450" target="_blank">Torrent</a></li> </ul> <p>Or play them online here -&#62; <a href="http://hmastuff.com/flash" target="_blank">http://hmastuff.com/flash</a></p> <p>Get 3538 Java Games and Apps here:</p> <ul> <li><a href="magnet:?xt=urn:btih:87414870a93ff5e5c493befdaaf75f98ba0c76d8" target="_blank">Magnet Link</a></li> <li><a href="http://torrent.to/torrent.php?Mod=Details&#38;ID=980603" target="_blank">Torrent</a></li> </ul>]]></description>
				<content:encoded><![CDATA[<p>You can download 1500 Flash games in .SWF format here (1.6 GB):</p>
<ul>
<li><a href="magnet:?xt=urn:btih:ENC7HPFKLPRYEVTXHT6WMNEI2K4WKHQ5" target="_blank">Magnet Link</a></li>
<li><a href="http://torrent.to/torrent.php?Mod=Details&amp;ID=910450" target="_blank">Torrent</a></li>
</ul>
<p>Or play them online here -&gt; <a href="http://hmastuff.com/flash" target="_blank">http://hmastuff.com/flash</a></p>
<hr />
<p>Get 3538 Java Games and Apps here:</p>
<ul>
<li><a href="magnet:?xt=urn:btih:87414870a93ff5e5c493befdaaf75f98ba0c76d8" target="_blank">Magnet Link</a></li>
<li><a href="http://torrent.to/torrent.php?Mod=Details&amp;ID=980603" target="_blank">Torrent</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/1500-swf-flash-games/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPad? Never-ever again!</title>
		<link>http://hmastuff.com/blog/ipad-never-again</link>
		<comments>http://hmastuff.com/blog/ipad-never-again#comments</comments>
		<pubDate>Fri, 30 Mar 2012 22:22:24 +0000</pubDate>
		<dc:creator>Dunkel85</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[bad]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[ipad3]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[worse]]></category>
		<category><![CDATA[worst]]></category>

		<guid isPermaLink="false">http://hmastuff.com/blog/?p=5</guid>
		<description><![CDATA[<p>After I bricked 2 Android tablets, I decided to give the &#8220;New iPad&#8221; (iPad3) a try.<br /> That was the first and last time I bouth an apple product. Here just one of many cons:</p> <ul> <li>no built-in file explorer</li> <li>not possible to download free apps without giving out billing  … <a href="http://hmastuff.com/blog/ipad-never-again"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
				<content:encoded><![CDATA[<p>After I bricked 2 Android tablets, I decided to give the &#8220;New iPad&#8221; (iPad3) a try.<br />
That was the first and last time I bouth an apple product. Here just one of many cons:</p>
<ul>
<li>no built-in file explorer</li>
<li>not possible to download free apps without giving out billing info</li>
<li>too small (below 10 inch)</li>
<li>password must be entered every few clicks</li>
<li>iOS is for newbies and children, not for advanced users</li>
<li>not really customizable</li>
</ul>
<p>Good, old, customizable Android. How I miss it! Ergo &#8211; never buy an Apple product!</p>
<p>If you need to decide &#8211; I can not recommend those cheap tablets like the Viewsonic 10s &#8211; they easily get broken and can&#8217;t even be reset&#8217;ed. Better get the Asus Transformer TF101G &#8211; it&#8217;s worth the money!</p>
]]></content:encoded>
			<wfw:commentRss>http://hmastuff.com/blog/ipad-never-again/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
