<?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>stefano &#187; More time you save more you can waste</title> <atom:link href="http://www.stefanoforenza.com/tag/more-time-you-save-more-you-can-waste/feed/" rel="self" type="application/rss+xml" /><link>http://www.stefanoforenza.com</link> <description>Abbattuta l&#039;Accademia della Crusca gli SMS vinceranno</description> <lastBuildDate>Sun, 05 May 2013 00:47:22 +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>Rapache returns ?</title><link>http://www.stefanoforenza.com/rapache-returns/</link> <comments>http://www.stefanoforenza.com/rapache-returns/#comments</comments> <pubDate>Thu, 20 Oct 2011 22:42:35 +0000</pubDate> <dc:creator>Stefano Forenza</dc:creator> <category><![CDATA[rapache]]></category> <category><![CDATA[ubuntu]]></category> <category><![CDATA[2012 will be the year of Linux. Ubuntu Pink Pony will pwn Windows]]></category> <category><![CDATA[More time you save more you can waste]]></category> <category><![CDATA[why world sucks and I rock]]></category> <category><![CDATA[[HOW TO] get the damn thing working]]></category> <guid
isPermaLink="false">http://www.stefanoforenza.com/?p=2285</guid> <description><![CDATA[Not without a certain pleasure I announce that I got Rapache fixed and working again. Rapache is a graphical user tool to help you configure Apache2. It allows easy creation of virtual name hosts and modules activation without prior knowledge of configuration files. I still have to mess with the packaging thing, and there are certain trade-offs, but anybody interested can finally download a working version. To install it run the following commands sudo apt-get ...]]></description> <content:encoded><![CDATA[<p
style="text-align: center;"><img
class="aligncenter size-full wp-image-2115" title="Rapache Logo" src="http://www.stefanoforenza.com/blog/wp-content/uploads/2010/06/rapache.png" alt="" width="256" height="256" /></p><p>Not without a certain pleasure I announce that I got <strong>Rapache</strong> fixed and working again.</p><blockquote><p>Rapache is a graphical user tool to help you configure Apache2. It allows easy creation of virtual name hosts and modules activation without prior knowledge of configuration files.</p></blockquote><p>I still have to mess with the packaging thing, and there are certain trade-offs, but anybody interested can finally download a working version.</p><p>To install it run the following commands</p><pre>sudo apt-get install python-crypto python-openssl python-lxml
sudo apt-get install python-glade2 python-gnome2-extras python-gksu2
sudo apt-get install python-gtk2 python-gtksourceview2 gksu bzr
bzr branch lp:rapache</pre><p>Once you&#8217;re done, you can run it with the following commands:</p><pre>cd rapache
sudo ./rapache</pre><p>Note that Rapache now requires sudo, but it will nevertheless ask for your password the first time you try to do anything. It&#8217;s glitchy and patchy but at least it works.</p><p>Also there is no more tray icon (not a problem for Unity users I guess) and the status bar displays an &#8216;apache not reacheable&#8217; message unregarding the real apache status.</p><p>Still you get the same easy virtualhost creation, syntax highlighted source editor, module activation/removal we all used to love.</p><p
style="text-align: center;"><img
class="aligncenter size-full wp-image-155" title="rapache-security" src="http://www.stefanoforenza.com/blog/wp-content/uploads/2008/09/rapache-security.png" alt="" width="788" height="516" /></p><p>A word of warning, as my computer is still running Ubuntu 10.10 Rapache is untested on 11.04 and 11.10. But it&#8217;s worth a try. Let me know how it runs <img
src='http://www.stefanoforenza.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>You can find <a
href="http://www.stefanoforenza.com/category/rapache/">more about Rapache in my previous posts</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.stefanoforenza.com/rapache-returns/feed/</wfw:commentRss> <slash:comments>16</slash:comments> </item> <item><title>How to repeat a shell command N times</title><link>http://www.stefanoforenza.com/how-to-repeat-a-shell-command-n-times/</link> <comments>http://www.stefanoforenza.com/how-to-repeat-a-shell-command-n-times/#comments</comments> <pubDate>Tue, 21 Dec 2010 10:02:01 +0000</pubDate> <dc:creator>Stefano Forenza</dc:creator> <category><![CDATA[ubuntu]]></category> <category><![CDATA[Bash FTW]]></category> <category><![CDATA[More time you save more you can waste]]></category> <category><![CDATA[[HOW TO] get the damn thing working]]></category> <guid
isPermaLink="false">http://www.stefanoforenza.com/?p=2137</guid> <description><![CDATA[Last day, I needed to repeat a shell command a arbitrary number of times, and all I found was the suggestion to use the repeat command. Sadly, I haven&#8217;t been able to found that command in Ubuntu, but after some research I could luckily find something useful. What follows is a very simple bash implementation of the repeat command. First, open your .bash_aliases file: xdg-open ~/.bash-aliases Second, paste these lines at the bottom of the file ...]]></description> <content:encoded><![CDATA[<p>Last day, I needed to <strong>repeat</strong> a <em>shell command</em> a arbitrary number of times, and all I found was the suggestion to use the <em>repeat</em> command.</p><p>Sadly, I haven&#8217;t been able to found that command in Ubuntu, but after some research I could luckily find something useful. What follows is a very simple <em>bash </em>implementation of the <em>repeat command. </em></p><p><strong>First</strong>, open your <em>.bash_aliases</em> file:</p><pre>xdg-open ~/.bash-aliases</pre><p><strong>Second</strong>, paste these lines at the bottom of the file and save:</p><pre>repeat() {
    n=$1
    shift
    while [ $(( n -= 1 )) -ge 0 ]
    do
        "$@"
    done
}</pre><p><strong>Third</strong>, either close and open again your terminal, <strong>or </strong>type:</p><pre>source ~/.bash_aliases</pre><p>Et voilà ! You can now <strong>use it like this</strong>:</p><pre>repeat 5 echo Hello World !!!</pre><p>or</p><pre>repeat 5 ./myscript.sh</pre><p>Hope this can help you !</p> ]]></content:encoded> <wfw:commentRss>http://www.stefanoforenza.com/how-to-repeat-a-shell-command-n-times/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Fix your NO_PUBKEY PPA&#8217;s in a snap (or a script) [HOW TO]</title><link>http://www.stefanoforenza.com/solve-your-no_pubkey-ppas-in-a-snap-or-a-script/</link> <comments>http://www.stefanoforenza.com/solve-your-no_pubkey-ppas-in-a-snap-or-a-script/#comments</comments> <pubDate>Mon, 11 May 2009 14:58:14 +0000</pubDate> <dc:creator>Stefano Forenza</dc:creator> <category><![CDATA[ubuntu]]></category> <category><![CDATA[More time you save more you can waste]]></category> <category><![CDATA[[HOW TO] get the damn thing working]]></category> <guid
isPermaLink="false">http://www.stefanoforenza.com/?p=1331</guid> <description><![CDATA[Adding a new PPA is quite a pain, and even after you add it, still you get ugly errors complaining the apt key is missing, and signature not being verified (this also leads to an obnoxious double confirmation from the gui updater). Stuff like this: W: GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY DAA9427DCBF475C3 Some people already got their ass bitten even here ...]]></description> <content:encoded><![CDATA[<p
style="text-align: center;"><img
class="aligncenter size-full wp-image-1336" title="Missing GPG key ?" src="http://www.stefanoforenza.com/blog/wp-content/uploads/2009/05/1406682449_3a45af2d54.jpg" alt="Need the key ?" width="500" height="261" /></p><p><em>Adding a new PPA</em> is <a
title="quite a pain" href="http://www.stefanoforenza.com/the-good-the-bad-the-ugly-how-to-waste-time/">quite a pain</a>, and even after you add it, still you get ugly errors complaining the <em>apt key is missing</em>, and <em>signature not being verified</em> (this also leads to an obnoxious double confirmation from the <em>gui updater</em>). Stuff like this:</p><pre>W: GPG error: http://ppa.launchpad.net intrepid Release:
The following signatures couldn't be verified because the public key is not
available: NO_PUBKEY DAA9427DCBF475C3</pre><p>Some people already got their <a
href="http://www.stefanoforenza.com/chromium-on-ubuntu-how-to/">ass bitten even here</a> (and I&#8217;m quite happy other reader helped them faster than I could).</p><p>Well, now it&#8217;s over ! <a
href="http://phyx.wordpress.com/2009/05/10/ubuntu-script-para-instalar-automaticamente-launchpad-ppa-keys/">Nico has been kind enough</a> to point out an <a
href="http://ubuntuforums.org/showpost.php?p=6700382&amp;postcount=66">UbuntuForums script</a> to solve the issue once for all. Here&#8217;s the <em>updated script</em>.</p><p><strong>Download the following script</strong>:</p><p><a
href="http://www.stefanoforenza.com/blog/wp-content/uploads/2009/05/launchpad-updatetar.gz">Launchpad Keys Update Script</a></p><p>extract the file (it should already be executable, in case of problems check it is in the properties of the file), open a terminal in the directory where you extracted the file and run</p><pre>sudo ./launchpad-update</pre><p>The script will fetch every <strong>PPA key</strong> you need from Launchpad and solve your update errors in one pass ! Should you have added other <em>PPAs</em> afterwards, simply re-run the script.</p><p><strong>Note: </strong>it works only for Launchpad repositories !</p><p><small>[<a
href="http://www.flickr.com/photos/64531266@N00/1406682449">image credits</a>]</small></p> ]]></content:encoded> <wfw:commentRss>http://www.stefanoforenza.com/solve-your-no_pubkey-ppas-in-a-snap-or-a-script/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>How will splashtop change the rules of the game ?</title><link>http://www.stefanoforenza.com/how-will-splashtop-change-the-rules-of-the-game/</link> <comments>http://www.stefanoforenza.com/how-will-splashtop-change-the-rules-of-the-game/#comments</comments> <pubDate>Sun, 08 Mar 2009 13:16:09 +0000</pubDate> <dc:creator>Stefano Forenza</dc:creator> <category><![CDATA[ubuntu]]></category> <category><![CDATA[free as in your butt]]></category> <category><![CDATA[free software]]></category> <category><![CDATA[More time you save more you can waste]]></category> <category><![CDATA[nice but don't ask me to try this]]></category> <category><![CDATA[software patents harm kittens]]></category> <guid
isPermaLink="false">http://www.stefanoforenza.com/?p=710</guid> <description><![CDATA[If you&#8217;re into netbooks and latest technology you surely already have heard of Splashtop. Splashtop is an instant on embedded Linux which boots in seconds (I mean, 3-4 seconds) and give the user fast access to web-based features as Web Browser, Skype, online gaming and similar stuff. Actually, the most interesting thing about Splashtop is that, being embedded in the computer&#8217;s firmware, it does not substitute to the choosen operative system. It&#8217;s just a faster ...]]></description> <content:encoded><![CDATA[<p>If you&#8217;re into netbooks and latest technology you surely already have heard of <a
href="http://www.splashtop.com">Splashtop.</a></p><p><img
class="aligncenter size-full wp-image-715" title="Splashtop's logo" src="http://www.stefanoforenza.com/blog/wp-content/uploads/2009/03/logo2.gif" alt="Splashtop's logo" width="280" height="97" /></p><p>Splashtop is an instant on embedded Linux which boots in seconds (I mean, 3-4 seconds) and give the user fast access to web-based features as Web Browser, Skype, online gaming and similar stuff.</p><p>Actually, the most interesting thing about Splashtop is that, being embedded in the computer&#8217;s firmware, it does not substitute to the choosen operative system. It&#8217;s just a faster alternative to check the mail, and chat with friends.</p><p>Also, while the faq asserts the contrary &#8230;</p><blockquote><p><strong>Can I boot Windows in the background while I’m using Splashtop? </strong></p><p>Currently Splashtop runs separately from your primary operating system. You’ll have to exit Splashtop in order to launch your operating system. The same is true in reverse as well – you will have to exit your operating system (and restart your computer) in order to open Splashtop.</p></blockquote><p><em>[ from: <a
href="http://www.splashtop.com/faq.php#06">http://www.splashtop.com/faq.php#06</a> ]</em></p><p>&#8230; an (entertaining) video caught during a presentation shows Splashtop can be used as a temporary interface to a slower loading operating system (like Win.. well, watch the video).</p><p><a
id="splashvid"></a><br
/> <object
width="480" height="385" data="http://www.youtube.com/v/acDS7DmHC_g&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param
name="allowFullScreen" value="true" /><param
name="allowscriptaccess" value="always" /><param
name="src" value="http://www.youtube.com/v/acDS7DmHC_g&amp;hl=en&amp;fs=1" /><param
name="allowfullscreen" value="true" /><a
href="http://www.stefanoforenza.com/how-will-splashtop-change-the-rules-of-the-game/#splashvid">Probs with the video? See it here</a></object></p><p>As probably every of you already heard about this, I am writing this post mostly to reflect with you about the possible medium-term impact Splashtop may have on personal computing.</p><p>Here are some points:</p><p><strong>It&#8217;s loading fast and it&#8217;s virtually immune to viruses(*)</strong>: that means it will appeal a wide range of computer illiterates, that mostly use the computer to surf the web and check the mail. Also, since it loads instantly, may mean it&#8217;ll get occasional use even by power users, in the occasions they just need to quickly check their mail or drop a message to someone in MSN/Skype.</p><p><small><em>(* not true)</em></small></p><p>Also, <a
href="http://www.splashtop.com/get_splashtop.php">Splashtop is already deployed</a> by a handful of mainstream manufacturers, and certainly other are working to get it on their motherboards as well.</p><p>A wide adoption may mean for <strong>Splashtop to become the most diffused operating system</strong>.</p><p>While a Linux based operating system riskying to become a de-facto standard on every computer <a
href="http://www.linuxjournal.com/content/linux-gets-faster-splashtop">may seem gold</a>, not everything shines. Reflect: if it&#8217;s so cool to have already been adopted and everybody likes it so much, how comes they didn&#8217;t patent it ?</p><p>They did:</p><p><strong>Patents:</strong></p><ul><li><a
href="http://www.google.com/patents?id=KGh6AAAAEBAJ">Mechanism for intuitively invoking one or more auxiliary</a></li><li><a
href="http://www.freepatentsonline.com/7441113.html">Method and apparatus for virtualization of appliances</a></li></ul><p>Other (unspecified) patents are pending.</p><p>This may open the door to yet another lock in scenario. And possibly even worse than the actual force-Windows-on-every-consumer. Thruth to be said, so far, the approach of splashtop toward developers seems much more open that Apple&#8217;s and Microsoft&#8217;s, but patents always raise concerns, no matter what:</p><ul><li>as patenting means Splashtop will be the only player in the BIOS-as-OS business</li><li>or will be anyway more cheap than commercial competitors</li></ul><p>So, what make this worse than MS monopoly ? For maybe the first time in computing, patents will be possibly able to completely forbid competition in a non-secondary area. That said, I&#8217;m no patent expert and probably over-simplifying, that&#8217;s just what popped into my mind when I saw those patents referenced on their homepage.</p><p><strong>What consequences may Slashtop have on the market ?</strong></p><p>Their browser is based on <strong>Firefox</strong>. This could set Firefox to surpass Internet Explorer in the browser war by using its same weapon: being already installed when the customer first turns the computer on. If Slashtop succeeds, expect to see a great increase in the Firefox share.</p><p>Same effect, but much blander for Instant Messaging protocols, which will now play a fair game thanks to the multi protocol client. Skype, also, may see a little boost over MSN, simply because being pre-installed while &#8211; I assume &#8211; the multiprotocol IM client installed by default won&#8217;t support Audio/Video chat.</p><p>While many people point that using Splashtop may bring people more used to Linux applications and thus more inclined to switch, I don&#8217;t really think so. The splashtop interface doesn&#8217;t seem that similar to Gnome&#8217;s and Kde&#8217;s, and most of the applications that users will get accustomed to, are present on Windows from a long long time.</p><p><strong>How will affect power users ?</strong></p><p>Power users with the need of mobility are likely to use it quite as much a beginners. The others maybe be pratically unaffected.</p><p>Something that should be noted though, is that Splashtop is upgradable. Thus, probably replaceable. That may open the door to a landscape of hacks and possible integration with existing linux distribution, just to wide to be fully grasped in this early stage.</p><p>Still, given the patents concerns, it remains to be seen how legal for a Linux distribution will be to ship it&#8217;s own Splashtop replacement. Or how legal will it be for an OEM to distribute a Splashtop-like application in place of Splashtop.</p><p><strong>Possible competitors</strong></p><p>Dell is working on another approach (and I really wonder if it came out as a workaround for Splashtop&#8217;s patents). <a
href="http://blogs.computerworld.com/the_first_dual_windows_linux_pcs_arrive">It will embedd an additional ARM processor in their computers,</a> to run it&#8217;s own Firmware-Linux-distro (based on &#8211; *surprise* &#8211; <a
href="http://www.novell.com/products/desktop/">SLED 10</a> &#8211; with full support for *surprise* <a
href="http://ostatic.com/blog/ooxml-why-is-it-bad-and-what-can-we-do">OOXML</a>).</p><p>Running the BIOS-distro onto an alternate CPU allows for a system that doesn&#8217;t need to implement any of the mechanisms described in the &#8220;<em>Auxiliaries</em>&#8221; and &#8220;A<em>ppliances Virtualization</em>&#8221; patents. Basically, you don&#8217;t pay for the patents, you pay for having an additional processor.</p><p><strong>Conclusions</strong></p><p>I came to none <img
src='http://www.stefanoforenza.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . What do you think will be Splashtop&#8217;s impact on the market ? How will it affect Linux ?</p> ]]></content:encoded> <wfw:commentRss>http://www.stefanoforenza.com/how-will-splashtop-change-the-rules-of-the-game/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>If you blog, Shutter will rock your socks</title><link>http://www.stefanoforenza.com/if-you-blog-shutter-will-rock-your-socks/</link> <comments>http://www.stefanoforenza.com/if-you-blog-shutter-will-rock-your-socks/#comments</comments> <pubDate>Fri, 06 Mar 2009 16:00:42 +0000</pubDate> <dc:creator>Stefano Forenza</dc:creator> <category><![CDATA[ubuntu]]></category> <category><![CDATA[More time you save more you can waste]]></category> <category><![CDATA[Software you want]]></category> <guid
isPermaLink="false">http://www.stefanoforenza.com/?p=664</guid> <description><![CDATA[Sometimes it&#8217;s good things that look for you, not the contrary. Yesterday night, I&#8217;ve been contacted on IRC by Vadim. Turned out he was in the development team of Shutter and told me to take a look to the new release (0.7). Shutter ?!.. Shutter, formerly known with the unfortunate name of gScrot, is a nifty GTK utility to take screenshots. After a first look, I was happily surprised. As I am blogging more these ...]]></description> <content:encoded><![CDATA[<p>Sometimes it&#8217;s good things that look for you, not the contrary.</p><p>Yesterday night, I&#8217;ve been contacted on IRC by <a
href="https://launchpad.net/~vperetokin">Vadim</a>. Turned out he was in the development team of <a
href="http://shutter-project.org/">Shutter</a> and told me to take a look to the new release (0.7).</p><p><strong>Shutter ?!..<br
/> </strong></p><p><strong><img
class="aligncenter size-medium wp-image-665" title="Shutter" src="http://www.stefanoforenza.com/blog/wp-content/uploads/2009/03/screenshot_001-295x300.png" alt="Shutter" width="295" height="300" /><br
/> </strong></p><p><em>Shutter</em>, formerly known with the unfortunate name of <em>gScrot</em>, is a nifty GTK utility to take screenshots. After a first look, I was happily surprised. As I am blogging more these days, I&#8217;ve becoming more and more frustrated about taking screenshots.</p><p>Problem is: taking screenshots wastes an awful amount of time. Usually you hit print screen, save somewhere (don&#8217;t even try to save in clipboard, that won&#8217;t work with GIMP), open gimp, select, crop, save. Upload. Uff..</p><p>What&#8217;s even more frustrating to me about the whole process is the number of window GIMP opens, that bring additional confusion in my already messy workspace setup (irc chat, firefox, terminal etc). I really hate that.</p><p>While the screenshot plugin of Compiz allowed me to slice through the gimp burden in some cases, it&#8217;s not feature rich as <em>Shutter</em>.</p><div
id="attachment_669" style="width:150px;" class="wp-caption alignright"><img
class="size-full wp-image-669" title="Webpage screenshot example" src="http://www.stefanoforenza.com/blog/wp-content/uploads/2009/03/screenshot_011001.png" alt="Shot of launchpad bug #1. I had to crop (and resize) it later as the original was 20.000 pixel tall !" width="150" height="308" /><span
class="wp-caption-text">Screenshot of LP bug #1. I had to crop (and resize) it later as the original was 20.000 pixel tall !</span></div><p>Shutter allows to take <em>screenshots</em> in 4 ways:</p><ul><li><em>Full Screen</em>: takes a screenshot of the whole screen</li><li><em>Window</em>: makes a shot of a single window. While this can be normally accomplished with <em>Alt+PrntScrn</em>, <em>Shutter</em> is capable to grab window decorations as well. Furthermore, no background will be visible if your window decoration has rounded corners. Nice thing is <strong>it will even let you select the window to grab from a dropdown menu</strong>, without the need to even leave Shutter&#8217;s window.</li><li><em>Section</em>: will grab just a part of a window. After selecting the window you want to grab, the various components of the window (such as button bar, treeviews, etc) will be highlighted as you hover the mouse.</li><li><em>Web</em>: another cool thing. You can take the screenshot of a whole webpage. Just copy paste the <em>URL</em> (it will also auto-detect if you clipboard contains an <em>URL</em>) and you&#8217;ll get a picture of the whole webpage, tall as it is, without scrollbars or anything.</li></ul><div
id="attachment_672" style="width:500px;" class="wp-caption aligncenter"><img
class="size-full wp-image-672" title="Shutter selection mode" src="http://www.stefanoforenza.com/blog/wp-content/uploads/2009/03/shutter-selection-screenshot.jpg" alt="Shutter selection mode" width="500" height="313" /><span
class="wp-caption-text">Shutter selection mode, featuring a nice semi-transparent overlay</span></div><p><strong>Features</strong></p><p>Along with usual and much needed configurable preferences (where to save, filename format and naming etc), there are also a bunch of other features worth mentioning:</p><ul><li>a bunch of plugins to make your screenshot look like a polaroid photo, have a shadow, have an edge etc. If you blog and wanna annoy your readers, that&#8217;s the path to go <img
src='http://www.stefanoforenza.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</li><li>an useful resize plugin, to let you resize your shots right from inside the program.</li><li>an internal editor, to add annotations and basic shapes to your pictures. Goodbye Gimp !</li><li>integrated upload. Imageshack, Ftps and your Places menu are at hand.</li><li>pdf export (may be useful with webpages, maybe ?).</li></ul><p><strong>How to get it</strong></p><p>Ubuntu repositories are available on launchpad for both the Stable and the development version.</p><p>To get the stable add those lines to your /etc/apt/sources.list</p><pre>deb http://ppa.launchpad.net/shutter/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/shutter/ppa/ubuntu jaunty main</pre><p>then</p><pre>sudo apt-get install shutter</pre><p>Downloads for other distributions and further informations are available at their download page:</p><p
style="text-align: left;"><a
href="http://shutter-project.org/downloads/">http://shutter-project.org/downloads/</a></p><p><strong>Criticism</strong></p><p>Of course <em>Shutter</em> is not perfect, even though is quite mature and has a fair amount of features. During my tests I experienced some sporadic freeze (which could be related to my <em>nVidia</em> driver btw, my MacBook+Ubuntu setup doesn&#8217;t really feel stable at the moment).</p><p>Also as <em>Shutter</em> gives me the strong sensation of being mostly feature complete, I&#8217;d really like it to refactor the <em>user interface</em> a bit. Don&#8217;t get me wrong, it&#8217;s evident that the UI got many attentions and much  careduring the development process, but I really think some more polish and streamlining may be done. I really think that could be a nice goal for the next milestone.</p><p>Also other things I&#8217;d have liked:</p><ul><li>Crop plugin : currently only a resize plugin is available.</li><li>Blog plugin: leveraging the <em>XML-RPC</em> format to upload images and insert a reference to them into your blog database. Well, that&#8217;s asking much, but ain&#8217;t I allowed to dream ?</li></ul><p><strong>References</strong></p><ul><li><a
href="http://shutter-project.org/">Shutter Project home page</a></li><li><a
href="https://launchpad.net/shutter">Shutter on Launchpad</a></li></ul><ul><strong></strong></ul> ]]></content:encoded> <wfw:commentRss>http://www.stefanoforenza.com/if-you-blog-shutter-will-rock-your-socks/feed/</wfw:commentRss> <slash:comments>18</slash:comments> </item> </channel> </rss>