<?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>Hannes Moser &#187; Design/UI</title> <atom:link href="http://hannes-moser.com/blog/category/designui/feed/" rel="self" type="application/rss+xml" /><link>http://hannes-moser.com/blog</link> <description>Web, Programing &#38; Design</description> <lastBuildDate>Sat, 28 Jan 2012 16:41:14 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Use blueprintcss the SASS way</title><link>http://hannes-moser.com/blog/2012/01/use-blueprintcss-the-sass-way/</link> <comments>http://hannes-moser.com/blog/2012/01/use-blueprintcss-the-sass-way/#comments</comments> <pubDate>Sat, 28 Jan 2012 16:03:41 +0000</pubDate> <dc:creator>Hannes Wolfgang Moser</dc:creator> <category><![CDATA[Design/UI]]></category> <category><![CDATA[Webby Web]]></category> <category><![CDATA[blueprintcss]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[CSS3]]></category> <category><![CDATA[SASS]]></category> <category><![CDATA[UI]]></category> <category><![CDATA[Usability]]></category> <category><![CDATA[Workflow]]></category><guid isPermaLink="false">http://hannes-moser.com/blog/?p=604</guid> <description><![CDATA[As a big fan of both, blueprintcss and SASS I always wanted to have them combined. As these two utilities are my major project dependencies I was looking for a way to shorten the time for an initial project setup &#8230; <a href="http://hannes-moser.com/blog/2012/01/use-blueprintcss-the-sass-way/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>As a big fan of both, <a title="Blueprint CSS" href="http://blueprintcss.org" target="_blank">blueprintcss </a>and <a title="SASS" href="http://sass-lang.org" target="_blank">SASS</a> I always wanted to have them combined. As these two utilities are my major project dependencies I was looking for a way to shorten the time for an initial project setup and to have a more consistent setup across all projects in general. For this purpose I have created a complete port of blueprintcss to SASS with all advantages SASS offers to the CSS developer.</p><p>The most important feature is the possibility to change the grid setup by simply chaning some <strong>-blueprint-grid</strong> parameters.</p><pre class="brush: css; title: ; notranslate">
/* Grid setup */
$-blueprint-grid-columns:24;
$-blueprint-grid-width:30px;
$-blueprint-grid-gutter:10px;
</pre><p><span id="more-604"></span></p><p>There is no documentation right now, but i want to share at least the <strong>grid.scss</strong> with you.<br /> If you want to try on your own ensure you have at least SASS version 3.1 installed as this snippet use custom SASS functions.</p><pre class="brush: css; title: ; notranslate">
/* Grid calc function */
@function -blueprint-grid-width($n) {
	@return $n * $-blueprint-grid-width + ($n - 1) * $-blueprint-grid-gutter;
}

/* A container should group all your columns. */
.container {
  width: -blueprint-grid-width($-blueprint-grid-columns);
  margin: 0 auto;
}

/* Use this class on any .span / container to see the grid. */
.showgrid {
  background: url(src/grid.png);
}

/* Use these classes to set the width of a column. */
.column {
	float:left;
	margin-right:$-blueprint-grid-gutter;
}

/* The last column in a row needs this class. */
.last { margin-right: 0; }

@for $i from 1 through $-blueprint-grid-columns {
	.span-#{$i} {
		@extend .column;
	}
	.span-#{$i} {
		width: -blueprint-grid-width($i);
		@if $i == $-blueprint-grid-columns {
			margin-right:0;
		}
	}
}

/* Use these classes to set the width of an input. */
input.span {
	border-left-width: 1px;
	border-right-width: 1px;
	padding-left: $-blueprint-grid-gutter / 2;
	padding-right: $-blueprint-grid-gutter / 2;
}
@for $i from 1 through $-blueprint-grid-columns {
	input.span-#{$i},textarea.span-#{$i} {
		@extend input.span;
	}
	input.span-#{$i} {
		width:-blueprint-grid-width($i) - $-blueprint-grid-gutter - 2;
	}
}
@for $i from 1 through $-blueprint-grid-columns {
	textarea.span-#{$i} {
		@extend input.span-#{$i};
	}
}

/* Add these to a column to append empty cols. */
@for $i from 1 through ($-blueprint-grid-columns - 1) {
	.append-#{$i} {
		padding-right:-blueprint-grid-width($i) + $-blueprint-grid-gutter;
	}
}

