<?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; logo</title>
	<atom:link href="http://vaclav.vancura.org/tag/logo/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 1</title>
		<link>http://vaclav.vancura.org/mumbojumbot-day-1</link>
		<comments>http://vaclav.vancura.org/mumbojumbot-day-1#comments</comments>
		<pubDate>Tue, 26 Jan 2010 10:23:15 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=2340</guid>
		<description><![CDATA[Unfortunately on the first day I was not really working as hard as I would need. Mainly because I finished a large project yesterday morning and I was not so fresh. I need to concentrate more during next few days, so I won&#8217;t be a promising looser. But there were few things I&#8217;ve successfully done. [...]]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Ok, here&#8217;s the last day&#8217;s news digest on the <a href="http://vaclav.vancura.org/mumbojumbot">MumboJumboT</a> project.</span>
</p>

<p>Unfortunately on the first day I was not really working as hard as I would need. Mainly because I finished a large project yesterday morning and I was not so fresh. I need to concentrate more during next few days, so I won&#8217;t be a promising looser.</p>

<p>But there were few things I&#8217;ve successfully done. First, I made a Twitter account. Pretty sweet, huh :]</p>

<p>Then there was the logotype. The application is based on a concept of a robot blabbing nonsense. Because I&#8217;ll use <a href="http://away3d.com/away3d-lite-v1-0-fastest-and-smallest-3d-engine-in-flash">Away3D</a> library, everything will be somewhat raw &#8211; boxes and angles everywhere. That should be OK for a robot, except Eva from Wall-E nearly all robots are made of boxes.</p>

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

<h3>Logo</h3>

<p>I was not entirely happy with boxy look, so I needed to make it softer somehow. Hence I added the key to the right side. My robot, MumboJumboT, will have a similar key, hopefully rotating while playing.</p>

<p>
<div class="fullsize-image"><img src="http://vaclav.vancura.org/data/2010/01/mumbojumbot-logo.png" class="transparent " /></div>

</p>

<h3>Twitter</h3>

<p>Then I needed to come up with a Twitter background and of course an avatar. Here&#8217;s a screenshot of current state of <a href="http://twitter.com/mumbojumbot">MumboJumboT&#8217;s Twitter home</a>:</p>

<p>
<a href="http://vaclav.vancura.org/data/2010/01/mumbojumbot-twitter-fullsize.jpg" rel="zoombox "><img src="http://vaclav.vancura.org/data/2010/01/mumbojumbot-twitter-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>As promised, <a href="http://dl.dropbox.com/u/24071/projects/mumbojumbot/deploy/twitter-mockups-source.zip">here</a> you can have PSDs I created.</p>

<h3>Source code</h3>

<p>Yesterday I was also happy to prepare a functional AIR source base I can use now. It&#8217;s deployed to the <a href="http://github.com/vancura/ambilab/tree/master/MumboJumboT">GitHub repo</a> I&#8217;ve prepared for the project.</p>

<p>So now it&#8217;s the second day and I need to continue. Today I want to prepare all graphics assets I will need. Watch the MumboJumboT&#8217;s Twitter stream at <a href="http://twitter.com/mumbojumbot">@mumbojumbot</a> for more information about the progress.</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-1/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ve víru velkoměst</title>
		<link>http://vaclav.vancura.org/ve-viru-velkomest-featured</link>
		<comments>http://vaclav.vancura.org/ve-viru-velkomest-featured#comments</comments>
		<pubDate>Tue, 20 Oct 2009 14:01:43 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flier creation]]></category>
		<category><![CDATA[frognfly]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[jiglib]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[papervision3d]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1772</guid>
		<description><![CDATA[Staropramen asked Flier Creation and me to create a visually expressive game called "Ve víru velkoměst". We thought isometric view would be awesome for a game of this type. My part of job was to bring to life the whole client side, except drawings (done by Vladimír 'Frognfly' Chalupa) - that means all user interface graphics, icons, animations, Flash, Papervision3D and interactivity is my work. I really enjoyed this job, as I was able to do what I love, from scratch to finish.]]></description>
			<content:encoded><![CDATA[<p>Staropramen asked Flier Creation and me to create a visually expressive game called &#8220;Ve víru velkoměst&#8221;. We thought isometric view would be awesome for a game of this type. My part of job was to bring to life the whole client side, except drawings (done by Vladimír &#8216;Frognfly&#8217; Chalupa) &#8211; that means all user interface graphics, icons, animations, Flash, Papervision3D and interactivity is my work. I really enjoyed this job, as I was able to do what I love, from scratch to finish.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/ve-viru-velkomest-featured/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ve víru velkoměst</title>
		<link>http://vaclav.vancura.org/ve-viru-velkomest</link>
		<comments>http://vaclav.vancura.org/ve-viru-velkomest#comments</comments>
		<pubDate>Tue, 31 Mar 2009 22:00:09 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[User Interface Coding]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flier creation]]></category>
		<category><![CDATA[frognfly]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[jiglib]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[papervision3d]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1719</guid>
		<description><![CDATA[Staropramen asked Flier Creation and me to create a visually expressive game called "Ve víru velkoměst".]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Staropramen asked Flier Creation and me<br />to create a visually expressive game called<br />&#8220;Ve víru velkoměst&#8221;.</span>
</p>

<p>
<img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-logo.png" class="transparent inserted " />

We thought isometric view would be awesome for a game of this type. My part of this job was to bring to life the whole client side, except drawings (done by Vladimír &#8216;Frognfly&#8217; Chalupa) &#8211; that means all user interface graphics, icons, animations, Flash, Papervision3D and interactivity is my work.</p>

<p>I really enjoyed this job as I was able to do what I love, from scratch to finish. While designing skinning core, I developed a new skinning library I will open for public use soon. Watch my space on <a href="http://github.com/vancura">GitHub</a>.</p>

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

<p>
<a href="http://vaclav.vancura.org/data/2009/10/staropramen-1-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Initial game screen"><img src="http://vaclav.vancura.org/data/2009/10/staropramen-1-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Initial game screen.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-1-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Basic screen elements"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-1-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Basic screen elements.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-2-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="First game mockups"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-2-poster.jpg" class="" /></a><br />
<span class="image-description"><em>First game mockups.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-3-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Overall map with an already bought house and current avatar position"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-3-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Overall map with an already bought house and current avatar position.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-4-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Original overall map"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-4-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Original overall map.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-5-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Original character designer screen, page 1"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-5-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Original character designer screen, page 1.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-6-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Original character designer screen, page 2"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-6-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Original character designer screen, page 2.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-7-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Defect window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-7-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Defect window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-8-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Jackpot window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-8-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Jackpot window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-9-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Casino window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-9-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Casino window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-10-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Help a Friend window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-10-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Help a Friend window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-11-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Job window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-11-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Job window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-12-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="New Message window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-12-poster.jpg" class="" /></a><br />
<span class="image-description"><em>New Message window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-13-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Taxi window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-13-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Taxi window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-14-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Jail window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-14-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Jail window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-15-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Webcafe window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-15-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Webcafe window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<h3>Animated preloader preview</h3>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-preloader.swf" rel="zoombox[ve-viru-velkomest] 913 472" title="Animated preloader"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-preloader-poster.png" class="" /></a><br />
<span class="image-description">Click to see the preloader preview.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/ve-viru-velkomest/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TechCV</title>
		<link>http://vaclav.vancura.org/techcv</link>
		<comments>http://vaclav.vancura.org/techcv#comments</comments>
		<pubDate>Fri, 29 Feb 2008 22:00:02 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[html/css]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[sideshow]]></category>
		<category><![CDATA[subpixel]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1777</guid>
		<description><![CDATA[TechCV had to be a job listing web site...]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">TechCV had to be a job listing web site&#8230;</span>
</p>

<p>But unfortunately it was never launched.</p>

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

<p>
<a href="http://vaclav.vancura.org/data/2009/10/techcv-1-fullsize.png" rel="zoombox[techcv] " title="Post Job Listing"><img src="http://vaclav.vancura.org/data/2008/03/techcv-1-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Post Job Listing.</em> Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/techcv-2-fullsize.png" rel="zoombox[techcv] " title="Pure text document"><img src="http://vaclav.vancura.org/data/2008/03/techcv-2-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Pure text document.</em> Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/techcv-3-fullsize.png" rel="zoombox[techcv] " title="Job Listing"><img src="http://vaclav.vancura.org/data/2008/03/techcv-3-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Job Listing.</em> Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/techcv/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>
	</channel>
</rss>
