<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>maratz.com</title>
	
	<link>http://www.maratz.com/blog</link>
	<description>Hypertext rulez™</description>
	<lastBuildDate>Sat, 04 May 2013 00:04:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/maratzcom" /><feedburner:info uri="maratzcom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Offsetting an HTML element in a flexible container</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/jadB22-D28I/</link>
		<comments>http://www.maratz.com/blog/archives/2013/01/15/offsetting-an-html-element-in-a-flexible-container/#comments</comments>
		<pubDate>Tue, 15 Jan 2013 16:36:10 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[CSS 101]]></category>
		<category><![CDATA[rwd]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=2344</guid>
		<description><![CDATA[This morning, while I was preparing the materials for the second edition of Responsive Web Design workshop I revisited some of the questions that attendees had asked the last time. One question that comes up frequently — even outside the workshops — is how to handle flexible widths and paddings on a child element, if [...]]]></description>
				<content:encoded><![CDATA[<p>This morning, while I was preparing the materials for the second edition of <a href="http://webradionice.com/2013/responsive-web-design/">Responsive Web Design workshop</a> I revisited some of the questions that attendees had asked the last time. One question that comes up frequently — even outside the workshops — is how to handle flexible widths and paddings on a child element, if the container itself is set with flexible lengths.<span id="more-2344"></span></p>
<p>The box-sizing property set to border-box is definitely a big help and people usually understand it right away. It’s probably because that’s more natural way of perceiving the CSS box model.</p>
<h2>To the left, to the right</h2>
<p>Say, we have a definition list and we want to create a typographic grid of thirds. The definition title hangs on the left and is 1/3 wide, while the definition description goes to the right and is 2/3 wide.</p>
<pre><code>&#60;dl>
    &#60;dt>This goes to the left.&#60;/dt>
    &#60;dd>This goes to the right.&#60;/dd>
&#60;/dl></code></pre>
<p>That is a pretty common arrangement and a useful one when you need a better page scannability. To give you an idea for some typographic options, there are two standard variants. The first one is with the hanging element (e.g. the title) flushed right to meet the main text (e.g. the description) at the gutter between two columns, and the second one is with both elements simply flushed left.</p>
<h2>Shaping the grid</h2>
<p>If you set the box-sizing and the width of the container to border-box and 100% respectively, you can shape a 2-thirds definition description column by simply applying the left padding of 33 per cent to the definition list. (For the sake of clarity, let’s pretend that 33% and 66% form the exact 1-third / 2-thirds split of 100%. Check out the final code for the fully working example.) The definition description would fill the remaining space and the resulting width of the definition description column would be 66 per cent.</p>
<pre><code>dl {
    box-sizing: border-box; 
    width: 100%;
    padding-left: 33%;
    /* remaining width: ≈ 66%; */
}

dd {
    /* calculated-width: ≈ 66%; */
}</code></pre>
<h2>Floating elements with a negative margin</h2>
<p>The second and the final step is to shift the definition title to the left and lay it in the empty space that has been created when you added the left padding to the definition list element. The technique is simple: float the definition title to the left, give it a negative left margin and apply the width equal to the width of the empty space, i.e. equal to the left padding of the definition list. I hope you are following so far.</p>
<p>Here’s a question: What is the width of the definition title? If you automatically answered 33 per cent, it is because it corresponds to a visual equivalent of the one third of the container element. Unfortunately, this is not the correct answer.</p>
<pre><code>dt {
    float: left;
    width: <strong>??%</strong>;
    margin-left: <strong>-??%</strong>;
}</code></pre>
<p>However, in CSS the 100 per cent width of an element equals to a space available inside the parent element. Since the available space is in our case 66 per cent, the definition title width of 100 per cent equals the 66 per cent of the definition list. It follows that if we want the definition title to always be 3 times narrower than the definition list (1/3 of the definition list), we should set its width to 50 per cent, i.e. the 50% of the remaining 66% formed after you had added the padding of 33%.</p>
<p>Confused? Me too! Worry not, here’s the easy-peasy formula to calculate the width of the offset element for any percentage based combination:</p>
<pre><code>x = container’s left padding in %

offset element’s width in % = (x / (100 - x)) * 100</code></pre>
<p>Now that we have the width set in place, the only thing that has left is setting a negative number of the same value for the left margin. Take a look at the final result:</p>
<pre><code>dl {
    box-sizing: border-box; 
    width: 100%;
    padding-left: 33.3333333%;
}

dt {
    float: left;
    width: 50%;
    margin-left: -50%;
}</code></pre>
<p>Feel free to try the formula with any combination, for instance 20% + 80% or 40% + 60%. Here’s the example of how to offset the title with the Golden ratio based setup:</p>
<pre><code>dl {
    box-sizing: border-box; 
    width: 100%;
    padding-left: 37.88819876%;
    /* remaining width: 62.11180124% */
}

dt {
    float: left;
    width: 61.000000006%;
    margin-left: -61.000000006%;
}</code></pre>
<p>Need support for IE7 and predecessors? Check out the <a href="/blog/archives/2012/08/01/emulate-box-sizing-in-ie7/">Emulate CSS box-sizing in IE7</a> article.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=jadB22-D28I:hte4wcuyk5U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=jadB22-D28I:hte4wcuyk5U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=jadB22-D28I:hte4wcuyk5U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=jadB22-D28I:hte4wcuyk5U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=jadB22-D28I:hte4wcuyk5U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=jadB22-D28I:hte4wcuyk5U:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/jadB22-D28I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2013/01/15/offsetting-an-html-element-in-a-flexible-container/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2013/01/15/offsetting-an-html-element-in-a-flexible-container/</feedburner:origLink></item>
		<item>
		<title>Join us at FFWD.PRO 2013</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/O99Bl7ZnxxU/</link>
		<comments>http://www.maratz.com/blog/archives/2012/12/16/join-us-at-ffwd-pro-2013/#comments</comments>
		<pubDate>Sun, 16 Dec 2012 09:45:46 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[FFWD.PRO]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=2128</guid>
		<description><![CDATA[It’s that time of the year when we are announcing the dates for the next season and I’m excited to inform you that FFWD.PRO, a micro-conference for web professionals is coming back to Zagreb, Croatia on 10–11 June 2013 in the extraordinarily friendly Antunović Hotel. The format of the event will be the same as [...]]]></description>
				<content:encoded><![CDATA[<p>It’s that time of the year when we are announcing the dates for the next season and I’m excited to inform you that <a href="http://2013.ffwd.pro/"><abbr>FFWD.PRO</abbr>, a micro-conference for web professionals</a> is coming back to Zagreb, Croatia on 10–11 June 2013 in the extraordinarily friendly Antunović Hotel.<span id="more-2128"></span></p>
<p>The format of the event will be the same as the last time, 8 inspiring talks on the Day 1 + hands-on workshops on the Day 2. While we are still reshuffling the program, we can already announce the first four speakers:</p>
<ul>
<li><strong>Eva-Lotta Lamm</strong><br />
Interaction Designer at Google, <abbr>UK</abbr><br />
Author of <a href="http://www.evalotta.net/sketchnotes/">Sketchnotes</a></li>
<li><strong>Joe Leech</strong><br />
UX Director at cxpartners, <abbr>UK</abbr><br />
Author of <a href="http://www.fivesimplesteps.com/pages/pocket-guides">Psychology for Designers</a> (Jan 2013)</li>
<li><strong>Leisa Reichelt</strong><br />
UX Strategist at Disambiguity, <abbr>UK</abbr><br />
Author of <a href="http://www.fivesimplesteps.com/products/a-practical-guide-to-strategic-user-experience">Strategic User Experience</a> (Spring 2013)</li>
<li><strong>Vitaly Friedman</strong><br />
Co-founder and Editor-in-Chief at Smashing Magazine, <abbr>DE</abbr><br />
Author and Editor of <a href="https://shop.smashingmagazine.com/smashing-book-3-print-bundle.html">Smashing Book series</a></li>
</ul>
<p>We are offering a limited number of <a href="http://2013.ffwd.pro/register/">Super Early Bird tickets</a>, so grab yours before they are gone.</p>
<p>On a less official note, I’m looking forward to seeing domestic and international attendees connect and reconnect with their peers. We have received a lot of positive feedback and the last year’s attendees were delighted with small touches that we made to ensure everyone feels as an integral part of the show, which was exactly what we aimed for. After all, this conference is made for all of us who live and breathe the Web.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=O99Bl7ZnxxU:K7JZ5AvHGi4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=O99Bl7ZnxxU:K7JZ5AvHGi4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=O99Bl7ZnxxU:K7JZ5AvHGi4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=O99Bl7ZnxxU:K7JZ5AvHGi4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=O99Bl7ZnxxU:K7JZ5AvHGi4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=O99Bl7ZnxxU:K7JZ5AvHGi4:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/O99Bl7ZnxxU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/12/16/join-us-at-ffwd-pro-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/12/16/join-us-at-ffwd-pro-2013/</feedburner:origLink></item>
		<item>
		<title>The Mobile Book review</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/iAzNkpEEe8g/</link>
		<comments>http://www.maratz.com/blog/archives/2012/12/13/review-the-mobile-book/#comments</comments>
		<pubDate>Thu, 13 Dec 2012 16:12:31 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[coding/design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=2109</guid>
		<description><![CDATA[I had a fortune to be among the first readers of The Mobile Book, published by Smashing Media and I enjoyed reading it. If you are serious about building either strictly mobile or mobile first responsive interfaces, buy this book now. As it turned out — designing for the web became crazy complex and the [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.smashingmagazine.com/2012/12/12/the-new-mobile-book-is-here/"><img src="/blog/wp-content/uploads/2012/12/smashing-book.jpg" alt="The Mobile Book" /></a> </p>
<p>I had a fortune to be among the first readers of <a href="http://www.the-mobile-book.com">The Mobile Book</a>, published by Smashing Media and I enjoyed reading it. If you are serious about building either strictly mobile or mobile first responsive interfaces, buy this book now.</p>
<p>As it turned out — designing for the web became crazy complex and the industry developments can only be followed if you are up-to-date with the matter. I can safely predict that for anyone who wants to postpone designing for mobile untill the next occasion, it will be too late. It’s already too late. We are going towards the One Web and the amount of expertize will soon be too great to simply jump on the bandwagon. So you better start learning. And The Mobile Book can help.</p>
<p><a href="http://www.smashingmagazine.com/2012/12/12/the-new-mobile-book-is-here/"><img src="/blog/wp-content/uploads/2012/12/smashing-book-spread.jpg" alt="The Mobile Book spread" /></a></p>
<p>The Mobile Book is a comprehensive textbook that will get you up to speed with designing for mobile right away. It’s a combination of:</p>
<ul>
<li>technology landscape and the global market statistics</li>
<li>predictions for the future of connectivity and how to prepare for the changes</li>
<li>practical responsive web design HTML and CSS examples</li>
<li>responsive web design patterns, including mobile navigation, data tables, carousels and conditional loading</li>
<li>server- and client-side performance optimization tips</li>
<li>core UX design methods applied to design for mobile such as design funneling, paper prototyping, content strategy and information architecture</li>
<li>ergonomics for touch screens</li>
</ul>
<p>And like that was not enough, digital versions are shipped with five extra chapters. <a href="http://www.smashingmagazine.com/2012/12/12/the-new-mobile-book-is-here/">Go,&#160;get&#160;it!</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=iAzNkpEEe8g:Y0mSeF3aIeM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=iAzNkpEEe8g:Y0mSeF3aIeM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=iAzNkpEEe8g:Y0mSeF3aIeM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=iAzNkpEEe8g:Y0mSeF3aIeM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=iAzNkpEEe8g:Y0mSeF3aIeM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=iAzNkpEEe8g:Y0mSeF3aIeM:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/iAzNkpEEe8g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/12/13/review-the-mobile-book/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/12/13/review-the-mobile-book/</feedburner:origLink></item>
		<item>
		<title>Building for People slides</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/IvXkM5NlOng/</link>
		<comments>http://www.maratz.com/blog/archives/2012/11/27/slides-building-for-people/#comments</comments>
		<pubDate>Tue, 27 Nov 2012 15:55:30 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[user experience]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=2104</guid>
		<description />
				<content:encoded><![CDATA[<p><script async class="speakerdeck-embed" data-id="8766d7001ad10130d5f622000a952352" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=IvXkM5NlOng:MykNW9wH7G0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=IvXkM5NlOng:MykNW9wH7G0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=IvXkM5NlOng:MykNW9wH7G0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=IvXkM5NlOng:MykNW9wH7G0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=IvXkM5NlOng:MykNW9wH7G0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=IvXkM5NlOng:MykNW9wH7G0:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/IvXkM5NlOng" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/11/27/slides-building-for-people/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/11/27/slides-building-for-people/</feedburner:origLink></item>
		<item>
		<title>eZ Publish Summer Camp Recap</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/eNiVOkfBc6w/</link>
		<comments>http://www.maratz.com/blog/archives/2012/09/07/ez-publish-summer-camp-recap/#comments</comments>
		<pubDate>Fri, 07 Sep 2012 00:34:31 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=2090</guid>
		<description><![CDATA[Just came back from the first edition of eZ Publish Summer Camp in Bol, on the island of Brač in Croatia. The event went pretty well, so a big congrats to team Netgen and associates for pulling-off the biggest unofficial eZ camp so far. I was invited to hold a Responsive Web Design workshop at [...]]]></description>
				<content:encoded><![CDATA[<p>Just came back from the first edition of <a href="http://ezsummercamp.com/">eZ Publish Summer Camp</a> in Bol, on the island of Brač in Croatia. The event went pretty well, so a big congrats to team <a href="http://netgen.hr/">Netgen</a> and associates for pulling-off the biggest unofficial eZ camp so far.</p>
<p>I was invited to hold a <a href="https://speakerdeck.com/u/maratz/p/responsive-web-design-workshop-at-ez-publish-summer-camp-bol-croatia">Responsive Web Design workshop</a> at the <abbr>CMS</abbr> track, intended for intermediate to advanced eZ Publish developers. It was a joy to speak about <abbr>RWD</abbr> to a slightly different audience than usual (i.e. designers and front-end specialists). The design deconstruction exercise was especially interesting, and it proved once again that anyone can be taught how to observe and analyze visual design.      </p>
<p>When we had discussed about the workshop for the first time, the official demo site was designed as a traditional fixed width layout. In the meantime the latest version demo has been built with responsive web design, but there’s a room for improvement. The demo is done with <a href="http://twitter.github.com/bootstrap/">Bootstrap</a> from Twitter. And while it is not the worst framework out there, it’s still a framework and as such brings unnecessary weight around the waist. </p>
<p>Responsive web design is easy to develop once you understand the process. That was the reason why we opted to focus on the process at the workshop, rather than just provide the out-of-the-box silver bullet copy-paste examples. <abbr>RWD</abbr> can be achieved with just a few lines of <abbr>CSS</abbr>, so using a framework — any framework — is an obvious overkill. A big step-back in this case would be trying to learn how the framework works in order to develop such a basic and straight-forward design system such as <abbr>RWD</abbr>.</p>
<p>Over the years, eZ Publish became quite powerful and robust enterprise level <abbr>CMS</abbr>. However, compared to other popular solutions, for instance Drupal or WordPress, the lack of clear design direction and limited variety of showcase level front-end designs, makes it difficult to sell — especially to design agencies that are traditionally a great channel for advocating any <abbr>CMS</abbr> to clients.</p>
<p>Content-driven sites are all about fine-grained control over content organized into a matrix of information silos, neatly wrapped into great reading experience and easy to use browse and search patterns. While the former is quite well done in eZ Publish, the latter has been neglected up until recently. I had a chance to talk to a couple of influential members of eZ Community and a part of the product development strategy is to focus more on the quality of interface, starting with a number of usability improvements. And indeed, informed front-end development and diversity in UI design should be the natural next step for <a href="http://ez.no/">eZ Publish</a> community.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=eNiVOkfBc6w:v1pKGtRjcwg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=eNiVOkfBc6w:v1pKGtRjcwg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=eNiVOkfBc6w:v1pKGtRjcwg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=eNiVOkfBc6w:v1pKGtRjcwg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=eNiVOkfBc6w:v1pKGtRjcwg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=eNiVOkfBc6w:v1pKGtRjcwg:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/eNiVOkfBc6w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/09/07/ez-publish-summer-camp-recap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/09/07/ez-publish-summer-camp-recap/</feedburner:origLink></item>
		<item>
		<title>Emulate CSS box-sizing in IE7</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/n9o6pKJ3uF0/</link>
		<comments>http://www.maratz.com/blog/archives/2012/08/01/emulate-box-sizing-in-ie7/#comments</comments>
		<pubDate>Wed, 01 Aug 2012 15:42:53 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[CSS 101]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[rwd]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=2046</guid>
		<description><![CDATA[Box-sizing is a very handy CSS property supported in IE8+ and all modern browsers. It’s essential for flexible layouts development, because it helps you to combine percentage lengths for width and height with fixed value paddings. With box-sizing set to border-box, a 33% wide element with a padding of 20 pixels will take exactly 33% [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.w3.org/TR/css3-ui/#box-sizing">Box-sizing</a> is a very handy <abbr>CSS</abbr> property supported in <abbr>IE8+</abbr> and all modern browsers. It’s essential for flexible layouts development, because it helps you to combine percentage lengths for width and height with fixed value paddings.</p>
<p>With box-sizing set to border-box, a 33% wide element with a padding of 20 pixels will take exactly 33% of horizontal space, instead of 33% + 20px + 20px which is rendered by default. Learn more about <abbr>CSS</abbr> box sizing on <a href="http://css-tricks.com/box-sizing/">Chris Coyier’s CSS Tricks</a> and <a href="http://paulirish.com/2012/box-sizing-border-box-ftw/">Paul Irish’s</a> blogs.</p>
<p>There are some existing JavaScript solutions to emulate this behavior in <abbr>IE7</abbr>, for instance the <a href="https://github.com/Schepp/box-sizing-polyfill">box-sizing-polyfill</a>, but here is what we’ve been using on a couple of recent projects:</p>
<pre><code>.box-sizing-ie7 {
    /* emulates width: 100% */
    width: expression((this.parentNode.clientWidth - parseInt(this.currentStyle['paddingLeft']) - parseInt(this.currentStyle['paddingRight'])) + 'px');
}

.box-sizing-ie7 {
    /* emulates width: 33% */
    width: expression((this.parentNode.clientWidth/3 - parseInt(this.currentStyle['paddingLeft']) - parseInt(this.currentStyle['paddingRight'])) + 'px');
}</code></pre>
<p>&#8230; and here’s the example for the vertical sizing:</p>
<pre><code>.box-sizing-ie7 {
    height: expression((this.parentNode.clientHeight - parseInt(this.currentStyle['paddingTop']) - parseInt(this.currentStyle['paddingBottom'])) + 'px');
}</code></pre>
<p>This hack is not completely in line with <a href="http://stevesouders.com/hpws/rule-expr.php">high performance guidelines</a>, so keep an eye on the <abbr>CPU</abbr>. Don’t forget to put this in an <abbr>IE7</abbr> specific <abbr>CSS</abbr> file using <a href="/blog/archives/2005/06/16/essentials-of-css-hacking-for-internet-explorer/"><abbr>IE</abbr> conditional comments</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=n9o6pKJ3uF0:hCLadyiUDVE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=n9o6pKJ3uF0:hCLadyiUDVE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=n9o6pKJ3uF0:hCLadyiUDVE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=n9o6pKJ3uF0:hCLadyiUDVE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=n9o6pKJ3uF0:hCLadyiUDVE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=n9o6pKJ3uF0:hCLadyiUDVE:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/n9o6pKJ3uF0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/08/01/emulate-box-sizing-in-ie7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/08/01/emulate-box-sizing-in-ie7/</feedburner:origLink></item>
		<item>
		<title>Article readability stats with PHP</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/G5qjy77BBUw/</link>
		<comments>http://www.maratz.com/blog/archives/2012/07/26/article-readability-stats-with-php/#comments</comments>
		<pubDate>Thu, 26 Jul 2012 13:31:24 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[typography]]></category>
		<category><![CDATA[readability]]></category>
		<category><![CDATA[type]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1993</guid>
		<description><![CDATA[With so many technology innovations (mobility, sci-fi screen resolutions) and the attention span shorter than a wing flap of a hummingbird, we are forced to rediscover new ways of optimizing texts for better understanding and ease of use. One common way is the technical improvement of typography, another way is measuring readability. Readability is basically [...]]]></description>
				<content:encoded><![CDATA[<p>With so many technology innovations (mobility, sci-fi screen resolutions) and the attention span shorter than a wing flap of a hummingbird, we are forced to rediscover new ways of optimizing texts for better understanding and ease of use. One common way is the technical improvement of typography, another way is measuring readability. Readability is basically a text usability, and usability is always best improved with proper data to support it.</p>
<p>We had been investigating a couple of options about how to mathematically describe and evaluate texts for our recent project and as a result we developed a simple <abbr>PHP</abbr> function that renders some handy content info, such as the number of characters, syllables, words and sentences for each article. Long story short, we are now using it as a standard tool for creating more detailed content audit and to categorize individual articles — as well as site sections — according to target audience age and educational background. </p>
<p>Measuring — and most of all, understanding — that there was a significant number of overly complicated articles on the site helped us to pinpoint the critical parts, suggest copy improvements and allocate the editorial resources.</p>
<p>It’s interesting that the people outside our industry have been using such methods for years. Some public services, for instance The U.S. Department of Defense use the Reading Ease test as the standard test of readability for its documents and forms. Us, web designers are sometimes too arrogant or just plain ignorant about the latest advances in other fields. If we simply reach out and use the wisdom of others, more often than not we can immediately expand our own palette. But I digress.</p>
<p><a href="http://en.wikipedia.org/wiki/Automated_Readability_Index">Automated Readability Index</a> and <a href="http://en.wikipedia.org/wiki/Flesch-Kincaid_Readability_Test">Flesch–Kincaid readability test</a> are some of the most popular methodologies of qualifying texts in English, but there are <a href="http://www.ideosity.com/ideosphere/seo-information/readability-tests">many more readability tests</a> including those for Spanish, Dutch, Japanese etc. It was surprising to discover how some of those could help in education to create better learning materials for students&#8230;</p>
<p>Even though we are using it with WordPress, the function can be used with any <abbr>PHP</abbr> based <abbr>CMS</abbr>. Keep in mind that it uses algorithms to evaluate texts in English only. If you plan to use it for measurements in other languages, make sure to adjust the formula accordingly. Please do try to improve the code and let me know your results.</p>
<p><strong><a href="/downloads/cn-article-readability.txt">Download cn-article-readability.php</a></strong></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=G5qjy77BBUw:MBETNOQoCKA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=G5qjy77BBUw:MBETNOQoCKA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=G5qjy77BBUw:MBETNOQoCKA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=G5qjy77BBUw:MBETNOQoCKA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=G5qjy77BBUw:MBETNOQoCKA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=G5qjy77BBUw:MBETNOQoCKA:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/G5qjy77BBUw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/07/26/article-readability-stats-with-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/07/26/article-readability-stats-with-php/</feedburner:origLink></item>
		<item>
		<title>iFrame auto-resize with jQuery</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/ZiA0MAxx-mA/</link>
		<comments>http://www.maratz.com/blog/archives/2012/07/24/iframe-auto-resize-with-jquery/#comments</comments>
		<pubDate>Tue, 24 Jul 2012 15:31:55 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[coding/design]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1967</guid>
		<description><![CDATA[Inline frames are not the prettiest of HTML elements, but they can make your life a hell of a lot easier, especially with branching web application control panels, full of modals and cross-referenced entities. It’s easy to design/develop such interface if you know the height of the iFrame element, which is almost never the case. [...]]]></description>
				<content:encoded><![CDATA[<p>Inline frames are not the prettiest of HTML elements, but they can make your life a hell of a lot easier, especially with branching web application control panels, full of modals and cross-referenced entities. It’s easy to design/develop such interface if you know the height of the <code>iFrame</code> element, which is almost never the case. So here’s the handy solution based on <a href="http://jquery.com/">jQuery</a> and with a little help of server-side scripting. Obviously, you’d need to include jQuery in both files.</p>
<h2>Parent page</h2>
<pre>
&#60;iframe 
    id="iframe-123" 
    src="iframe.php?iframe_id=iframe-123" 
    scrolling="no" 
    frameborder="0">
&#60;/iframe>

&#60;script type="text/javascript">
    function updateIframeSize(x,y){
        if (x != '') {
            $('#' + x).height(y + 'px');
        }
    }
&#60;/script>
</pre>
<h2>Inline frame page</h2>
<pre>
&#60;?php $iframe_id = isset($_GET['iframe_id']) ? $_GET['iframe_id'] : ''; ?>
&#60;body>...&#60;/body>
&#60;script type="text/javascript">
    function updateParent() { 
        parent.updateIframeSize('&#60;?= $iframe_id ?>',$('html').height());
    }
    $(document)
        .ready(updateParent)
        .click(updateParent);
&#60;/script>
</pre>
<p>For faster performance use the old school “dirty” method:</p>
<pre>
&#60;?php $iframe_id = isset($_GET['iframe_id']) ? $_GET['iframe_id'] : ''; ?>
&#60;body
    onload="updateParent()"
    onclick="updateParent()">
    ...
&#60;/body>
&#60;script type="text/javascript">
    function updateParent() { 
        parent.updateIframeSize('&#60;?= $iframe_id ?>',$('html').height());
    }
&#60;/script>
</pre>
<p>You might want to give the <code>iFrame</code> reasonably small initial height in CSS, so the parent page doesn’t excessively flick and jump back and forth while the <code>iFrame</code> content is loading.</p>
<p>To make it completely client-side, read the value from <code>iframe_id</code> with <a href="https://developer.mozilla.org/en/DOM/window.location">window.location.search</a> property.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=ZiA0MAxx-mA:ePiRliv3-3k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=ZiA0MAxx-mA:ePiRliv3-3k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=ZiA0MAxx-mA:ePiRliv3-3k:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=ZiA0MAxx-mA:ePiRliv3-3k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=ZiA0MAxx-mA:ePiRliv3-3k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=ZiA0MAxx-mA:ePiRliv3-3k:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/ZiA0MAxx-mA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/07/24/iframe-auto-resize-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/07/24/iframe-auto-resize-with-jquery/</feedburner:origLink></item>
		<item>
		<title>Your new default iPhone camera</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/KqzSXe4MD48/</link>
		<comments>http://www.maratz.com/blog/archives/2012/05/11/your-new-default-iphone-camera/#comments</comments>
		<pubDate>Fri, 11 May 2012 09:10:52 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1932</guid>
		<description><![CDATA[To be honest, I did this little review, so I can sneak Tin in. Anyway&#8230; Cambox uploads photos directly to your Dropbox. The app is stripped down default iOS camera experience, it’s simpler to use and hence more convenient. No need to launch another application to sync your photos, because by the time you’re behind [...]]]></description>
				<content:encoded><![CDATA[<p><em>To be honest, I did this little review, so I can sneak Tin in. Anyway&#8230;</em></p>
<p><strong><a href="http://getcambox.com/">Cambox</a></strong> uploads photos directly to your <a href="https://www.dropbox.com/">Dropbox</a>. The app is stripped down default iOS camera experience, it’s simpler to use and hence more convenient. No need to launch another application to sync your photos, because by the time you’re behind your main computer — your pictures are already there in your Dropbox folder. Another great example of simplifying already simple experience.</p>
<div class="figure"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/05/01-420x630.png" alt="" title="01" width="420" height="630" class="alignnone size-medium wp-image-1933" /></div>
<div class="figure"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/05/02-420x630.png" alt="" title="02" width="420" height="630" class="alignnone size-medium wp-image-1934" /></div>
<div class="figure"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/05/03-420x630.png" alt="" title="03" width="420" height="630" class="alignnone size-medium wp-image-1935" /></div>
<div class="figure"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/05/04-420x630.png" alt="" title="04" width="420" height="630" class="alignnone size-medium wp-image-1936" /></div>
<div class="figure"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/05/05-420x630.png" alt="" title="05" width="420" height="630" class="alignnone size-medium wp-image-1937" /></div>
<div class="figure"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/05/06-420x630.png" alt="" title="06" width="420" height="630" class="alignnone size-medium wp-image-1938" /></div>
<p><a href="http://itunes.apple.com/us/app/cambox-camera-to-dropbox/id515017017?ls=1&#038;mt=8">Cambox is available on iTunes store</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=KqzSXe4MD48:5hXaodscAZs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=KqzSXe4MD48:5hXaodscAZs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=KqzSXe4MD48:5hXaodscAZs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=KqzSXe4MD48:5hXaodscAZs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=KqzSXe4MD48:5hXaodscAZs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=KqzSXe4MD48:5hXaodscAZs:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/KqzSXe4MD48" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/05/11/your-new-default-iphone-camera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/05/11/your-new-default-iphone-camera/</feedburner:origLink></item>
		<item>
		<title>New additions to FFWD.PRO 2012 line-up</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/UrmI38zWeBU/</link>
		<comments>http://www.maratz.com/blog/archives/2012/04/27/new-additions-to-ffwd-pro-2012-line-up/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 08:03:47 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[FFWD.PRO]]></category>
		<category><![CDATA[ffwdpro]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1925</guid>
		<description><![CDATA[I’m very pleased to announce new additions to FFWD.PRO conference line-up: Leisa Reichelt, Relly Annett Baker and Paul Annett. Leisa will be holding a Strategic User Experience workshop on day two. Whether you are a seasoned UX designer or just entering the field, Leisa’s workshop is a must. You will learn how to apply UX [...]]]></description>
				<content:encoded><![CDATA[<p>I’m very pleased to announce new additions to <a href="http://ffwd.pro/">FFWD.PRO conference</a> line-up: <a href="http://twitter.com/leisa">Leisa Reichelt</a>, <a href="http://twitter.com/rellyab">Relly Annett Baker</a> and <a href="http://twitter.com/nicepaul">Paul Annett</a>.</p>
<p><strong>Leisa</strong> will be holding a Strategic User Experience workshop on day two. Whether you are a seasoned UX designer or just entering the field, Leisa’s workshop is a must. You will learn how to apply UX design thinking beyond web sites.</p>
<p><strong>Relly</strong> will teach designers and developers about Content Strategy discipline, and provide us with useful tips and tricks about how to collect content from clients (or in-house departments) before we start designing layout. We have heard only great things about Relly’s competence in the field.</p>
<p><strong>Paul</strong> will talk about their work on <a href="http://gov.uk/">gov.uk</a>, which is a particularly interesting topic for workers in our own government online department. Paul is an ex <a href="http://clearleft.com/">Clearleftie</a> and a co-developer of <a href="http://silverbackapp.com/">Silverback</a> project, we all love and use.</p>
<p>See <a href="http://ffwd.pro/schedule/">the conference schedule</a> and <a href="http://ffwd.pro/register/">grab your Early Bird ticket</a> before May 1st. </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=UrmI38zWeBU:sM0ynqk-6VE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=UrmI38zWeBU:sM0ynqk-6VE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=UrmI38zWeBU:sM0ynqk-6VE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=UrmI38zWeBU:sM0ynqk-6VE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=UrmI38zWeBU:sM0ynqk-6VE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=UrmI38zWeBU:sM0ynqk-6VE:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/UrmI38zWeBU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/04/27/new-additions-to-ffwd-pro-2012-line-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/04/27/new-additions-to-ffwd-pro-2012-line-up/</feedburner:origLink></item>
		<item>
		<title>Interview with BrightLounge</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/IDiseAJtm6c/</link>
		<comments>http://www.maratz.com/blog/archives/2012/04/26/interview-with-brightlounge/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 08:56:54 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1905</guid>
		<description><![CDATA[Last September, Catalina and Bryan — nice people from BrightLounge had me for a video interview here in Zagreb. They are traveling around the World, enjoy local places and usually interview local creatives. We covered topics on user experience, typography and general design thinking. In this particular episode they also explained some pretty cool web [...]]]></description>
				<content:encoded><![CDATA[<div class="figure"><a href="http://www.brightlounge.tv/episode-05/"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/04/BrightLounge-05-thumb-420x236.jpg" alt="" width="420" height="236" /></a></div>
<p>Last September, <a href="https://twitter.com/#!/katchja">Catalina</a> and <a href="https://twitter.com/#!/BryanMcAnulty">Bryan</a> — nice people from <a href="http://www.brightlounge.tv/episode-05/">BrightLounge</a> had me for a video interview here in Zagreb. They are traveling around the World, enjoy local places and usually interview local creatives. </p>
<p>We covered topics on user experience, typography and general design thinking. In this particular episode they also explained some pretty cool web app development tips.</p>
<p><a href="http://www.brightlounge.tv/episode-05/">Watch the whole episode</a>. </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=IDiseAJtm6c:fGeXfU7tL1Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=IDiseAJtm6c:fGeXfU7tL1Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=IDiseAJtm6c:fGeXfU7tL1Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=IDiseAJtm6c:fGeXfU7tL1Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=IDiseAJtm6c:fGeXfU7tL1Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=IDiseAJtm6c:fGeXfU7tL1Y:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/IDiseAJtm6c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/04/26/interview-with-brightlounge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/04/26/interview-with-brightlounge/</feedburner:origLink></item>
		<item>
		<title>Nielsen’s Mobile vs. Full sites</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/gLplPLnyWck/</link>
		<comments>http://www.maratz.com/blog/archives/2012/04/13/nielsens-mobile-vs-full-sites/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 10:57:50 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[user experience]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1892</guid>
		<description><![CDATA[Jacob Nielsen, a usability guru wrote a controversial set of guidelines covering mobile vs full site usability where he suggested that we should build separate versions of a website for each device. Many respected designers responded negatively — to say the least — and while I have to agree that we shouldn’t build lighter mobile [...]]]></description>
				<content:encoded><![CDATA[<p>Jacob Nielsen, a usability guru wrote a <a href="http://www.useit.com/alertbox/mobile-vs-full-sites.html">controversial set of guidelines covering mobile vs full site usability</a> where he suggested that we should build separate versions of a website for each device.</p>
<p>Many <a href="http://www.netmagazine.com/news/designers-respond-nielsen-mobile-121892">respected designers responded negatively</a> — to say the least — and while I have to agree that we shouldn’t build lighter mobile website versions, let’s go deeper and take into consideration the research results that were the foundation for Nielsen’s advice.</p>
<p>Yes, for many — especially the 3rd World, where education resources are limited anyway — the mobile site is the only site they’ll ever encounter and we must provide access by anyone regardless of devices they use. Yet, we are still in the experimental stage with mobile design and web design in general — that even an opposite opinion can be valuable to identify some broader challenges, for instance: Why the “full site” performance is so poor when accessed with a mobile device?</p>
<p>This is where <a href="/blog/archives/2012/03/25/mobile-first-intro/">Mobile First</a> comes into play. By placing all useful content (i.e. everything but a cheesy marketing and superfluous decorations) into the mobile context, it’s easy to establish a corner-stone for any device experience. The real question is not “separate sites vs. universal site?”, it’s “which device should be covered first?” We already know the answer, right?</p>
<p>Creating different navigation systems and optimized experience across devices can be easily accomplished with some clever CSS and JavaScript, which is basically building on top of universal HTML layer. That doesn’t require a separate website and we know how to do it for several years now.</p>
<p>The one category where you’d probably have to create (user-friendlier) mobile / tablet version is news sites and blogs with advertising based revenue scheme, but that’s a story for another occasion.</p>
<h2>Usability testing is for producers and clients</h2>
<p>Usability testing, user research and analytics are essential design tools. However, over the years it became quite obvious that the true value of UI testing is not in the actual set of findings or usability experts’ recommendations, but in the switch happening in the heads of project team members.</p>
<p>Simply watching others struggling with your interface — and a number of users always will, no matter how good the interface is — forces you to think more about the general concept instead of the technical details. It brings up some fundamental questions about the project’s goals, the core feature set etc. Technical problems are important, but those are easily solved or avoided altogether once you identify them. The real trouble is when you miss the general concept.</p>
<h2>Draw your own conclusions</h2>
<p>Nielsen’s articles almost always offer an interpretation of the key findings. Still, use each finding as a mere recommendation instead of a comply-or-die rule. Use the numbers and facts presented — they are the most valuable take-away — and draw your own conclusions.</p>
<p>A few useful articles:</p>
<ul>
<li><a href="http://www.useit.com/alertbox/mobile-usability.html">Mobile Usability Update</a></li>
<li><a href="http://www.useit.com/alertbox/ipad.html">iPad Usability: Year One</a></li>
<li><a href="http://www.useit.com/alertbox/20010218.html">Success Rate: The Simplest Usability Metric</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=gLplPLnyWck:Re9pu_K--hU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=gLplPLnyWck:Re9pu_K--hU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=gLplPLnyWck:Re9pu_K--hU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=gLplPLnyWck:Re9pu_K--hU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=gLplPLnyWck:Re9pu_K--hU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=gLplPLnyWck:Re9pu_K--hU:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/gLplPLnyWck" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/04/13/nielsens-mobile-vs-full-sites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/04/13/nielsens-mobile-vs-full-sites/</feedburner:origLink></item>
		<item>
		<title>Take a break</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/X4TvudvTQOQ/</link>
		<comments>http://www.maratz.com/blog/archives/2012/04/13/take-a-break/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 06:24:27 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[self-edit]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1873</guid>
		<description><![CDATA[During a recent project many small tasks were being dropped into a queue for a couple of days in a row, resulting in an unexpected absence from the project for some 10 days. Despite the quite intensive unease through that period, almost every tiny technical detail vanished from my brain, so I had to pick [...]]]></description>
				<content:encoded><![CDATA[<p>During a recent project many small tasks were being dropped into a queue for a couple of days in a row, resulting in an unexpected absence from the project for some 10 days. Despite the quite intensive unease through that period, almost every tiny technical detail vanished from my brain, so I had to pick up where we left off remembering only the general concept.</p>
<h2>Breaks help</h2>
<p>It turned out that this was exactly what I needed. Getting away from the project specific challenges for a while and having sub-consciousness crunch it on its own, proved to be the key for an immediate creative burst once I got back to continue working on the project.</p>
<p>All of a sudden, massive amounts of sketches where drawn in the notebook. Once finished, the typography specimen covered all content types for all common use cases in a very obvious way. Even a few random blog posts that were kept in the Reference Bookmarks showcasing some nifty accessible CSS3 methods became relevant out of the blue.</p>
<h2>“What was I thinking?”</h2>
<p>Reading the internal brief we had written before the unexpected pause, turned into a merciless removal of at least a half of the “ideas” that we initially thought were fantastic. Every such edit to the project dossier felt natural and straightforward. The feeling was refreshing, because the mind was clear.</p>
<h2>It happens to others, too</h2>
<p>Then I have read the following quote from an American novelist Zodie Smith: </p>
<blockquote><p>“When you finish your novel, if money is not a desperate priority, if you do not need to sell it at once or be published that very second — put it in a drawer. For as long as you can manage. A year of more is ideal — but even three months will do. Step away from the vehicle. The secret to editing your work is simple: you need to become its reader instead of its writer. I can’t tell you how many times I’ve sat backstage with a line of novelists at some festival, all of us with red pens in hand, frantically editing our published novels into fit form so that we might go on stage and read from them. It’s an unfortunate thing, but it turns out that the perfect state of mind to edit your novel is two years after it’s published, ten minutes before you go on stage at a literary festival. At that moment every redundant phrase, each show-off, pointless metaphor, all of the pieces of dead wood, stupidity, vanity, and tedium are distressingly obvious to you.”</p>
</blockquote>
<p><strong>Absolutely brilliant!</strong></p>
<p><cite>Taken from <a href="http://scienceblogs.com/cortex/2008/07/reading_yourself.php">Reading yourself</a> via <a href="https://twitter.com/cameronmoll">@cameronmoll</a></cite></p>
<h3>Update</h3>
<p><a href="http://www.maratz.com/downloads/take-a-break.pdf">Download Take a Break PDF and print it</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=X4TvudvTQOQ:G1sGP-ZDwt4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=X4TvudvTQOQ:G1sGP-ZDwt4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=X4TvudvTQOQ:G1sGP-ZDwt4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=X4TvudvTQOQ:G1sGP-ZDwt4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=X4TvudvTQOQ:G1sGP-ZDwt4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=X4TvudvTQOQ:G1sGP-ZDwt4:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/X4TvudvTQOQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/04/13/take-a-break/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/04/13/take-a-break/</feedburner:origLink></item>
		<item>
		<title>Interview on “Prozor u digitalno”</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/D305N51V7Kg/</link>
		<comments>http://www.maratz.com/blog/archives/2012/04/12/interview-on-prozor-u-digitalno/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 16:52:26 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1860</guid>
		<description><![CDATA[Goran Peuc and yours truly were invited to talk about web design on “Prozor u digitalno”, a Croatian Radio Channel 3 weekly show about everything digital. We discussed about the required skill-set for a modern-day web designer, about some deeper specialities within the web design profession, education systems and the web industry’s future. Near the [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.maratz.com/blog/wp-content/uploads/2012/04/4b4e7c12775511e18bb812313804a181_7-420x321.jpg" alt="" width="420" height="321" /></p>
<p><a href="http://worship.hr/">Goran Peuc</a> and yours truly were invited to talk about web design on “Prozor u digitalno”, a Croatian Radio Channel 3 weekly show about everything digital. </p>
<p>We discussed about the required skill-set for a modern-day web designer, about some deeper specialities within the web design profession, education systems and the web industry’s future.</p>
<p>Near the end of the show we elaborated great design examples outside the web itself and mentioned two gems — <a href="http://www.nest.com/">Nest, the learning thermostat</a> and <a href="http://www.lytro.com/">Lytro, the light field camera</a>.</p>
<p>If you understand Croatian you can <strong><a href="http://rnz.hrt.hr/view_file.php?dat_id=62851&#038;view=y">listen to it in your browser (32 min)</a></strong> or <strong><a href="http://rnz.hrt.hr/view_file.php?dat_id=62851">Download episode as MP3 (15 MB)</a></strong>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=D305N51V7Kg:NgObYu6_n_8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=D305N51V7Kg:NgObYu6_n_8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=D305N51V7Kg:NgObYu6_n_8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=D305N51V7Kg:NgObYu6_n_8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=D305N51V7Kg:NgObYu6_n_8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=D305N51V7Kg:NgObYu6_n_8:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/D305N51V7Kg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/04/12/interview-on-prozor-u-digitalno/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://rnz.hrt.hr/view_file.php?dat_id=62851&amp;view=y" length="15107133" type="audio/mpeg;" />
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/04/12/interview-on-prozor-u-digitalno/</feedburner:origLink></item>
		<item>
		<title>FFWD.PRO 2012 web design conference announcement!</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/AqhHdwx86tY/</link>
		<comments>http://www.maratz.com/blog/archives/2012/04/03/ffwd-pro-2012-web-design-conference-announcement/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 12:26:02 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[FFWD.PRO]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1833</guid>
		<description><![CDATA[Join us at FFWD.PRO, a micro-conference and workshops for web designers and developers right here in Zagreb, Croatia on June 11–12, 2012. We are extremely happy to host the extraordinary line-up of industry leaders, from user experience directors, to user interface designers, to front-end developers, to technology experts. The conference has come about due to [...]]]></description>
				<content:encoded><![CDATA[<div class="figure"><a href="http://ffwd.pro/"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/04/ffwd-pro-420x320.png" alt="" width="420" height="320" /></a></div>
<p>Join us at <a href="http://ffwd.pro/">FFWD.PRO</a>, a micro-conference and workshops for web designers and developers right here in Zagreb, Croatia on June 11–12, 2012.</p>
<p>We are extremely happy to host the <a href="http://ffwd.pro/speakers/">extraordinary line-up of industry leaders</a>, from user experience directors, to user interface designers, to front-end developers, to technology experts. </p>
<p>The conference has come about due to increased demand within the region for more specialized events for internet professionals. It is also a natural progression for us here at <a href="http://creativenights.com/">Creative Nights</a> by carrying on from where we left off with our very successful series of <a href="http://webradionice.com/2011/mobile-web-design/">web workshops</a> which we have been organizing since 2009.</p>
<p>But <a href="http://ffwd.pro/speakers/">see for yourself</a> and be sure to <a href="http://ffwd.pro/registration/">grab your super affordable Early Bird ticket</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=AqhHdwx86tY:Lnd4ONtp9uM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=AqhHdwx86tY:Lnd4ONtp9uM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=AqhHdwx86tY:Lnd4ONtp9uM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=AqhHdwx86tY:Lnd4ONtp9uM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=AqhHdwx86tY:Lnd4ONtp9uM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=AqhHdwx86tY:Lnd4ONtp9uM:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/AqhHdwx86tY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/04/03/ffwd-pro-2012-web-design-conference-announcement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/04/03/ffwd-pro-2012-web-design-conference-announcement/</feedburner:origLink></item>
		<item>
		<title>Mobile First Intro</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/vjWCWyfFMoM/</link>
		<comments>http://www.maratz.com/blog/archives/2012/03/25/mobile-first-intro/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 10:38:33 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1896</guid>
		<description><![CDATA[Slides from my Mobile First Intro presentation. It’s a jump-start into the mobile web design and development, explaining the general concept and the building process. If you’d like to see me talk, here’s my speaking calendar. As always, for any additional questions feel free to ping me on Twitter]]></description>
				<content:encoded><![CDATA[<p>Slides from my Mobile First Intro presentation. It’s a jump-start into the mobile web design and development, explaining the general concept and the building process.</p>
<p><script async class="speakerdeck-embed" data-id="4f87fdc5663448002101a01b" data-ratio="1.299492385786802" src="//speakerdeck.com/assets/embed.js"></script></p>
<p>If you’d like to see me talk, here’s my <a href="/speaking/">speaking calendar</a>. As always, for any additional questions feel free to <a href="http://twitter.com/markodugonjic">ping me on Twitter</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=vjWCWyfFMoM:KpgCAE5j0Ro:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=vjWCWyfFMoM:KpgCAE5j0Ro:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=vjWCWyfFMoM:KpgCAE5j0Ro:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=vjWCWyfFMoM:KpgCAE5j0Ro:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=vjWCWyfFMoM:KpgCAE5j0Ro:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=vjWCWyfFMoM:KpgCAE5j0Ro:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/vjWCWyfFMoM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/03/25/mobile-first-intro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/03/25/mobile-first-intro/</feedburner:origLink></item>
		<item>
		<title>Steal Like an Artist</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/aL2qfSSmAvI/</link>
		<comments>http://www.maratz.com/blog/archives/2012/03/14/steal-like-an-artist/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 07:14:55 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1821</guid>
		<description><![CDATA[Read. This. Book. Steal Like an Artist.]]></description>
				<content:encoded><![CDATA[<p>Read. This. Book. <a href="http://www.amazon.com/gp/product/0761169253?ie=UTF8&#038;tag=maratzcom-20&#038;linkCode=shr&#038;camp=213733&#038;creative=393185&#038;creativeASIN=0761169253&#038;ref_=sr_1_1&#038;qid=1331708509&#038;sr=8-1">Steal Like an Artist</a>.</p>
<div class="figure"><a href="http://www.amazon.com/gp/product/0761169253?ie=UTF8&#038;tag=maratzcom-20&#038;linkCode=shr&#038;camp=213733&#038;creative=393185&#038;creativeASIN=0761169253&#038;ref_=sr_1_1&#038;qid=1331708509&#038;sr=8-1"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/03/51+wYEcYepL-420x420.jpg" alt="" title="51+wYEcYepL" width="420" height="420" /></a></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=aL2qfSSmAvI:kbpx_LeaoFE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=aL2qfSSmAvI:kbpx_LeaoFE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=aL2qfSSmAvI:kbpx_LeaoFE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=aL2qfSSmAvI:kbpx_LeaoFE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=aL2qfSSmAvI:kbpx_LeaoFE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=aL2qfSSmAvI:kbpx_LeaoFE:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/aL2qfSSmAvI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/03/14/steal-like-an-artist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/03/14/steal-like-an-artist/</feedburner:origLink></item>
		<item>
		<title>HTML5 video “not working” in Firefox?</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/-6EyH7I9YYs/</link>
		<comments>http://www.maratz.com/blog/archives/2012/02/08/html5-video-not-working-in-firefox/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 11:40:59 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1812</guid>
		<description><![CDATA[I lost an hour the other day over Firefox not playing .ogv/.webm file. Again. HTML5 video was actually working in FF. The problem was that the web server didn’t know how to handle video file formats and another problem is that I’m getting older. Anyway, add this to .htaccess file AddType video/ogg .ogv AddType video/mp4 [...]]]></description>
				<content:encoded><![CDATA[<p>I lost an hour the other day over Firefox not playing .ogv/.webm file. Again. HTML5 video was actually working in FF. The problem was that the web server didn’t know how to handle video file formats and another problem is that I’m getting older.</p>
<p>Anyway, add this to <code>.htaccess</code> file</p>
<pre><code>AddType video/ogg   .ogv
AddType video/mp4   .mp4
AddType video/webm  .webm
</code></pre>
<h2>Update</h2>
<p>Safari and possibly some other browsers hang if they are trying to download .mp4 file from password protected directory, for instance, on a test web site. Perfect occasion for a CDN management exercise.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=-6EyH7I9YYs:kN72cjNLR9w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=-6EyH7I9YYs:kN72cjNLR9w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=-6EyH7I9YYs:kN72cjNLR9w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=-6EyH7I9YYs:kN72cjNLR9w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=-6EyH7I9YYs:kN72cjNLR9w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=-6EyH7I9YYs:kN72cjNLR9w:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/-6EyH7I9YYs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/02/08/html5-video-not-working-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/02/08/html5-video-not-working-in-firefox/</feedburner:origLink></item>
		<item>
		<title>Display ‘edit’ link in a custom WordPress listing</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/3zDQRiqbNeU/</link>
		<comments>http://www.maratz.com/blog/archives/2012/02/04/display-edit-link-in-a-custom-wordpress-listing/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 17:39:15 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1804</guid>
		<description><![CDATA[Use this snippet inside your custom WordPress posts / pages listing function. &#60;?php if (current_user_can('edit_posts')) { $output = '&#60;a href="' . get_edit_post_link($post->ID) . '"&#62;Edit this post&#60;/a&#62;'; } echo $output; ?&#62;]]></description>
				<content:encoded><![CDATA[<p>Use this snippet inside your custom WordPress posts / pages listing function.</p>
<pre>&#60;?php
if (current_user_can('edit_posts')) {
    $output = '&#60;a href="' . get_edit_post_link($post->ID) . '"&#62;Edit this post&#60;/a&#62;';
}
echo $output;
?&#62;</pre>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=3zDQRiqbNeU:yx1jF6eoyQY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=3zDQRiqbNeU:yx1jF6eoyQY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=3zDQRiqbNeU:yx1jF6eoyQY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=3zDQRiqbNeU:yx1jF6eoyQY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=3zDQRiqbNeU:yx1jF6eoyQY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=3zDQRiqbNeU:yx1jF6eoyQY:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/3zDQRiqbNeU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/02/04/display-edit-link-in-a-custom-wordpress-listing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/02/04/display-edit-link-in-a-custom-wordpress-listing/</feedburner:origLink></item>
		<item>
		<title>Creative Nights Shop</title>
		<link>http://feedproxy.google.com/~r/maratzcom/~3/7CjvkzEbGNQ/</link>
		<comments>http://www.maratz.com/blog/archives/2012/01/30/creative-nights-shop/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 09:29:51 +0000</pubDate>
		<dc:creator>Marko Dugonjić</dc:creator>
				<category><![CDATA[typetester]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[shop]]></category>

		<guid isPermaLink="false">http://www.maratz.com/blog/?p=1759</guid>
		<description><![CDATA[Per popular request, the Creative Nights Shop is now open, offering a selection of printed T-shirts made by yours truly as a companion merchandize for various ongoing projects. Last spring we printed a limited edition of The Crane tees to show support for Japan earthquake victims. On that occasion we learned about the tee printing [...]]]></description>
				<content:encoded><![CDATA[<p>Per popular request, the <a href="http://creativenights.bigcartel.com/">Creative Nights Shop</a> is now open, offering a selection of printed T-shirts made by yours truly as a companion merchandize for various ongoing projects.</p>
<div class="figure"><a href="http://creativenights.bigcartel.com/product/typetester-tee"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/01/typetester-tee-420x370.png" alt="" title="Typetester" width="420" height="370" /></a></div>
<p>Last spring we printed a limited edition of <a href="http://creativenights.bigcartel.com/product/the-crane">The Crane tees</a> to show support for Japan earthquake victims. On that occasion we learned about the tee printing process in detail and the idea of designing non-digital products was born. Putting up the online store was a natural next step and I’m very curious to see how this side project grows.</p>
<div class="figure"><a href="http://creativenights.bigcartel.com/product/the-crane"><img src="http://www.maratz.com/blog/wp-content/uploads/2012/01/992e0619978c445597b8d0c51bcd8a55_7-420x420.jpg" alt="" title="The Crane" width="420" height="420" /></a></div>
<p>Apart from T-shirts, we are planning to develop and release some other physical products for designers and developers, but I don’t want to spoil the surprise just yet.</p>
<p>The shop itself runs at <a href="http://bigcartel.com">Big Cartel</a>, a simple shopping system for artists and designers. If you don’t mind the basic Django / Python syntax, it’s super easy to customize.</p>
<p><a href="http://creativenights.bigcartel.com/product/typetester-tee">Typetester Tee</a> is now available for all screen type geeks.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/maratzcom?a=7CjvkzEbGNQ:YvRymW9hwaQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=7CjvkzEbGNQ:YvRymW9hwaQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=7CjvkzEbGNQ:YvRymW9hwaQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=7CjvkzEbGNQ:YvRymW9hwaQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/maratzcom?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/maratzcom?a=7CjvkzEbGNQ:YvRymW9hwaQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/maratzcom?i=7CjvkzEbGNQ:YvRymW9hwaQ:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/maratzcom/~4/7CjvkzEbGNQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.maratz.com/blog/archives/2012/01/30/creative-nights-shop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.maratz.com/blog/archives/2012/01/30/creative-nights-shop/</feedburner:origLink></item>
	</channel>
</rss>
