<?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>Sanara Creations</title>
	<atom:link href="http://www.sanaracreations.fi/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sanaracreations.fi</link>
	<description>Creative and unique aural and visual designs and explorations.</description>
	<lastBuildDate>Thu, 03 Nov 2011 19:04:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Visually rich Flash quiz application about players of an ice hockey team</title>
		<link>http://www.sanaracreations.fi/web/visually-rich-flash-quiz-application-about-players-of-an-ice-hockey-team</link>
		<comments>http://www.sanaracreations.fi/web/visually-rich-flash-quiz-application-about-players-of-an-ice-hockey-team#comments</comments>
		<pubDate>Sat, 17 Sep 2011 13:59:31 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[coder]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[graafikko]]></category>
		<category><![CDATA[graphic artist]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[image manipulation]]></category>
		<category><![CDATA[kuvankäsittely]]></category>
		<category><![CDATA[kuvitus]]></category>
		<category><![CDATA[ohjelmoija]]></category>
		<category><![CDATA[ohjelmointi]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=643</guid>
		<description><![CDATA[The game was realized for media company Länsi-Suomi and especially for their online publication Raumalainen.fi. The game is about the players of local ice hockey team called Rauman Lukko. The players filled a questionnaire about their daily activities on the way to the evening's match, and the answers were turned into a quiz game. The game opens a personal view to the life of an ice hockey player and makes the players and audience closer to each other.]]></description>
			<content:encoded><![CDATA[<p><a  title="Kettupeli" href="http://www.ls24.fi/kettupeli" target="_blank">The game</a> was realized for media company <a  title="Länsi-Suomi Oy" href="http://www.lansi-suomiyhtyma.fi/" target="_blank">Länsi-Suomi</a> and especially for their online publication <a  title="Raumalainen.fi - Kettu-uutiset" href="http://www.raumalainen.fi/luettavaa/kettu-uutiset" target="_blank">Raumalainen.fi</a>. The game is about the players of local ice hockey team called <a  title="Rauman Lukko" href="http://www.raumanlukko.fi" target="_blank">Rauman Lukko.</a> The players filled a questionnaire about their daily activities on the way to the evening&#8217;s match, and the answers were turned into a quiz game. The game opens a personal view to the life of an ice hockey player and makes the players and audience closer to each other.</p>
<p>The game was realized as a Flash movie/Actionscript hybrid (Compared to a pure Actionscript class) with heavy lean towards code and modularity.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/web/visually-rich-flash-quiz-application-about-players-of-an-ice-hockey-team/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding images to the WordPress tag cloud and styling it with jQuery</title>
		<link>http://www.sanaracreations.fi/web/adding-images-to-the-wordpress-tag-cloud-and-styling-it-with-jquery</link>
		<comments>http://www.sanaracreations.fi/web/adding-images-to-the-wordpress-tag-cloud-and-styling-it-with-jquery#comments</comments>
		<pubDate>Sat, 11 Jun 2011 19:17:36 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[coder]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[ohjelmoija]]></category>
		<category><![CDATA[ohjelmointi]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=631</guid>
		<description><![CDATA[This simple jQuery script will enable you to add images to the individual tags of the Wordpress tag cloud. With the script you can style the tag cloud too without touching the core (or Wordpress) functions. ]]></description>
			<content:encoded><![CDATA[<p>This simple jQuery script will enable you to add images for the individual tags of the WordPress tag cloud (wp_tag_cloud). With the script you can style the tag cloud too without touching the core (or WordPress) functions. An example can be seen there on the left. The image sizes correspond to the font sizes given by the tag cloud function of WordPress.</p>
<p><span id="more-631"></span></p>
<blockquote>
<pre>jQuery(function() {
    var imagesize;
    var alttxt;
    var linkhref;

    jQuery('a[class^="tag-link-"]').each(function() {
        imagesize = jQuery(this).css('font-size');
        alttxt = jQuery(this).text();
        linkhref = jQuery(this).attr('href');

        jQuery(this).before(
            '&lt;a title="tag: ' +alttxt+ '" href="' +linkhref+ '"&gt;
             &lt;img src="path/to/your/image" class="tagcloudimage"
             style="width:'+imagesize+';height:'+imagesize+';"
             alt="'+alttxt+' icon" /&gt;&lt;/a&gt;'
        );
    });
});</pre>
</blockquote>
<p>First a couple of variables are stated. Then the jQuery action is <a  title="jQuery selectors" href="http://api.jquery.com/category/selectors/" target="_blank">targeted</a> to the links of certain class. The class names of the tag cloud begin with the string &#8216;tag-link-&#8217; (and is followed by the id number of the tag in question). jQuery&#8217;s <a  title="jQuery .each()" href="http://api.jquery.com/each/" target="_blank">.each()</a> function goes through each matched target.</p>
<p>Variables are filled with values from the link in question: the font-size, the visible link text and the link to the tag archive in the href attribute. After that completely new html is written before the tag link. In this case we create an image link and  fill it with corresponding variable values.</p>
<p>Function like this can be easily extended to further alter the outlook of the tag cloud; for instance make the text color change by the size value and so on. The script is best to place in the footer of your page (after the tag cloud anyway).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/web/adding-images-to-the-wordpress-tag-cloud-and-styling-it-with-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script to create a custom random gallery in WordPress and using jQuery to design the layout</title>
		<link>http://www.sanaracreations.fi/web/script-to-create-a-custom-random-gallery-in-wordpress-and-using-jquery-to-design-the-layout</link>
		<comments>http://www.sanaracreations.fi/web/script-to-create-a-custom-random-gallery-in-wordpress-and-using-jquery-to-design-the-layout#comments</comments>
		<pubDate>Thu, 26 May 2011 17:02:07 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[coder]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[ohjelmoija]]></category>
		<category><![CDATA[ohjelmointi]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=582</guid>
		<description><![CDATA[A neat visual effect for Wordpress is created by using PHP, jQuery and the default gallery functions.]]></description>
			<content:encoded><![CDATA[<p>You might except a grander programme from that title, but this is actually a quite simple and straigthforward project. I needed to have a neat visual effect for a WordPress based website I was renovating and at first used the default options to make a gallery. I had five images in the gallery for testing. Because all of the images didn&#8217;t happen fit to the same row three were in the upper row and two in the lower. By accident the images made an inverted staircase pattern of two rows. From that I got and idea of creating a complete staircase of three rows by adding one extra row with one image. The images would be picked randomly from a larger gallery.</p>
<p><span id="more-582"></span></p>
<p>The downside of using the WordPress gallery is that it injects its own CSS and predefined HTML tags around the images. To get rid of the default CSS a function needs to be added to the the theme&#8217;s function.php.</p>
<blockquote>
<pre>add_filter (
   'gallery_style', create_function (
      '$a',
      'return preg_replace("%&lt;style type=\'text/css\'&gt;(.*?)&lt;/style&gt;%s", "", $a);'
   )
);</pre>
</blockquote>
<p>I&#8217;ve broken the lines of the code to make it fit here &#8211; it&#8217;s really a one liner but works like that too. Check out the styling that you need to add to your style.css to preserve the original gallery rule-set from <a  title="WordPress One Liner to Remove Style Tags from Posts using gallery Shortcode" href="http://sivel.net/2009/02/remove-gallery-style-tags-one-liner/" target="_blank">sivel.net</a>, where I found the above code.</p>
<p>But, that&#8217;s not enough. For the purpose I needed to be able to create the gallery from the scratch and control the HTML tags too. First a new page need to be created with an image gallery. The page will act as the invisible reservoir of images. The page can be set to be private and it need not to be visible in any way. To shorten the story a bit I will now present the code to grab the images and echo the gallery in PHP. I used this <a  title="Wordpress Custom Image Gallery from Post Attachment Images" href="http://www.wpoutfitters.com/2011/01/make-a-custom-wordpress-gallery-from-post-attachment-images/" target="_blank">WP outfitter blog post</a> as a base.</p>
<blockquote>
<pre>&lt;?php
 echo '&lt;div class="gallery"&gt;';
 $images = get_children(array( 'post_type' =&gt; 'attachment',
                               'numberposts' =&gt; 6,
                               'orderby' =&gt; 'rand',
                               'post_status' =&gt; null,
                               'post_parent' =&gt; 104,
                               'post_mime_type' =&gt; 'image'
                            ));
 if ($images) {
    $k=1;
    foreach ( $images as $image ) {
       $img_title = $image-&gt;post_title;
       $img_url = wp_get_attachment_url($image-&gt;ID);
       $img_thumb = wp_get_attachment_thumb_url($image-&gt;ID);

       echo '&lt;dl id="image_'.$k.'"&gt;&lt;dt&gt;';
       echo '&lt;a href="'.$img_url.'"&gt;&lt;img src="'.$img_thumb.
            '" alt="'.$img_title.'" /&gt; &lt;/a&gt;';
       echo '&lt;/dt&gt;&lt;/dl&gt;';
       $k++;
    }
 }
 echo '&lt;/div&gt;';
 ?&gt;</pre>
</blockquote>
<p>That code will get 6 random image attachments from the post number 104, which is our invisible gallery holder page in my case. It will then get TITLE, URL of the original image and URL of the thumbnail of the six images one by one and store the values to variables. The code is supposed to be placed in the template .php file where you want your gallery to materialize.</p>
<p>I have here used echo to display the same HTML tags as in the original WordPress gallery along with variables in their right places. With the code above a gallery can be wrapped with the HTML tags your liking. The variable $k is interesting, because it&#8217;s used to add unique counting ID to an image: first image has id=&#8221;image_01&#8243; and so on. This is important for our next step, because the images need to be identified by jQuery. The following code should be placed just after the above PHP block.</p>
<blockquote>
<pre>&lt;script&gt;
jQuery(document).ready(function() {
    jQuery('#image_1,#image_2,#image_3').wrapAll('&lt;div id="upperrow" /&gt;');
    jQuery('#image_4,#image_5').wrapAll('&lt;div id="middlerow" /&gt;');
    jQuery('#image_6').wrapAll('&lt;div id="bottomrow" /&gt;');
});
&lt;/script&gt;</pre>
</blockquote>
<p>What happens here is that jQuery picks up images of certain ID&#8217;s and wraps them with corresponding DIVs. This could have probably been done with PHP only, but that&#8217;s out of my league and jQuery has the right tools straight out from the box. All of the rows have the same CSS rules of  {float:left;clear:both}.</p>
<p>The finished gallery is viewable on <a  title="The Haven of Yacht Club Records" href="http://www.yachtclub.fi" target="_blank">The Haven of Yacht Club Records</a>. By constructing loops and counters in the jQuery part and modifying the original number of images it&#8217;s possible to create quite large image/icon or attachment galleries or random visual elements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/web/script-to-create-a-custom-random-gallery-in-wordpress-and-using-jquery-to-design-the-layout/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ready mixes of various songs</title>
		<link>http://www.sanaracreations.fi/sound/ready-mixes-of-various-songs</link>
		<comments>http://www.sanaracreations.fi/sound/ready-mixes-of-various-songs#comments</comments>
		<pubDate>Fri, 20 May 2011 14:04:15 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Sound]]></category>
		<category><![CDATA[miksaaja]]></category>
		<category><![CDATA[miksaaminen]]></category>
		<category><![CDATA[mixing]]></category>
		<category><![CDATA[producer]]></category>
		<category><![CDATA[sound mixer]]></category>
		<category><![CDATA[tuottaja]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=413</guid>
		<description><![CDATA[Mixes of a few songs from the sountrack of an indie feature.]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.sanaracreations.fi/musa/sanaracreations-mix_mix.mp3">sanaracreations-mix_mix.mp3</a></p>
<p>A few pieces from the soundtrack of <a  title="Anni" href="http://www.annielokuva.com" target="_blank">Anni</a>, a Finnish indie feature film. The songs have been written, performed and produced by <a  title="Simo Salo on MySpace" href="http://www.myspace.com/chateausimeoni" target="_blank">Simo Salo</a>, and they are presented here as mix demos on my behalf. The tracks have not been mastered.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/sound/ready-mixes-of-various-songs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.sanaracreations.fi/musa/sanaracreations-mix_mix.mp3" length="5800281" type="audio/mpeg" />
		</item>
		<item>
		<title>An example of manipulating MySql database with PHP and downloading it as CSV</title>
		<link>http://www.sanaracreations.fi/web/an-example-of-manipulating-mysql-database-with-php-and-downloading-it-as-csv</link>
		<comments>http://www.sanaracreations.fi/web/an-example-of-manipulating-mysql-database-with-php-and-downloading-it-as-csv#comments</comments>
		<pubDate>Fri, 29 Apr 2011 19:42:51 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[coder]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[ohjelmoija]]></category>
		<category><![CDATA[ohjelmointi]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=380</guid>
		<description><![CDATA[A working example to study MySql handling with PHP and HTML forms and downloading database as CSV.]]></description>
			<content:encoded><![CDATA[<p>Download the example package: <a href="../wp-content/uploads/php_mysql_csv_example.zip">php_mysql_csv_example.zip</a></p>
<p>I needed to create a simple and easy to modify intranet database for certain project, and I now offer the setup as a complete working example. PHP and MySql are probably the most commonly used tools to organize information on the internet. The files have been derived from a couple of tutorials (about MySql database + PHP and .csv export), and I have compiled and commented the package from the ready job to an easily digestable form. The package is needlessly modular but I hope it provides building blocks for something of your own.</p>
<p><span id="more-380"></span>The example is meant to be studied in a localhost environment (<a  title="Mamp" href="http://www.mamp.info/en/index.html" target="_blank">Mamp</a> (Mac) / <a  title="Wamp" href="http://www.wampserver.com/en/" target="_blank">Wamp</a> (Win) / <a  title="Xampp" href="http://www.apachefriends.org/en/xampp.html" target="_blank">Xampp</a> (Linux)). By using PhpMyAdmin or similar available tool a user named <em>root</em> with password <em>root</em> has to be created (Such user is generally preset in the environment). The user, password, host, database name and table are set in <strong>dbinfo.inc.php</strong> file. The main variables are then used throughout the example.</p>
<p>Next the browser needs to be directed to file <strong>createdatabase.php</strong> to create the database and table. The database creation should success with preset values at least. If there are problems check the host address and user handling from the environment help. <strong>Index.php</strong> is then to be opened with the browser. I will not review the files further, the functionality is pretty straightforward. HTML forms are used to relay data to PHP scripts, which create various MySql queries using the given variables. The method to order database data by clicking table headers is also provided.</p>
<p>I moved the ready job to a closed area by using .htaccess and .htpasswd files, and used .htaccess rules to protect some of the files individually from being downloaded and viewed. Especially <strong>dbinfo.inc.php </strong>needs to be protected from outsiders. If the aim is to create a public database the sql input strings need to be checked for injections. This example as such is vulnerable and open.</p>
<p>Download the example package: <a  href="http://www.sanaracreations.fi/flow/wp-content/uploads/php_mysql_csv_example.zip">php_mysql_csv_example.zip</a></p>
<p>Sources:<small><br />
<a  title="http://www.freewebmasterhelp.com/tutorials/phpmysql" href="http://www.freewebmasterhelp.com/tutorials/phpmysql" target="_blank">http://www.freewebmasterhelp.com/tutorials/phpmysql</a><br />
<a  title="http://www.ineedtutorials.com/code/php/export-mysql-data-to-csv-php-tutorial" href="http://www.ineedtutorials.com/code/php/export-mysql-data-to-csv-php-tutorial" target="_blank">http://www.ineedtutorials.com/code/php/export-mysql-data-to-csv-php-tutorial</a><br />
<a  title="http://www.w3schools.com/php/php_mysql_intro.asp" href="http://www.w3schools.com/php/php_mysql_intro.asp" target="_blank">http://www.w3schools.com/php/php_mysql_intro.asp</a><br />
<a  title="http://stackoverflow.com/questions/2483379/order-by-column-name-help-via-link-in-html-table-view-php-mysql" href="http://stackoverflow.com/questions/2483379/order-by-column-name-help-via-link-in-html-table-view-php-mysql" target="_blank">http://stackoverflow.com/questions/2483379/order-by-column-name-help-via-link-in-html-table-view-php-mysql</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/web/an-example-of-manipulating-mysql-database-with-php-and-downloading-it-as-csv/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music for a documentary film</title>
		<link>http://www.sanaracreations.fi/music/music-for-a-documentary-film</link>
		<comments>http://www.sanaracreations.fi/music/music-for-a-documentary-film#comments</comments>
		<pubDate>Fri, 08 Apr 2011 14:02:05 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[composer]]></category>
		<category><![CDATA[miksaaja]]></category>
		<category><![CDATA[miksaaminen]]></category>
		<category><![CDATA[mixing]]></category>
		<category><![CDATA[producer]]></category>
		<category><![CDATA[säveltäjä]]></category>
		<category><![CDATA[sound mixer]]></category>
		<category><![CDATA[tuottaja]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=359</guid>
		<description><![CDATA[Music created for a Finnish Zeitgeist inspired documentary movie.]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.sanaracreations.fi/musa/sarana-ajanhenki_reel.mp3">Ajanhenki reel</a></p>
<p>Musical contributions for a Finnish Zeitgeist inspired documentary <a  title="Ajan henki" href="http://www.ajanhenki.com/" target="_blank">Ajan henki</a>. Not all of the tracks on this reel were used. Besides music created for the occasion <a  title="the home of sarana" href="http://www.sarana.biz" target="_blank">sarana</a> live sets were employed for certain scenes.</p>
<p>I also created the Dolby Digital 3.1 mix for the final sound track and post-processed the sound.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/music/music-for-a-documentary-film/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.sanaracreations.fi/musa/sarana-ajanhenki_reel.mp3" length="3723401" type="audio/mpeg" />
		</item>
		<item>
		<title>Sound design of an indie feature film</title>
		<link>http://www.sanaracreations.fi/film/sound-design-for-an-indie-feature-film</link>
		<comments>http://www.sanaracreations.fi/film/sound-design-for-an-indie-feature-film#comments</comments>
		<pubDate>Fri, 28 Jan 2011 15:26:37 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Film]]></category>
		<category><![CDATA[äänisuunnittelija]]></category>
		<category><![CDATA[äänisuunnittelu]]></category>
		<category><![CDATA[äänittäjä]]></category>
		<category><![CDATA[composer]]></category>
		<category><![CDATA[miksaaja]]></category>
		<category><![CDATA[miksaaminen]]></category>
		<category><![CDATA[mixing]]></category>
		<category><![CDATA[producer]]></category>
		<category><![CDATA[säveltäjä]]></category>
		<category><![CDATA[sound design]]></category>
		<category><![CDATA[sound designer]]></category>
		<category><![CDATA[sound mixer]]></category>
		<category><![CDATA[sound recordist]]></category>
		<category><![CDATA[tuottaja]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=341</guid>
		<description><![CDATA[Recording, foley effects, mixing and sound design for a feature film.]]></description>
			<content:encoded><![CDATA[<p>Recording, foley effects, mix and sound design for <a  title="Anni homepage" href="http://annielokuva.com/index.php">Anni</a>, an indie feature film. The film was directed by Jussi Einola and produced by Joonas Einola.</p>
<p>Besides the film mix I also mixed and mastered the music and created a few original pieces using material from the <a  title="MySpace page of the composer of Anni" href="http://www.myspace.com/chateausimeoni/music">composer</a> (Simo Salo).</p>
<p>Anni uses samples and source material by Freesound.org contributors, who are listed below.</p>
<p><span id="more-341"></span><em>acclivity, adcbicycle, amszala, Anton, audible edge, Benboncan, bennychico11, Bram, boziav, csengeri, dobroide, dkristian, dommygee, Dynamicell, fonogeno, FreqMan, gadzooks, gelo papas, gezortenplotz, Glaneur de sons, hazure, hello flowers, HerbertBoland, homejrande, inchadney, ingeos, j1987, jasinski, jimblodget, juskiddink, LG, lonemonk, malexmedia, martian, miastodzwiekow, mikaelfernstrom, MRQZ, nathanprtII, pempi, pushtobreak, RHumphries, Robinhood76, rutgermuller, RZ 1, sagetyrtle, sandyrb, Schalkalwis, scarfield, Slanesh, slerner, stephsinger22, thealchemist12, THE bizniss, tigersound, Timbre, timofei, timtube, tmc zach, ToddBradley, Tomlija, ViaTorci, zebraphone, xef6, xyzr kx, YngvieM</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/film/sound-design-for-an-indie-feature-film/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website of a campaign promoting children’s participation</title>
		<link>http://www.sanaracreations.fi/web/website-of-a-campaign-promoting-childrens-participation</link>
		<comments>http://www.sanaracreations.fi/web/website-of-a-campaign-promoting-childrens-participation#comments</comments>
		<pubDate>Wed, 03 Nov 2010 16:51:49 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[coder]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[kuvitus]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[ohjelmoija]]></category>
		<category><![CDATA[ohjelmointi]]></category>
		<category><![CDATA[ulkoasu]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=278</guid>
		<description><![CDATA[The website consists of the main informational pages for organizers and interactive pages for children. The target group are children aged 6 to 12. The site was realized with the WordPress CMS.]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.munvuoro.fi/" target="_blank"><img class="size-medium wp-image-279 alignright" style="margin-right: 2px; margin-left: 2px; border: 1px solid black;" title="MunVuoro Main Site" src="http://www.sanaracreations.fi/flow/wp-content/uploads/munvuoro_01-186x300.jpg" alt="MunVuoro campaign main site" width="130" height="210" /></a><a  href="http://www.munvuoro.fi/osallistua" target="_blank"><img class="size-medium wp-image-280 alignright" style="margin-right: 2px; margin-left: 10px; border: 1px solid black;" title="MunVuoro Children's Pages" src="http://www.sanaracreations.fi/flow/wp-content/uploads/munvuoro_02-218x300.jpg" alt="MunVuoro Children's Pages" width="153" height="210" /></a>MunVuoro! (MyTurn!) campaign is a joint participatory project of eight Finnish organizations for children and youth. The main purpose is to develop methods for child participation and to support education for democracy</p>
<p>The website consists of the <a  title="MunVuoro!" href="http://www.munvuoro.fi/" target="_blank">main informational pages</a> for organizers and <a  title="MunVuoro! Osallistua" href="http://www.munvuoro.fi/osallistua" target="_blank">interactive pages for children</a>. The target group are children aged 6 to 12.</p>
<p>The site was realized with the WordPress CMS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/web/website-of-a-campaign-promoting-childrens-participation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Themed informational and promotional graphics</title>
		<link>http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics</link>
		<comments>http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics#comments</comments>
		<pubDate>Wed, 03 Nov 2010 15:37:22 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Visual]]></category>
		<category><![CDATA[graafikko]]></category>
		<category><![CDATA[graphic artist]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[image manipulation]]></category>
		<category><![CDATA[kuvankäsittely]]></category>
		<category><![CDATA[kuvitus]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[ulkoasu]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=259</guid>
		<description><![CDATA[A selection of graphical works and image manipulations.]]></description>
			<content:encoded><![CDATA[
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/jasenkortti2010_back" title="Membership card of KNL, back"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/jasenkortti2010_back-150x150.jpg" class="attachment-thumbnail" alt="Membership card of KNL, back" title="Membership card of KNL, back" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/jasenkortti2010_front" title="Membership card of KNL, front"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/jasenkortti2010_front-150x150.jpg" class="attachment-thumbnail" alt="Membership card of KNL, front" title="Membership card of KNL, front" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/knl_flyer_sivut2ja3" title="Flyer of TaigaMetsä, pages 2 and 3"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/knl_flyer_sivut2ja3-150x150.jpg" class="attachment-thumbnail" alt="Flyer of TaigaMetsä, pages 1 and 4" title="Flyer of TaigaMetsä, pages 2 and 3" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/knl_flyer_sivut4ja1" title="Flyer of TaigaMetsä, pages 1 and 4"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/knl_flyer_sivut4ja1-150x150.jpg" class="attachment-thumbnail" alt="Flyer of TaigaMetsä, pages 1 and 4" title="Flyer of TaigaMetsä, pages 1 and 4" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/knl_kortti_front_v2" title="TaigaMetsä post card"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/knl_kortti_front_v2-150x150.jpg" class="attachment-thumbnail" alt="TaigaMetsä post card" title="TaigaMetsä post card" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/knl_tempoatenaviin_mainos" title="Ad for parent-children activity"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/KNL_TempoaTenaviin_mainos-150x150.jpg" class="attachment-thumbnail" alt="Ad for parent-children activity" title="Ad for parent-children activity" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/nslehtimainos" title="Ad for an event"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/nslehtimainos-150x150.jpg" class="attachment-thumbnail" alt="Ad for an event" title="Ad for an event" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/piiritjavaet" title="Map of TaigaMetsä Tribes in Finland"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/piiritjavaet-150x150.jpg" class="attachment-thumbnail" alt="Map of TaigaMetsä Tribes in Finland" title="Map of TaigaMetsä Tribes in Finland" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/taigametsa-aluekartta_uusin" title="TaigaMetsä area map for visitors"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/TaigaMetsa-aluekartta_uusin-150x150.jpg" class="attachment-thumbnail" alt="TaigaMetsä area map for visitors" title="TaigaMetsä area map for visitors" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/taigametsahdmustikalla" title="TaigaMetsä image composition"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/taigametsahdmustikalla-150x150.jpg" class="attachment-thumbnail" alt="TaigaMetsä image composition" title="TaigaMetsä image composition" /></a>
<a  href="http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/attachment/taigametsakuvajuuri" title="TaigaMetsä image composition detail"><img width="150" height="150" src="http://www.sanaracreations.fi/flow/wp-content/uploads/taigametsakuvajuuri-150x150.jpg" class="attachment-thumbnail" alt="TaigaMetsä image composition detail" title="TaigaMetsä image composition detail" /></a>

<p>A selection of graphical works and image manipulations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/visual/themed-informational-and-promotional-graphics/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Promotional video for a youth camp</title>
		<link>http://www.sanaracreations.fi/visual/promotional-video-for-a-youth-camp</link>
		<comments>http://www.sanaracreations.fi/visual/promotional-video-for-a-youth-camp#comments</comments>
		<pubDate>Wed, 03 Nov 2010 11:43:25 +0000</pubDate>
		<dc:creator>janne</dc:creator>
				<category><![CDATA[Visual]]></category>
		<category><![CDATA[äänisuunnittelija]]></category>
		<category><![CDATA[äänisuunnittelu]]></category>
		<category><![CDATA[editing]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[kuvaaja]]></category>
		<category><![CDATA[kuvaaminen]]></category>
		<category><![CDATA[leikkaaja]]></category>
		<category><![CDATA[leikkaus]]></category>
		<category><![CDATA[shooting]]></category>
		<category><![CDATA[sound design]]></category>
		<category><![CDATA[sound designer]]></category>

		<guid isPermaLink="false">http://www.sanaracreations.fi/?p=253</guid>
		<description><![CDATA[Short video about a youth summer camp.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Teaser cut from the material I shooted at TaigaMetsä camp in  july 2010. The camp was organized by Kaleva Youth Association to  celebrate their 50th anniversary. I worked for them for a year as a  media producer.</p>
<p style="text-align: left;">The related videos take you to a video series called <a  title="TaigaVisio: TaigaStudio on YouTube" href="http://www.youtube.com/taigavisio" target="_blank">TaigaStudio</a>, which I also shot and edited.</p>
<p><object type="application/x-shockwave-flash"  style="width:640px;height:385px" data="http://www.youtube.com/v/dHpA0lvzHQU?fs=1&amp;hl=en_US&amp;color1=0x006699&amp;color2=0x54abd6"><param name="movie" value="http://www.youtube.com/v/dHpA0lvzHQU?fs=1&amp;hl=en_US&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /><param name="flashvars" value="file=youtubeurl&amp;image=http://img.youtube.com/vi/YOUTUBEID/0.jpg&amp;controlbar=over" /></object> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanaracreations.fi/visual/promotional-video-for-a-youth-camp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

