<?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>The Powerbase</title>
	<atom:link href="http://www.thepowerbase.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thepowerbase.com</link>
	<description>The Internet&#039;s Finest Source For Open Source</description>
	<lastBuildDate>Thu, 17 May 2012 20:55:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Using touch and imagemagick To Lie To Your Boss</title>
		<link>http://www.thepowerbase.com/2012/05/using-touch-and-imagemagick-to-lie-to-your-boss/</link>
		<comments>http://www.thepowerbase.com/2012/05/using-touch-and-imagemagick-to-lie-to-your-boss/#comments</comments>
		<pubDate>Thu, 17 May 2012 20:53:40 +0000</pubDate>
		<dc:creator>Dean Howell</dc:creator>
				<category><![CDATA[Distros]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[coreutils]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[TPS Reports]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3603</guid>
		<description><![CDATA[If you&#8217;re like me, you sometimes get an omni-potent feeling when staring down the proverbial &#8216;barrel&#8217; of the BASH shell.  And why shouldn&#8217;t you?  It&#8217;s built-ins have everything you need to conquer the world.  In fact, you might even use it to get away with murder.  Of course, we&#8217;re not here to kill anyone.  &#8230;We ]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, you sometimes get an omni-potent feeling when staring down the proverbial &#8216;barrel&#8217; of the BASH shell.  And why shouldn&#8217;t you?  It&#8217;s <em>built-ins</em> have everything you need to conquer the world.  In fact, you might even use it to get away with murder.  Of course, we&#8217;re not here to kill anyone.  &#8230;We just want to cover our asses when the boss comes looking for our TPS reports.</p>
<h2><strong>Scenario </strong></h2>
<p>You are habitually late meeting your deadlines at work.  Your boss asks for April&#8217;s TPS report and demands that it be completed and in his inbox by Friday, 05/04/12.  Friday has come and gone, though luckily your boss was out of town that day.  You know that he is still expecting to see a PDF in his inbox, so you use <em>imagemagick</em> to make a phony, 3-page PDF.</p>
<p>Imagemagick has a great tool built into it called <em>convert</em>.  We can use that to generate a 3 page PDF easily.</p>
<p>First, install <em>imagemagick, </em>though you probably already have it installed.</p>
<p><strong>Ubuntu/Mint/Debian</strong></p>
<p><span style="color: #008000;"><strong><code>sudo apt-get install imagemagick</code></strong></span></p>
<p>Now, let&#8217;s make the phony document.  We will start out by making 3 blank images.  In order to elicit the right response from the recipient and pull this off proper, it has to be believable.  This command will produce 3 jpegs in portrait mode, with 8&#215;10 dimensions at 300 dpi</p>
<p><strong><span style="color: #008000;"><code>convert -size 2550x3300 -density 300 xc:white apriltpsreport1.png</code></span></strong></p>
<p><strong><span style="color: #008000;"><code>convert -size 2550x3300 -density 300 xc:white apriltpsreport2.png</code></span></strong></p>
<p><strong><span style="color: #008000;"><code>convert -size 2550x3300 -density 300 xc:white apriltpsreport3.png</code></span></strong></p>
<p>If you wants the pages to be in landscape, just reverse the dimensions.</p>
<p><span style="color: #008000;"><strong><code>convert -size 3300x2550 -density 300 xc:white apriltpsreport1.png</code></strong></span></p>
<p>Next, we can use <em>convert </em>to combine all of these images into a PDF.</p>
<p><span style="color: #008000;"><strong><code>convert apriltpsreport* apriltpsreport.pdf</code></strong></span></p>
<p>NOTE:  If you&#8217;ve actually put the hard work into making a real report, and you need to combine all of those elements into a multipage PDF, don&#8217;t use the wildcard (*) like I have above.  List each image successively in the order you would want it to appear in the document.</p>
<p>Now, here is the full command that will create all of the images, combine them into a PDF, and clean up the mess that it wants to leave behind.</p>
<p><span style="color: #008000;"><strong><code>convert -size 2550x3300 -density 300 xc:white apriltpsreport1.png &amp;&amp; convert -size 2550x3300 -density 300 xc:white apriltpsreport2.png &amp;&amp; convert -size 2550x3300 -density 300 xc:white apriltpsreport3.png &amp;&amp; convert apriltpsreport* apriltpsreport.pdf &amp;&amp; rm apriltpsreport*.png</code></strong></span></p>
<h2><strong>The Setup</strong></h2>
<p>Now, we&#8217;re not ready to send this file just yet.  You see, the boss man is not the sharpest tool in the shed, but at the same time he is desperate to catch you in a surreptitious act.  He might have the notion to check the file creation date.  If that time is just a minute or two before you sent the email to his inbox, you are toast.  This is your chance to make yourself look good.  The project was due on the 4th, but as far as he can be concerned, you finished it on the 1st!</p>
<p><span style="color: #008000;"><strong><code>touch -d '1 May 2012' apriltpsreport.pdf</code></strong></span></p>
<p>Great!  Now you&#8217;ve successfully modified the file.  It will now show that you created it on May the 1st, but since we are playing psychological warfare, we need to consider all things.  What does your boss really expect?  Well, for starters, he doesn&#8217;t expect you to finish things on time.  That&#8217;s what we are here to overcome- and we did- so what else?  If you do finish a project on time, it&#8217;s at the last minute.  So, this is the command we really should be running&#8230;</p>
<p><span style="color: #008000;"><strong><code>touch -d '1 May 2012 16:49' apriltpsreport.pdf</code></strong></span></p>
<p>There, that&#8217;s better.  Now he can see that the project was completed at 4:49pm, right before you walked out the door.  Though, that might not be enough.  What about the last accessed time.  You don&#8217;t want him to think that you&#8217;ve been fooling with it since the first.  Let&#8217;s fix that.</p>
<p><span style="color: #008000;"><strong><code>touch -amt 201205011649 apriltpsreport.pdf</code></strong></span></p>
<h2 style="text-align: right;"><strong><span style="color: #008000;"><a href="http://www.thepowerbase.com/2012/05/using-touch-and-imagemagick-to-lie-to-your-boss/2/">&#8230;Continued</a></span></strong></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/using-touch-and-imagemagick-to-lie-to-your-boss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pwn Plug Update Guide</title>
		<link>http://www.thepowerbase.com/2012/05/pwn-plug-update-guide/</link>
		<comments>http://www.thepowerbase.com/2012/05/pwn-plug-update-guide/#comments</comments>
		<pubDate>Mon, 14 May 2012 23:04:00 +0000</pubDate>
		<dc:creator>Tom Nardi</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Pwn Plug]]></category>
		<category><![CDATA[Pwnie Express]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3605</guid>
		<description><![CDATA[Pwnie Express has recently upgraded their Pwn Plug pentesting device, greatly improving the capability and usability of the device. This guide will show you how to get your Pwn Plug up and running with the latest software release as quickly as possible. While this guide was written for the newest release (as of this writing, ]]></description>
			<content:encoded><![CDATA[<p>Pwnie Express has recently upgraded their Pwn Plug pentesting device, greatly improving the capability and usability of the device. This guide will show you how to get your Pwn Plug up and running with the latest software release as quickly as possible.</p>
<p>While this guide was written for the newest release (as of this writing, version 1.1), the process should be the same for future system updates as well.</p>
<h2><span style="color: #ff0000;">Warning</span></h2>
<p>Upgrading the Pwn Plug&#8217;s hardware involves manually erasing and writing to its internal flash storage. This will require you to enter commands <em>exactly</em> as they are written, and to make vitally sure that the device is not disturbed while it is performing these tasks. Removing power from the Pwn Plug or breaking its serial connection to your computer while it&#8217;s performing the upgrade could lead to unexpected results.</p>
<h2>Getting the Update</h2>
<p>To get the actual update file for your Pwn Plug, you need to go on the Pwnie Express website to register your hardware:</p>
<h3><a href="http://pwnieexpress.com/commercialregistration.html">http://pwnieexpress.com/commercialregistration.html</a></h3>
<p>Once you have registered your hardware, you should get an email with the unique login credentials required to download the update file itself. For the purposes of this guide, we will assume you have downloaded the update file (pwnplug_1.1_Elite_5-3-2012.tar.gz) to the &#8220;~/Downloads&#8221; directory.</p>
<h2>Upgrade Preparation</h2>
<p>The official Pwn Plug documentation shows you how to update your hardware using a <a href="http://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol">TFTP server</a> over the network. This is a perfectly valid method, but personally I found it more convenient to upgrade my hardware with a USB flash drive. This method has fewer steps and therefore less prone to errors if you are not accustomed to this type of operation.</p>
<p>For this method, you&#8217;ll need a USB flash drive that you don&#8217;t mind formatting, your Pwn Plug, and a computer. The operating system on the computer is not important, so long as you are able to format the USB drive and establish a serial connection with the Pwn Plug. That said, this guide will assume you are running some version of Linux.</p>
<p>To begin, insert your USB flash drive, and format it with the following command:</p>
<pre>bash$ mkfs.vfat -F 16 /dev/sdX</pre>
<p>Where &#8220;sdX&#8221; is the device node for your flash drive. This will reformat the drive to FAT16, which seems to work better with the Pwn Plug&#8217;s bootloader. I tried using a drive formatted to FAT32, but found there were problems reliably reading the files it contained.</p>
<p>Once the flash drive is formatted, you can mount it and extract the Pwn Plug update file to it:</p>
<pre>bash$ mkdir /mnt/pwndrive
bash$ cd /mnt/pwndrive
bash$ tar xvf ~/Downloads/pwnplug_1.1_Elite_5-3-2012.tar.gz
./
./u-boot.kwb
./sheeva-2.6.37-uImage
./pwnplug_1.1_Elite_ubinized_5-3-2012.img</pre>
<p>With your update drive now ready, you need to boot your Pwn Plug up into bootloader mode to perform the upgrade process.</p>
<h2>Pwn Plug Bootloader Mode</h2>
<p>To put your Pwn Plug into its bootloader mode, first start with the device completely powered off. Then connect the USB cable between your computer and the Pwn Plugs mini USB port. Enter the following command into the terminal, but <strong>don&#8217;t</strong> hit Enter:</p>
<pre>bash$ screen /dev/ttyUSB0 115200</pre>
<p>Now, with the devices connected and this command waiting in the terminal, power up the Pwn Plug. As the Pwn Plug has no power switch, I find the easiest way to do this is by using a standard power strip that has a switch on it.</p>
<p>Regardless of how you do it, after the Pwn Plug has had power for a second or so (don&#8217;t wait too long), hit Enter in the terminal to connect over the USB serial link. Once the command has run and the screen has turned black, hit Enter a few times until you see the bootloader prompt:</p>
<pre>Marvell&gt;&gt;</pre>
<p>All of the commands in this guide, unless noted otherwise, are to be run at this bootloader prompt.</p>
<h2>Checking Bootloader Version</h2>
<p>Depending on when you purchased your Pwn Plug, you may need to upload the bootloader before continuing with the installation. To check your current bootloader, enter the command &#8220;version&#8221; into the bootloader prompt:</p>
<pre>Marvell&gt;&gt; version

U-Boot 2011.12 (Jan 08 2012 - 21:53:47)
Marvell-Sheevaplug - eSATA - SD/MMC
gcc (Debian 4.6.2-9) 4.6.2
GNU ld (GNU Binutils for Debian) 2.22</pre>
<p>This output shows your Pwn Plug is running the latest version of the bootloader software, and you can skip ahead to the kernel upgrade step. If you see anything else, you will need to continue on with the bootloader update.</p>
<h2>Update Bootloader</h2>
<p>To upgrade your Pwn Plug&#8217;s bootloader, enter in the following commands (in bold) exactly as they are written:</p>
<pre>Marvell&gt;&gt; <strong>usb start</strong>
(Re)start USB...
USB:   Register 10011 NbrPorts 1
USB EHCI 1.00
scanning bus for devices... 2 USB Device(s) found
       scanning bus for storage devices... 1 Storage Device(s) found
Marvell&gt;&gt; <strong>fatload usb 0:1 0x0800000 u-boot.kwb</strong>
reading u-boot.kwb

372512 bytes read
Marvell&gt;&gt; <strong>nand erase 0x0 0x60000</strong>

NAND erase: device 0 offset 0x0, size 0x60000
Erasing at 0x40000 -- 100% complete.
OK
Marvell&gt;&gt; <strong>nand write 0x0800000 0x0 0x60000</strong>

NAND write: device 0 offset 0x0, size 0x60000
 393216 bytes written: OK</pre>
<p>These commands start up USB on the Pwn Plug, load the file &#8220;u-boot.kwb&#8221; file from it, erase the devices internal flash, and finally write the file to flash. This output shows a successful installation, any deviation from this output could indicate a very serious problem. If you get any errors while reading or writing to flash, make sure you have entered in the commands exactly. If necessary, copy and paste the bold commands directly into the terminal to prevent any possible mistakes.</p>
<p>With the bootloader written, you will now need to reset the Pwn Plug by entering in &#8220;reset&#8221;, waiting a few seconds until the bootloader has restarted (you will see information about the version and hardware) and then hitting &#8220;Enter&#8221; again to get back to the prompt:</p>
<pre>Marvell&gt;&gt; reset
resetting ...

U-Boot 2011.12 (Jan 08 2012 - 21:53:47)
Marvell-Sheevaplug - eSATA - SD/MMC

SoC:   Kirkwood 88F6281_A1
DRAM:  512 MiB
WARNING: Caches not enabled
NAND:  512 MiB
In:    serial
Out:   serial
Err:   serial
Net:   egiga0
88E1116 Initialized on egiga0
Hit any key to stop autoboot:  0
Marvell&gt;&gt;</pre>
<p>The bootloader upgrade will clear out some environment variables which are required for the Pwn Plug to properly function. Specifically, you will need to restore the hardware MAC address. To do this, first verify the devices MAC (located on the Pwn Plug&#8217;s sticker), then write it to the bootloaders storage with the following commands (entering your MAC for XX:XX:XX:XX:XX:XX):</p>
<pre>Marvell&gt;&gt; set ethaddr XX:XX:XX:XX:XX:XX
Marvell&gt;&gt; saveenv
Saving Environment to NAND...
Erasing Nand...
Erasing at 0x60000 -- 100% complete.
Writing to Nand... done</pre>
<div id="attachment_3623" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/plug_serial.jpg"><img class="size-full wp-image-3623" title="plug_serial" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/plug_serial.jpg" alt="" width="300" height="125" /></a>
<p class="wp-caption-text">Pwn Plug MAC and serial number label</p>
</div>
<p>With this step complete, your Pwn Plug is now running the latest bootloader and you are ready to move on to the next step.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/pwn-plug-update-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pwn Plug Software Release 1.1 Now Available</title>
		<link>http://www.thepowerbase.com/2012/05/pwn-plug-software-release-1-1-now-available/</link>
		<comments>http://www.thepowerbase.com/2012/05/pwn-plug-software-release-1-1-now-available/#comments</comments>
		<pubDate>Sun, 13 May 2012 14:51:58 +0000</pubDate>
		<dc:creator>Tom Nardi</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Pwn Plug]]></category>
		<category><![CDATA[Pwnie Express]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3598</guid>
		<description><![CDATA[Over on the Pwnie Express blog, Dave Porcello has announced the release of Pwn Plug System Software 1.1, a massive update to the companies Pwn Plug product. This update addresses many of the issues with the existing software, such as the outdated release of Ubuntu it was based on and the lack of latest security ]]></description>
			<content:encoded><![CDATA[<p>Over on the Pwnie Express blog, <a href="http://www.thepowerbase.com/2012/04/evolution-of-security-interview-with-pwnie-express-ceo-dave-porcello/">Dave Porcello</a> has announced the release of Pwn Plug System Software 1.1, a massive update to the companies <a href="http://www.thepowerbase.com/2012/04/pandoras-box-pwn-plug-elite-review/">Pwn Plug</a> product.</p>
<p>This update addresses many of the issues with the existing software, such as the outdated release of Ubuntu it was based on and the lack of latest security tools. It also adds some very unique new features like the ability to <a href="http://en.wikipedia.org/wiki/War_dialing">wardial</a> via GSM modem and control the Pwn Plug device with nothing more than SMS messages from any cell phone.</p>
<p>In the next few days we will be publishing a full review of the 1.1 update, as well as a walkthrough for those looking to upgrade their own Pwn Plug or SheevaPlug devices to the latest and greatest build. In the meantime, users can download the latest release directly from the <a href="http://www.pwnieexpress.com/downloads.html">Pwnie Express site</a>.</p>
<h2>Changelog</h2>
<p><strong>OS &amp; performance improvements!</strong></p>
<ul>
<li>OS upgraded to Debian 6 (Squeeze)</li>
<li>20-second boot up</li>
<li>Faster file-system (UBIFS)</li>
</ul>
<p><strong>New tunneling features!</strong></p>
<ul>
<li>SSH Egress Buster</li>
<li>OpenVPN &amp; SSH-VPN support</li>
<li>New covert channels (udptunnel, iodine, etc)</li>
<li>Support for authenticating HTTP proxies</li>
<li>More resilient tunnels (thanks Lance Honer!)</li>
</ul>
<p><strong>New Plug UI features!</strong></p>
<ul>
<li>Point-and-click SSH receiver (Backtrack) setup</li>
<li>One-click NAC Bypass (Elite models)</li>
<li>One-click Passive Recon</li>
<li>One-click Stealth Mode</li>
<li>One-click History Wipe</li>
</ul>
<p><strong>New wireless features!</strong></p>
<ul>
<li>Support for 802.11n and hundreds of new wireless devices</li>
<li>JP Ronin’s Bluetooth pentesting suite</li>
<li>Kismet new-core with Ubertooth support</li>
<li>Zigbee support (thanks Travis Goodspeed!)</li>
<li>4G cell network support (Elite models)</li>
<li>War dialing via GSM modem (Elite models)</li>
<li>SMS text-to-bash (Elite models)</li>
</ul>
<p><strong>..and of course, more tools!</strong></p>
<ul>
<li>Over 50 new pentesting tools!</li>
<li>Web app testing tools, including w3af</li>
<li>Database/SQL testing tools</li>
<li>THC IPv6 toolkit</li>
<li>VoIP testing tools</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/pwn-plug-software-release-1-1-now-available/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>First EA Games &#8216;Arrive&#8217; In The Ubuntu Software Center</title>
		<link>http://www.thepowerbase.com/2012/05/first-ea-games-arrive-in-the-ubuntu-software-center/</link>
		<comments>http://www.thepowerbase.com/2012/05/first-ea-games-arrive-in-the-ubuntu-software-center/#comments</comments>
		<pubDate>Wed, 09 May 2012 13:59:33 +0000</pubDate>
		<dc:creator>Dean Howell</dc:creator>
				<category><![CDATA[Distros]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[EA]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[precise]]></category>
		<category><![CDATA[ubuntu software center]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3577</guid>
		<description><![CDATA[Fresh from UDS (Ubuntu Developer Summit), attendee Electronic Arts have decided to finally dip it&#8217;s toes into uncharted waters.  Now available in the Ubuntu Software Center are 2 title from the monolithic publisher.  Ubuntu users can now get their hands on Lord Of Ultima and Command &#38; Conquer: Tiberium Alliances. Click Below To Install Click ]]></description>
			<content:encoded><![CDATA[<p>Fresh from UDS (Ubuntu Developer Summit), attendee Electronic Arts have decided to finally dip it&#8217;s toes into uncharted waters.  Now available in the Ubuntu Software Center are 2 title from the monolithic publisher.  Ubuntu users can now get their hands on <em>Lord Of Ultima</em> and <em>Command &amp; Conquer: Tiberium Alliances</em>.</p>
<div class="one_half">
<h2><strong>Lord of Ultima</strong></h2>
<p><span style="color: #888888;"><strong>Description from Ubuntu Software Center</strong></span></p>
<p>As an eager conqueror, the player settles down in this newly found land, set in the world of Caledonia and starts to raise his empire by developing his first humble village into a prosperous, highly customized capital. To become the mighty and feared Lord of Ultima, the player must master the art of diplomacy and trade as well as the military activities of spying, plundering, attacking and sieging enemy cities.</p>
<p>Lord of Ultima features in-depth strategic gameplay, extensive city building modes and multiple social features from an advanced trading system and alliance creation to online chat and forums.</p>
<p>Play now for free!</p>
<p>&nbsp;</p>
<h2><strong>Command &amp; Conquer Tiberium Alliances</strong></h2>
<p><strong>Description from Ubuntu Software Center</strong></p>
<p>In Command &amp; Conquer Tiberium Alliances, your skills as a Commander will be put to the test as you enter the fight for resources and world domination.</p>
<p>Build up your base, optimize your resource production and discover new attack and defend tactics as you prepare Player vs. Player and Player vs. Environment battles.</p>
<p>Most importantly, you will need to build up strategic alliances to coordinate massive attacks and support each other for the fight over Tiberium.</p>
<p>Play4Free! Play it Now!</p>
</div>
<p><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/ultimaubuntu.png"><img class="aligncenter size-full wp-image-3579" title="ultimaubuntu" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/ultimaubuntu.png" alt="" width="213" height="100" /></a></p>
<p style="text-align: center;"><strong>Click Below To Install</strong></p>
<p><a href="apt://lordofultima"><img class="aligncenter size-full wp-image-3581" title="scbutton-free-200px" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/scbutton-free-200px.png" alt="" width="200" height="60" /></a></p>
<p><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/whitespacer.png"><img class="aligncenter size-full wp-image-3590" title="whitespacer" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/whitespacer.png" alt="" width="300" height="265" /></a><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/tiberiumubuntu.png"><img class="aligncenter" title="tiberiumubuntu" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/tiberiumubuntu.png" alt="" width="300" height="72" /></a></p>
<p style="text-align: center;"><strong>Click Below To Install</strong></p>
<p><a href="apt://tiberiumalliances"><img class="aligncenter" title="scbutton-free-200px" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/scbutton-free-200px.png" alt="" width="200" height="60" /></a></p>
<div class="one_half last"></div>
<div class="clearboth"></div>
<h2><strong>Close, but not really&#8230;</strong></h2>
<p>Unfortunately the additions are bittersweet&#8230;</p>
<p>Both of these titles are from EA&#8217;s <em>Play For Free</em> series, which is  acollection of HTML5 games available to anyone with an Internet connection and a modern browser.  The installer from the Ubuntu Software center simply places a shortcut for the game on your system.  Once you&#8217;ve launched <em>Lords Of Ultima</em>, it will open a new browser tab where you can, if you&#8217;ve not done so before, sign up for a free account and start your campaign.</p>
<p>Essentially, with this confusing delivery method, both of these software&#8217;s existence in the <em>Ubuntu Software Center</em> serve only as advertisements for EA&#8217;s <em>Play For Free</em> series/service.  Moreover, extra effort could easily have been put into these titles to give the idea that they are truly integrated and installed on a users system.  For instance, why can&#8217;t the game launch in it&#8217;s own window and separate itself from your browsing workflow?  A little isolation here could go a long way and at least give the impression that EA is actually developing software for this burgeoning platform.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/first-ea-games-arrive-in-the-ubuntu-software-center/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>[Sneak Peek] Vivaldi Content Store Shows Ankles For The Cinematograph</title>
		<link>http://www.thepowerbase.com/2012/05/sneak-peak-vivaldi-content-store-shows-ankles-for-the-cinematograph/</link>
		<comments>http://www.thepowerbase.com/2012/05/sneak-peak-vivaldi-content-store-shows-ankles-for-the-cinematograph/#comments</comments>
		<pubDate>Tue, 08 May 2012 20:10:03 +0000</pubDate>
		<dc:creator>Dean Howell</dc:creator>
				<category><![CDATA[Desktop Environments]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Plasma Active]]></category>
		<category><![CDATA[aaron seigo]]></category>
		<category><![CDATA[plasma active]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[Vivaldi]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3570</guid>
		<description><![CDATA[Our good friends over at opentablets.org have posted a video from aseigo&#8217;s blog demoing the beginnings of the Make-Play-Live content store.  No word yet on whether that name is official, but it does drape itself quite dramatically across the application&#8217;s login screen. The application is clearly very early on in development and there isn&#8217;t much ]]></description>
			<content:encoded><![CDATA[<p>Our good friends over at <a title="OpenTablets.org: A Brand New Community For Mobile Open Source!" href="http://www.thepowerbase.com/2012/03/opentablets-org-a-brand-new-community-for-mobile-open-source/">opentablets.org</a> have<a href="opentablets.org"> posted a video</a> from aseigo&#8217;s blog demoing the beginnings of the <em>Make-Play-Live</em> content store.  No word yet on whether that name is official, but it does drape itself quite dramatically across the application&#8217;s login screen.</p>
<p>The application is clearly very early on in development and there isn&#8217;t much to see as far as content is concerned.  You&#8217;ll see a content library of books that are, presumably, of the public domain.  Also is a small catalog of wallpapers.  Though the demonstration doesn&#8217;t give a clear indication as to what sort of content might be forth-coming, it does do a great job demonstrating interactivity.  What we should be most excited for from this video is a very blunt and vocal hint that there is now a working eReader suitable for the platform.  If you like books, freedom, and you <a title="Get A KDE Spark Tablet RIGHT NOW!" href="http://www.thepowerbase.com/2012/03/get-a-kde-spark-tablet-right-now/">own a Zenithink C71</a> like I do, then you might be equally tickled.</p>
<p>What else is unclear is how the store will be monetized.  The video depicts Aaron as having 640 points, which is not unlike content delivery on game consoles.  Of course this could all just be for show.  Why show dollar signs if they&#8217;ve yet to be implemented?  I would surmise, given the goals of the platform and the free and open-source nature of Linux that this will not be the walled-garden that many users are used to on other platforms.</p>
<p><iframe src="http://blip.tv/play/AYL1gl0C.html?p=1" frameborder="0" width="480" height="318"></iframe><object style="display: none;" width="320" height="240" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://a.blip.tv/api.swf#AYL1gl0C" /><embed style="display: none;" width="320" height="240" type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AYL1gl0C" /></object></p>
<p>Opentablets.org is the official Vivaldi tablet community, having received <a href="http://aseigo.blogspot.com/2012/03/forums-bodega-client-code-partners.html">blessings from Aaron Siego himself</a>.  It&#8217;s a bit of a ghost-town over there right now, but we&#8217;re sure that their community will grow right alongside Plasma-Active.  In a few months, it will probably be a very rich and vibrant community.  So, what are you waiting for?  Head on over there and join the discussion!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/sneak-peak-vivaldi-content-store-shows-ankles-for-the-cinematograph/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Control Your World: FLIRC Review</title>
		<link>http://www.thepowerbase.com/2012/05/control-your-world-flirc-review/</link>
		<comments>http://www.thepowerbase.com/2012/05/control-your-world-flirc-review/#comments</comments>
		<pubDate>Mon, 07 May 2012 19:19:41 +0000</pubDate>
		<dc:creator>Tom Nardi</dc:creator>
				<category><![CDATA[Exclusives]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[FLIRC]]></category>
		<category><![CDATA[HTPC]]></category>
		<category><![CDATA[IR]]></category>
		<category><![CDATA[Jason Kotzin]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3489</guid>
		<description><![CDATA[With the trend towards digital media, more and more consumers have been using their computers as a way to store and playback their movies, music, and pictures. Well known software like XBMC can turn your computer into a fully functional home theater, but there has always been one problem with self-built Home Theater PCs (HTPCs): ]]></description>
			<content:encoded><![CDATA[<p>With the trend towards digital media, more and more consumers have been using their computers as a way to store and playback their movies, music, and pictures. Well known software like XBMC can turn your computer into a fully functional home theater, but there has always been one problem with self-built Home Theater PCs (HTPCs): controlling it. You could buy a remote control (and associated receiver) for your HTPC, but that comes with it&#8217;s own problems.</p>
<h2>What is FLIRC?</h2>
<p>Remote controls intended for computer use, on the whole, include a cheap IR remote and a USB receiver which interprets button presses from the remote into input events the operating system can use. These products are fairly cheap, and more or less get the job done, <a href="http://www.thepowerbase.com/2012/04/use-a-cheap-ps3-ir-receiver-under-linux/">but they aren&#8217;t perfect.</a></p>
<p>For one, you are left with yet another remote in your surely growing collection, made even worse by the fact that this one is probably of significantly lower quality than whatever came with your TV or audio receiver. The other, more practical, problem is how you utilize the remote itself. When you buy a remote and receiver combination, the functions of all the buttons on the remote are predetermined and generally can&#8217;t be changed. If you wanted to do something special, like assign a particular button on the remote to an Alt+ key combination, you would need third party software that could translate whatever static event the receiver spits out for that button into a keyboard event.</p>
<p>Enter <a href="http://www.flirc.tv/">FLIRC</a>, a product designed to change the way people use IR remotes to control their computers. FLIRC doesn&#8217;t include a remote control, instead, it uses whatever remotes you already have. This immediately remedies the first problem, as you can simply program FLIRC against whatever remote you are already using to control the existing A/V equipment. But even better than that, FLIRC gives you incredible control over what happens on specific button presses. This is really the greatest strength of FLIRC, as it allows the user to create advanced control layouts that would not otherwise be possible.</p>
<p>For example, in my home theater the surround sound receiver&#8217;s remote includes a full number pad, even though in my particular setup it is non functional. With FLIRC, I can program these otherwise useless buttons to command various functions on my HTPC, turning what was once a half useless remote into something I can use for two separate devices without them interfering with each other.</p>
<h2>How FLIRC Works</h2>
<p>FLIRC is fundamentally different than other products on the market, as the mapping of IR input to keypresses is not static, but user programmable. While it is possible to get this type of functionality with standard USB IR receivers, it requires intermediary software to be constantly running: adding another layer of complication and potential failure. By saving configuration on the FLIRC device itself, the user no longer has to constantly keep software running to interpret remote commands into their desired keypresses. What&#8217;s more, since FLIRC stores its configuration internally rather than on the computer, you can move FLIRC between computers and devices without having to reconfigure it.</p>
<p>The key is that FLIRC reports itself to the operating system as a standard USB Human Interface Device (HID), so any modern OS will be able to read it as if it was a keyboard. Even if the device or OS you want to use FLIRC on has no included support for remote controls, you can program FLIRC to &#8220;press&#8221; keys that the system will understand. For example, I was able to program FLIRC to interpret the directional pad on my remote to standard keyboard arrow keys; I then plugged FLIRC into my Android device and was able to navigate through the applications with my remote.</p>
<p>This allows for incredible flexibility. Being able to program FLIRC from a different device than what you end up using it on and the fact that it emulates a USB keyboard means you can use FLIRC where other products would be useless.</p>
<h2>FLIRC Hardware</h2>
<p>The FLIRC hardware is a small and unassuming little clear box that plugs into your USB port, about half the length of your average USB flash drive. The clear casing is pretty cool as you can see the internal workings of the device, though I was somewhat surprised there were no LEDs to indicate IR activity like in the other IR receivers I&#8217;ve used. It seems logical enough to have a little SMD LED on the PCB if the case is going to be clear, but on the other hand, a random blinking LED might look a little odd in your home theater setup. Still, it would be handy to have a visual verification that the FLIRC dongle is receiving the IR signals from your remote, especially since the nature of FLIRC means you will be throwing random remotes at it and hoping FLIRC is able to understand them.</p>
<p>Of course, that being said, I had no problem programming FLIRC against any IR remote I threw at it. The FLIRC documentation suggests some remotes may not be compatible, but I certainly couldn&#8217;t find any that didn&#8217;t work exactly as expected.</p>
<p>Build quality feels very good on the FLIRC; the plastic case is made thick enough that you&#8217;re not going to break it under normal use, and there is no wiggle at all where the PCB lays into it. I also liked the new packaging, which is simple to open and doesn&#8217;t waste a lot of materials. It&#8217;s interesting to note that the packaging isn&#8217;t strictly necessary at this point in FLIRC&#8217;s development (as there are no retail stores that sell it yet), but is included simply to make the product look more professional.</p>
<p>Between the construction and presentation, it&#8217;s clear that the FLIRC team is committed to delivering a polished and professional device, which is definitely something to be commended for such a small group. It would be easier and cheaper to have made the FLIRC out of cheaper materials and ship it to you in a plastic bag, but they&#8217;ve clearly taken the high road throughout the production of the physical device.</p>
<h2>Hardware Gallery</h2>
<p><a href='http://www.thepowerbase.com/2012/05/control-your-world-flirc-review/flirc_front/' title='Front of FLIRC Package'><img width="150" height="150" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/flirc_front-150x150.jpg" class="attachment-thumbnail" alt="Front of FLIRC Package" title="Front of FLIRC Package" /></a><br />
<a href='http://www.thepowerbase.com/2012/05/control-your-world-flirc-review/flirc_back/' title='Back of FLIRC Package'><img width="150" height="150" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/flirc_back-150x150.jpg" class="attachment-thumbnail" alt="Back of FLIRC Package" title="Back of FLIRC Package" /></a><br />
<a href='http://www.thepowerbase.com/2012/05/control-your-world-flirc-review/flirc_open/' title='FLIRC Receiver'><img width="150" height="150" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/flirc_open-150x150.jpg" class="attachment-thumbnail" alt="FLIRC Receiver" title="FLIRC Receiver" /></a><br />
<a href='http://www.thepowerbase.com/2012/05/control-your-world-flirc-review/flirc_comp/' title='FLIRC with standard USB flash drive'><img width="150" height="150" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/flirc_comp-150x150.jpg" class="attachment-thumbnail" alt="FLIRC with standard USB flash drive" title="FLIRC with standard USB flash drive" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/control-your-world-flirc-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Google Burying Firefox With User Agent Strings?</title>
		<link>http://www.thepowerbase.com/2012/05/is-google-burying-firefox-with-user-agent-strings/</link>
		<comments>http://www.thepowerbase.com/2012/05/is-google-burying-firefox-with-user-agent-strings/#comments</comments>
		<pubDate>Sun, 06 May 2012 03:57:34 +0000</pubDate>
		<dc:creator>Dean Howell</dc:creator>
				<category><![CDATA[Distros]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[user agent string]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3513</guid>
		<description><![CDATA[What&#8217;s The Story? I&#8217;ve been using Google Chrome for Linux since it was first made available.  I use Gmail, Google Docs (now Drive), Google Plus, Google Adsense, Google Analytics, Google Music, and many more.  I am the original owner of an original CR-48 Chromebook, having received mine way back in Dec. 2010.  I promote Google ]]></description>
			<content:encoded><![CDATA[<h2><strong>What&#8217;s The Story?</strong></h2>
<p>I&#8217;ve been using Google Chrome for Linux since it was first made available.  I use Gmail, Google Docs (now Drive), Google Plus, Google Adsense, Google Analytics, Google Music, and many more.  I am the original owner of an original CR-48 Chromebook, having received mine way back in Dec. 2010.  I promote Google services at work and have worked hard to point my business&#8217; compass towards their entire suite of offerings.  I use a <a title="Swype on the Nexus S:  A Love affair" href="http://www.thepowerbase.com/2011/10/swype-on-the-nexus-s-a-love-affair/">Samsung Nexus S</a> with an official build of Android 4.04 and I&#8217;m only interested in official devices moving forward.</p>
<p>At the same time, I have been gently treading a fine line between complete faith and trust in Google and fear of the Orwellian future they are capable of realizing for us all.</p>
<h2><strong>What did you find?</strong></h2>
<p>I recently switched from Kubuntu 12.04 to Ubuntu 12.04 for production.  I had planned on doing so as soon as The Gimp 2.8 was released.  Well, <a title="GIMP 2.8 Released, Faith In Our Future Renewed" href="http://www.thepowerbase.com/2012/05/gimp-2-8-released-faith-in-our-future-renewed/">it&#8217;s here and I&#8217;m happy</a>.  After freshly installing 12.04 4 days ago, I decided that I would try to use Firefox for a change and see what it has to offer.  I haven&#8217;t used it actively since the early 3.x era and I was sure that I&#8217;d find something to like about it.  Things have been working out great when I&#8217;m accessing a non-Google page.  Very early on, I started seeing a lot of this&#8230;</p>
<p style="text-align: left;"><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/Problem-loading-page-Mozilla-Firefox_008.png"><img class="aligncenter  wp-image-3514" title="Problem loading page - Mozilla Firefox_008" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/Problem-loading-page-Mozilla-Firefox_008.png" alt="" width="600" height="533" /></a></p>
<blockquote>
<p style="text-align: left;"><strong>The connection was reset.  The connection to the server was reset while the page was loading.</strong></p>
</blockquote>
<p style="text-align: left;">OK, let&#8217;s refresh the page.  I would get this message an average of 3 to 4 times before my Gmail would load.  If I wasn&#8217;t seeing that error, I was getting just a plain white screen.  Firefox seemed pretty confident that there was nothing to load yet there was just a white void for me to stare into.  If it wasn&#8217;t that, it was this&#8230;</p>
<p style="text-align: left;"><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/Selection_0111.png"><img class="aligncenter  wp-image-3519" title="Selection_011" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/Selection_0111.png" alt="" width="600" height="244" /></a>It wasn&#8217;t long until I started to see the trend.  I never had any errors loading Slashdot or OMG Ubuntu.  Hacker News, Reddit and all the other sites that I frequent all loaded fine, %100 of the time.  Of course Google Plus, Adsense, Analytics and Google Drive all gave me &#8220;Connection Reset&#8221;.  So today, while running errands, a really nasty notion came to me.  Is Google using user agent strings to create a poor experience in Firefox?</p>
<p style="text-align: left;">I decided to test this theory.</p>
<h2 style="text-align: left;"><strong>Let&#8217;s test it</strong></h2>
<p>First, I installed Google Chrome.  Here is my user agent string.</p>
<p><strong>Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.168 Safari/535.19</strong></p>
<p>I installed the <a href="https://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher/"><em>User-Agent-Switcher</em> add-on for Firefox</a>.  Then I manually added the string to the add-on and activated it.  I wanted to be certain the the strong was really reporting, so I pointed Firefox at <a href="http://www.whatsmyuseragent.com">whatsmyuseragent.com</a>.  Yep, look&#8217;s like it works.</p>
<p style="text-align: center;"><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/Whats-My-User-Agent-Mozilla-Firefox_012.png"><img class="aligncenter  wp-image-3522" title="Whats My User Agent? - Mozilla Firefox_012" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/Whats-My-User-Agent-Mozilla-Firefox_012.png" alt="" width="600" height="471" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/is-google-burying-firefox-with-user-agent-strings/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>[How to] Install Faenza Icons In Ubuntu 12.04</title>
		<link>http://www.thepowerbase.com/2012/05/how-to-install-faenza-icons-in-ubuntu-12-04/</link>
		<comments>http://www.thepowerbase.com/2012/05/how-to-install-faenza-icons-in-ubuntu-12-04/#comments</comments>
		<pubDate>Sat, 05 May 2012 20:57:49 +0000</pubDate>
		<dc:creator>Dean Howell</dc:creator>
				<category><![CDATA[Desktop Environments]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unity]]></category>
		<category><![CDATA[12.04]]></category>
		<category><![CDATA[Faenza]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[Precise Pangolin]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3506</guid>
		<description><![CDATA[Regardless of how you feel about Unity, there is one thing about the latest release, 12.04 Precise Pangolin, that cannot be ignored.  It really is beautiful.  Of course, just like the pretty girl who sat across the room from you in science class, once you approach her you notice that she is less than perfect.  ]]></description>
			<content:encoded><![CDATA[<p>Regardless of how you feel about Unity, there is one thing about the latest release, 12.04 Precise Pangolin, that cannot be ignored.  It really is beautiful.  Of course, just like the pretty girl who sat across the room from you in science class, once you approach her you notice that she is less than perfect.  In her case, it might be a nasty case of teenage acne.  In Ubuntu&#8217;s case, it&#8217;s the icons.</p>
<p>You can remedy this easily with the world famous Faenza iconset.  If you&#8217;re using KDE or Kubuntu 12.04, <a title="Install Faenza Icons In KDE 4.8" href="http://www.thepowerbase.com/2012/03/install-faenza-icons-in-kde-4-8/">click here</a>.  If you&#8217;re using Ubuntu 11.10, <a title="Install Faenza 1.1, The Right Way!" href="http://www.thepowerbase.com/2011/10/install-faenza-1-1-the-right-way/">click here</a>.  If you&#8217;ve joined the droves of people who are now riding the 12.04 Unity yacht, stick around.  It&#8217;s as easy as pie.</p>
<p>First, let&#8217;s add the PPA that holds these icons.</p>
<p><strong><code>sudo apt-add-repository ppa:tiheum/equinox</code></strong></p>
<p>Now, let&#8217;s update your apt database.</p>
<p><strong><code>sudo apt-get update</code></strong></p>
<p>Now, install the icons!</p>
<p><strong><code>sudo apt-get install faenza-icon-theme</code></strong></p>
<p>It&#8217;s a big icon theme so it may take a while to download it, but once you do, it will be worth it.  Of course now that it&#8217;s downloaded and installed, you have no way to apply it!  There are a couple of different tools that can be used to apply these icons, and we&#8217;ll cover the easiest and most straight-forward of them.  Gnome Tweak Tool.  First, let&#8217;s install it.</p>
<p><strong><code>sudo apt-get install gnome-tweak-tool</code></strong></p>
<p>Setting the icon theme with Gnome Tweak Tool is super easy.  Just select &#8220;theme&#8221; from the left pane, then from the right pane, select &#8220;Faenza&#8221; from the icons drop-down.  That&#8217;s it!  The change should happen immediately.</p>
<p style="text-align: left;"><a href="http://www.thepowerbase.com/wp-content/uploads/2011/10/Advanced-Settings_008.png"><img class="aligncenter  wp-image-238" title="Advanced Settings_008" src="http://www.thepowerbase.com/wp-content/uploads/2011/10/Advanced-Settings_008.png" alt="" width="600" height="477" /></a></p>
<h2 style="text-align: left;"><strong>What is Faenza?</strong></h2>
<p>Faenza is a tremendous iconset by <a href="http://tiheum.deviantart.com/">Deviantart user Tehium</a>.  It is easily the most detailed and complete set of asset replacements for Gnome and is continually updated.  The last time we <a title="Install Faenza 1.1, The Right Way!" href="http://www.thepowerbase.com/2011/10/install-faenza-1-1-the-right-way/">reported on Faenza,</a> we were discussing version 1.1 and since then the set has been updated to include new icons and new sizes for each icon.  Here is the changelog for version 1.2.</p>
<p style="text-align: left;"><strong><span style="color: #008000;">== 1.2 ==</span></strong><br />
<strong><span style="color: #008000;">* New apps: Desura, Gajim, Google Music Frame, Mail notification</span></strong><br />
<strong><span style="color: #008000;">* New icons sizes: 64&#215;64 and 96&#215;96</span></strong><br />
<strong><span style="color: #008000;">* Fixes the specific folders icons replaced by the standard one</span></strong><br />
<strong><span style="color: #008000;">* Fixes some missing links</span></strong></p>
<p style="text-align: left;">For general information on the set, visit the project&#8217;s <a href="http://browse.deviantart.com/?qh=&amp;section=&amp;global=1&amp;q=tiheum#/d2v6x24">landing page on Deviantart.</a>  Also be sure to check out Tehium&#8217;s <a href="http://tiheum.deviantart.com/#/d4mr0s4">Ice Cream Sandwich look-a-like theme for Gnome Shell.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/how-to-install-faenza-icons-in-ubuntu-12-04/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HBO GO Android App (Finally) Updated For Ice Cream Sandwich</title>
		<link>http://www.thepowerbase.com/2012/05/hbo-go-android-app-finally-updated-for-ice-cream-sandwich/</link>
		<comments>http://www.thepowerbase.com/2012/05/hbo-go-android-app-finally-updated-for-ice-cream-sandwich/#comments</comments>
		<pubDate>Sat, 05 May 2012 17:41:44 +0000</pubDate>
		<dc:creator>Tom Nardi</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[HBO]]></category>
		<category><![CDATA[HBO Go]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3494</guid>
		<description><![CDATA[HBO GO, the video streaming service which offers episodes of HBO series and their current run movies, has been strangely unavailable on the latest version of Google&#8217;s mobile OS. While Netflix made sure their application worked on Android 4.0+ in a timely manner, the HBO GO application has kept ICS users waiting for the last ]]></description>
			<content:encoded><![CDATA[<p>HBO GO, the video streaming service which offers episodes of HBO series and their current run movies, has been strangely unavailable on the latest version of Google&#8217;s mobile OS. While Netflix made sure their application worked on Android 4.0+ in a timely manner, the HBO GO application has kept ICS users waiting for the last 7 months.</p>
<p>While HBO subscribers with ICS devices will no doubt be happy about this bit of news, it does highlight a serious problem within the Android ecosystem. Problems linked to Android&#8217;s fragmentation are often blown out of proportion, but when it directly effects users of Google&#8217;s flagship devices like the Galaxy Nexus, it&#8217;s easy to see how the vast array of different Android versions and devices can make using the platform more confusing for consumers. Imagine a user who upgraded his phone to a Galaxy Nexus, only to find he was unable to use the HBO GO app he was just previously enjoying on his two year old device.</p>
<p>As if to further confound users, this update manages to skip over ICS powered tablets entirely. So users of ICS powered phones will be able to stream the latest episode of <em>Game of Thrones</em>, but tablet owners (arguably where people are more likely to watch a full episode or movie) are left out in the cold. For them, winter is <em>still</em> coming.</p>
<h2>The HBO GO App</h2>
<p>If you subscribe to HBO through your cable provider (unfortunately, there is no way to access HBO GO without an active cable subscription), you can <a href="https://play.google.com/store/apps/details?id=com.HBO">download the app from the Play Store</a> and get access to not only the movies and documentaries in HBO&#8217;s current rotation, but every episode of their most popular series.</p>
<div id="attachment_3495" class="wp-caption aligncenter" style="width: 312px"><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/hbo_ss1.png"><img class=" wp-image-3495  " title="hbo_ss1" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/hbo_ss1.png" alt="" width="302" height="516" /></a>
<p class="wp-caption-text">&quot;The Sopranos&quot; via HBO Go</p>
</div>
<p>While this represents a considerable amount of content, there are some logistical issues with the service. Older series which proved very popular like <em>The Larry Sanders Show</em> and <em>Six Feet Under </em>don&#8217;t appear, and the rotation of HBO&#8217;s movies is so rapid that users have very little time to watch them before they have been replaced with a new group.</p>
<p>Still, there is no additional cost to use HBO GO for existing HBO subscribers, so it&#8217;s worth taking a look now that it&#8217;s device support has been expanded to cover the latest and greatest Android handsets.</p>
<div id="attachment_3496" class="wp-caption aligncenter" style="width: 312px"><a href="http://www.thepowerbase.com/wp-content/uploads/2012/05/hbo_ss2.png"><img class=" wp-image-3496  " title="hbo_ss2" src="http://www.thepowerbase.com/wp-content/uploads/2012/05/hbo_ss2.png" alt="" width="302" height="517" /></a>
<p class="wp-caption-text">&quot;Star Trek: First Contact&quot; via HBO GO</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/hbo-go-android-app-finally-updated-for-ice-cream-sandwich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIMP 2.8 Released, Faith In Our Future Renewed</title>
		<link>http://www.thepowerbase.com/2012/05/gimp-2-8-released-faith-in-our-future-renewed/</link>
		<comments>http://www.thepowerbase.com/2012/05/gimp-2-8-released-faith-in-our-future-renewed/#comments</comments>
		<pubDate>Thu, 03 May 2012 06:27:29 +0000</pubDate>
		<dc:creator>Dean Howell</dc:creator>
				<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[gimp 2.8]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.thepowerbase.com/?p=3477</guid>
		<description><![CDATA[GIMP 2.8 has been released for general consumption after 2 long years of nail-biting, cursing and spousal abuse.  This release is positively epic because not only does it bring with it a ton of hype, it brings with it the most useful feature updates in it&#8217;s long and storied history. We&#8217;d reported a couple of ]]></description>
			<content:encoded><![CDATA[<p>GIMP 2.8 has been released for general consumption after 2 long years of nail-biting, cursing and spousal abuse.  This release is positively epic because not only does it bring with it a ton of hype, it brings with it the most useful feature updates in it&#8217;s long and storied history.</p>
<p>We&#8217;d <a title="Gimp 2.8: So Close, Yet So Far, Yet So Close" href="http://www.thepowerbase.com/2012/03/gimp-2-8-so-close-yet-so-far-yet-so-close/">reported a couple of months ago</a> on the impending release and how close we were getting to an official build.  Our report was met with a lot of doubt from readers, and rightly so.  GIMP 2.8 seemed to be baking in an oven that was not on.  Well, regardless of that doubt, we are proud to announce that this actual release comes in front of our own reported forecast.  Thank you GIMP team!</p>
<h2>Features</h2>
<h4>Single-window mode</h4>
<p>The single most requested feature of GIMP 2.8 is in the mix.  Single-window mode aims to simplify an artist&#8217;s workflow within a modern window-manager, such as Gnome 3 or Unity.  In GIMP 2.6, working with multiple images in either of those desktops is a real challenge.  This feature will allow users to run with the application maximized, working on images within that virtual environment without having to deal with the awkward, &#8220;modern&#8221; idioms of today&#8217;s popular desktop environments.</p>
<div class="wp-caption aligncenter" style="width: 610px"><img class=" " src="http://omgubuntu.s3.amazonaws.com/wp-content/uploads/2012/05/screen-shot-2012-05-02-at-12.48.37.jpg" alt="" width="600" height="428" />
<p class="wp-caption-text">From OMG!Ubuntu</p>
</div>
<h4>On Canvas Text Editing</h4>
<p>Another trial in patience with GIMP 2.6 was having to edit text in yet another separate window.  As much as I love the GIMP, this has always been an absolute, workflow impacting nightmare.  Also available in this on canvas toolbox are obvious and usable buttons for setting your typeface, traditionally.  Three cheers for this!</p>
<p><img class="alignnone" src="http://omgubuntu.s3.amazonaws.com/wp-content/uploads/2012/05/screen-shot-2012-05-03-at-10.33.36.jpg" alt="" width="568" height="201" /></p>
<h4><strong>Layer Groups</strong></h4>
<p>If you do a lot of complicated image manipulation in the GIMP and suddenly find yourself with 20+ layers (happens to me all the time), you might have found yourself trying to come up with all sorts of elaborate naming schemes to keep them organized.  No more!  With GIMP 2.8, you can now organize your layers into group, and those groups can be raised or lowered together, giving you the ability to move several layers in one click-drag.</p>
<p><strong>Get it!</strong></p>
<p><strong></strong>GIMP 2.8 is what dreams are made of.  But unlike real life where you might pursue the ability to put yourself into a <a title="From Lucid To Precise: An Upgrade Diary" href="http://www.thepowerbase.com/2012/04/from-lucid-to-precise-an-upgrade-diary/">Lucid state of mind</a> so that you can capture their essence, with GIMP 2.8 you can simply add this PPA to your system!</p>
<p><code>sudo add-apt-repository ppa:otto-kesselgulasch/gimp</code></p>
<p><code>sudo apt-get update &amp;&amp; sudo apt-get install gimp</code></p>
<h2> <span style="color: #888888;">Source</span> | <a href="http://www.gimpusers.com/news/00420-gimp-2-8-finally-released">Gimp Users</a></h2>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepowerbase.com/2012/05/gimp-2-8-released-faith-in-our-future-renewed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.thepowerbase.com @ 2012-05-18 11:25:27 -->
