<?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>Tue, 13 Mar 2012 16:18:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex: TextArea line break problem</title>
		<link>http://wp.freya.no/2012/03/flex-textarea-line-break-problem/</link>
		<comments>http://wp.freya.no/2012/03/flex-textarea-line-break-problem/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 10:29:51 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[textarea]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1165</guid>
		<description><![CDATA[Recently I needed to fix a bug where a mx:TextArea was always dirty. The reason was a text with line breaks like: &#8220;This is a text. This is another text.&#8221; In database this text was stored as char(255) like &#8220;This is a text.\r\n\This is another text.&#8221; Here is the original code: After some time I [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Recently I needed to fix a bug where a mx:TextArea was always dirty. The reason was a text with line breaks like:</p>
<blockquote><p>&#8220;This is a text.</p>
<p>This is another text.&#8221;</p></blockquote>
<p>In database this text was stored as char(255) like &#8220;This is a text.\r\n\This is another text.&#8221;</p>
<p>Here is the original code:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;mx:TextArea id=&quot;commentInput&quot; height=&quot;50&quot; maxChars=&quot;255&quot;
     text=&quot;{personModel.person.comment}&quot; width=&quot;100%&quot; tabIndex=&quot;20&quot;/&gt;
</pre>
<p>After some time I figured out that the reason the form was dirty was HTML text. So to fix it I changed <strong>text </strong> with <strong>htmlText</strong>:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;mx:TextArea id=&quot;commentInput&quot; height=&quot;50&quot; maxChars=&quot;255&quot;
     htmlText=&quot;{personModel.person.comment}&quot; width=&quot;100%&quot; tabIndex=&quot;20&quot;/&gt;
</pre>
<p>But, this solution gave an unaxpected side effect. This was possible to render only one person, if I tried to render the other one in another tab, same data was visible for both persons. </p>
<p>That&#8217;s why I needed to solve the problem with <strong>replacing</strong>:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;mx:Script&gt;
        &lt;![CDATA[
        public function get comment():String {
            var crlf:String = String.fromCharCode(13, 10);
            var regEx:RegExp = new RegExp(crlf, &quot;g&quot;);
            return _kommentar != null ? _kommentar.replace(regEx, &quot;\r\r&quot;) : '';
        }
        ]]&gt;
&lt;/mx:Script&gt;
...
&lt;mx:TextArea id=&quot;commentInput&quot; height=&quot;50&quot; maxChars=&quot;255&quot;
     text=&quot;{personModel.person.comment}&quot; width=&quot;100%&quot; tabIndex=&quot;20&quot;/&gt;
</pre>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1165" 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%2F03%2Fflex-textarea-line-break-problem%2F&amp;title=Flex%3A%20TextArea%20line%20break%20problem" 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/03/flex-textarea-line-break-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why every good programmer should constantly refactor the code</title>
		<link>http://wp.freya.no/2012/03/why-every-good-programmer-should-constantly-refactor-the-code/</link>
		<comments>http://wp.freya.no/2012/03/why-every-good-programmer-should-constantly-refactor-the-code/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 13:58:41 +0000</pubDate>
		<dc:creator>Tatyana</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://wp.freya.no/?p=1141</guid>
		<description><![CDATA[While software development is immune from almost all physical laws, entropy hits it hard. Entropy is a term from physics that refers to the amount of &#8220;disorder&#8221; in a system. There are many factors that can contribute to code disorder. The most important one seems to be the psychology, or culture, at work on a [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>While software development is immune from almost all physical laws, entropy hits it hard. Entropy is a term from physics that refers to the amount of &#8220;disorder&#8221; in a system. There are many factors that can contribute to code disorder. The most important one seems to be the psychology, or culture, at work on a project. </p>
<p><strong>The &#8220;broken window theory&#8221;</strong></p>
<p>In inner cities, some buildings are beautiful and clean, while the others are rotting hulks. Researchers in the field of crime and urban decay discovered a fascinating trigger mechanism, one that quickly turns a clean, intact, inhabited building into a smashed and abandoned derelict [The police and neighborhood safety, James Q.Wilson and George Kelling].</p>
<p>One broken window, left unrepaired for any substantial lengt of time, instills in the inhabitants of the building a sense of abandonment &#8211;  a sense that impowers to not to care about the building. So another window gets broken. People start littering and drawing graffiti. Serious structural damage begins. In a relatively short space of time, the building becomes damaged beyond the owner&#8217;s desire to fix it, and a sense of adandonment becomes a reality. </p>
<p>Don&#8217;t leave &#8220;broken windows&#8221; (bad designs, poor code) unrepaired. Fix each one as soon as it is discovered. If there is insufficient time to fix it properly, then board it up. In any case, take some action to prevent further damage and to show that you are on top of the situation. </p>
<p>[The pragmatic programmer, Andrew Hunt, David Thomas]</p>
 <img src="http://wp.freya.no/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1141" 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%2F03%2Fwhy-every-good-programmer-should-constantly-refactor-the-code%2F&amp;title=Why%20every%20good%20programmer%20should%20constantly%20refactor%20the%20code" 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/03/why-every-good-programmer-should-constantly-refactor-the-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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_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/2012/02/spring-mvc-how-to-build-a-thread-safe-controller/feed/</wfw:commentRss>
		<slash:comments>2</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_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/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_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/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_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/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_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/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_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/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%E2%80%99t%20work%20too%20hard" 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/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_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/09/programmers-love-testers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

