<?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>Hello. My name is Václav Vančura. &#187; Illustration</title>
	<atom:link href="http://vaclav.vancura.org/tag/illustration/feed" rel="self" type="application/rss+xml" />
	<link>http://vaclav.vancura.org</link>
	<description></description>
	<lastBuildDate>Sat, 31 Jul 2010 12:47:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>MumboJumboT: Done</title>
		<link>http://vaclav.vancura.org/mumbojumbot-done</link>
		<comments>http://vaclav.vancura.org/mumbojumbot-done#comments</comments>
		<pubDate>Tue, 02 Feb 2010 22:22:31 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=2368</guid>
		<description><![CDATA[I am finally done with the MumboJumboT project.

As you may know from this blog, I recently wrote a few paragraphs about progress of the project. And there is even MumboJumboT's Twitter stream with more detailed tweets. But -- it's hard to tell -- now I am not very happy with the results and I have to confess I failed on several places.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">I am finally done with the MumboJumboT project.</span>
</p>

<p>As you may know from this blog, I recently wrote a few paragraphs about progress of the project. And there is even <a href="http://twitter.com/mumbojumbot">MumboJumboT&#8217;s Twitter stream</a> with more detailed tweets. But &#8212; believe me, it&#8217;s hard to tell &#8212; now I am not very happy with the results and I have to confess I failed on several places.</p>

<p>First, as usual, I was way too optimistic. I thought I&#8217;d be able to code more and harder, but it was not really possible for several reasons. Just a few hours before I started the project I had finished another long term job and hence I was somewhat tired. Our kids were sick two days as well and on the end I was lazy too :) As you may know I planned to create a blabbing machine. And&#8230; Failed. Sorry about that, next time I&#8217;ll think twice before I start a project like this one.</p>

<p>But! I think even with my failures I&#8217;ve got something for you. The MumboJumboT project lite. Very lite. If you&#8217;re interested, I&#8217;d be glad to show you my humble Adobe AIR application, which you can install by clicking the badge <a href="http://mumbojumbot.ambilab.com/client/">here</a>.</p>

<p><span id="more-2368"></span></p>

<h3>So what is it all about?</h3>

<p>This is just an eye candy and mainly a tutorial AIR app. You can click links below to read more on how the project was done and meanwhile you can play with it.</p>

<p>MumboJumboT allows you to:</p>

<ul>
<li><p>Load a sample song (thanks to <a href="http://jimmac.musichall.cz">Jakub Steiner aka Jimmac</a> for The Sphere song from his <a href="http://jimmac.musichall.cz/organic.php">Organic</a> album, the other song done by me),</p></li>
<li><p>Load your very own <a href="http://en.wikipedia.org/wiki/Vorbis">Ogg Vorbis</a> file (info on <a href="http://xiph.org">Xiph.org</a> as well),</p></li>
<li><p>Play an Ogg file &#8212; actually it was not possible before, because Flash knows just MP3s. If you don&#8217;t want to get into dirty details on the Wiki page, you just need to know Ogg provides much higher quality on lower bitrates. The playback is done by <a href="http://automatastudios.com">Branden Hall</a>&#8216;s Ogg Vorbis <a href="http://labs.adobe.com/wiki/index.php/Alchemy:Libraries">Alchemy</a> port, heavily altered by me for purposes of this app,</p></li>
<li><p>Somewhat visualize the playback.</p></li>
</ul>

<p>That&#8217;s pretty much for now, so let&#8217;s continue on the code stuff.</p>

<h3>MumboJumboT code</h3>

<p>You can read everything about the project&#8217;s code on the <a href="http://j.mp/ambilab-mumbojumbot-docs">documentation page</a> of the MumboJumboT project. Please don&#8217;t forget to visit its <a href="http://github.com/vancura/ambilab">GitHub repository</a>.</p>

<p>What you will learn:</p>

<h4>PureMVC and Startup Manager</h4>

<p><a href="http://puremvc.org">PureMVC</a> is a cool <a href="http://en.wikipedia.org/wiki/Model–view–controller">Model-View-Controller</a> framework aimed to help you to create cleaner code in several <a href="http://trac.puremvc.org/PureMVC">languages</a>. And its <a href="http://trac.puremvc.org/Utility_AS3_Loadup">Startup Manager</a> is a good way how to put initialization of your application in a queue, while following each Proxy requirements.</p>

<ul>
<li>Application facade (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/AppFacade_AppFacade.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/AppFacade.as">code</a>)</li>
<li>Application mediator (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/view_AppMediator.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/AppMediator.as">code</a>)</li>
<li>Loading and queue of proxies (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/controller_LoadResourcesCommand.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/controller/LoadResourcesCommand.as">code</a>)</li>
</ul>

<h4>Config files</h4>

<p>Here you can see my Proxy helping to easily parse config XML settings. The online flavour allows you to merge parsed settings with FlashVars. You can localize the app from the config XML as well, you know, it&#8217;s not a good thing to have any static text in the SWF (it obviously doesn&#8217;t apply to the logging output).</p>

<ul>
<li>Config proxy (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/model_ConfigProxy.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/model/ConfigProxy.as">code</a>)</li>
</ul>

<h4>AIR Updates</h4>

<p>Adobe AIR platform allows applications to self-update when there&#8217;s a new version available. See the code below to see how to do that:</p>

<ul>
<li>Checking for updates (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/controller_CheckForUpdateCommand.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/controller/CheckForUpdateCommand.as">code</a>)</li>
</ul>

<h4>Away3D</h4>

<p><a href="http://away3d.com">Away3D</a> is a well known 3D library. And its new <a href="http://away3d.com/away3d-lite-v1-0-fastest-and-smallest-3d-engine-in-flash">Lite</a> flavour finally provides hardware acceleration via Flash 10 <a href="http://video.google.com/videoplay?docid=6731027747102186445#">postcards in space</a> acceleration features.</p>

<ul>
<li>Spinbox (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/view_components_spinbox_Spinbox.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/SpinboxMediator.as">code</a>)</li>
<li>Spinbox Mediator (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/view_SpinboxMediator.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/components/spinbox/Spinbox.as">code</a>)</li>
</ul>

<h4>OGG Decoding</h4>

<p>As I wrote above, thanks to Branden Hall I was able to use Ogg Vorbis files in the app, even it was not possible before.</p>

<ul>
<li>Ogg Vorbis Decoder (<a href="http://github.com/vancura/ambilab/tree/master/MumboJumboT/src/helpers/ogg_decoder">code</a>)</li>
<li>Sample Proxy (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/model_SampleProxy.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/model/SampleProxy.as">code</a>)</li>
</ul>

<h4>Advanced mouse controls</h4>

<p>You can see there&#8217;s a somewhat sick mouse handler allowing you to drag-and-rotate so called Spinbox.</p>

<ul>
<li>Mouse Proxy (<a href="http://dl.dropbox.com/u/24071/docs/ambilab-mumbojumbot/html/model_MouseProxy.html">Documentation</a> and <a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/model/MouseProxy.as">code</a>)</li>
</ul>

<h4>Skinning</h4>

<p>Here you can see how to skin the app with my <a href="http://github.com/vancura/vancura-as3-libs">vancura-as3-libs</a> library. Download the skin folder <a href="http://dl.dropbox.com/u/24071/projects/mumbojumbot/deploy/skin.zip">here</a>.</p>

<ul>
<li>About Panel (<a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/components/panels/AboutPanel.as">code</a>)</li>
<li>Load Panel (<a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/components/panels/LoadPanel.as">code</a>)</li>
<li>Play Panel (<a href="http://github.com/vancura/ambilab/blob/master/MumboJumboT/src/view/components/panels/PlayPanel.as">coe</a>)</li>
</ul>

<h4>Mocking up</h4>

<p>Just to revisit what was written in <a href="http://vaclav.vancura.org/mumbojumbot-day-1">previous</a> <a href="http://vaclav.vancura.org/mumbojumbot-day-2">articles</a>, here&#8217;s <a href="http://dl.dropbox.com/u/24071/projects/mumbojumbot/deploy/mockups.zip">an archive</a> of PSD files you can download. Just in case you&#8217;d be interested on how the GUI part was done.</p>

<p>You can watch a screencast of the mocking up on <a href="http://vimeo.com/9013867">Vimeo</a>.</p>

<h3>Legal stuff</h3>

<p>Licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0">Attribution-Share Alike (CC) license</a>.
OGG Alchemy Decoder by <a href="http://automatastudios.com">Branden Hall</a> and <a href="http://xiph.org">Xiph.org Foundation</a>. <a href="http://labs.adobe.com/wiki/index.php/Alchemy:Libraries">More info</a>
RaveIN font by <a href="http://jimmac.musichall.cz">Jakub Steiner aka Jimmac</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/mumbojumbot-done/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MumboJumboT: Day 2</title>
		<link>http://vaclav.vancura.org/mumbojumbot-day-2</link>
		<comments>http://vaclav.vancura.org/mumbojumbot-day-2#comments</comments>
		<pubDate>Wed, 27 Jan 2010 10:22:49 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=2351</guid>
		<description><![CDATA[Ok, here's a weather forecast for today: coding coding coding, since main graphics of the MumboJumboT project is done done done.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Ok, here&#8217;s a weather forecast for today: coding coding coding, since main graphics of the <a href="http://vaclav.vancura.org/mumbojumbot">MumboJumboT project</a> is done done done.</span>
</p>

<h3>MumboJumboT body</h3>

<p>
<div class="fullsize-image"><a href="http://vaclav.vancura.org/data/2010/01/mumbojumbot-robot-fullsize.jpg" rel="zoombox "><img src="http://vaclav.vancura.org/data/2010/01/mumbojumbot-robot-poster.png" class="transparent " /></a></div>
<span class="image-description">Here&#8217;s MumboJumboT&#8217;s body.</span>
</p>

<p>The space in the middle will be canvas for all audio controls and displays. I am not entirely happy with his head, so I&#8217;ll revisit it at some point. I planned to make it in 3D (rotating while playing), but maybe I&#8217;ll keep it static, while making it richer (I think robot needs ears, antennae etc). PSD is <a href="http://dl.dropbox.com/u/24071/projects/mumbojumbot/deploy/robot-back.7z">here</a>.</p>

<p><span id="more-2351"></span></p>

<h3>Screencast</h3>

<p>While drawing I recorded a movie you can watch here:</p>

<p><object class="vimeo" width="$width" height="$height"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=$clip_id&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=$clip_id&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="$width" height="$height"></embed></object><br /><a href="http://vimeo.com/$clip_id">View on Vimeo</a>.</p>

<h3>Now what</h3>

<p>So now let&#8217;s jump into coders&#8217; world. Don&#8217;t forget to follow <a href="http://twitter.com/mumbojumbot">@MumboJumboT</a> on Twitter!</p>

<h3>Update</h3>

<p>MumboJumboT project is done. Read more <a href="http://vaclav.vancura.org/mumbojumbot-done">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/mumbojumbot-day-2/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MumboJumboT</title>
		<link>http://vaclav.vancura.org/mumbojumbot</link>
		<comments>http://vaclav.vancura.org/mumbojumbot#comments</comments>
		<pubDate>Mon, 25 Jan 2010 13:15:13 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=2337</guid>
		<description><![CDATA[Since today I'll be working on a small one week project, something like a workshop. I'd be glad to prepare an application for realtime visualization of audio.

I love this kind of projects: you got a limited time - 7 days should be enough to prepare a small application. Game, audio or video stuff, you name it. When you work alone, you could manage your time more precisely, there's no one who tells you what to do and what you should avoid. It's solely your work and you can do whatever you want to - but it has to be done before the deadline, which can't be moved in any circumstances.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Since today I&#8217;ll be working on a small one week project, something like a workshop. I&#8217;d be glad to prepare an application for realtime visualization of audio.</span>
</p>

<p>I love this kind of projects: you got a limited time &#8211; 7 days should be enough to prepare a small application. Game, audio or video stuff, you name it. When you work alone, you could manage your time more precisely, there&#8217;s no one who tells you what to do and what you should avoid. It&#8217;s solely your work and you can do whatever you want to &#8211; but it has to be done before the deadline, which can&#8217;t be moved in any circumstances.</p>

<p>This time I&#8217;ll prepare a small audio application. No business plan, no desires to sell it. No visible sight of making money of it. Just simple fun. This app was on paper for too long and <a href="http://www.viktorbezdek.cz/2009/10/soutez-s-adobe-user-group-czech-o-software-od-adobe-za-2100-pravidla-podminky-a-zadani/">this contest</a> made me start it.</p>

<p>The app will mix samples in a never-ending stream of blabs. Everything will be mixed randomly from predefined settings, adjustable by you. And most importantly you&#8217;ll be able to make your very own generator by recording audio from your computer&#8217;s Line In or Microphone input.</p>

<p>I want to show you some of technologies I developed during last few years. GUI widgets with loadable skins, audio processing (I made few multitrack sequencers and mixers), a slice of 3D rendering. All Model-View-Controller via PureMVC.</p>

<p><span id="more-2337"></span>
I want to use these technologies if you&#8217;re interested to know:</p>

<ul>
<li><a href="http://labs.adobe.com/technologies/air2">Air 2.0 beta</a></li>
<li><a href="http://labs.adobe.com/wiki/index.php/Alchemy:Libraries">Ogg Vorbis / Alchemy</a></li>
<li><a href="http://puremvc.org">PureMVC</a></li>
<li><a href="http://away3d.com/away3d-lite-v1-0-fastest-and-smallest-3d-engine-in-flash">Away3D Lite</a></li>
<li><a href="http://code.google.com/p/popforge">PopForge</a></li>
<li><a href="http://code.google.com/p/bulk-loader/">BulkLoader</a></li>
<li><a href="http://destroytoday.com">DestroyToday&#8217;s</a> <a href="http://github.com/vancura/DestroyFramework/blob/master/src/com/destroytoday/display/Scale9Bitmap.as">Scale9Bitmap</a> (slightly changed by me)</li>
<li><a href="http://tweenmax.com">Greensock TweenMax</a></li>
<li>and a small help of my <a href="http://github.com/vancura/vancura-as3-libs">libraries</a>.</li>
</ul>

<p>If you want to take a few lessons from ActionScript and these areas, this project is a lovely place to start. I did not tell you? Everything I am going to produce here will be licensed as Creative Commons, open for everybody. And that doesn&#8217;t apply only to source codes, I am talking about assets, source PSDs, illustrations, samples etc.</p>

<p>So if you&#8217;re interested in what I am going to come up with in next 6.5 days, enjoy me on the voyage. It will be a rather fast, but very fun trip. Watch this place and Twitter stream at <a href="http://twitter.com/mumbojumbot">@mumbojumbot</a>.</p>

<h3>Update</h3>

<p>MumboJumboT project is done. Read more <a href="http://vaclav.vancura.org/mumbojumbot-done">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/mumbojumbot/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Midsummer</title>
		<link>http://vaclav.vancura.org/midsummer-featured</link>
		<comments>http://vaclav.vancura.org/midsummer-featured#comments</comments>
		<pubDate>Sun, 18 Oct 2009 16:46:05 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[jsem.cz]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1468</guid>
		<description><![CDATA[Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half. A short "animation" done in one night for the project Jsem.cz.]]></description>
			<content:encoded><![CDATA[<p>Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half. A short &#8220;animation&#8221; done in one night for the project Jsem.cz.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/midsummer-featured/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flippo the OSFlash Mascot</title>
		<link>http://vaclav.vancura.org/flippo-the-osflash-mascot</link>
		<comments>http://vaclav.vancura.org/flippo-the-osflash-mascot#comments</comments>
		<pubDate>Mon, 23 Jul 2007 22:00:35 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=2126</guid>
		<description><![CDATA[Flippo is a mascot for the OSFlash web site.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Flippo is a mascot for the <a href="http://osflash.org/">OSFlash web site</a>.</span>
</p>

<p>Actually I was just one of participants in a <a href="http://osflash.org/doku.php?id=osflash_mascot_contest">competition for a mascot illustration</a>. You know, great prizes: books from FriendsOfEd, some textures and sounds if I my memory works. And well maybe one of Adobe&#8217;s applications. But unfortunately Aral Balkan, owner of the site, changed his mind just after competition deadline. Long after the deadline. He canceled it. Since then I blacklisted all competitions just to stay sane, if you ask.</p>

<p>
<div class="fullsize-image"><img src="http://vaclav.vancura.org/data/2007/07/flippo-1-poster.png" class="transparent " /></div>

</p>

<p>
<div class="fullsize-image"><img src="http://vaclav.vancura.org/data/2007/07/flippo-2-poster.png" class="transparent " /></div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/flippo-the-osflash-mascot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sound Field</title>
		<link>http://vaclav.vancura.org/sound-field</link>
		<comments>http://vaclav.vancura.org/sound-field#comments</comments>
		<pubDate>Sun, 29 Apr 2007 22:00:27 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[cover]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[oxygen records]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1327</guid>
		<description><![CDATA[CD cover for a new Oxygen Records release.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">CD cover for a new <a href="http://www.oxygenrecords.com">Oxygen Records</a> release.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/sound-field-full.jpg" rel="zoombox "><img src="http://vaclav.vancura.org/data/2009/10/sound-field-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/sound-field/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rodinka</title>
		<link>http://vaclav.vancura.org/rodinka</link>
		<comments>http://vaclav.vancura.org/rodinka#comments</comments>
		<pubDate>Mon, 02 Oct 2006 08:49:00 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[flier creation]]></category>
		<category><![CDATA[Illustration]]></category>

		<guid isPermaLink="false">http://localhost/Homepage/Vaclav.Vancura.org-wordpress/?p=50</guid>
		<description><![CDATA[A mám tu jeden obrázek... Rodinka. Je to první nástřel teprve vznikajícího stripu.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">A mám tu jeden obrázek&#8230; Rodinka. Je to první nástřel teprve vznikajícího stripu.</span>
</p>

<p>
<div class="fullsize-image"><img src="http://vaclav.vancura.org/data/2006/10/rodinka-trans-old.png" class="transparent " /></div>
<span class="image-description">Rodinka</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/rodinka/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Beaver&#8217;s Voyage / Bobříkova Cesta</title>
		<link>http://vaclav.vancura.org/beavers-voyage</link>
		<comments>http://vaclav.vancura.org/beavers-voyage#comments</comments>
		<pubDate>Fri, 30 Dec 2005 22:00:23 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[mnauhaus]]></category>
		<category><![CDATA[pour feliciter]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1501</guid>
		<description><![CDATA[Pour feliciter made for our friends in just a few copies.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Pour feliciter made for our friends in just a few copies.</span>
</p>

<p>Once there was a beaver sleeping his winter sleep. And there was really delicious cake, known around all universe, just the beaver had no clue. And there were green men coming from the outer space to buy a slice, unfortunatelly waking him up while trying to park their saucer.</p>

<h3>Click the images below to view<br />full resolution screenshots.</h3>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-1-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-1-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-2-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-2-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-3-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-3-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-4-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-4-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-5-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-5-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-6-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-6-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-7-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2005/12/bobr-7-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-8-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-8-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-9-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-9-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-10-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-10-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-11-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-11-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-12-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2005/12/bobr-12-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/bobr-13-fullsize.jpg" rel="zoombox[beavers-voyage] "><img src="http://vaclav.vancura.org/data/2009/10/bobr-13-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>Hands copyright <a href="http://www.flickr.com/photos/vladimir-frognfly">Vladimír &#8216;Frognfly&#8217; Chalupa</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/beavers-voyage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Síla skupiny</title>
		<link>http://vaclav.vancura.org/sila-skupiny-2</link>
		<comments>http://vaclav.vancura.org/sila-skupiny-2#comments</comments>
		<pubDate>Wed, 20 Jul 2005 22:00:10 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1692</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/sila-skupiny.swf" rel="zoombox 1200 630"><img src="http://vaclav.vancura.org/data/2009/10/neurobion-skila-skupiny-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/sila-skupiny-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bowtie t-shirt</title>
		<link>http://vaclav.vancura.org/bowtie-t-shirt</link>
		<comments>http://vaclav.vancura.org/bowtie-t-shirt#comments</comments>
		<pubDate>Wed, 25 May 2005 22:00:48 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[shop]]></category>
		<category><![CDATA[t-shirt]]></category>
		<category><![CDATA[tribal vision]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1508</guid>
		<description><![CDATA[T-shirt for my friends from Tribal Vision Records.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">T-shirt for my friends from <a href="http://www.tribalvision.cz">Tribal Vision Records</a>.</span>
</p>

<p>You can buy <a href="http://tribalvision.cz/shop/detail.php?ccco=52&#038;showtitle=Bow-Knot%20T-Shirt">male t-shirt here</a> and <a href="http://tribalvision.cz/shop/detail.php?ccco=53&#038;showtitle=Bow-Knot%20Girls%20T-Shirt">female here</a>.</p>

<p>
<div class="fullsize-image"><a href="http://vaclav.vancura.org/data/2005/05/bowtie-fullsize.jpg" rel="zoombox "><img src="http://vaclav.vancura.org/data/2005/05/bowtie-poster.png" class="transparent " /></a></div>
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/bowtie-t-shirt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Veverka Huli se loučí</title>
		<link>http://vaclav.vancura.org/veverka-huli-se-louci</link>
		<comments>http://vaclav.vancura.org/veverka-huli-se-louci#comments</comments>
		<pubDate>Thu, 24 Mar 2005 21:00:00 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[reflex]]></category>

		<guid isPermaLink="false">http://localhost/Homepage/Vaclav.Vancura.org-wordpress/?p=61</guid>
		<description><![CDATA[Pěkně dopoledne! Tak je to už oficiální, od tohoto týdne již veverku Hulí nebudu rodit já, ale nová výtvarnice.
]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Pěkně dopoledne! Tak je to už oficiální, od tohoto týdne již veverku Hulí nebudu rodit já, ale nová výtvarnice.
</span>
</p>

<p>S JXD byla hezká spolupráce (někdy mírně zmatená), zase jednou po letech jsem si dál pořádný punk a zákopovou válku! Alespoň trochu&#8230;
Těšil jsem se, že se mnou veve prožije rok života, provedu ji vším dobrým i zlým, co se nám s Kristinou stane. Tak jsem to ostatně v těch pár dílech dělal: když jsme byli na bobech, byla i Hulí na bobech. Když jsme byli v kině, Hulí zírala na zářící plátno. Když mě dostala chřipka, byla Hulí v posteli s teploměrem místo brka. Těšil jsem se na jaro, na Hulí s jointem pod rozkvetlou jabloní. Na první psytrance, na první jarní bouřku i na Czechtek (veve by byla celá hranatá a černobílá). Těšil jsem se na podzimní designove výstavy (kde by veve měla hranaté vydesignovane brýle a šik sestřih, bo tak správný designér musí vypadat). Hulí měla projít celým spektrem uživatelů marihuany. Chtěl jsem ji zobrazit i jako copywrightera s kravatou, jako jazzmana. Jako skejtaka i jako metalistu zakresleho v křesle. Hulí měla být nejen kusem mne samotného, ale i všemi jejími čtenáři. Škoda&#8230;</p>

<p>Budiž mě veve země nezebe&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/veverka-huli-se-louci/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Večernyj Zvon</title>
		<link>http://vaclav.vancura.org/vecernyj-zvon</link>
		<comments>http://vaclav.vancura.org/vecernyj-zvon#comments</comments>
		<pubDate>Thu, 23 Dec 2004 22:00:16 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>
		<category><![CDATA[pour feliciter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1673</guid>
		<description><![CDATA[Christmas animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Christmas animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/vecernyj-zvon.swf" rel="zoombox 1400 1000"><img src="http://vaclav.vancura.org/data/2004/12/neurobion-vecernyj-zvon-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/vecernyj-zvon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Veverka Huli / Huli the Squirrel</title>
		<link>http://vaclav.vancura.org/veverka-huli</link>
		<comments>http://vaclav.vancura.org/veverka-huli#comments</comments>
		<pubDate>Mon, 20 Dec 2004 20:07:00 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[reflex]]></category>

		<guid isPermaLink="false">http://localhost/Homepage/Vaclav.Vancura.org-wordpress/?p=36</guid>
		<description><![CDATA[I was asked to draw a squirrel named Huli for the Reflex magazine.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">I was asked to draw a squirrel named Huli<br />for the Reflex magazine.</span>
</p>

<h3>Click the images below to view<br />full resolution screenshots.</h3>

<p>
<a href="http://vaclav.vancura.org/data/2004/12/huli-ex-1-fullsize.jpg" rel="zoombox[huli] "><img src="http://vaclav.vancura.org/data/2004/12/huli-ex-1-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2004/12/huli-ex-3-fullsize.jpg" rel="zoombox[huli] "><img src="http://vaclav.vancura.org/data/2004/12/huli-ex-3-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2004/12/huli-ex-5-fullsize.jpg" rel="zoombox[huli] "><img src="http://vaclav.vancura.org/data/2004/12/huli-ex-5-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2004/12/huli-ex-9-fullsize.jpg" rel="zoombox[huli] "><img src="http://vaclav.vancura.org/data/2004/12/huli-ex-9-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2004/12/huli-ex-11-fullsize.jpg" rel="zoombox[huli] "><img src="http://vaclav.vancura.org/data/2004/12/huli-ex-11-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<h3>Matches</h3>

<p>
<img src="http://vaclav.vancura.org/data/2004/12/huli-matches-1-poster.jpg" class="" />

</p>

<p>
<img src="http://vaclav.vancura.org/data/2004/12/huli-matches-2-poster.jpg" class="" />

</p>

<p>
<img src="http://vaclav.vancura.org/data/2004/12/huli-matches-3-poster.jpg" class="" />

</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/veverka-huli/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannabis Cup 2004</title>
		<link>http://vaclav.vancura.org/cannabis-cup-2004</link>
		<comments>http://vaclav.vancura.org/cannabis-cup-2004#comments</comments>
		<pubDate>Mon, 29 Nov 2004 19:56:00 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[reflex]]></category>

		<guid isPermaLink="false">http://localhost/Homepage/Vaclav.Vancura.org-wordpress/?p=34</guid>
		<description><![CDATA[Logotype for a competition organized by the Reflex magazine.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Logotype for a competition organized<br />by the Reflex magazine.</span>
</p>

<p>
<div class="fullsize-image"><img src="http://vaclav.vancura.org/data/2004/11/cannabis-cup-2004-poster.png" class="transparent " /></div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/cannabis-cup-2004/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DJ Turtle</title>
		<link>http://vaclav.vancura.org/dj-turtle</link>
		<comments>http://vaclav.vancura.org/dj-turtle#comments</comments>
		<pubDate>Sun, 24 Oct 2004 19:19:34 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[cover]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1316</guid>
		<description><![CDATA[This picture was created just for fun, for my friend, who's a DJ and calls himself Turtle.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">This picture was created just for fun, for my friend, who&#8217;s a DJ and calls himself Turtle.</span>
</p>

<p>I initially thought it could be used as a part of cover of his new mix, but unfortunately it never happened.</p>

<p>
<div class="fullsize-image"><img src="http://vaclav.vancura.org/data/2009/10/turtle-dj-2.png" class="transparent " /></div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/dj-turtle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Boneyard of Heroes</title>
		<link>http://vaclav.vancura.org/the-boneyard-of-heroes</link>
		<comments>http://vaclav.vancura.org/the-boneyard-of-heroes#comments</comments>
		<pubDate>Mon, 29 Dec 2003 22:00:25 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1679</guid>
		<description><![CDATA[A sad animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">A sad animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/the-boneyard-of-heroes.swf" rel="zoombox 890 540"><img src="http://vaclav.vancura.org/data/2003/12/neurobion-boneyard-of-heroes-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/the-boneyard-of-heroes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xma$</title>
		<link>http://vaclav.vancura.org/xmas</link>
		<comments>http://vaclav.vancura.org/xmas#comments</comments>
		<pubDate>Tue, 23 Dec 2003 22:00:17 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>
		<category><![CDATA[pour feliciter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1356</guid>
		<description><![CDATA[Another Christmas animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another Christmas animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/xmas.swf" rel="zoombox 741 766"><img src="http://vaclav.vancura.org/data/2003/12/neurobion-xmas-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/xmas/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Font Magazine Cover</title>
		<link>http://vaclav.vancura.org/font-magazine-cover</link>
		<comments>http://vaclav.vancura.org/font-magazine-cover#comments</comments>
		<pubDate>Sat, 29 Nov 2003 22:00:45 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[bw]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[cover]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1826</guid>
		<description><![CDATA[A cover for Czech graphics magazine Font.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">A cover for Czech graphics magazine Font.</span>
</p>

<p>It was a challenging task: I had to create high resolution (600 dpi) cover, somewhat an advertisment for a new printer in Czech Republic, which allowed to print custom non-repeating sheets. Every subscriber got his own name on the cover, just in the middle of the picture (written using my hand writing font).</p>

<h3>Click the images below to view<br />full resolution screenshots.</h3>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/font-cover-1-fullsize.jpg" rel="zoombox[font-magazine-cover] "><img src="http://vaclav.vancura.org/data/2009/10/font-cover-1-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/font-cover-2-fullsize.jpg" rel="zoombox[font-magazine-cover] "><img src="http://vaclav.vancura.org/data/2009/10/font-cover-2-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/font-cover-3-fullsize.jpg" rel="zoombox[font-magazine-cover] "><img src="http://vaclav.vancura.org/data/2009/10/font-cover-3-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/font-magazine-cover/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Love Car</title>
		<link>http://vaclav.vancura.org/love-car</link>
		<comments>http://vaclav.vancura.org/love-car#comments</comments>
		<pubDate>Tue, 23 Sep 2003 22:00:19 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1697</guid>
		<description><![CDATA[Another animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/lufcar.swf" rel="zoombox 800 680"><img src="http://vaclav.vancura.org/data/2003/09/neurobion-lufcar-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/love-car/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>666</title>
		<link>http://vaclav.vancura.org/666</link>
		<comments>http://vaclav.vancura.org/666#comments</comments>
		<pubDate>Mon, 13 Jan 2003 22:00:18 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1708</guid>
		<description><![CDATA[Another animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/666.swf" rel="zoombox 946 624"><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-1-fullsize.png" rel="zoombox "><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-1-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-2-fullsize.png" rel="zoombox "><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-2-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/666/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
