<?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>Freya.no</title>
	<atom:link href="http://wp.freya.no/feed/" rel="self" type="application/rss+xml" />
	<link>http://wp.freya.no</link>
	<description>Knowledge is power</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:56:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Spring MVC: how to build a thread-safe Controller</title>
		<link>http://wp.freya.no/2012/02/spring-mvc-how-to-build-a-thread-safe-controller/</link>
		<comments>http://wp.freya.no/2012/02/spring-mvc-how-to-build-a-thread-safe-controller/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:24:28 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[safety]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1131</guid>
		<description><![CDATA[Controllers in Spring MVC are desined to be shared between requests. Each controller has a default singleton scope so if you are using controllers you neeed to be aware of that. The easiest way to make sure your controller is thread-safe is to not to have class variables. F.ex. this example from Spring MVC tutorial: [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Controllers in Spring MVC are desined to be shared between requests. Each controller has a default singleton scope so if you are using controllers you neeed to be aware of that. The easiest way to make sure your controller is thread-safe is to not to have class variables. F.ex. this example from <a href="http://static.springsource.org/spring/docs/2.5.x/reference/mvc.html#13.11.13">Spring MVC tutorial</a>:</p>
<pre class="brush: java; title: ; notranslate">
@Controller
@RequestMapping(&quot;/editPet.do&quot;)
public class EditPetForm {

    private final Clinic clinic;

    public EditPetForm(Clinic clinic) {
        this.clinic = clinic;
    }

    @RequestMapping(method = RequestMethod.GET)
    public String setupForm(@RequestParam(&quot;petId&quot;) int petId, ModelMap model) {
        Pet pet = this.clinic.loadPet(petId);
        model.addAttribute(&quot;pet&quot;, pet);
        return &quot;petForm&quot;;
    }

    @RequestMapping(method = RequestMethod.POST)
    public String processSubmit(
            @ModelAttribute(&quot;pet&quot;) Pet pet, BindingResult result, SessionStatus status) {

        new PetValidator().validate(pet, result);
        if (result.hasErrors()) {
            return &quot;petForm&quot;;
        }
        else {
            this.clinic.storePet(pet);
            status.setComplete();
            return &quot;redirect:owner.do?ownerId=&quot; + pet.getOwner().getId();
        }
    }
}
</pre>
<p>In this example we can have a serious issue regarding thread-safety: private variable clinic. If there will be a situation where to different requests access the controller simultaniously, one of them will instanciate the controller and begin to process a form, then the other one comes inn. The result from processing of the first request will be sent to the other one, thus the requests receive fail data or nothing.</p>
<p>The solution to the problem may be the following:<br />
1. Annotate Controller with @Scope(&#8220;request&#8221;) or @Scope(&#8220;session&#8221;)<br />
2. Move private variable into one of the methods or save it in session or model.</p>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1131" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2012%2F02%2Fspring-mvc-how-to-build-a-thread-safe-controller%2F&amp;title=Spring%20MVC%3A%20how%20to%20build%20a%20thread-safe%20Controller" id="wpa2a_6"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2012/02/spring-mvc-how-to-build-a-thread-safe-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TDD (test-driven development) is Bullshit!</title>
		<link>http://wp.freya.no/2012/01/tdd-test-driven-development-is-bullshit/</link>
		<comments>http://wp.freya.no/2012/01/tdd-test-driven-development-is-bullshit/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 19:49:40 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[bullshit]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tdd]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1098</guid>
		<description><![CDATA[Well, maybe not in theory, but in practice &#8211; definitely. Test-drive development is a way to program where you write an automated unit test that fails first, then you write code and check that the test runs ok. Brilliant theory for an ideal world (doesn&#8217;t exist). In practice however it is very seldom that you [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Well, maybe not in <a href="http://en.wikipedia.org/wiki/Test-driven_development">theory</a>, but in practice &#8211; definitely.</p>
<p>Test-drive development is a way to program where you write an automated unit test that fails first, then you write code and check that the test runs ok. Brilliant theory for an ideal world (doesn&#8217;t exist). In practice however it is very seldom that you as a programmer have a full and clear understanding of what is it you are gonna do.</p>
<p>Of course I&#8217;m not talking about cases where you need to calculate the result of 2+2. Sure you can write a test case here.</p>
<p>And here comes a hard reality where you come to the real place, f.ex. a bank that needs a new program. And here you are with a task that states smth like this &#8220;Create a form that have these and these fields and calculates that and that&#8221;. You begin with a test case? You are right! That&#8217;s what happens if you do this: you kill several days  trying to understand how you build this test case, what fields you need to fill inn to calculate the result. If you&#8217;ll try to check a more specific result then you need several extra days to find a person who maybe knows how the value must be calculated.</p>
<p>Because it is very seldom in the real world that programmers work together with persons who both know and can explain to the programmer how the things should be done. Simply because those persons do not exist.</p>
<p>So you wrote the test and now you need to write a calculation algorithm&#8230; Hmm, how the hell do we do that? We start building it and magic happens! The algorithm that can calculate the value needs all totally different input values then those you&#8217;ve written in your test case&#8230; Ouch! It happened again?</p>
<p>At the end you&#8217;ve used double time to write the code and update the test case in parallel plus the time you&#8217;ve killed on the test at the beginning.</p>
<p>So why is it so popular to talk about it and constantly try to use it? Do not know. You need to write test cases when you program difficult logic. That is the fact. But doing it FIRST? It&#8217;s just a waste of time and killing of enthusiasm. You won&#8217;t be clever and you&#8217;ll not write better code if you kill time with the test first.</p>
<p>What really needs to be done before you start programming is to draw a solution.</p>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1098" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2012%2F01%2Ftdd-test-driven-development-is-bullshit%2F&amp;title=TDD%20%28test-driven%20development%29%20is%20Bullshit%21" id="wpa2a_14"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2012/01/tdd-test-driven-development-is-bullshit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aurora 9.0a2</title>
		<link>http://wp.freya.no/2011/10/aurora-9-0a2/</link>
		<comments>http://wp.freya.no/2011/10/aurora-9-0a2/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 19:58:51 +0000</pubDate>
		<dc:creator>kent</dc:creator>
				<category><![CDATA[App]]></category>
		<category><![CDATA[aurora]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://wp.freya.no/2011/10/aurora-9-0a2/</guid>
		<description><![CDATA[All right! No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p>All right!</p>
<p><a href="http://wp.freya.no/files/2011/10/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://wp.freya.no/files/2011/10/image_thumb.png" width="663" height="355" /></a></p>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1097" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2011%2F10%2Faurora-9-0a2%2F&amp;title=Aurora%209.0a2" id="wpa2a_22"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2011/10/aurora-9-0a2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specification</title>
		<link>http://wp.freya.no/2011/09/specification/</link>
		<comments>http://wp.freya.no/2011/09/specification/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 20:13:48 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[strips]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1088</guid>
		<description><![CDATA[Silly: Hi guys! Silly: Here is the specification of you new task! SPEC: We want a &#8220;Calculate&#8221; button that calculates when you push it. No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p><embed src="http://tatyana.freya.no/Flash/progs_spesification.swf" quality="high" scale="exactfit" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" height="400px" width="550px"></embed></p>
<blockquote><p>
Silly: Hi guys!<br />
Silly: Here is the specification of you new task!<br />
SPEC: We want a &#8220;Calculate&#8221; button that calculates when you push it.</p></blockquote>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1088" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2011%2F09%2Fspecification%2F&amp;title=Specification" id="wpa2a_30"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2011/09/specification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Boost 1.47.0 with Visual Studio</title>
		<link>http://wp.freya.no/2011/09/building-boost-1-47-0-with-visual-studio/</link>
		<comments>http://wp.freya.no/2011/09/building-boost-1-47-0-with-visual-studio/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 09:55:21 +0000</pubDate>
		<dc:creator>kent</dc:creator>
				<category><![CDATA[c++]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1085</guid>
		<description><![CDATA[Extract the sources to some folder, open the command prompt and go to that directory. Then enter following commands&#8230; No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Extract the sources to some folder, open the command prompt and go to that directory.</p>
<p>Then enter following commands&#8230;</p>
<pre class="brush: plain; title: ; notranslate">&gt; bootstrap.sh
&gt; bjam.exe --toolset=msvc --link=static --runtime-link=static --build-type=complete stage</pre>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1085" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2011%2F09%2Fbuilding-boost-1-47-0-with-visual-studio%2F&amp;title=Building%20Boost%201.47.0%20with%20Visual%20Studio" id="wpa2a_38"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2011/09/building-boost-1-47-0-with-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate: how to enable show sql</title>
		<link>http://wp.freya.no/2011/09/hibernate-how-to-enable-show-sql/</link>
		<comments>http://wp.freya.no/2011/09/hibernate-how-to-enable-show-sql/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 12:44:19 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1073</guid>
		<description><![CDATA[To see all the sqls that your application do during execution, insert the following property in your test xml property file: No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p>To see all the sqls that your application do during execution, insert the following property in your test xml property file:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;bean id=&quot;sessionFactory&quot;
		class=&quot;my.class.MyEntitySessionFactory&quot;&gt;
		&lt;property name=&quot;hibernateProperties&quot;&gt;
			&lt;props&gt;
				&lt;prop key=&quot;hibernate.show_sql&quot;&gt;true&lt;/prop&gt;
			&lt;/props&gt;
		&lt;/property&gt;
		&lt;property name=&quot;dataSource&quot; ref=&quot;dbDataSource&quot; /&gt;
&lt;/bean&gt;
</pre>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1073" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2011%2F09%2Fhibernate-how-to-enable-show-sql%2F&amp;title=Hibernate%3A%20how%20to%20enable%20show%20sql" id="wpa2a_46"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2011/09/hibernate-how-to-enable-show-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t work too hard</title>
		<link>http://wp.freya.no/2011/09/dont-work-too-hard/</link>
		<comments>http://wp.freya.no/2011/09/dont-work-too-hard/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 15:37:51 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[strips]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1067</guid>
		<description><![CDATA[Core: How do I make Hibernate to not to retreive all objects at the same time? Mag: Do i lazy. Silly: Yeah, don&#8217;t work too hard! No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p><embed src="http://tatyana.freya.no/Flash/progs2.swf" quality="high" scale="exactfit" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" height="400px" width="550px"></embed></p>
<blockquote><p>Core: How do I make Hibernate to not to retreive all objects at the same time?<br />
Mag: Do i lazy.<br />
Silly: Yeah, don&#8217;t work too hard!</p></blockquote>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1067" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2011%2F09%2Fdont-work-too-hard%2F&amp;title=Don%26%238217%3Bt%20work%20too%20hard" id="wpa2a_54"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2011/09/dont-work-too-hard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programmers love testers</title>
		<link>http://wp.freya.no/2011/09/programmers-love-testers/</link>
		<comments>http://wp.freya.no/2011/09/programmers-love-testers/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 20:31:15 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[strips]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1057</guid>
		<description><![CDATA[Core: I HATE tests! Tester: What? Mag: He said he HATES TESTERS. No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p><embed src="http://tatyana.freya.no/Flash/progs1.swf" quality="high" scale="exactfit" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" height="400px" width="550px"></embed></p>
<blockquote><p>Core: I HATE tests!<br />
Tester: What?<br />
Mag: He said he HATES TESTERS.</p></blockquote>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1057" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2011%2F09%2Fprogrammers-love-testers%2F&amp;title=Programmers%20love%20testers" id="wpa2a_62"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2011/09/programmers-love-testers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Failed to emerge media-gfx/imagemagick-6.7.1.0</title>
		<link>http://wp.freya.no/2011/09/failed-to-emerge-media-gfximagemagick-6-7-1-0/</link>
		<comments>http://wp.freya.no/2011/09/failed-to-emerge-media-gfximagemagick-6-7-1-0/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 08:46:16 +0000</pubDate>
		<dc:creator>kent</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[emerge]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1048</guid>
		<description><![CDATA[If you&#8217;ve upgraded Perl on your Gentoo box to 5.12, and tries to reemerge ImageMagick, you might get this error: Reemerge with: After some minutes: You might also want to update /etc/portage/package.use with &#8220;media-gfx/imagemagick -perl&#8221; if you don&#8217;t need Perl with ImageMagick. No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve upgraded Perl on your Gentoo box to 5.12, and tries to reemerge ImageMagick, you might get this error:</p>
<pre class="brush: plain; title: ; notranslate">Could not find a typemap for C type 'Image::Magick' in Magick.xs, line 2404
make[3]: *** [Magick.c] Error 1
make[3]: Leaving directory `/var/tmp/portage/media-gfx/imagemagick-6.7.1.0/work/ImageMagick-6.7.1-0/PerlMagick'
make[2]: *** [install-exec-perl] Error 2
make[2]: Leaving directory `/var/tmp/portage/media-gfx/imagemagick-6.7.1.0/work/ImageMagick-6.7.1-0'
make[1]: *** [install-am] Error 2
make[1]: Leaving directory `/var/tmp/portage/media-gfx/imagemagick-6.7.1.0/work/ImageMagick-6.7.1-0'
make: *** [install] Error 2
 * ERROR: media-gfx/imagemagick-6.7.1.0 failed (install phase):
 *   emake failed
 *
 * If you need support, post the output of 'emerge --info =media-gfx/imagemagick-6.7.1.0',
 * the complete build log and the output of 'emerge -pqv =media-gfx/imagemagick-6.7.1.0'.
 * The complete build log is located at '/var/tmp/portage/media-gfx/imagemagick-6.7.1.0/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/media-gfx/imagemagick-6.7.1.0/temp/environment'.
 * S: '/var/tmp/portage/media-gfx/imagemagick-6.7.1.0/work/ImageMagick-6.7.1-0'

&gt;&gt;&gt; Failed to emerge media-gfx/imagemagick-6.7.1.0, Log file:

&gt;&gt;&gt;  '/var/tmp/portage/media-gfx/imagemagick-6.7.1.0/temp/build.log'
</pre>
<p>Reemerge with:</p>
<pre class="brush: plain; title: ; notranslate"> # USE=&quot;-perl&quot; emerge -av imagemagick

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild  N     ] media-gfx/imagemagick-6.7.1.0  USE=&quot;bzip2 corefonts cxx jpeg openmp png tiff truetype xml zlib -X -autotrace -djvu -fftw -fontconfig -fpx -graphviz -gs -hdri -jbig -jpeg2k -lcms -lqr -lzma -opencl -openexr -perl -q32 -q64 -q8 -raw -static-libs -svg -webp -wmf&quot; 0 kB

Total: 1 package (1 new), Size of downloads: 0 kB

Would you like to merge these packages? [Yes/No] </pre>
<p>After some minutes:</p>
<pre class="brush: plain; title: ; notranslate">
&gt;&gt;&gt; Recording media-gfx/imagemagick in &quot;world&quot; favorites file...
&gt;&gt;&gt; Auto-cleaning packages...

&gt;&gt;&gt; No outdated packages were found on your system.

 * GNU info directory index is up-to-date.
</pre>
<p>You might also want to update /etc/portage/package.use with &#8220;media-gfx/imagemagick -perl&#8221; if you don&#8217;t need Perl with ImageMagick.</p>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1048" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2011%2F09%2Ffailed-to-emerge-media-gfximagemagick-6-7-1-0%2F&amp;title=Failed%20to%20emerge%20media-gfx%2Fimagemagick-6.7.1.0" id="wpa2a_70"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2011/09/failed-to-emerge-media-gfximagemagick-6-7-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The most annoying comment</title>
		<link>http://wp.freya.no/2011/08/the-most-annoying-comment/</link>
		<comments>http://wp.freya.no/2011/08/the-most-annoying-comment/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 13:27:18 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1041</guid>
		<description><![CDATA[No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<pre class="brush: cpp; title: ; notranslate">/** @deprecated this one must be resolved differently */
@Deprecated
public void setModeChange()
{
   this.mode = Mode.CHANGE;
}</pre>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1041" width="1" height="1" style="display: none;" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwp.freya.no%2F2011%2F08%2Fthe-most-annoying-comment%2F&amp;title=The%20most%20annoying%20comment" id="wpa2a_78"><img src="http://wp.freya.no/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://wp.freya.no/2011/08/the-most-annoying-comment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