/* Add these to a column to prepend empty cols. */
@for $i from 1 through ($-blueprint-grid-columns - 1) {
	.prepend-#{$i} {
		padding-left:-blueprint-grid-width($i) + $-blueprint-grid-gutter;
	}
}

/* Border on right hand side of a column. */
.border {
  padding-right: $-blueprint-grid-gutter / 2 - 1;
  margin-right: $-blueprint-grid-gutter / 2;
  border-right: 1px solid #ddd;
}

/* Border with more whitespace, spans one column. */
.colborder {
  padding-right: ($-blueprint-grid-width + 20) / 2 - 1;
  margin-right: ($-blueprint-grid-width + 20) / 2;
  border-right: 1px solid #ddd;
}

/* Use these classes on an element to push it into the next column, or to pull it into the previous column.  */
.pull {
	float:left;
	position:relative;
}
@for $i from 1 through $-blueprint-grid-columns {
	.pull-#{$i},.push-#{$i} {
		@extend .pull
	}
	.pull-#{$i} {
		margin-left:- -blueprint-grid-width($i) - $-blueprint-grid-gutter;
	}
}

@for $i from 1 through $-blueprint-grid-columns {
	.push-#{$i} {
		margin:0 -(-blueprint-grid-width($i) + $-blueprint-grid-gutter) 1.5em (-blueprint-grid-width($i) + $-blueprint-grid-gutter);
	}
}

/* Misc classes and elements
-------------------------------------------------------------- */

/* In case you need to add a gutter above/below an element */
div.prepend-top, .prepend-top {
  margin-top:1.5em;
}
div.append-bottom, .append-bottom {
  margin-bottom:1.5em;
}

/* Use a .box to create a padded box inside a column.  */
.box {
  padding: 1.5em;
  margin-bottom: 1.5em;
  background: #e5eCf9;
}

/* Use this to create a horizontal ruler across a column. */
hr {
	background: #ddd;
	color: #ddd;
	clear: both;
	float: none;
	width: 100%;
	height: 1px;
	margin: 0 0 17px;
	border: none;
	&amp;.space {
		background: #fff;
		color: #fff;
		visibility: hidden;
	}
}

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */
.clearfix, .container {
	display: block;
	&amp;:after {
		content: &quot;&#92;&#48;020&quot;;
		display: block;
		height: 0;
		clear: both;
		visibility: hidden;
		overflow:hidden;
	}
}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }
</pre>]]></content:encoded> <wfw:commentRss>http://hannes-moser.com/blog/2012/01/use-blueprintcss-the-sass-way/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>CSS3 Select (Dropdown) input element</title><link>http://hannes-moser.com/blog/2010/10/css3-select-dropdown-input-element/</link> <comments>http://hannes-moser.com/blog/2010/10/css3-select-dropdown-input-element/#comments</comments> <pubDate>Sun, 24 Oct 2010 12:42:04 +0000</pubDate> <dc:creator>Hannes Wolfgang Moser</dc:creator> <category><![CDATA[Design/UI]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[CSS3]]></category> <category><![CDATA[Design]]></category> <category><![CDATA[UI]]></category> <category><![CDATA[Usability]]></category><guid isPermaLink="false">http://impossiblearts.com/blog/?p=528</guid> <description><![CDATA[For a current project i made some prototypes for UI elements that should give a consisten look for UI elements across different platforms/browsers. Not everything made it into the project, but imho the select element is quite convinient and maybe &#8230; <a href="http://hannes-moser.com/blog/2010/10/css3-select-dropdown-input-element/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>For a current project i made some prototypes for UI elements that should give a consisten look for UI elements across different platforms/browsers. Not everything made it into the project, but imho the select element is quite convinient and maybe useable. It should work on IE8/9, Firefox 3.x, Opera 10, Safari 3/4 (also on iOS 3/4 Safari) and Chrome 6 or higher. For sure the main focus was on webkit browsers and all features are only available there.<br /> <span id="more-528"></span></p><p><a href="http://impossiblearts.com/blog/wp-content/uploads/2010/10/select_dropdown.jpg"><img class="alignnone size-full wp-image-533" title="select_dropdown" src="http://impossiblearts.com/blog/wp-content/uploads/2010/10/select_dropdown.jpg" alt="" width="472" height="400" /></a></p><p><strong>How to use:</strong></p><pre class="brush: xml; title: ; notranslate">
&lt;select name=&quot;network&quot; &gt;
 &lt;option value=&quot;1&quot; img=&quot;img/network.png&quot;&gt;The first entry&lt;/option&gt;
 &lt;option value=&quot;2&quot; img=&quot;img/network.png&quot;&gt;The second entry&lt;/option&gt;
 &lt;option selected=&quot;selected&quot; value=&quot;3&quot; img=&quot;img/network.png&quot;&gt;The third entry&lt;/option&gt;
 &lt;/select&gt;
