<?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>Dreamyguy &#124; Web Design &#38; Music in Oslo, Norway</title>
	<atom:link href="http://dreamyguy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dreamyguy.com</link>
	<description></description>
	<lastBuildDate>Sun, 31 Jul 2011 12:22:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>jQuery Checklist</title>
		<link>http://dreamyguy.com/web/web-development/jquery-checklist/</link>
		<comments>http://dreamyguy.com/web/web-development/jquery-checklist/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 12:22:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=723</guid>
		<description><![CDATA[jQuery is, in my opinion, the best javascript library out there. With the help of jQuery I have been able to deliver elegant solutions that range from utter simplicity to minimalistic complexity &#8211; and it all happens without any cost to user experience. But even jQuery can be challenging when we don&#8217;t take the necessary [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery is, in my opinion, the best javascript library out there. With the help of jQuery I have been able to deliver elegant solutions that range from utter simplicity to minimalistic complexity &#8211; and it all happens without any cost to user experience.</p>
<p>But even jQuery can be challenging when we don&#8217;t take the necessary steps to make sure it will work optimally. In this article I will go through a short checklist, that explains how to load your jQuery in the most fool-proof way.</p>
<h2>Make sure the jQuery library is being loaded before any custom jQuery</h2>
<p>As with any other javascript library, jQuery has to be loaded before one can start using it. It can be a good idea to check if jQuery is already present in your system before you include the library. jQuery is, for instance, already present in many WordPress themes.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
	/* Always include wp_head() before the closing &lt;/head&gt;
	 * tag of your theme, or you will break many plugins, which
	 * generally use this hook to add elements to &lt;head&gt; such
	 * as styles, scripts, and meta tags.
	 */
	wp_head();
?&gt;
	&lt;script type=&quot;text/javascript&quot;&gt;
		// check if jQuery is already present/loaded
		if(jQuery) {
			alert(&quot;jQuery library is loaded!&quot;);
		}
	&lt;/script&gt;
&lt;/head&gt;
</pre>
<p>If jQuery library is already present, you will get a browser alert where it stands &#8220;jQuery library is loaded!&#8221;. In that case you don&#8217;t need to load the library again, but if you don&#8217;t get an alert box with this message you will have to include the jQuery library manually. You can do that by doing the following:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
	wp_head();
?&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_url'); ?&gt;/js/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
</pre>
<p>The file name will vary depending of the version you&#8217;ll be using, but for a production site I&#8217;ll always recommend to use the &#8220;minified&#8221; version (look for &#8220;min&#8221; in the file name). That will keep your bandwith lean and load the library faster. You also have the option to load jQuery libraries provided by CDNs (Content Delivery Networks). Click <a rel="nofollow" href="http://docs.jquery.com/Downloading_jQuery#CDN_Hosted_jQuery" target="_blank">here</a> for an updated list of CDNs providing jQuery libraries. Below are some examples, you will only need one of them:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
	wp_head();
?&gt;
&lt;?php // Google CDN ?&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;?php // Microsoft CDN  ?&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.2.min.js&quot;&gt;&lt;/script&gt;
&lt;?php // jQuery CDN (via Media Temple) ?&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;http://code.jquery.com/jquery-1.6.2.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
</pre>
<h2>Avoiding conflict between jQuery and other javascript libraries</h2>
<p>Sometimes you will notice that even though jQuery is working as it should, a slideshow based on another javascript library stops working &#8211; or vice-versa. This happens because of a conflict among two or more javascript libraries.</p>
<p>jQuery has a very handy way of avoiding conflict with other javascript libraries (Mootools and Scriptaculous, etc.). By using jQuery &#8220;noConflict&#8221;, you will be avoiding some of the most commom conflicts among these kind of libraries, which often use the same symbol ($) to invoque their functions.</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
	// this line avoids conflict with other javascript libraries using &quot;$&quot;
	jQuery.noConflict();
&lt;/script&gt;
</pre>
<p>That will solve most problems, but to be on the safest side, it is considered a good practice to use &#8220;<em>jQuery</em>&#8221; instead of &#8220;<em>$</em>&#8220;.</p>
<p>It is a good practice to include &#8220;jQuery.noConflict();&#8221; in every page you&#8217;re using jQuery in, for the sake of future compatibility. It should load immediately below the jQuery library itself, before any jQuery plugin or jQuery custom script is loaded.</p>
<p>If you still experience conflicts after taking these precautions, make sure that all 3rd-party jQuery code is using &#8220;<em>jQuery</em>&#8221; instead of &#8220;<em>$</em>&#8220;. If after taking these all these measures you still experience a non-responsive jQuery script, make sure that the loading order for jQuery is correct. Then have a look at your syntax.</p>
<h2>Load jQuery plugins after the jQuery library, but before any custom jQuery</h2>
<p>Plugins can be a great way to simplify tasks, by shortening the code necessary to trigger certain behaviors you wish to use often. It is a good practice to load jQuery plugins between the jQuery library and your own custom jQuery scripts.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php // UI Tools: Tabs, Tooltip, Scrollable and Overlay (4.05 Kb) ?&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.jquerytools.org/1.2.5/tiny/jquery.tools.min.js&quot;&gt;&lt;/script&gt;
</pre>
<p>It can also be smart to include a plugin only on the pages that require it to be loaded, by wrapping the includes within conditions on either PHP or on jQuery itself.</p>
<h2>Load your own custom jQuery scripts</h2>
<p>Now that you have taken all the precautions to make sure jQuery will load and function in the expected way, it is time to load your own custom jQuery scripts. It is considered to be good practice to load javascript by including external files, like so:</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_url'); ?&gt;/js/jquery-custom-includes.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_url'); ?&gt;/js/jquery-custom-links.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_url'); ?&gt;/js/jquery-custom-toggles.js&quot;&gt;&lt;/script&gt;
</pre>
<p>Though it would be even better to merge these files into one, whenever possible:</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_url'); ?&gt;/js/jquery-custom.js&quot;&gt;&lt;/script&gt;
</pre>
<p>Even though good practice determines that it is better to include jQuery through external files (like the one mentioned above), sometimes our variables are determined by values fetched from databases or through PHP calculations. In that case we need to use inline jQuery. The script will then look just like a javascript script, but have the syntax of jQuery:</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(document).ready(function() {
	// do your thing
});
&lt;/script&gt;
</pre>
<h2>Load your custom jQuery ONLY after the document has rendered</h2>
<p>jQuery relies mostly on elements that need to be loaded before it can execute. Let us take an example:</p>
<pre class="brush: jscript; title: ; notranslate">
jQuery('div.learning').hide();
</pre>
<p>In the jQuery above, all the divs with the class &#8220;learning&#8221; are getting the &#8220;display:none&#8221; CSS property. But if the divs with the class &#8220;learning&#8221; haven&#8217;t been fully rendered by the time the jQuery is triggered, it could mean that some of the divs with the class &#8220;learning&#8221; &#8211; if not all of them &#8211; will not get the &#8220;display:none&#8221; property and therefore still show after the document is fully rendered.</p>
<p>To avoid that, make sure that every jQuery script, be it external or inline, are invoked within the function below:</p>
<pre class="brush: jscript; title: ; notranslate">
jQuery(document).ready(function() {
	// do all your magic here!
});
</pre>
<h2>Wrapping it up</h2>
<p>Below is everything put together (comments are within PHP so that they don&#8217;t render in the markup). Note that this applies for WordPress, but would be just as usable for other systems.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
	wp_head();
?&gt;
&lt;?php // jQuery CDN (via Media Temple) ?&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;http://code.jquery.com/jquery-1.6.2.min.js&quot;&gt;&lt;/script&gt;
&lt;?php // this line avoids conflict with other javascript libraries using &quot;$&quot; ?&gt;
	&lt;script type=&quot;text/javascript&quot;&gt;
		jQuery.noConflict();
	&lt;/script&gt;
&lt;?php // UI Tools: Tabs, Tooltip, Scrollable and Overlay (4.05 Kb) ?&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.jquerytools.org/1.2.5/tiny/jquery.tools.min.js&quot;&gt;&lt;/script&gt;
&lt;?php // custom jQuery ?&gt;
	&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_url'); ?&gt;/js/jquery-custom.js&quot;&gt;&lt;/script&gt;
&lt;?php // custom inline jQuery ?&gt;
	&lt;script type=&quot;text/javascript&quot;&gt;
		jQuery(document).ready(function() {
			// do all your magic here!
		});
	&lt;/script&gt;
&lt;/head&gt;
</pre>
<p>I hope you enjoyed it! This article is meant for beginners, but I&#8217;m sure I&#8217;ll find myself visiting it often enough!</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/web/web-development/jquery-checklist/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Webdesign Oslo</title>
		<link>http://dreamyguy.com/web/webdesign/webdesign-oslo/</link>
		<comments>http://dreamyguy.com/web/webdesign/webdesign-oslo/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 19:55:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=693</guid>
		<description><![CDATA[Letter du etter en webdesigner som kan hjelpe deg å lage en nettside? Det kan jeg! Jeg har drevet med webdesign siden 1999, og har lagt nettsider for flere bedrifter og privatpersoner i Norge. Jeg er brasiliansk, men har bodd i Norge siden 2003 og snakker flyttende norsk. Som webdesigner jobber jeg direkte i koden. [...]]]></description>
			<content:encoded><![CDATA[<p>Letter du etter en webdesigner som kan hjelpe deg å lage en nettside? Det kan jeg! Jeg har drevet med webdesign siden 1999, og har lagt nettsider for flere bedrifter og privatpersoner i Norge. Jeg er brasiliansk, men har bodd i Norge siden 2003 og snakker flyttende norsk.</p>
<p>Som webdesigner jobber jeg direkte i koden. Jeg kan ulike programmeringsspråk som er nødvendige for en effektiv webutvikling, og har jobbet med flere åpen-kilde og kommersielle systemer for å nå kundenes forventninger og mål. Jeg jobber raskt, pålitelig og har gode kommunikasjonsevner. Alle mine kunder har fått det de betalte for, med et kirsebær på toppen. For meg er det et spørsmål om ære at mine kunder blir fornøyde med sine nettsider!</p>
<p>Jeg behersker bildebehandling og illustrasjoner godt, ved bruk av Photoshop og Illustrator. Absolutt alt er mulig med Photoshop! Jeg har ikke bare et, men to øye for design (hehe) &#8211; og har kunnskap innen brukervennlighet, GUI, riktig bruk av farger, &#8220;call-to-action&#8221;, konvertering, osv.</p>
<p>For mine kunder betyr ikke det at de får <em>kun</em> en nettside lagt av en webdesigner som har peiling. De får <em>det</em> og følgende fordeler:</p>
<ul class="colors">
<li>En nettside lagt i følge deres villeste ønsker!</li>
<li>En nettside som er brukervennlig og enkel å navigere i.</li>
<li>En nettside som er behagelig å se på og ikke har grafiske elementer som påvirker brukeropplevelsen på en negativ måte.</li>
<li>En nettside som er naturligvis optimalisert for søkemotorene, og som blir indekserte av de oftere og fortere.</li>
<li>En nettside som er kompatibel med alle moderne nettlesere og utnytter alle de nyeste funksjonene de har.</li>
<li>En nettside som er lagt med den siste teknologien innen webdesign for optimal ytelse og langvarig kompatibilitet i fremtiden.</li>
<li>En nettside som bruker universale målkonverterings prinsipper &#8211; og derfor selger ditt produkt eller idé på en mer effektiv måte!</li>
<li>En nettside som er velfungerende og klar for videreutvikling fra andre aktører i fremtiden.</li>
<li>En nettside lagt av en webdesigner som har peiling. (har jeg nevnt det før?)</li>
</ul>
<p>Alt dette er en selvfølge i alle mine webdesign prosjekter, så lenge jeg får grønt lys å bruke den tiden jeg må for å implementere det. Ellers har jeg alltid gode forslag på hvordan vi kunne få ting gjort innen en litt mer begrenset budsjett.</p>
<p>Jeg jobber på timebasis og har en fast pris per time for absolutt alle tjenester. <a href="/web-design-in-oslo/#my-rate">Vennligst les detaljene om måten jeg jobber på, pris/time og fakturering her</a>. Jeg fakturerer gjennom min egen enkeltmannsforetak, og pleier å sende fakturaer som PDF per e-post.</p>
<p>Ikke nøl å <a class="contact-me-trigger" href="#">ta kontakt</a> for en nærmere prat! Jeg bor i Oslo og kan møte deg sentralt hvis ønskelig. Tiden min er verdifull, akkurat som din, så jeg fakturerer for møter. Du får i hvert fall god råd, forslag på mulige løsninger til eventuelle problemstillinger og en bedre idé på hva du trenger for å gjennomføre ditt prosjekt, i det tilfelle du velger å ikke gå videre i prosessen.</p>
<p>Jeg kommer ikke til å oppdatere denne siden like ofte som de som er på engelsk, så jeg håper det er greit at dere besøker min <a href="/portfolio/">engelsk portefølje</a> og får en mer detaljert beskrivelse av mine <a href="/web-design-in-oslo/">webdesign tjenester</a> på engelsk.</p>
<p>Håper vi høres!<br />
Wallace</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/web/webdesign/webdesign-oslo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EiendomsMegler 1 (case study)</title>
		<link>http://dreamyguy.com/portfolio/eiendomsmegler-1-case-study/</link>
		<comments>http://dreamyguy.com/portfolio/eiendomsmegler-1-case-study/#comments</comments>
		<pubDate>Sun, 29 May 2011 17:21:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=598</guid>
		<description><![CDATA[More details coming soon&#8230;]]></description>
			<content:encoded><![CDATA[<p>More details coming soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/portfolio/eiendomsmegler-1-case-study/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Norda Renhold</title>
		<link>http://dreamyguy.com/portfolio/norda-renhold/</link>
		<comments>http://dreamyguy.com/portfolio/norda-renhold/#comments</comments>
		<pubDate>Sun, 29 May 2011 17:14:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=596</guid>
		<description><![CDATA[More details coming soon&#8230;]]></description>
			<content:encoded><![CDATA[<p>More details coming soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/portfolio/norda-renhold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fiber Protector</title>
		<link>http://dreamyguy.com/portfolio/fiber-protector/</link>
		<comments>http://dreamyguy.com/portfolio/fiber-protector/#comments</comments>
		<pubDate>Sun, 29 May 2011 17:08:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=594</guid>
		<description><![CDATA[More details coming soon&#8230;]]></description>
			<content:encoded><![CDATA[<p>More details coming soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/portfolio/fiber-protector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamyguy v3 is here!</title>
		<link>http://dreamyguy.com/stuff/announcements/dreamyguy-v3-is-here/</link>
		<comments>http://dreamyguy.com/stuff/announcements/dreamyguy-v3-is-here/#comments</comments>
		<pubDate>Tue, 24 May 2011 22:22:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=1</guid>
		<description><![CDATA[That&#8217;s it folks, the version that was long overdue is finally live. A complete overhaul of every single bit is done, and this time it is done properly! Since last version I decided to share not only my web design-persona but every other one: my music-self, my environmental-self, my vegetarian-self, my fantasy-reader self&#8230; the list [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s it folks, the version that was long overdue is finally live. A complete overhaul of every single bit is done, and this time it is done properly!</p>
<p>Since last version I decided to share not only my web design-persona but every other one: my music-self, my environmental-self, my vegetarian-self, my fantasy-reader self&#8230; the list goes on and on.</p>
<p>But all this was somehow set aside and had to wait for this version. This version also marks my undeniable self-promotion as a musician, it is the first time I make my music available from here. As stated, long overdue!</p>
<p>I hope you enjoy this version, it was created with WordPress &amp; loads of funky code for your enjoyment.</p>
<p>Cheers,<br />
Wallace</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/stuff/announcements/dreamyguy-v3-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The First Law Trilogy by Joe Abercrombie</title>
		<link>http://dreamyguy.com/stuff/fantasy-books/the-first-law-trilogy-joe-abercrombie/</link>
		<comments>http://dreamyguy.com/stuff/fantasy-books/the-first-law-trilogy-joe-abercrombie/#comments</comments>
		<pubDate>Mon, 16 May 2011 19:53:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fantasy Books]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=539</guid>
		<description><![CDATA[For some reason I just kept delaying reading Abercrombie, not for lack of interest, but perhaps for going for other stuff. No regrets there, but I wish I had read it sooner. Joe Abercrombie writes in a way that appeals a lot to me: characters tell their own stories, share their thoughts, their impressions, and [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason I just kept delaying reading Abercrombie, not for lack of interest, but perhaps for going for other stuff. No regrets there, but I wish I had read it sooner. Joe Abercrombie writes in a way that appeals a lot to me: characters tell their own stories, share their thoughts, their impressions, and often see the same situation from very different perspectives, making a simple situation seem much richer and fulfilling.</p>
<p>There are a few characters that stand out of the crowd, each with very different backgrounds and personalities, somehow coming together in a very interesting plot. Well, not much new here, but the way they do it, narrated in a witty and humorous way even in the grimiest scenarios, make this reading very easy, in spite of the occasional boundless cruelty and blodshed! Highly recommended!!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-18-539">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-107" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/14_joe-abercrombie_first-law/post_books_fantasy_32.jpg" title=" " rel="lightbox[set_18]" >
								<img title="post_books_fantasy_32" alt="post_books_fantasy_32" src="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/14_joe-abercrombie_first-law/thumbs/thumbs_post_books_fantasy_32.jpg" width="125" height="94" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-108" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/14_joe-abercrombie_first-law/post_books_fantasy_33.jpg" title=" " rel="lightbox[set_18]" >
								<img title="post_books_fantasy_33" alt="post_books_fantasy_33" src="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/14_joe-abercrombie_first-law/thumbs/thumbs_post_books_fantasy_33.jpg" width="125" height="94" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/stuff/fantasy-books/the-first-law-trilogy-joe-abercrombie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightbringer by Brent Weeks</title>
		<link>http://dreamyguy.com/stuff/fantasy-books/lightbringer-brent-weeks/</link>
		<comments>http://dreamyguy.com/stuff/fantasy-books/lightbringer-brent-weeks/#comments</comments>
		<pubDate>Mon, 16 May 2011 19:49:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fantasy Books]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=537</guid>
		<description><![CDATA[Now&#8230; this is what I call a very different and original kind of fantasy! Color drafters, people able to turn light into objects of different consistencies, shaping them according to their will, are the core of the story. An outlaw king is at odds with the current government, and means to take it over. There&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Now&#8230; this is what I call a very different and original kind of fantasy! Color drafters, people able to turn light into objects of different consistencies, shaping them according to their will, are the core of the story. An outlaw king is at odds with the current government, and means to take it over. There&#8217;s a lot at stake as a an ancient cult is loosing its grip after so many years of peace. A Prism, a &#8220;chosen by the gods&#8221; color drafter that can draft the whole spectrum of colors is challenged by forces beyond his control.</p>
<p>A very refreshing story for those bored with the all-so-usual course fantasy seems to take most of the time. Brent Weeks does it again! This is his second trilogy, still in the making. I also recommend his debut &#8220;The Night Angel Trilogy&#8221;, one of the best fantasies I have read.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-17-537">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-106" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/13_brent-weeks_lightbringer/post_books_fantasy_29.jpg" title=" " rel="lightbox[set_17]" >
								<img title="post_books_fantasy_29" alt="post_books_fantasy_29" src="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/13_brent-weeks_lightbringer/thumbs/thumbs_post_books_fantasy_29.jpg" width="125" height="94" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/stuff/fantasy-books/lightbringer-brent-weeks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Kingkiller Chronicle by Patrick Rothfuss</title>
		<link>http://dreamyguy.com/stuff/fantasy-books/the-kingkiller-chronicle-patrick-rothfuss/</link>
		<comments>http://dreamyguy.com/stuff/fantasy-books/the-kingkiller-chronicle-patrick-rothfuss/#comments</comments>
		<pubDate>Mon, 16 May 2011 19:47:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fantasy Books]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=535</guid>
		<description><![CDATA[The book has two story-lines, one in the present and one in the past. The &#8220;current&#8221; story-line is but a few years after, and the main character &#8211; Kvothe &#8211; a widely known and respected Arcane tells his own story himself. The plot is not so complex at first, but the reading is easy and [...]]]></description>
			<content:encoded><![CDATA[<p>The book has two story-lines, one in the present and one in the past. The &#8220;current&#8221; story-line is but a few years after, and the main character &#8211; Kvothe &#8211; a widely known and respected Arcane tells his own story himself. The plot is not so complex at first, but the reading is easy and linear. Kvothe starts as a nobody, too clever by half, and slowly becomes a very important figure in the greater scheme of things&#8230;</p>
<p>I liked Kvothe a lot. He is charmy, witty, bright and nevertheless&#8230; young. He is good at being reckless, being on the wrong spot at the wrong time and being naive. But he also excels at being the opposite, and that makes his story as unpredictable as it can get.</p>
<p>This is a pretty light story, not a bloody or vulgar one. It can get a little too edgy for kids, but mostly for the language and not the events. Highly recommended!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-16-535">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-104" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/12_patrick-rothfuss_kingkiller/post_books_fantasy_30.jpg" title=" " rel="lightbox[set_16]" >
								<img title="post_books_fantasy_30" alt="post_books_fantasy_30" src="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/12_patrick-rothfuss_kingkiller/thumbs/thumbs_post_books_fantasy_30.jpg" width="125" height="94" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-105" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/12_patrick-rothfuss_kingkiller/post_books_fantasy_31.jpg" title=" " rel="lightbox[set_16]" >
								<img title="post_books_fantasy_31" alt="post_books_fantasy_31" src="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/12_patrick-rothfuss_kingkiller/thumbs/thumbs_post_books_fantasy_31.jpg" width="125" height="94" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/stuff/fantasy-books/the-kingkiller-chronicle-patrick-rothfuss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Chronicles of Siala by Alexey Pehov</title>
		<link>http://dreamyguy.com/stuff/fantasy-books/the-chronicles-of-siala-alexey-pehov/</link>
		<comments>http://dreamyguy.com/stuff/fantasy-books/the-chronicles-of-siala-alexey-pehov/#comments</comments>
		<pubDate>Mon, 16 May 2011 19:28:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fantasy Books]]></category>

		<guid isPermaLink="false">http://dreamyguy.com/?p=533</guid>
		<description><![CDATA[This was a very spontaneous buy, when I went by my favorite book store and could pick any book as a bonus (the shop gives points to every book you buy). The artwork in the cover was impressive, the author was a prized author in Russia and the page I randomly picked improved on my [...]]]></description>
			<content:encoded><![CDATA[<p>This was a very spontaneous buy, when I went by my favorite book store and could pick any book as a bonus (the shop gives points to every book you buy). The artwork in the cover was impressive, the author was a prized author in Russia and the page I randomly picked improved on my already good impression.</p>
<p>The book itself was very nice, but nevertheless just an introduction to a story that is probably going to be much longer. What you see in the cover is more or less the end of the book &#8211; a group of mercenaries sent by the king is going out on an obscure mission, and the outcome of that is yet to be seen&#8230; The translation from the original Russian is impeccable, very well written and seemingly true to the complexity of the original. Recommended, if you have the patience to wait for sequels still on the making. The second book was announced for April 2011, time to check out on your favorite book store!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-15-533">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-103" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/11_alexey-pehov_siala/post_books_fantasy_28.jpg" title=" " rel="lightbox[set_15]" >
								<img title="post_books_fantasy_28" alt="post_books_fantasy_28" src="http://dreamyguy.com/wp-content/uploads/posts/books/fantasy/11_alexey-pehov_siala/thumbs/thumbs_post_books_fantasy_28.jpg" width="125" height="94" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://dreamyguy.com/stuff/fantasy-books/the-chronicles-of-siala-alexey-pehov/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

