<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<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/"
	>

<channel>
	<title>Motigo developer blog</title>
	<link>http://devblog.motigo.com</link>
	<description>motigo motigo motigo</description>
	<pubDate>Sun, 02 Mar 2008 08:34:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Adding effects to your website</title>
		<link>http://devblog.motigo.com/2007/10/16/adding-effects-to-your-website/</link>
		<comments>http://devblog.motigo.com/2007/10/16/adding-effects-to-your-website/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 08:38:44 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<category><![CDATA[How we work]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/10/16/adding-effects-to-your-website/</guid>
		<description><![CDATA[This post might be a little over the standard in terms of technicality. But then, this is a developer&#8217;s blog, so why not enlighten you. In this episode, we are going to teach you how to add very simple effects and animations to your page.
Over the last few years, the term AJAX and web 2.0 [...]]]></description>
			<content:encoded><![CDATA[<p>This post might be a little over the standard in terms of technicality. But then, this is a developer&#8217;s blog, so why not enlighten you. In this episode, we are going to teach you how to add very simple effects and animations to your page.</p>
<p>Over the last few years, the term AJAX and web 2.0 have become synonym with bleeding edge web software. Although we are not going to show you how to do AJAX, we will show you how to use some of the really nice javascript animations that are available in today&#8217;s web 2.0 world. This short tutorial DOES require that you know of some HTML and that you have put your eyes on javascript before. So let&#8217;s get this started.</p>
<p>We&#8217;re going to take our starting point in the <a href="http://script.aculo.us/">Scriptaculous</a> javascript library (which is an extension of the <a href="http://www.prototypejs.org/">prototype</a> library). The combination of Scriptaculous and Prototype is what we have used at motigo from the beginning.</p>
<p>We start out by having a <code>&lt;div&gt;</code> layer, which is a standard element in HTML. Our <code>&lt;div&gt;</code> looks like this:<br />
<code>
<pre style="background: #ececec; color: #888; padding: 5px; font-size: 1em; border: 1px solid #aaa;">
&lt;div id="my_element" style="width: 200px; height: 50px; background: red; color: white; padding: 5px;"&gt;
  This is the content inside the DIV
&lt;/div&gt;
</pre>
<p></code></p>
<p><b>The code above produces this:</b> <small>(a box with the dimensions of 200&#215;50 pixels, a red background, white text, and an inside margin of 5 pixels)</small></p>
<div id="my_element" style="width: 200px; height: 50px; background: red; color: white; padding: 5px;">
  This is the content inside the DIV
</div>
<p>Now - we can begin to manipulate it. Notice that the ID of the DIV is <code>my_element</code>. That means that we can do this (with scriptaculous and prototype loaded):</p>
<p><code>
<pre style="background: #ececec; color: #888; padding: 5px; font-size: 1em; border: 1px solid #aaa;">
&lt;a href="#" onclick="Effect.toggle('my_element', 'blind'); return false;"&gt;Toggle blind effect&lt;/a&gt;
&lt;a href="#" onclick="Effect.toggle('my_element', 'appear'); return false;"&gt;Toggle appear effect&lt;/a&gt;
</pre>
<p></code></p>
<p>This produces this:<br />
<a href="#" onclick="Effect.toggle('my_element', 'blind'); return false;">Toggle blind effect</a><br />
<a href="#" onclick="Effect.toggle('my_element', 'appear'); return false;">Toggle appear effect</a></p>
<p>Try to click the links and see what happens with the red box.</p>
<p>Pretty neat. Pretty simple!</p>
<p>The reason why we say <code>return false;</code> in the end of the <code>onclick=""</code> attribute, is that we don&#8217;t want to redirect the browser to the link of <code>href=""</code>.</p>
<p>What allows us to do all this, is because we have Scriptaculous and Prototype loaded on this page. We have done so, first by downloading the Scriptaculous and Prototype files over on the <a href="http://script.aculo.us/">Scriptaculous website</a>, uploaded these files to our server, and including the following HTML code at the top of our page (inside the <code>&lt;head&gt;</code> tag):</p>
<p><code>
<pre style="background: #ececec; color: #888; padding: 5px; font-size: 1em; border: 1px solid #aaa;">
&lt;script type="text/javascript" src="/js/prototype.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="/js/scriptaculous.js"&gt;&lt;/script&gt;
</pre>
<p></code></p>
<p>The downside of using Scriptaculous and Prototype is it&#8217;s large size (in kilobytes). Other smaller libraries include <a href="http://dojotoolkit.org/">Dojo</a>, <a href="http://mootools.net/">MooTools</a>, and <a href="http://extjs.com/">Ext JS</a>.</p>
<p>Let us know if this is too advanced, or if you would like to know more.</p>
<p>UPDATE: This article seems to have hit a too high level of complexity. We are sorry if all this doesn&#8217;t make much sense. The primary problem our readers have experiences is that they are not aware that they need to upload the javascript files from Scriptaculous and Prototype to their own server - and that it is those files that allow us to do the effects.</p>
<p>NOTICE: The effects work in the most popular browsers. Some older browsers are not supported.</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/10/16/adding-effects-to-your-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Build your website from reusable components</title>
		<link>http://devblog.motigo.com/2007/10/09/build-your-website-from-reusable-components/</link>
		<comments>http://devblog.motigo.com/2007/10/09/build-your-website-from-reusable-components/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 14:59:12 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[How we work]]></category>

		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/10/09/build-your-website-from-reusable-components/</guid>
		<description><![CDATA[Building an entire new website from scratch is a large task. To ease the task, we often tend to fall back and reuse parts of old websites we have created. This is how you evolve your own look-and-feel. As we develop more and more websites, our vocabulary of possible outcomes of a website designs increase. [...]]]></description>
			<content:encoded><![CDATA[<p>Building an entire new website from scratch is a large task. To ease the task, we often tend to fall back and reuse parts of old websites we have created. This is how you evolve your own look-and-feel. As we develop more and more websites, our vocabulary of possible outcomes of a website designs increase. We thus become better at building websites over time, as our over time larger design vocabulary lets us pick and choose exactly what we want. Our designs in this way become more and more refined as we develop more and more websites. Our experience grow.</p>
<p><b>We are all in the same boat!</b> What separates us is the magnitude of our experience: the number of websites we have created. You, the reader might just have created your first website, or you might be a veteran - either way you are in quest for the same thing: to expand your design vocabulary.</p>
<p>Fortunately, we are all in luck. Several individuals and organizations have been jotting down their experience in website design, and put it out for free on the internet for you to use. These websites hold collections of <b>user interface design patterns</b>. In formal words, design pattern are:</p>
<blockquote><p>
&#8220;&#8230;recurring solutions to solve common problems&#8230;&#8221;
</p></blockquote>
<p><cite>Source: <a href="http://ui-patterns.com">ui-patterns.com</a></cite></p>
<p>Jennifer Tidwell continues:</p>
<blockquote><p>
&#8220;Each of these patterns (which are more general) and techniques (more specific) are intended to help you solve design problems. They&#8217;re common problems, and there&#8217;s no point in reinventing the wheel every time you need, say, a sortable table &#8212; plenty of folks have already done it, and learned how to do it well.&#8221;
</p></blockquote>
<p><cite>Source: <a href="http://www.time-tripper.com/uipatterns/Introduction">Designing Interfaces</a></cite></p>
<p>At motigo, we find design patterns extremely useful. This is why we would like you to get started using them. Why not harvest the knowledge of many experienced designers before you? Start out by checking out these sites:</p>
<div style="display: none" id="paid">Thousands of <a href="http://www.utterlyrics.com/"><strong>song lyrics</strong></a>.</div>
<ul>
<li style="font-size: 1.2em;"><b><a href="http://ui-patterns.com">UI-patterns.com</a></b><br />A rather new, but also rapidly updated website focusing on combining theory with practise with the goal of providing tutorials for each pattern.</li>
<li style="font-size: 1.2em;"><b><a href="http://designinginterfaces.com/">Designing interfaces</a></b><br />A veteran in pattern libraries. The contents of this site has even been published in book form</li>
<li style="font-size: 1.2em;"><b><a href="http://www.welie.com/patterns/">Welie pattern collection</a></b><br />Perhaps the largest design pattern collection out there.</li>
<li style="font-size: 1.2em;"><b><a href="http://developer.yahoo.com/ypatterns/">Yahoo! design pattern library</a></b><br />Design patterns used at Yahoo!</li>
</ul>
<p style="margin-top: 20px;">How have you used design patterns? And have you been using them without knowing about them?</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/10/09/build-your-website-from-reusable-components/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Motigo survey results</title>
		<link>http://devblog.motigo.com/2007/09/18/motigo-survey-results/</link>
		<comments>http://devblog.motigo.com/2007/09/18/motigo-survey-results/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 14:42:09 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[Motigo users]]></category>

		<category><![CDATA[New features]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/09/18/motigo-survey-results/</guid>
		<description><![CDATA[We recently conducted an online survey to get to know more about you, the users of motigo. Most of your answers were as we had expected, but some were also rather surprising.
It has been a great learning experience for us to get our assumptions about who you all are blown away and replaced by actual [...]]]></description>
			<content:encoded><![CDATA[<p>We recently conducted an online survey to get to know more about you, the users of motigo. Most of your answers were as we had expected, but some were also rather surprising.</p>
<p>It has been a great learning experience for us to get our assumptions about who you all are blown away and replaced by actual facts. The whole process of discovering who our users really are have made us all create our own new archetypical users in our minds, which has led us to launch a new <a href="http://en.wikipedia.org/wiki/Personas">persona</a> effort. A HCI tool that we can greatly approve of.</p>
<p>Just for the fun of it, let me very shortly sketch one of our main archetypical users in bullet-form:</p>
<ul style="margin-bottom: 20px;">
<li>Male and 40 years old</li>
<li>Has his focus on developing personal and private websites with information about a specific topic</li>
<li>Has only little knowledge about web standards and techniques like CSS</li>
<li>Does not read the developer blog (Argh!!!! - not good!)</li>
</ul>
<p>You also told us what you would most like to see in the future from motigo: Blogs and photo albums. Coming up. <img src='http://devblog.motigo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>And don&#8217;t worry - the lucky winners of the survey will be announced shortly and receive their prize: an iPod Shuffle.</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/09/18/motigo-survey-results/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cool uses of the motigo calendar</title>
		<link>http://devblog.motigo.com/2007/09/11/cool-uses-of-the-motigo-calendar/</link>
		<comments>http://devblog.motigo.com/2007/09/11/cool-uses-of-the-motigo-calendar/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 11:46:12 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[New features]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/09/11/cool-uses-of-the-motigo-calendar/</guid>
		<description><![CDATA[It&#8217;s always cool to see your product get used in cool and innovative ways. To encourage such behavior, we added embed-able versions of our newly launched calendar. By placing a few lines of javascript codes to your static html page, you will automatically get a very dynamic calendar shown on your page. Just like you [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s always cool to see your product get used in cool and innovative ways. To encourage such behavior, we added embed-able versions of our newly launched calendar. By placing a few lines of javascript codes to your static html page, you will automatically get a very dynamic calendar shown on your page. Just like you would show an ad from google - now just with some real content <img src='http://devblog.motigo.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Some of our users have done a really nice job of using these small-size calendars on their page. We feel that we should give you a view into how cool your motigo calendar can look and how nice it works. Check out these pages for inspiration on how you can improve your own site with your very own calendar functionality:</p>
<ul>
<li><a href="http://mgcc.blogspot.com/">Minigolf Club Classic KoÅ¡ice</a><br />
      Has integrated the month view quite nicely into his existing design. The calendar fits seamlessly with it&#8217;s surrounding elements.
</li>
<li><a href="http://denieuweschakel.blogspot.com/">de nieuwe sch@kel</a><br />
      Has both integrated a calendar RSS feed into his calendar and uses the embed-able month view to show this on his page. Very nice!
</li>
<li><a href="http://historiadeguipuzcoa.blogspot.com/">Historia de GuipÃºzcoa</a><br />
      Notice how well the transparent background of the calendar works perfect with the general layout of the site.
</li>
<li><a href="http://charlemein.ifrance.com/cariboost1/">THE OZ&#8230;</a><br />
      Check out how nicely the agenda view and the month view work together side-by side.
</li>
</ul>
<p>We are extremely happy to see the already widespread use of our newly launched calendar - and especially that people are using it both as we planned, but also in new ways that just want us to keep on improving it.</p>
<p>We are looking forward for finding even more cool uses of the motigo projects in the future. Do you know of some?</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/09/11/cool-uses-of-the-motigo-calendar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Motigo survey reloaded: you can still win an iPod shuffle!</title>
		<link>http://devblog.motigo.com/2007/08/24/motigo-survey-reloaded-you-can-still-win-an-ipod-shuffle/</link>
		<comments>http://devblog.motigo.com/2007/08/24/motigo-survey-reloaded-you-can-still-win-an-ipod-shuffle/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 18:28:42 +0000</pubDate>
		<dc:creator>Ludovic</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/08/24/motigo-survey-reloaded-you-can-still-win-an-ipod-shuffle/</guid>
		<description><![CDATA[Due to the amazing amount of people participating in the survey (aren&#8217;t you fantastic!) we quickly reached the target we had set. To popular demand we have decided to reopen the survey so all of you who couldn&#8217;t participate can now click on the link again (in the admin_interface) and hopefully get one of the [...]]]></description>
			<content:encoded><![CDATA[<p>Due to the amazing amount of people participating in the survey (aren&#8217;t you fantastic!) we quickly reached the target we had set. To popular demand we have decided to reopen the survey so all of you who couldn&#8217;t participate can now click on the link again (in the admin_interface) and hopefully get one of the iPod shuffle we will be giving away!</p>
<p>You can jump there directly at <a href="http://motigo.com/account/home">my-account</a>.<br />
 or create an account to participate! <a href="http://motigo.com/account">signup!</a></p>
<p>All in all the survey will be giving us a very clear picture of what you, the motigo-ers, wants to see? What product is for you the missing link to really turn motigo into a workable, practical and interesting environment. The survey will also give you some clues on what we are thinking should come next.</p>
<p>Indeed we know there is still quite some work to do but this is one of the many steps we will take with you. We have opened a new communication channel and we hope you will use the opportunity to reach us!</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/08/24/motigo-survey-reloaded-you-can-still-win-an-ipod-shuffle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Designing events view in motigo calendars</title>
		<link>http://devblog.motigo.com/2007/08/15/designing-events-view-in-motigo-calendars/</link>
		<comments>http://devblog.motigo.com/2007/08/15/designing-events-view-in-motigo-calendars/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 14:51:04 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[How we work]]></category>

		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/08/15/designing-events-view-in-motigo-calendars/</guid>
		<description><![CDATA[As we had built the recently launched motigo calendar, we quickly realized how important the events view was. You can add events to your calendar in two ways. One is subscribing to a news feed, the other is through the events overview page.
The events view is the page where all of your own events are [...]]]></description>
			<content:encoded><![CDATA[<p>As we had built the <a href="http://devblog.motigo.com/2007/08/09/launch-motigo-calendars/">recently launched</a> <a href="http://motigo.com/about/calendars">motigo calendar</a>, we quickly realized how important the events view was. You can add events to your calendar in two ways. One is subscribing to a news feed, the other is through the events overview page.</p>
<p>The events view is the page where all of your own events are listed (feed-events aren&#8217;t listed here, as you cannot edit them). The list provides edit links, so that you can alter the details of your already added events. So the primary purpose of the event view is to let the user browse through all of his events in a quick way, in order to find the exact event the user is looking for.</p>
<p>The peculiar thing about a calendar is, that you can both have events in the future and in the past. The most relevant events for the user will most likely be centered around today&#8217;s date, and not in one of the extremes: past or future. This also means that it does not make sense to sort events by their extremes (by the event with the oldest date or by the event with the most future date), but rather by the center: today.</p>
<p><img src="/uploads/calendar_events_redesign/events-version1.jpg"></p>
<p>At first we had just chosen to list the events ordered by id - that is ordered by creation time. This would put the most recent added events on top, and thus provide feedback for the user to let him know that his event has been added (as he could see his newly added event on the list). For feedback purposes, this list worked great. But if you wanted to find that specific event you to either edit or delete, the browsing through pages of events sorted by creation date was not acceptable. You could of course search for the event, but then you would need to know what the title of it was.</p>
<p>Ordering the events by start date does not make sense in itself either. The most relevant event is not one that starts in 2012 and not one that happened in 1995.</p>
<p>When looking for a specific event, you always know that it either hasn&#8217;t happened yet (in the future) or that it already happened (in the past).</p>
<p>Introducing today&#8217;s date as the center of the events view:</p>
<p><img src="/uploads/calendar_events_redesign/events-version2-unfolded.jpg"></p>
<p>Adding today as the center means that you can know browse in two directions: either further back in the past or further ahead in the future. We therefore introduced two paginations: One for pages in the future and one for the past.</p>
<p>This view works much better as the most relevant events (the ones closest to now) will always be shown on the base page of the events view. You can then choose to browse toward either of the extremes (past or future).</p>
<p>Having to pagination directions is all nice, but if you haven&#8217;t filled your calendar up with that many events yet, you don&#8217;t want to be bothered with  information about how you can browse the future or past- you just want the few events you have to be shown. </p>
<p><img src="/uploads/calendar_events_redesign/events-version3.jpg"></p>
<p>So the last thing we added was that. The fancy pagination arrows in the left margin are hidden when you just start and will get shown once you have use for them.</p>
<p>We also added the capability of looking up a specific date as a nice shortcut to finding the events you are exactly sure when is.</p>
<p>Developing software is not always straight forward, if you want to deliver a nice user experience as well. We hope that his insight into how we conduct <a href="http://en.wikipedia.org/wiki/Iterative_and_incremental_development">iterative development</a> will help you continue your progress in developing the perfect website of your own.</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/08/15/designing-events-view-in-motigo-calendars/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Launch: Motigo calendars</title>
		<link>http://devblog.motigo.com/2007/08/09/launch-motigo-calendars/</link>
		<comments>http://devblog.motigo.com/2007/08/09/launch-motigo-calendars/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 14:57:04 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Motigo updates]]></category>

		<category><![CDATA[New features]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/08/09/launch-motigo-calendars/</guid>
		<description><![CDATA[We are very happy to announce the Launch of motigo calendars! It is the first stand-alone product that we have developed ourselves from scratch, and we are more than happy with the result. If you don&#8217;t have an account yet, then sign up for a free account and give it a go.
Creating the calendar has [...]]]></description>
			<content:encoded><![CDATA[<p>We are very happy to announce the Launch of <a href="http://motigo.com/about/calendars">motigo calendars</a>! It is the first stand-alone product that we have developed ourselves from scratch, and we are more than happy with the result. If you don&#8217;t have an account yet, then <a href="http://motigo.com/signup">sign up for a free account</a> and give it a go.</p>
<p>Creating the calendar has been a great example of constrained based development. With only very little time to develop the application, we had to make vital decisions on what our new application was to do and what it was not going to do. The constraints turned out to be a blessing in that it kept our heads focused on exactly what is important for our product for it to work: it has swept the unimportant nice-to-haves away from the must-haves and secured a simple and non-bloated product.</p>
<p>The calendar is really an ordinary calendar application with two views: an administration area that is only accessible for the owner of the calendar (a motigo user), and a public version, which is visible to everybody. The public version of the calendar would <a href="http://2.calendars.motigo.com">look like this</a>.</p>
<p>But it is not <i>only</i> a web calendar. The motigo calendar has two very intersting features:</p>
<ul>
<li><b>Import of RSS feeds</b><br />
If you have a blog, a flickr stream, or whatever kind of web content that streams as an RSS feed, you can import it into your calendar. You can also import several feeds into your calendar in order to use it as a feed reader. The possiblities are many!
</li>
<li><b>Include a small version of the calendar on your own page</b><br />
If you have a homepage on your own domain - or just another domain that motigo.com, but still want dynamic content directly inside your page&#8217;s main view, then the motigo calendar will help you out. Ad dynamic calendar content directly to your page, like you would add a banner ad.</li>
</ul>
<p>
Now - enough reading - go play around with it!</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/08/09/launch-motigo-calendars/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New product requests?</title>
		<link>http://devblog.motigo.com/2007/06/28/new-product-requests/</link>
		<comments>http://devblog.motigo.com/2007/06/28/new-product-requests/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 07:14:01 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[Upcoming features]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/06/28/new-product-requests/</guid>
		<description><![CDATA[At motigo.com we are always thinking about what new features and what products we want to create for you. But although we have many ideas of our own, we would love to hear from you what you would fancy the most.
Would you like to have a new blog for your site, to be able to [...]]]></description>
			<content:encoded><![CDATA[<p>At motigo.com we are always thinking about what new features and what products we want to create for you. But although we have many ideas of our own, we would love to hear from you what you would fancy the most.</p>
<p>Would you like to have a new <b>blog</b> for your site, to be able to easily insert <b>polls</b> into your site. How about a new <b>calendar</b>?</p>
<p>The possibilities are endless!</p>
<p>What new products would you most like to see from motigo.com in the future?</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/06/28/new-product-requests/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Motigo search launched</title>
		<link>http://devblog.motigo.com/2007/06/25/motigo-search-launched/</link>
		<comments>http://devblog.motigo.com/2007/06/25/motigo-search-launched/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 09:18:51 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Motigo updates]]></category>

		<category><![CDATA[New features]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/06/25/motigo-search-launched/</guid>
		<description><![CDATA[We just launched a new part of our site called motigo search. Hurray! 
In the last few weeks, we have been in a steady stream of solid updates to the motigo website in general. We have come a long way since we started in March earlier this year.
This time we added search capabilities to motigo. [...]]]></description>
			<content:encoded><![CDATA[<p>We just launched a new part of our site called <a href="http://motigo.com/search">motigo search</a>. Hurray! </p>
<p>In the last few weeks, we have been in a steady stream of solid updates to the motigo website in general. We have come a long way since we started in March earlier this year.</p>
<p>This time we added search capabilities to motigo. The &#8220;motigo search&#8221;:http://motigo.com/search has been born.</p>
<p>Now you can search the web for pictures and video to reference in your blog posts or in your forum discussions. We feel that we by that have a superior product to many competitors. The search also allows your to search our &#8220;webstats&#8221;:http://webstats.motigo.com counter catalogue. </p>
<p>The future will call for a full motigo service search, but as we felt the described update in itself provided enough significant value to our users to stand on its own, we decided to push out the search capabilities as they are now in their early state.</p>
<p>Please go try it out and let us know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/06/25/motigo-search-launched/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New account overview</title>
		<link>http://devblog.motigo.com/2007/06/15/new-account-overview/</link>
		<comments>http://devblog.motigo.com/2007/06/15/new-account-overview/#comments</comments>
		<pubDate>Fri, 15 Jun 2007 09:11:55 +0000</pubDate>
		<dc:creator>Anders Toxboe</dc:creator>
		
		<category><![CDATA[How we work]]></category>

		<category><![CDATA[Usability]]></category>

		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Motigo updates]]></category>

		<category><![CDATA[New features]]></category>

		<guid isPermaLink="false">http://devblog.motigo.com/2007/06/15/new-account-overview/</guid>
		<description><![CDATA[Things are really starting to get better at motigo!
We are very happy to announce the launch of the new account overview. A feature that was both widely requested, but also extremely important in bringing the motigo services together.
When we first launched motigo in the end of March this year, the most important thing for us [...]]]></description>
			<content:encoded><![CDATA[<p>Things are really starting to get better at motigo!<br />
We are very happy to announce the launch of the new account overview. A feature that was both widely requested, but also extremely important in bringing the motigo services together.</p>
<p>When we first launched motigo in the end of March this year, the most important thing for us was just to get motigo up and running. It is now - a few months later - that we can actually start to tweak motigo into being what we actually want. The new account overview and the recent &#8220;frontpage redesign&#8221;:http://devblog.motigo.com/2007/06/04/redesigning-the-frontpage-step-2/ are some of the more visual steps we have taken in this direction.</p>
<p>As usual, we will give you an insight into the design process.</p>
<p>As opposed to earlier redesigns, we actually didn&#8217;t have anything to redesign! The account overview has been non-existent until now. We wanted the new page to fulfill a list of things:</p>
<ul>
<li>First of all, the overview should bring all motigo services together: giving an overview</li>
<li>The page should function as the natural &#8220;home page&#8221; - the page you always end up on when you want to do something new</li>
<li>We wanted as much of motigo to be accessible from only one page</li>
<li>We wanted to communicate the colour scheme of motigo, where each service has its own color</li>
</ul>
<p>
Our first thought was to reuse the toolboxes we have so far used for the forum/guestbook/shorturl admin pages as these had the color of the respective service in the header. The result came to look like this:</p>
<p><a href="/uploads/new-landing-page/proposal-1.jpg" title="Account overview - proposal 1"><img src="/uploads/new-landing-page/proposal-1-small.jpg" alt="Account overview - proposal 1" /></a></p>
<p>We chose to take the approach of designing everything straight and only in HTML instead of taking the usual photoshop way that many designers choose. Doing the design in HTML only gave us several benefits:</p>
<ul>
<li>The actual interface is at the center of the attention at first. There is no spec: the interface is the spec.</li>
<li>An interface is not a wireframe that we can just slice up and magically transform into an HTML document. Neither is it a photoshop mockup.</li>
<li>Creating a mock-up of the interface in photoshop will produce a design that matches the constraints of photoshop - not the constraints of HTML. We should therefore &#8220;embrace the constraints&#8221;:http://gettingreal.37signals.com/ch03_Embrace_Constraints.php of HTML.</li>
<li>When we build it only in HTML, we can actually use real and live data while building the design. This helps surfacing problems that photoshop would otherwise hide</li>
<li>The interface is at life from start. You can click it, try it out, and feel it.</li>
<li>You will get something that works very soon in the design process</li>
<li>There is no monster integration in the end.</li>
</ul>
<p>Although the new and colorful proposal was better than anything we had before (we didn&#8217;t have anything) - it was too much. Too colorful and tivoli like. Plus - the boxes approach to showing each service did not always line up nicely, when a user had services in one category than the other.</p>
<p>The next approach was to list the services in one big list and now side-by-side. We removed the colorful header of each service and give it a more settled look:<br />
<img src="/uploads/new-landing-page/new-layout-1.gif" alt="Account overview - proposal 2.1" /></p>
<p>This however proved to be a little too settled. This meant that we didn&#8217;t get to indicate any of the colors of the services. So we added a little bit of color:<br />
<img src="/uploads/new-landing-page/new-layout-2.gif" alt="Account overview - proposal 2.2" /></p>
<p>Again - this was too much. The final solution would be just to have a small box indicating the color of the service:<br />
<img src="/uploads/new-landing-page/new-layout-3.gif" alt="Account overview - proposal 2.2" /></p>
<p>We also wanted to add several things to the overview page, so that the user would go there as a natural thing to find just the information he wanted to see. These things included basic information about the logged in user: his name and email, but also the current time in the timezone he had selected. As we have users in many different countries, setting the timezone of your account has huge importance as it will determine the time of your forums and guestbooks as well as the base time in your statistics. We also added links to often used and important documents such as FAQs, terms of service, and of course the developer blog ;-).<br />
All this provided the necessary detail to make the Account overview feel like a real motigo home&#8230;</p>
<p><img src="/uploads/new-landing-page/toolbox.gif" alt="Account overview - toolbox with account links" /></p>
<p>Along with the overview, we&#8217;ve also added a toolbox that is placed in the same spot on all admin pages, so that you can always find your way to the most important pages of motigo.com. This continuity was greatly missed in the old version of motigo, why we are relieved that we finally got it online.</p>
<p><img src="/uploads/new-landing-page/searchbox.gif" alt="Searchbox" /></p>
<p>We also got rid of the top bar with the list of our services, as we now have this list a more natural place: in the account overview. Instead we added a search bar that we plan on expanding to be able to do more in the near future.</p>
<p>We really hope that the newest updates has helped your experience of motigo.com. We are extremely happy about the release ourselves and hope that you will be as well.</p>
<p>Now, go enjoy the new &#8220;motigo&#8221;:http://motigo.com</p>
<p><a href="/uploads/new-landing-page/new-layout-big.jpg" title="Account overview - end result"><img src="/uploads/new-landing-page/new-layout-small.jpg" alt="Account overview - end result" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://devblog.motigo.com/2007/06/15/new-account-overview/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