</pre><p>&nbsp;</p><pre class="brush: xml; title: ; notranslate">
&lt;select name=&quot;something&quot; &gt;
 &lt;option value=&quot;1&quot;&gt;The first entry&lt;/option&gt;
 &lt;optgroup label=&quot;Group 1&quot; img=&quot;img/network.png&quot;&gt;
 &lt;option value=&quot;1.1&quot;&gt;The first entry&lt;/option&gt;
 &lt;option selected=&quot;selected&quot; value=&quot;1.2&quot;&gt;The second entry&lt;/option&gt;
 &lt;option value=&quot;1.3&quot;&gt;The third entry&lt;/option&gt;
 &lt;/optgroup&gt;
 &lt;optgroup label=&quot;Group 2&quot; img=&quot;img/network.png&quot;&gt;
 &lt;option value=&quot;2.1&quot;&gt;The first entry&lt;/option&gt;
 &lt;option value=&quot;2.2&quot;&gt;The second entry&lt;/option&gt;
 &lt;option value=&quot;2.3&quot;&gt;The third entry&lt;/option&gt;
 &lt;/optgroup&gt;
 &lt;/select&gt;
</pre><p>The example has been built and tested with blueprint 1.0 and jquery 1.4.3. It should also work with older jquery/blueprint versions and porting to other JS-libraries should be easy.</p><p>Here is the example page.</p><p>Goto <a title="Select Sample" href="http://impossiblearts.com/blog/wp-content/uploads/2010/10/select/">Example</a>.</p><p>Go for the CSS file. <a href="http://impossiblearts.com/blog/wp-content/uploads/2010/10/select/css/main-VERSION.css">Download .css file</a>.</p><p>Go for the JS file. <a href="http://impossiblearts.com/blog/wp-content/uploads/2010/10/select/js/main-VERSION.js">Download .js file</a>.</p> ]]></content:encoded> <wfw:commentRss>http://hannes-moser.com/blog/2010/10/css3-select-dropdown-input-element/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Typo3 4.2 &#8211; Usability?</title><link>http://hannes-moser.com/blog/2008/04/typo3-42-usability/</link> <comments>http://hannes-moser.com/blog/2008/04/typo3-42-usability/#comments</comments> <pubDate>Tue, 29 Apr 2008 23:34:45 +0000</pubDate> <dc:creator>Hannes Wolfgang Moser</dc:creator> <category><![CDATA[Design/UI]]></category> <category><![CDATA[General Development]]></category> <category><![CDATA[Webby Web]]></category><guid isPermaLink="false">http://impossiblearts.com/blog/2008/04/30/typo3-42-usability/</guid> <description><![CDATA[The first CMS-framework i ever used was Typo3. I liked the idea behind it from a technical point of view but was always disappointed from the user-experience. With Typo3 4.0, the Typo3 association hast started the &#8220;Cleaner Backup&#8221;-initiative. The release &#8230; <a href="http://hannes-moser.com/blog/2008/04/typo3-42-usability/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>The first CMS-framework i ever used was Typo3. I liked the idea behind it from a technical point of view but was always disappointed from the user-experience. With Typo3 4.0, the Typo3 association hast started the &#8220;Cleaner Backup&#8221;-initiative. The release statement of today says something like, &#8220;We have finished the backup reorganization&#8221;. I have waited for this moment about 3 or more years and downloaded the Typo3 4.2 immediately, but&#8230;.</p><p><strong>yeah.. but what?</strong></p><p>Nothing happened, this is maybe a bit unfair, but from a user&#8217;s view, really nothing happened, even simple design and UI-rules have not been followed and the old problems of the interaction design are still the same or worse (A nice new game is, &#8220;Find the Save-button&#8221;). I do not want to bash Typo3 or it&#8217;s developers, but the following points prevents me from using Typo3 as a base for new platforms.<span id="more-365"></span></p><p><strong>1. Who has the smallest&#8230;&#8230; icons?</strong><br /> <strong> </strong></p><p align="left"><a href="http://impossiblearts.com/blog/wp-content/uploads/2008/04/typo3_1.jpg" title="typo3_1.jpg"><img src="http://impossiblearts.com/blog/wp-content/uploads/2008/04/typo3_1.thumbnail.jpg" alt="typo3_1.jpg" align="left" /></a>Is anyone able to explain me why are there still more than 20 buttons on the left-navigation-bar? What is about a common application-layout and a categorized menu? (have a look at <a href="http://www.webedition.de/de/index.php" target="_blank">Webedition</a>)</p><p> The icons are to small and they are simply not modern (Even <a href="http://joomla.org/" target="_blank">Joomla</a> has this kind of glossy icons). Everyone knows the bigger-is-better Web 2.0 aesthetic and it simply works, if you do a direct comparison of web-user-interfaces (content-management) and you compare WordPress with Typo3, Typo3 simply sucks. WordPress is easy-to-use from the first minute and for more advanced users it still have advantages too. F.e. if you do a lot of publishing, you will be much faster with WordPress than with Typo3.<br /> You might think i am comparing apples with oranges but from a editor&#8217;s view, where is the difference?. HtmlArea vs. TinyMCE, Categories vs. site-tree, these things are all the same for an editor&#8230;</p><p><strong>2. Performance, User-experience</strong><br /> One statement in the release notes is, that the performance of the worflow has been increased. There were several points listened, but i want to mention one. The AJAX-driven-site-tree. Ok, it&#8217;s cool, but in 4th year a.O (this is my personal time period of Web 2.0: &#8220;b.O&#8221; means <strong>b</strong>efore <strong>O</strong>&#8216;Reilly mentioned Web 2.0 and &#8220;a.O&#8221; for <strong>a</strong>fter <strong>O</strong>&#8216;Reilly&#8230; ok sad joke) it should be a standard for rich-applications. But if you have ever worked with the &#8220;Categories&#8221;-Panel in WordPress you will recognize how bad the tree is made in Typo3. Even if i work alone on my local test machine(Core2Duo, 4Gb RAM, Win x64) the whole Typo3 interface is so annoying to work with, because of the high response times after an action, that i always think that no Typo3 developer uses his own system to work in a daily workflow.</p><p>I have an execise for you.</p><p>Take your &#8220;blog&#8221; and move it to Typo3, than write at least 3 articles a week with images inside and some common layout-elements like lists, after a period of one or two month move your blog to a blogging-software like WordPress or MovableType and do the same again. You only have to do this if you don&#8217;t believe me that you will never go back to Typo3 for this kind of use.</p><p><strong>3. Workflow, no&#8230; not for developers, for those who have to use the system daily</strong></p><p>From a developer&#8217;s perspective Typo3 is a great system, modular, extendable, Open-Source, well-written-codebase, etc. etc. But a developer only sees the system a short time and afterwards the editor&#8217;s have to spend most of the time with Typo3.<br /> In the last years i have met a lot of Typo-developers and Typo-editor&#8217;s and the major problem i recognized is complexity.</p><p>Complexity, not only from a editor&#8217;s view, also the average developer is overstrained with the system. Nearly every Typo3-setup i see was not done by an Typo3-expert. Most of the time a small web-agency has to follow the wishes of their clients and lots of them have heared from Typo3. &#8220;Ouh i have heared about a CMS, it&#8217;s completely free and it&#8217;s superduper easy to use and you have nothing to build on your own, so it will be very cheap to build our new site with it&#8230;.&#8221;. Wuäh&#8230;. i hate this statements from the marekting-executives.<br /> The problem is, that all this &#8220;cheap&#8221;-setup&#8217;s are completely misconfigured and after a period of time, most of the editor&#8217;s are completely disappointed by Typo3. This is a real problem. I does not happened once or twice that a client asked me for a Typo3 alternative because they are not able to use it&#8230;. So, a Typo3-expert will have problems to sell his profession.</p><p>I think, this is not what the Typo3-association wants!</p><p><strong>My suggestions</strong></p><p>One solution could be, to preconfigure an <strong>easiest-to-use</strong> Typo3-setup that is as simple as WordPress to install and configure.</p><p>Next step should be asset-management. Have a look at the WordPress-image-upload. It should be that easy to include images, videos or sound.</p><p>Improve the speed of the UI and improve the UI-design. Have a look at libraries like <a href="http://extjs.com/" title="ExtJS" target="_blank">extjs</a>, i think it&#8217;s easier to develop a new frontend with it than to develop your own UI-solutions.</p><p>Reduce the options a user have. F.e. if i want to write an article with text and an image, why i have to choose a lyout before i could start to write. I want to include images, videos and sound on-the-fly during i write an article.</p><p>A tabbed menu should never be needed, i don&#8217;t think that an editor should be in a position where he has to make 3 great decisions for one article.</p><p>Increase the size of all fonts and start to layout Typo3 menu/sites from a typographic/interaction-designer-perspective.</p><p>Increase the size of all buttons and take well-designed icons.</p><p>Make heavy and right use of AJAX.</p><p>Animation is not an overload if you use it well.</p><p>Instantly show context-sensitive-help-bubbles if you move over a button, and do not use the typical &#8220;title&#8221; or &#8220;alt&#8221;-tag html solution, A real-context sensitive help should include more information than the button-name.</p><p>And finally, work on the steps to publish a new article. Why should i create a categorie or page before i can start to write an article. In Typo3 there is the possibility of &#8220;already-opened-documents&#8221;. Sort this documents in tabbed layouts (look at some of the great new RIA&#8217;s developed in the last months).</p><p>Some of this points above, are not the fault of the Typo3-developers. But an application like Typo3 could only be succesful if the editor&#8217;s like it. And the great problem of misconfigured Typo3-systems has to be solved. I think the decision that has to be made is, &#8220;<strong>hide complexity from the user</strong>&#8221; !</p> ]]></content:encoded> <wfw:commentRss>http://hannes-moser.com/blog/2008/04/typo3-42-usability/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Find the Baby!</title><link>http://hannes-moser.com/blog/2008/04/find-the-baby/</link> <comments>http://hannes-moser.com/blog/2008/04/find-the-baby/#comments</comments> <pubDate>Sat, 12 Apr 2008 21:50:23 +0000</pubDate> <dc:creator>Hannes Wolfgang Moser</dc:creator> <category><![CDATA[Design/UI]]></category><guid isPermaLink="false">http://impossiblearts.com/blog/2008/04/12/find-the-baby/</guid> <description><![CDATA[http://www.marchofdimesbaby.org/]]></description> <content:encoded><![CDATA[<p><a href="http://www.marchofdimesbaby.org/" target="_blank"><img src="http://impossiblearts.com/blog/wp-content/uploads/2008/04/baby.jpg" alt="Baby" /></p><p>http://www.marchofdimesbaby.org/</a></p> ]]></content:encoded> <wfw:commentRss>http://hannes-moser.com/blog/2008/04/find-the-baby/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Portfolios 2008</title><link>http://hannes-moser.com/blog/2008/03/portfolios-2008/</link> <comments>http://hannes-moser.com/blog/2008/03/portfolios-2008/#comments</comments> <pubDate>Fri, 07 Mar 2008 14:56:41 +0000</pubDate> <dc:creator>Hannes Wolfgang Moser</dc:creator> <category><![CDATA[Design/UI]]></category> <category><![CDATA[General]]></category><guid isPermaLink="false">http://impossiblearts.com/blog/2008/03/07/portfolios-2008/</guid> <description><![CDATA[This portfolios are made by 3 friends of mine. I like their work very much and want to feature it. They are also bookable for freelance work. Carmen Treichl, Camera, Motion Design &#38; Print Thomas Beyr, Photography &#38; Video Daniel &#8230; <a href="http://hannes-moser.com/blog/2008/03/portfolios-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>This portfolios are made by 3 friends of mine. I like their work very much and want to feature it. They are also bookable for freelance work.</p><p><a href="http://www.carmentreichl.com" title="Carmen Treichl" target="_blank">Carmen Treichl</a>, Camera, Motion Design &amp; Print<br /> <a href="http://carmentreichl.com" title="Carmen Treichl" target="_blank"><img src="http://impossiblearts.com/blog/wp-content/uploads/2008/03/ct_portfolio8.jpg" alt="Carmen Treichl" /><br /> </a><span id="more-355"></span><br /> <a href="http://www.tombeyr.com" title="Thomas Beyr" target="_blank">Thomas Beyr</a>, Photography &amp; Video<br /> <a href="http://tombeyr.com" title="Thomas Beyr" target="_blank"><img src="http://impossiblearts.com/blog/wp-content/uploads/2008/03/tb_portfolio8.jpg" alt="Thomas Beyr" /><br /> </a><br /> <a href="http://delion.at" title="Daniel Triendl" target="_blank">Daniel Triendl,</a> Design &amp; Interactivity<br /> <a href="http://delion.at" title="Daniel Triendl" target="_blank"><img src="http://impossiblearts.com/blog/wp-content/uploads/2008/03/dt_portfolio8.jpg" alt="Daniel Triendl" /></a></p> ]]></content:encoded> <wfw:commentRss>http://hannes-moser.com/blog/2008/03/portfolios-2008/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Aviary, Phoenix Early Bird Invitations</title><link>http://hannes-moser.com/blog/2008/03/aviary-phoenix-early-bird-invitations/</link> <comments>http://hannes-moser.com/blog/2008/03/aviary-phoenix-early-bird-invitations/#comments</comments> <pubDate>Sat, 01 Mar 2008 16:07:48 +0000</pubDate> <dc:creator>Hannes Wolfgang Moser</dc:creator> <category><![CDATA[Design/UI]]></category> <category><![CDATA[RIA's]]></category><guid isPermaLink="false">http://impossiblearts.com/blog/2008/03/01/aviary-phoenix-early-bird-invitations/</guid> <description><![CDATA[Aviary describe themselves as follow &#8220;Aviary is a suite of web-based applications (RIAs) for people who create. From image editing to typography to music to 3D to video, we have a tool for artists of all genres.&#8221; I first read &#8230; <a href="http://hannes-moser.com/blog/2008/03/aviary-phoenix-early-bird-invitations/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img src="http://impossiblearts.com/blog/wp-content/uploads/2008/03/aviary.jpg" alt="Aviary" /></p><p>Aviary describe themselves as follow</p><blockquote><p>&#8220;Aviary is a suite of web-based applications (RIAs) for <strong>people who create</strong>. From image editing to typography to music to 3D to video, we have a tool for artists of all genres.&#8221;</p></blockquote><p><span id="more-348"></span><br /> I first read about Aviary 2 or 3 months ago. Nearly everywhere in the net, developers create some new stunning RIA&#8217;s, but i was never that impressed than i first have seen the Aviary project. Cool icons and graphics, well designed project pages and great palette of upcoming tools. Look also at their <a href="http://a.viary.com/blog" title="Aviary - Blog" target="_blank">blog</a>, there a lots of cool YouTube videos and great examples of images made with Aviary tools.</p><p>I get my Early Bird Invitation for Phoenix last week, which includes 5 additional invitations. First five comments will get  an invitation from me, if you don&#8217;t want to post your mail here(we all know why), simply write me an email.</p> ]]></content:encoded> <wfw:commentRss>http://hannes-moser.com/blog/2008/03/aviary-phoenix-early-bird-invitations/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Featuring 85in.net</title><link>http://hannes-moser.com/blog/2007/12/featuring-85innet/</link> <comments>http://hannes-moser.com/blog/2007/12/featuring-85innet/#comments</comments> <pubDate>Tue, 04 Dec 2007 12:25:45 +0000</pubDate> <dc:creator>Hannes Wolfgang Moser</dc:creator> <category><![CDATA[Design/UI]]></category><guid isPermaLink="false">http://impossiblearts.com/blog/2007/12/04/featuring-85innet/</guid> <description><![CDATA[I have seen his(Philipp Gstrein) online portfolio first, about 2 or 3 months ago. Simply amazing pictures. Have a look.]]></description> <content:encoded><![CDATA[<p>I have seen his(Philipp Gstrein) online portfolio first, about 2 or 3 months ago. Simply amazing pictures.<br /> <a href="http://85in.net"><img src='http://impossiblearts.com/blog/wp-content/uploads/2007/12/pgstrein.jpg' alt='Philipp Gstrein - Portfolio' border="0" /></a><br /> <a href="http://85in.net">Have a look.</a></p> ]]></content:encoded> <wfw:commentRss>http://hannes-moser.com/blog/2007/12/featuring-85innet/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using disk: basic
Database Caching 1/30 queries in 0.008 seconds using apc
Object Caching 493/550 objects using apc
Content Delivery Network via s-dovigo.com/content/hannes-moser

Served from: hannes-moser.com @ 2012-02-05 17:22:07 -->
