<?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>pmura:blog</title>
	<atom:link href="http://www.pmura.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pmura.com/blog</link>
	<description>My experiences in HCI</description>
	<lastBuildDate>Sun, 25 Sep 2011 21:12:19 +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>Experimenting with CSS3 SVG filters: blur</title>
		<link>http://www.pmura.com/blog/2011/08/experimenting-with-css3-svg-filters-blur</link>
		<comments>http://www.pmura.com/blog/2011/08/experimenting-with-css3-svg-filters-blur#comments</comments>
		<pubDate>Thu, 04 Aug 2011 14:43:13 +0000</pubDate>
		<dc:creator>Pasion Mura</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.pmura.com/blog/?p=110</guid>
		<description><![CDATA[For the past couple of weeks I've been experimenting with the new version of the <a href="http://www.pmworks-corp.com">pmworks website</a>. After some major refocus internally—we're actually relaunching as an R&#38;D— we finally have some time to implement the new re-branded website (which non-HTML5 enabled browsers can't run).
<div style="width: 160px" class="wp-caption alignright" id="attachment_97"><a href="http://www.pmura.com/blog/media/2011/08/css3-svg-blur-filter-150x150.png"><img width="150" height="150" alt="CSS3 with SVG blur filter" src="http://www.pmura.com/blog/media/2011/08/css3-svg-blur-filter-150x150.png" title="CSS3 with SVG blur filter" class="size-thumbnail wp-image-97"></a><p class="wp-caption-text">CSS3 with SVG blur filter</p></div>

Trying the latest (now "mainstream-edge") tech we want to focus potential users experience as much as possible to find the information they're looking for. This is why the CSS3 SVG blur filter. Leave sharp the information they selected, and blurry the rest of the page information.]]></description>
			<content:encoded><![CDATA[<p>For the past couple of weeks I&#8217;ve been experimenting with the new version of the <a href="http://www.pmworks-corp.com">pmworks website</a>. After some major refocus internally—we&#8217;re actually relaunching as an R&amp;D— we finally have some time to implement the new re-branded website (which non-HTML5 enabled browsers can&#8217;t run).</p>
<p>Trying the latest (now &#8220;mainstream-edge&#8221;) tech we want to focus potential users experience as much as possible to find the information they&#8217;re looking for. This is why the CSS3 SVG blur filter. Leave sharp the information they select, and blurry the rest of the page information. <em>The svg filters are implemented only by Firefox 3.5+.</em></p>
<h3>Enter the SVG</h3>
<p>Dean’s Code HighlighterConsider this bit of SVG effect:</p>
<pre lang="xml">&lt;?xml version="1.0"?&gt;
&lt;svg xmlns="http://www.w3.org/2000/svg" class="tohide"&gt;
    &lt;defs&gt;
        &lt;filter id="blur"&gt;
            &lt;feGaussianBlur stdDeviation="1" /&gt;
        &lt;/filter&gt;
    &lt;/defs&gt;
&lt;/svg&gt;</pre>
<p>Notice the 1st line, this is an external SVG file. The most important thing in the code above is the <code>id</code> property of the filter. That <code>id</code> will be used in the CSS below as a reference to the filter to apply.</p>
<div id="attachment_121" class="wp-caption alignright" style="width: 310px"><a href="http://www.pmura.com/blog/media/2011/08/css3-svg-blur-filter.png"><img class="size-medium wp-image-121" title="css3-svg-blur-filter" src="http://www.pmura.com/blog/media/2011/08/css3-svg-blur-filter-300x155.png" alt="CSS3 with SVG blur filter (the text in the example is actually canvas)" width="300" height="155" /></a><p class="wp-caption-text">CSS3 with SVG blur filter (the text in the example is actually canvas)</p></div>
<p>&nbsp;</p>
<p>In CSS we&#8217;ll apply the filter by:</p>
<pre lang="css">#wrapper:hover section.identity {filter:url(blur.svg#blur);}</pre>
<p>Since I&#8217;ve made this post in a hurry, and don&#8217;t have time to strip the HTML and CSS to the essentials, consider having a <a href="/media/static/svg-blur"><strong>look at the css3 with svg blur example live</strong></a> (Works only on Firefox; that is a working proof of concept for the upcoming <a href="https://github.com/pmura/blurry.js">blurry.js library).</a></p>
<p>Blurry.js is a canvas-based lib written in CoffeeScript to achieve this effects in all modern HTML5 browsers.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.pmura.com/blog/2010/05/firefox-bookmarks-keyboard-interactions" rel="bookmark" class="crp_title">Firefox Bookmarks: Exploring 2 keyboard focused interactions</a></li><li><a href="http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility" rel="bookmark" class="crp_title">A new kind of business card: Information accessibilty</a></li><li><a href="http://www.pmura.com/blog/2010/04/web-design-community" rel="bookmark" class="crp_title">The web design case and the importance of centralized, field specific, communities</a></li><li><a href="http://www.pmura.com/blog/2010/11/the-underestimated-power-of-devices-like-kinect" rel="bookmark" class="crp_title">The underestimated power of devices like Kinect</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.pmura.com/blog/2011/08/experimenting-with-css3-svg-filters-blur/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new kind of business card: Information accessibilty</title>
		<link>http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility</link>
		<comments>http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility#comments</comments>
		<pubDate>Sun, 20 Feb 2011 14:49:45 +0000</pubDate>
		<dc:creator>Pasion Mura</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://www.pmura.com/blog/?p=96</guid>
		<description><![CDATA[Usually business cards by creatives communicate their message or content visually, and are praised for that. In fact they are very appealing and make most people say "Wow!".

<div style="width: 160px" class="wp-caption alignright" id="attachment_97"><a href="http://www.pmura.com/blog/media/2011/02/pmura-vcard-entrp-rsc-dt1.png"><img width="150" height="150" alt="" src="http://www.pmura.com/blog/media/2011/02/pmura-vcard-entrp-rsc-dt1-150x150.png" title="pmura-vcard-entrp-rsc-dt1" class="size-thumbnail wp-image-97"></a><p class="wp-caption-text">Zoom in #1</p></div>

The problem remains for those who can't! In the web we are constantly thinking about improving accessibility and experience for our web applications. How do we make this app accessible for the visually impaired?

That's why on the web there is WAI-ARIA and Section 508, though very few implement them (this is why also we at pmworks Research are working on Kudite and AEI).]]></description>
			<content:encoded><![CDATA[<p>Usually business cards by creatives communicate their message or content visually, and are <a href="http://freelanceswitch.com/general/18-smokin-hot-business-card-designs/">praised</a> <a href="http://logodesignerblog.com/creative-business-cards-design-inspiration/">for that</a>. In fact they are very appealing and make most people say &#8220;Wow!&#8221;.</p>
<p>The problem remains for those who can&#8217;t! In the web we are constantly thinking about improving accessibility and experience for our web applications. How do we make this app accessible for the <em>visually impaired</em>?</p>
<p>That&#8217;s why on the web there is WAI-ARIA and Section 508, though very few implement them (this is why also we at <a title="pmworks Research" href="http://www.pmworksresearch.com">pmworks Research</a> are working on Kudite and AEI).</p>
<p><a href="http://www.flickr.com/photos/pmura/6182340559/#/"><img class="aligncenter" title="Current prototype of business card" src="http://farm7.static.flickr.com/6155/6182340559_ca1c0ffdb5.jpg" alt="" width="500" height="294" /></a></p>
<p>So here is my prototype business card. As we can <em>see</em>, I&#8217;ve adapted the Zoom-UI principles to present the data (sort of typographic hierarchy in print): the main and most important data are bold and big, clearly legible; as we<em> zoom</em> or look a bit more in depth, you can see my age, my experiences, a more detailed expertise (the order I acquired them Entrp-&gt;IxD-&gt;HCI), and a list of my companies or projects.</p>
<div id="attachment_97" class="wp-caption alignright" style="width: 160px"><a href="http://www.pmura.com/blog/media/2011/02/pmura-vcard-entrp-rsc-dt1.png"><img class="size-thumbnail wp-image-97" title="pmura-vcard-entrp-rsc-dt1" src="http://www.pmura.com/blog/media/2011/02/pmura-vcard-entrp-rsc-dt1-150x150.png" alt="" width="150" height="150" /></a><p class="wp-caption-text">Zoom in #1</p></div>
<h3>Step 1: Braille as an alternative</h3>
<p>We now have a very informative business card, but what about accessibility to that information? This is why we need an alternative way at communicating our message.</p>
<p>I decided to use the Braille system as an aid to the visual presentation (just search, there should be at least one English to Braille converter). The red dots you see, is the embossed braille code.</p>
<p>The meaning of them is:</p>
<ol>
<li>Pasion Mura</li>
<li>Telephone number with international prefix</li>
<li><em>white space to separate paragraphs (Contact details and Expertise)<br />
</em></li>
<li>Entrepreneur</li>
<li>IxD/UX Designer</li>
<li>HCI Research</li>
</ol>
<h3>Step 2: qrcode</h3>
<p>On the back there is a qrcode encoding in VCARD all the data presented visually in the printed card. I plan to emboss in braille on the back, &#8220;Scan qrcode&#8221;, or emboss the qrcode bits (this is not recommended since the embossed black ink, can fade with time, corrupting the code).</p>
<p>I&#8217;m finishing the post by inviting designers and engineers to include usability in their think process, for whichever device or media they design for.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.pmura.com/blog/2011/08/experimenting-with-css3-svg-filters-blur" rel="bookmark" class="crp_title">Experimenting with CSS3 SVG filters: blur</a></li><li><a href="http://www.pmura.com/blog/2010/04/gravitational-corporate-spin" rel="bookmark" class="crp_title">We did it (traveling back and forth by 1 ms in time)</a></li><li><a href="http://www.pmura.com/blog/2010/04/web-design-community" rel="bookmark" class="crp_title">The web design case and the importance of centralized, field specific, communities</a></li><li><a href="http://www.pmura.com/blog/2010/03/kuse-vision-logo" rel="bookmark" class="crp_title">Logo for Kuse Vision, a dynamic multitasked GUI layer</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The underestimated power of devices like Kinect</title>
		<link>http://www.pmura.com/blog/2010/11/the-underestimated-power-of-devices-like-kinect</link>
		<comments>http://www.pmura.com/blog/2010/11/the-underestimated-power-of-devices-like-kinect#comments</comments>
		<pubDate>Tue, 16 Nov 2010 17:18:21 +0000</pubDate>
		<dc:creator>Pasion Mura</dc:creator>
				<category><![CDATA[Human-Computer Interaction and Visualization]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.pmura.com/blog/?p=70</guid>
		<description><![CDATA[<p class="notes-warning">What I believe could happen to family video recording, or as <a href="http://www.guardian.co.uk/technology/2002/mar/03/internetnews.observerfocus">always porn</a> (this time holographic).
</p>

<p>Kinect is a device that let's you control your Xbox Kinect supported games without controller. It's more than that, tough. Putting together the last developments arounds this device, gives you an idea of its full potential.</p>

<p>A collection of current available applications using Kinect Open Driver:</p>
<ol>
<li>Gestures for User Interfaces</li>
<li>3D Video Capturing</li>
<li>Voice Recognition (currently there are not experiments using this component)</li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="notes-warning">What I believe could happen to family video recording, or what is belief of many people, the next generation <a href="http://www.guardian.co.uk/technology/2002/mar/03/internetnews.observerfocus">technology of porn</a> (holographic). Also as a side note, by holographic, I almost always refer to 3D projection.</p>
Kinect is a device that let's you control your Xbox Kinect supported games without controller. It's more than that, tough. Putting together the last developments around this device, gives you an idea of its full potential.
<h3>User Interface applications</h3>
<div id="attachment_71" class="wp-caption alignright" style="width: 310px">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="249" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ho6Yhz21BJI?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="300" height="249" src="http://www.youtube.com/v/ho6Yhz21BJI?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"> </embed></object>
<p class="wp-caption-text">Using Kinect and libtisch to keep track of hand gestures</p></div>

Using Kinect as a <a href="http://digitizor.com/2010/11/15/hacked-kinect-brings-futuristic-user-interface/">sensor for hand movement tracking</a> and gestures (using the open source library <a href="http://tisch.sourceforge.net/">libtisch</a>). See also <a href="#voice">voice recognition</a>.

<h3>3D Video Capturing, and almost holographic projection</h3>
<div id="attachment_71" class="wp-caption alignright" style="width: 310px">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="249" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7QrnwoO1-8A?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="300" height="249" src="http://www.youtube.com/v/7QrnwoO1-8A?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object>
<p class="wp-caption-text">You capture your 3D video of your children, with a device like this</p></div>

Just after a few days after the <a href="http://www.adafruit.com/blog/2010/11/10/we-have-a-winner-open-kinect-drivers-released-winner-will-use-3k-for-more-hacking-plus-an-additional-2k-goes-to-the-eff/">open drivers</a> were released by <a href="http://twitter.com/marcan42">Hector Martin</a>, Oliver Kreylos of UC Davis released, what I'd like to call, the most <a href="http://idav.ucdavis.edu/~okreylos/ResDev/Kinect/index.html">thrilling application for this device</a> (released as OSS!).

This is what I find the most exciting till now, because we're almost enabled to capture 3D video, and to project it in a <abbr title="touch sensitive">tactile</abbr> holographic or volumetric way<sup><small>[<a href="http://www.pmura.com/blog/2010/11/the-underestimated-power-of-devices-like-kinect#footnote_0_70" id="identifier_0_70" class="footnote-link footnote-identifier-link" title="See Volumetric Display on Wikipedia for a fast introduction on the topic.">1</a>]</small></sup><sup><small>[<a href="http://www.pmura.com/blog/2010/11/the-underestimated-power-of-devices-like-kinect#footnote_1_70" id="identifier_1_70" class="footnote-link footnote-identifier-link" title="Iwamoto, T., M. Tatezono, T. Hoshi, and H. Shinoda. &ldquo;Airborne ultrasound tactile display.&rdquo; In ACM SIGGRAPH 2008 new tech demos, 1, 2008.">2</a>]</small></sup>. All this is becoming very cheap (the capturing device itself costs only €150 (which is always US$150)).

<div id="attachment_75" class="wp-caption alignright" style="width: 310px"><a href="http://www.pmura.com/blog/media/2010/11/minority-report-holographic-projection.png"><img class="size-medium wp-image-75" title="minority-report-holographic-projection" src="http://www.pmura.com/blog/media/2010/11/minority-report-holographic-projection-300x249.png" alt="" width="300" height="249" /></a><p class="wp-caption-text">And you project it as a holographic (from the 2002 movie Minority Report)</p></div>
<h3 id="voice">Voice Recognition</h3>
Under the shadow of the video capturing, there are 4 relatively advanced mics. Although don't know if the speech recognition is part of the Xbox 360 SDK.
<h3>What should've been Microsoft focus for Kinect</h3>
What I'm asking to myself is how could MS not see this. Sure the "gaming experience" as they market it is an important market for the Xbox, but not as licensing the devices for various applications.

There are lots of people now that will simply buy the device, and just use the available open drivers. MS should've offered since the start an sdk for different applications than gaming.

Let's see how it goes.
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">http://digitizor.com/2010/11/15/hacked-kinect-brings-futuristic-user-interface/</div><div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.pmura.com/blog/2010/04/web-design-community" rel="bookmark" class="crp_title">The web design case and the importance of centralized, field specific, communities</a></li><li><a href="http://www.pmura.com/blog/2011/08/experimenting-with-css3-svg-filters-blur" rel="bookmark" class="crp_title">Experimenting with CSS3 SVG filters: blur</a></li><li><a href="http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility" rel="bookmark" class="crp_title">A new kind of business card: Information accessibilty</a></li><li><a href="http://www.pmura.com/blog/2010/04/gravitational-corporate-spin" rel="bookmark" class="crp_title">We did it (traveling back and forth by 1 ms in time)</a></li></ul></div><p class="references">Footnotes:</p><ol class="footnotes"><li id="footnote_0_70" class="footnote">See <a href="http://en.wikipedia.org/wiki/Volumetric_display">Volumetric Display</a> on Wikipedia for a fast introduction on the topic.</li><li id="footnote_1_70" class="footnote">Iwamoto, T., M. Tatezono, T. Hoshi, and H. Shinoda. “Airborne ultrasound tactile display.” In <span style="font-style: italic;">ACM SIGGRAPH 2008 new tech demos</span>, 1, 2008.</li></ol>
]]></content:encoded>
			<wfw:commentRss>http://www.pmura.com/blog/2010/11/the-underestimated-power-of-devices-like-kinect/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Bookmarks: Exploring 2 keyboard focused interactions</title>
		<link>http://www.pmura.com/blog/2010/05/firefox-bookmarks-keyboard-interactions</link>
		<comments>http://www.pmura.com/blog/2010/05/firefox-bookmarks-keyboard-interactions#comments</comments>
		<pubDate>Tue, 04 May 2010 17:45:55 +0000</pubDate>
		<dc:creator>Pasion Mura</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.pmura.com/blog/?p=60</guid>
		<description><![CDATA[<div style="width: 190px;" class="wp-caption alignright" id="attachment_191"><a href="http://www.pmura.com/media/2010/05/firefox-bookmarks-keyboard-interactions-r0.png"><img width="180" height="300" alt="Firefox Bookmarks: Keyboard Focused Interactions" src="http://www.pmura.com/media/2010/05/firefox-bookmarks-keyboard-interactions-r0-180x300.png" title="firefox-bookmarks-keyboard-interactions-r0" class="size-medium wp-image-191"></a><p class="wp-caption-text">Firefox Bookmarks: Exploring 2 keyboard focused interactions</p></div>
<p>This is my proposal for Firefox "Add to bookmarks" action. You can find more on the<a title="Firefox Bookmarks - Keyboard interactions" href="http://www.pmura.com/labs/firefox-bookmarks"> Labs section</a>:</p>
<blockquote>I use bookmarks in a very heavy way, so being able to bookmark pages very easily and quickly is a requirement. This mockup of Firefox' "Add to Bookmark" action is focused and privileges keyboard interaction.</blockquote>
<p>The window GUI is from Aza Raskin's <a href="http://www.azarask.in/blog/post/identity-in-the-browser-firefox/">Identity in the Browser</a> mockup.</p>

<p>If you liked this you might want to checkout also <a href="http://www.pmura.com/blog/media/2010/05/doughnat-load.png">my proposal</a> to <a href="http://twitter.com/azaaza/status/13149478538">Aza's</a> tweet about "feeling" the load page loading faster.</p>
<p><br/></p>]]></description>
			<content:encoded><![CDATA[<div id="attachment_191" class="wp-caption alignright" style="width: 190px"><a href="http://www.pmura.com/media/2010/05/firefox-bookmarks-keyboard-interactions-r0.png"><img class="size-medium wp-image-191" title="firefox-bookmarks-keyboard-interactions-r0" src="http://www.pmura.com/media/2010/05/firefox-bookmarks-keyboard-interactions-r0-180x300.png" alt="Firefox Bookmarks: Keyboard Focused Interactions" width="180" height="300" /></a><p class="wp-caption-text">Firefox Bookmarks: Exploring 2 keyboard focused interactions</p></div>
<p>This is my proposal for Firefox &#8220;Add to bookmarks&#8221; action. You can find more on the<a title="Firefox Bookmarks - Keyboard interactions" href="http://www.pmura.com/labs/firefox-bookmarks"> Labs section</a>:</p>
<blockquote><p>I use bookmarks in a very heavy way, so being able to bookmark pages very easily and quickly is a requirement. This mockup of Firefox&#8217; &#8220;Add to Bookmark&#8221; action is focused and privileges keyboard interaction.</p></blockquote>
<p>The window GUI is from Aza Raskin&#8217;s <a href="http://www.azarask.in/blog/post/identity-in-the-browser-firefox/">Identity in the Browser</a> mockup.</p>
<p>If you liked this you might want to checkout also <a href="http://www.pmura.com/blog/media/2010/05/doughnat-load.png">my proposal</a> to <a href="http://twitter.com/azaaza/status/13149478538">Aza&#8217;s</a> tweet about &#8220;feeling&#8221; the load page loading faster.</p>
<p><br/>
<p/>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.pmura.com/blog/2011/08/experimenting-with-css3-svg-filters-blur" rel="bookmark" class="crp_title">Experimenting with CSS3 SVG filters: blur</a></li><li><a href="http://www.pmura.com/blog/2010/03/kuse-vision-logo" rel="bookmark" class="crp_title">Logo for Kuse Vision, a dynamic multitasked GUI layer</a></li><li><a href="http://www.pmura.com/blog/2010/04/web-design-community" rel="bookmark" class="crp_title">The web design case and the importance of centralized, field specific, communities</a></li><li><a href="http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility" rel="bookmark" class="crp_title">A new kind of business card: Information accessibilty</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.pmura.com/blog/2010/05/firefox-bookmarks-keyboard-interactions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The web design case and the importance of centralized, field specific, communities</title>
		<link>http://www.pmura.com/blog/2010/04/web-design-community</link>
		<comments>http://www.pmura.com/blog/2010/04/web-design-community#comments</comments>
		<pubDate>Fri, 09 Apr 2010 10:57:48 +0000</pubDate>
		<dc:creator>Pasion Mura</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://www.pmura.com/blog/?p=47</guid>
		<description><![CDATA[There is an ongoing discussion about the current state of web design and the decline of its community, like the articles from SmashingMagazine. Here I'm going to (i) compare the web design community with other successful ones, (ii) try to define it, and (iii) try to find the problems, and propose solutions.

A community can be defined as<em> a group of interacting people sharing and helping each other trough common interests and goals </em>(may not be limited to this definition)<em>. </em>Through the problems found: there is<em> not a central community for any specific field of design</em>, <em>mentoring not possible because of the lack of a centralized community</em> (CC), and as a result the <em>lack of</em> focusing <em>the driving force. </em>All the successful community examples provided below share one important aspect of every community, that is part of the definition itself: the goal. Only the common interests are not a sufficient drive for a community, instead strict definitions of the goals or missions are necessary to reduce the dispersion and to allow growth.]]></description>
			<content:encoded><![CDATA[<p class="notes-warning">This is a draft, and the claims may not be verified or sourced. This and the next post on the topic will be assembled together and later verified.</p>
<p>There is an ongoing discussion about the current state of web design and the decline of its community, like the articles from SmashingMagazine<sup><small>[<a href="http://www.pmura.com/blog/2010/04/web-design-community#footnote_0_47" id="identifier_0_47" class="footnote-link footnote-identifier-link" title="Kari Patila, The Sad State Of The Web Design Community, Smashing Magazine">1</a>]</small></sup>. Here I&#8217;m going to (i) compare the web design community with other successful ones, (ii) try to define it, and (iii) try to find the problems, and propose solutions.</p>
<p>A community can be defined as<em> a group of interacting people sharing and helping each other trough common interests and goals </em>(may not be limited to this definition)<em>. </em>Critical problems found, include: there is<em> not a central community for any specific field of design</em>, <em>mentoring is not possible because of the lack of a centralized community</em> (CC), resulting in a  <em>lack of</em> focusing <em>the driving force. </em>All the successful community examples provided below share one important component, that is part of the definition itself: the goal. It seems that only the common interests are not a sufficient drive for a community, instead strict definitions of the goals or missions are necessary to reduce the dispersion and to allow growth.</p>
<h3>Defining Successful Community</h3>
<p>By successful communities we&#8217;re not referring to those who have a big established user base, but to stable ones. Examples of successful online communities are many programming (like open source projects), entrepreneurship, and free content (e.g. Wikipedia) communities.</p>
<p>A community is successful (SC) under these provisional laws:</p>
<ol>
<li>The community serves a purpose</li>
</ol>
<ol>
<li>It&#8217;s easy for new comers to insert themselves in, directly in a specific domain, and they&#8217;re often mentored by more experienced members of the same domain</li>
</ol>
<ol>
<li>Member and interest differentiation does not make the overall SC unstable, by failing one of the laws</li>
<li>Community is domain, or goal driven {obsolete per law n.1}</li>
</ol>
<h3>Common Interests</h3>
<p>Common interests in programming communities include technical-engineering problems and solutions, such as algorithms or best-practices, release of new or enhanced technology. Common interests in free content, such as educational or encyclopedic content, include per topic writing, and the learning process itself while editing or reading. Trough common interests of web design communities we find: graphic design topics (digital and print); typography topics; artistic illustrations; 3D compositing; user interface, information architecture, and user experience topics; strategic design (e.g. brand defining and strategic company identity); also an hybrid form of developer and design for weblog themes.</p>
<p>Differentiation in interests can be vital for the community itself because it makes it possible for members to explore new paths, and is also very effective in the selection and evolving of communities. The only problem here is for new members. (this and the central community will be treated in detail in the following article on the topic).</p>
<h3>Confrontation</h3>
<p>{This part studies differences between the web design communities versus the successful ones.}</p>
<p>In <em>table 1</em> I have ported the names of the online communities (SC ones), in <em>table 2</em> the web design communities (WDCs), and the goals or missions for each of them.</p>
<div id="attachment_41" class="wp-caption aligncenter" style="width: 610px"></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="128" valign="top"><strong>Community Name</strong></td>
<td width="185" valign="top"><strong>Type/Interests</strong></td>
<td width="184" valign="top"><strong>Goal Mission</strong></td>
<td width="182" valign="top"><strong>Central Community</strong></td>
</tr>
<tr>
<td width="128" valign="top">Wikipedia</td>
<td width="185" valign="top">Reading, Learning, Writing</td>
<td width="184" valign="top">Free multilingual encyclopedia</td>
<td width="182" valign="top">Yes, Wikipedia itself</td>
</tr>
<tr>
<td width="128" valign="top">Python (and almost every   programming language)</td>
<td width="185" valign="top">Programming language, new technology</td>
<td width="184" valign="top">Promote, help members trough   technical-engineering problems, and improve the technology</td>
<td width="182" valign="top">Yes, (e.g. Python Community)</p>
<p>Also 3<sup>rd</sup> party   communities like StackOverflow</td>
</tr>
<tr>
<td width="128" valign="top">HackerNews (small SC)</td>
<td width="185" valign="top">Everything regarding   entrepreneurship (development, design, business). Mutated from hackers only content.</td>
<td width="184" valign="top">Guide, help, the (mostly) entrepreneur   members of the community.</td>
<td width="182" valign="top">Yes, itself</td>
</tr>
<tr>
<td width="128" valign="top">…</td>
<td width="185" valign="top">…</td>
<td width="184" valign="top">…</td>
<td width="182" valign="top">…</td>
</tr>
</tbody>
</table>
<p><p class="wp-caption-text">(Table 1) Successful Online Communities Goals.</p></div>
<div id="attachment_40" class="wp-caption aligncenter" style="width: 610px"></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="138" valign="top"><strong> </strong></p>
<p><strong>Website Name</strong></td>
<td width="96" valign="top"><strong> </strong></p>
<p><strong>Community</strong></td>
<td width="189" valign="top"><strong> </strong></p>
<p><strong>Interests</strong></td>
<td width="161" valign="top"><strong> </strong></p>
<p><strong>Goals</strong></td>
<td width="96" valign="top"><strong>Part of Central   Community (specific field)</strong></td>
</tr>
<tr>
<td width="138" valign="top">OpenDesignCommunity*</td>
<td width="96" valign="top">No</td>
<td width="189" valign="top"></td>
<td width="161" valign="top">Collection of CMS themes</td>
<td width="96" valign="top">-</td>
</tr>
<tr>
<td width="138" valign="top">Designity*</td>
<td width="96" valign="top">No</td>
<td width="189" valign="top"></td>
<td width="161" valign="top">Collection of templates</td>
<td width="96" valign="top">-</td>
</tr>
<tr>
<td width="138" valign="top">TalkFreelance*</td>
<td width="96" valign="top">Yes</td>
<td width="189" valign="top">Freelance, Design,   Development, server or hosting management, SEO</td>
<td width="161" valign="top">Help members</td>
<td width="96" valign="top">No</td>
</tr>
<tr>
<td width="138" valign="top">WebDevForums*</td>
<td width="96" valign="top">Yes</td>
<td width="189" valign="top">Freelance, Design,   Development, server or hosting management, SEO</td>
<td width="161" valign="top">Help members</td>
<td width="96" valign="top">No</td>
</tr>
<tr>
<td width="138" valign="top">SitePoint*</td>
<td width="96" valign="top">Yes / Tutorial based</td>
<td width="189" valign="top">Freelance, Design,   Development, SEO</td>
<td width="161" valign="top">Help members, tutorial based   articles</td>
<td width="96" valign="top">No</td>
</tr>
<tr>
<td width="138" valign="top">Ask E.T. forum</p>
<p>Edward Tufte</td>
<td width="96" valign="top">Yes</td>
<td width="189" valign="top">Everything regarding design</td>
<td width="161" valign="top">Design reviews</td>
<td width="96" valign="top">No</td>
</tr>
</tbody>
</table>
<p><p class="wp-caption-text">(Table 2) Online Web Design Communities with Goals.*Could not find actual communities, Google search results as listed for “web design communities” or “web design community”.</p></div>
<p>WDCs have way more different interests than (e.g.) programming communities, but still lack the driving force to be of any benefit to new members.</p>
<p>As we can see, one major problem with web design, it’s that there is not a central community where members can help each other, identify, and improve the field itself. Another one is in the misleading definition of Web Design itself. Web Design it’s just a collective common name resembling various specialized fields applied to the web, including: corporate identity, graphic/visual design, typography, interaction design, user interface design, and information architecture.</p>
<h3>Problems identified, solutions, and conclusion</h3>
<p>The lack of a centralized community makes it impossible for field experts to connect with each other via a central hub, where everyone can join, resulting in fragmentary blog posts spread across the Web. The new comers don’t know who the experts are, or at least can’t connect with them easily. This causes bad mentoring, or even none of it.</p>
<p>One solution could actually be the creation of centralized communities per specialized fields. But I’m reluctant of something like forums (e.g. traditional ones like phpbb).</p>
<p>Any feedback is appreciated. Is there any existing solution of other fields that can be ported to solve these problems?</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.pmura.com/blog/2011/08/experimenting-with-css3-svg-filters-blur" rel="bookmark" class="crp_title">Experimenting with CSS3 SVG filters: blur</a></li><li><a href="http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility" rel="bookmark" class="crp_title">A new kind of business card: Information accessibilty</a></li><li><a href="http://www.pmura.com/blog/2010/03/kuse-vision-logo" rel="bookmark" class="crp_title">Logo for Kuse Vision, a dynamic multitasked GUI layer</a></li><li><a href="http://www.pmura.com/blog/2010/04/gravitational-corporate-spin" rel="bookmark" class="crp_title">We did it (traveling back and forth by 1 ms in time)</a></li></ul></div><p class="references">Footnotes:</p><ol class="footnotes"><li id="footnote_0_47" class="footnote">Kari Patila, The Sad State Of The Web Design Community, <a href="http://www.smashingmagazine.com/2010/04/08/opinion-column-the-sad-state-of-the-web-design-community/" rel="nofollow">Smashing Magazine</a></li></ol>
]]></content:encoded>
			<wfw:commentRss>http://www.pmura.com/blog/2010/04/web-design-community/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We did it (traveling back and forth by 1 ms in time)</title>
		<link>http://www.pmura.com/blog/2010/04/gravitational-corporate-spin</link>
		<comments>http://www.pmura.com/blog/2010/04/gravitational-corporate-spin#comments</comments>
		<pubDate>Thu, 01 Apr 2010 17:59:55 +0000</pubDate>
		<dc:creator>Pasion Mura</dc:creator>
				<category><![CDATA[Physics]]></category>
		<category><![CDATA[hoax]]></category>

		<guid isPermaLink="false">http://www.pmura.com/blog/?p=36</guid>
		<description><![CDATA[Today we at pmworks Research are proud to announce that we have actually traveled by 1 ms in the future.
The theory behind it, is the Gravitational Corporate Spin. Unfortunately, the article was deleted from Wikipedia
because "too informative", so I'm explaining it here.]]></description>
			<content:encoded><![CDATA[<p>Today we at pmworks Research are proud to announce that we have actually traveled by 1 ms in the future.<br />
The theory behind it, is the Gravitational Corporate Spin. Unfortunately, the article was deleted from Wikipedia<br />
because &#8220;too informative&#8221;, so I&#8217;m explaining it here.</p>
<h3>What we did (the theory)</h3>
<div id="attachment_40" class="wp-caption alignright" style="width: 399px"><a href="http://www.pmura.com/blog/media/2010/04/gravitational-corporate-spin-time-travel-crunch.png"><img class="size-full wp-image-40" title="Gravitational Corporate Spin - Crunch" src="http://www.pmura.com/blog/media/2010/04/gravitational-corporate-spin-time-travel-crunch.png" alt="Gravitational Corporate Spin - Crunch" width="389" height="243" /></a><p class="wp-caption-text">(Fig.1) Gravitational Corporate Spin, around the crunched space-time, time and space are literally separated.</p></div>
<p>By accelerating the giant bailed out corporates (in our universe you can find a lot of them) spin by just 1/4,<br />
you can form an economic wrapped space-time crunch (like a black hole). But since the region could not absorb<br />
enough mass from its region of space (eg. distribute matter in this space), the space is actually separated from<br />
time in this region, and the result is a space-time warp you can use to travel in the future or back.</p>
<p>When you move your spaceship in proximity to the <em>α spin </em>in the space-time crunch (10<sup>13</sup> &#8211; 1 m),<br />
you&#8217;ll be automatically spun forward by 10<sup>-3</sup>s (1 ms) in time, since you stuck in space for 1<sup>-3</sup>s seconds.<br />
To return back you have to use the <em>β spin</em>, that will put you in -10<sup>-3</sup>s in time.</p>
<div id="attachment_41" class="wp-caption alignright" style="width: 310px"><a href="http://www.pmura.com/blog/media/2010/04/gravitational-corporate-spin-time-travel-spinrotation.png"><img class="size-medium wp-image-41" title="Gravitational Corporate Spin - Spin Rotation" src="http://www.pmura.com/blog/media/2010/04/gravitational-corporate-spin-time-travel-spinrotation-300x117.png" alt="Gravitational Corporate Spin - Spin Rotation" width="300" height="117" /></a><p class="wp-caption-text">(Fig.2) Gravitational Corporate Spin, spin rotation.</p></div>
<h3>How does the future look like</h3>
<p>Well, its a lot different from ours. It appears to be just a bad dream. In this future there are wars (America and Al-Qaeda), innovation is strangled by a system called <a href="http://daringfireball.net/2010/03/this_apple_htc_patent_thing">patents</a> (this is the hot topic of the moment), difficult economy situations, repetitive history mistakes.</p>
<p>We tried to persuade the people of the future that the actions they were pursuing were bad, and showed them how our world it&#8217;s better because we throw those away, but they didn&#8217;t show any signs of understanding. So we gave up, and returned back to our beautiful present day, where things like that, just <a href="http://news.ycombinator.com/item?id=1226313">don&#8217;t</a> <a href="http://news.ycombinator.com/item?id=1221068">happen</a> <a href="http://www.google.com/hostednews/ap/article/ALeqM5iIbVZYGkCCBI1xRZc6EQn0VPGK5QD9EQCLTG0">anymore</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility" rel="bookmark" class="crp_title">A new kind of business card: Information accessibilty</a></li><li><a href="http://www.pmura.com/blog/2010/04/web-design-community" rel="bookmark" class="crp_title">The web design case and the importance of centralized, field specific, communities</a></li><li><a href="http://www.pmura.com/blog/2010/03/kuse-vision-logo" rel="bookmark" class="crp_title">Logo for Kuse Vision, a dynamic multitasked GUI layer</a></li><li><a href="http://www.pmura.com/blog/2010/11/the-underestimated-power-of-devices-like-kinect" rel="bookmark" class="crp_title">The underestimated power of devices like Kinect</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.pmura.com/blog/2010/04/gravitational-corporate-spin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logo for Kuse Vision, a dynamic multitasked GUI layer</title>
		<link>http://www.pmura.com/blog/2010/03/kuse-vision-logo</link>
		<comments>http://www.pmura.com/blog/2010/03/kuse-vision-logo#comments</comments>
		<pubDate>Wed, 17 Mar 2010 15:32:48 +0000</pubDate>
		<dc:creator>Pasion Mura</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://www.pmura.com/blog/?p=15</guid>
		<description><![CDATA[<p>Kuse Vision it's one of my projects at <a href="http://www.pmworksresearch.com/">pmworks Research</a>. The primary goal of the project it's a more organic and fluid user interface, designed for multitasking, and another major goal I can't disclose, sorry.</p>
<p>Three days ago, since I had some "free" time, in the sense that I couldn't work on anything, I decided to polish a bit more the GUI user experience. So I launched myself in the creation of a "logo", let's say a symbol of what the UX should reflect.</p>]]></description>
			<content:encoded><![CDATA[<p>Kuse Vision is one of my projects at <a href="http://www.pmworksresearch.com/">pmworks Research</a>. The primary goal of the project it&#8217;s a more organic and fluid user interface, designed for multitasking (OS level, there are other major goals, but I can&#8217;t disclose them).</p>
<div id="attachment_16" class="wp-caption alignright" style="width: 305px"><a href="http://www.pmura.com/blog/wp-content/uploads/2010/03/kuse-vision-logo-projecttag.png"><img class="size-full wp-image-16" title="Project tag used for Kuse Vision at pmworks Research" src="http://www.pmura.com/blog/wp-content/uploads/2010/03/kuse-vision-logo-projecttag.png" alt="Fig. 1 Project tag used for Kuse Vision at pmworks Research" width="295" height="87" /></a><p class="wp-caption-text">(Fig. 1) Project tag used for Kuse Vision at pmworks Research</p></div>
<p>Three days ago, I had some &#8220;free&#8221; time, in the sense that I couldn&#8217;t work on anything, and I decided to polish a bit more the GUI user experience. So I launched myself in the creation of a &#8220;logo&#8221;, let&#8217;s say a symbol of what the UX should reflect.</p>
<p>I didn&#8217;t need to make long revisions, I made only 2, just to redefine it. I worked on it only about 1 or 2 very spare hours: the palettes were already chosen; the primary typeface (a new one is required) was selected long before, in internal reports; the strategy was there; pmworks Research project&#8217;s Identity guidelines existed; remained only a distinctive provisional symbol to use within the organization (or who wanted to hear about).</p>
<div id="attachment_17" class="wp-caption alignright" style="width: 306px"><a href="http://www.pmura.com/blog/wp-content/uploads/2010/03/kuse-vision-logo.png"><img class="size-full wp-image-17" title="Fig. 2 Kuse Vision final logo" src="http://www.pmura.com/blog/wp-content/uploads/2010/03/kuse-vision-logo.png" alt="Fig. 2 Kuse Vision final logo" width="296" height="171" /></a><p class="wp-caption-text">(Fig. 2) Kuse Vision final logo. The 'vision' text is a clipping mask (transparent) over the rectangle.</p></div>
<p>My company makes a very heavy use of Myriad Pro (I really like it). I used the project tag (Fig. 1), included in concepts, mockups, prototypes, (internal) reports, basically everything, as the main guideline for the logo. I tried using Myriad Pro, but it didn&#8217;t represent the organic and fluid experience we needed. So I turned to Neo Sans, and here it&#8217;s the result: geometric but soft outlines shape the ideal for the high-tech GUI symbol.</p>
<blockquote><p>In summary the logo creation didn&#8217;t require a lot of time, I didn&#8217;t even tried different proposals (no need to do so). It just come naturally. It was modeled together with the culture and the product itself (research, prototypes, mockups, etc). It was a (design) product of a visual evolution (more on this later).</p></blockquote>
<p>Because Neo Sans isn&#8217;t free software, I will design a similar typeface only for this, or just edit some <a href="http://www.designer-daily.com/alternatives-to-your-favorite-sans-serif-typefaces-1292">free ones</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.pmura.com/blog/2011/02/a-new-kind-of-business-card-accessibility" rel="bookmark" class="crp_title">A new kind of business card: Information accessibilty</a></li><li><a href="http://www.pmura.com/blog/2010/04/web-design-community" rel="bookmark" class="crp_title">The web design case and the importance of centralized, field specific, communities</a></li><li><a href="http://www.pmura.com/blog/2010/05/firefox-bookmarks-keyboard-interactions" rel="bookmark" class="crp_title">Firefox Bookmarks: Exploring 2 keyboard focused interactions</a></li><li><a href="http://www.pmura.com/blog/2010/04/gravitational-corporate-spin" rel="bookmark" class="crp_title">We did it (traveling back and forth by 1 ms in time)</a></li></ul></div>
]]></content:encoded>
			<wfw:commentRss>http://www.pmura.com/blog/2010/03/kuse-vision-logo/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

