<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Marker Studio - Full Service Digital Agency &#187; Technology</title>
	<atom:link href="http://www.markerstudio.com/tag/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markerstudio.com</link>
	<description>Full Service Digital Agency</description>
	<lastBuildDate>Tue, 17 Jan 2012 19:05:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Facebook Places Launched</title>
		<link>http://www.markerstudio.com/marketing/2010/08/facebook-places-launched/</link>
		<comments>http://www.markerstudio.com/marketing/2010/08/facebook-places-launched/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 05:16:19 +0000</pubDate>
		<dc:creator>Evan Mather</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=2621</guid>
		<description><![CDATA[Right now, Facebook is launching Facebook places. An app for your iphone, and eventually other devices such as Android, where you can share through Facebook where you are by &#8220;checking in&#8221;. Find out what and who is around you. The idea is that your Facebook friends will know where you are and, if they happen [...]]]></description>
			<content:encoded><![CDATA[<p>Right now, Facebook is launching Facebook places. An app for your iphone, and eventually other devices such as Android, where you can share through Facebook where you are by &#8220;checking in&#8221;. Find out what and who is around you. The idea is that your Facebook friends will know where you are and, if they happen to also be nearby, then why not meet up? Or if you are at a place where you just need to let all your friends know that you are there, then this is the product for you!</p>
<p>If you are a user of <a rel="nofollow" href="http://foursquare.com/" target="_blank">foursquare</a> then you are already using what is essentially a location-based tagging application.</p>
<p>Places is rolling out in the US before anywhere else so until further notice we will just have to continue typing in where we are.</p>
<p>Read more about it at <a rel="nofollow" href="http://www.facebook.com/places/" target="_blank">Facebook Places</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/marketing/2010/08/facebook-places-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.Net Custom Error Pages, Response Status Codes and skipping IIS 7.0 Custom Errors</title>
		<link>http://www.markerstudio.com/technical/2010/03/asp-net-custom-error-pages-response-status-codes-and-skipping-iis-7-0-custom-errors/</link>
		<comments>http://www.markerstudio.com/technical/2010/03/asp-net-custom-error-pages-response-status-codes-and-skipping-iis-7-0-custom-errors/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 04:13:52 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=2274</guid>
		<description><![CDATA[unable to get asp.net custom error pages behaving with the correct status codes on a target IIS7 Server, read this to learn more...]]></description>
			<content:encoded><![CDATA[<p>In ASP.Net, you can configure custom errors via configuration something as follows for a production environment:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;customErrors mode=&quot;Off&quot; defaultRedirect=&quot;/system/error/&quot;&gt;
  &lt;error statusCode=&quot;403&quot; redirect=&quot;/system/access-denied/&quot; /&gt;
  &lt;error statusCode=&quot;404&quot; redirect=&quot;/system/error-404/&quot; /&gt;
&lt;/customErrors&gt;
</pre>
<p>For the corresponding /system/error-404/ aspx page template we had code as follows to make sure the page template did not return a 200 status code which it does by default (which doesn&#8217;t look too good on traffic analysis reports).</p>
<pre class="brush: csharp; title: ; notranslate">Response.StatusCode = 404;</pre>
<p>However, in IIS 7.0 if you set this, then IIS 7.0 custom errors take over and you will get a stock standard IIS 404 page, which is pretty annoying seeing as you&#8217;ve gone to all that trouble to make your custom error page!</p>
<p>So, this little workaround/hack is available on the response:</p>
<pre class="brush: csharp; title: ; notranslate">Response.TrySkipIisCustomErrors = true;</pre>
<p>This allows you to set the status code on your custom asp.net error page and avoid IIS getting tangled up in the response leaving your lovely custom error page intact, hooray!</p>
<p>Important: It should be noted by developers that this problem only appears when you deploy code away from your development machine as the IIS Error Pages feature disables enforces it&#8217;s own custom error pages for remote access to IIS by default.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/technical/2010/03/asp-net-custom-error-pages-response-status-codes-and-skipping-iis-7-0-custom-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submit once asp.net buttons with validation group support</title>
		<link>http://www.markerstudio.com/technical/2009/11/submit-once-asp-net-buttons-with-validation-group-support/</link>
		<comments>http://www.markerstudio.com/technical/2009/11/submit-once-asp-net-buttons-with-validation-group-support/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 08:19:07 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=2112</guid>
		<description><![CDATA[Got buttons you don’t want the user to click twice, want to disable them site-wide and have support for .net validation groups? Here’s the code, we use a class to do the selection and the rel attribute to help define the validation group so we can only hide the button if the form has been [...]]]></description>
			<content:encoded><![CDATA[<p>Got buttons you don’t want the user to click twice, want to disable them site-wide and have support for .net validation groups?</p>
<p>Here’s the code, we use a class to do the selection and the rel attribute to help define the validation group so we can only hide the button if the form has been validated successfully.</p>
<p>&lt;asp:Button ID=&#8221;btnProceed&#8221; runat=&#8221;server&#8221; <strong>CssClass=&#8221;submit-once&#8221;</strong> rel=&#8221;UserProfile&#8221; ValidationGroup=&#8221;UserProfile&#8221;  Text=&#8221;Proceed&#8221; OnClick=&#8221;btnProceed_Click&#8221;  /&gt;</p>
<p>And here&#8217;s the sprinkling of jquery you will need (stick it in you base master page for example).</p>
<p>$(document).ready(function() {</p>
<p>// ensure that buttons are only clicked once with this class</p>
<p>$(&#8220;.submit-once&#8221;).click(function() {</p>
<p>if (Page_ClientValidate($(this).attr(&#8220;rel&#8221;))) {</p>
<p>$(this).after(&#8220;Please wait..&#8221;).hide();</p>
<p>}</p>
<p>});</p>
<p>});</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/technical/2009/11/submit-once-asp-net-buttons-with-validation-group-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kentico Cultures Demystified</title>
		<link>http://www.markerstudio.com/technical/2009/11/kentico-cultures-demystified/</link>
		<comments>http://www.markerstudio.com/technical/2009/11/kentico-cultures-demystified/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 00:28:58 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Kentico]]></category>
		<category><![CDATA[multilingual]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markerstudio.com/?p=2099</guid>
		<description><![CDATA[The Kentico CMS Developers guide provides good information on how to configure a multilingual site, however it does not seem to provide a quick reference on how to set up and configure the default UI and content cultures in one document.]]></description>
			<content:encoded><![CDATA[<p>The Kentico CMS Developers Guide provides good information on how to configure a multilingual site, however it does not seem to provide a quick reference on how to set up and configure the default User Interface (UI) and content cultures in one document.</p>
<h3>Culture Options – UI and Content Cultures</h3>
<p>The Administration &gt; Users section allows the setting of the Preferred content culture and the Preferred user interface culture. These values normally set at (default) but what does all this actually mean?</p>
<p><em>It is recommended to not explicitly set the culture for users and to let the defaults be used. Unless a user explicitly wishes to override, assuming this culture is supported.</em></p>
<h3>Content Culture</h3>
<p>Content cultures determine the actual content culture stored against Kentico documents as they are saved. If you have a multilingual site there are multiple documents stored for each culture against a single ‘node’.</p>
<p><strong>N.B</strong><em> There is always a default content culture for a Kentico site. </em></p>
<h4>List of all content cultures</h4>
<p>The available list of all available content cultures are at Site Manager &gt; Development &gt; Cultures. All major cultures are provided here and you shouldn’t need to modify this list.</p>
<h4>Setting the default content culture</h4>
<p>You can set this in two ways (both have the same effect).</p>
<ul>
<li>Site Manager &gt; Sites &gt; [Site Instance] &gt; Default content culture</li>
<li>Site Manager -&gt; Settings -&gt; (select site) -&gt; Web site -&gt; Default culture of the content</li>
</ul>
<p>What this means is that the default culture for all documents will be this value (e.g. en-NZ). If a user has (default) saved against their ‘Preferred content culture’ they will then see the default content culture for the Site they are viewing if they are logged in.</p>
<p><em>The default content culture should be set first in any Kentico implementation.</em></p>
<h4>Setting the default visitor culture</h4>
<p>You can set this in the following ways:</p>
<ul>
<li>Site Manager &gt; Sites &gt; [Site Instance] &gt; Default visitor culture</li>
<li>Site Manager &gt; Sites &gt; [Site Instance] &gt; Domain Aliases &gt; [Domain Alias Instance] &gt; Default visitor culture</li>
</ul>
<p>What this means is, if a user comes to the site anonymously, this is the culture that will be used by default to display to visitors and this can be managed on a domain alias level also.</p>
<p>For a site without multilingual capabilities it would normally be the same as the default content culture, but one may wish to have a French version of a site under a different domain in which case the default visitor culture setting would be set to French.</p>
<p>If this is not set, then the user’s browser settings will be used to determine the default visitor culture.</p>
<p><em>It is recommended that the default visitor culture always be set to match the default content culture by default.</em></p>
<p>Site manage &gt; Sites &gt; [Site Instance] &gt; Cultures</p>
<p>This section allows you to set all the cultures that are being supported for a particular Kentico site. Note that this will affect the selectable cultures from within the cmsdesk administration interface for a particular website.</p>
<p><em>It is recommended that these  values always be explicitly set when setting up a Kentico instance. If not a multilingual site allow only a single culture which matches the supported default content culture.</em></p>
<h3>UI Culture</h3>
<p>The UI Culture is the culture of the CMSDesk administration interface. Out of the box (OOTB), Kentico uses en-us (US English).</p>
<p>UI Cultures are stored within Site Manager &gt; Development &gt; UI Cultures. You will see there is an ‘English’ option, but this actually corresponds to en-us (US English). If you want to allow users to select between this and UK English for example within CMSDesk you should create a new UI Culture called English (NZ) and set the code to en-NZ.</p>
<p>If a user has (default) saved against their ‘Preferred user interface culture’ they will then see the CMS Desk interface using the culture defined in the AppSetting.config file for that website (there doesn’t appear to be a corresponding value within Site Manager). This value should be set to a sensible default to avoid users having to change it themselves. For a site managed from New Zealand it should be:</p>
<p>&lt;add key=&#8221;CMSDefaultUICulture&#8221; value=&#8221;en-NZ&#8221;/&gt;</p>
<p><em>It is recommended that this value always be explicitly set when setting up a Kentico instance. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/technical/2009/11/kentico-cultures-demystified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Wars &#8211; Episode II</title>
		<link>http://www.markerstudio.com/technical/2008/09/browser-wars-episode-ii/</link>
		<comments>http://www.markerstudio.com/technical/2008/09/browser-wars-episode-ii/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 21:33:52 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Events & Presentations]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.markerstudio.com/?p=500</guid>
		<description><![CDATA[It is time for this month&#8217;s Auckland Web Meet Up on Thursday 11th September at 6pm and I&#8217;m really looking forward to it. I have had to miss the last two events, however, this one looks like it will make up for that. A very brave guy from Microsoft&#8217;s Internet Explorer team in Redmond will [...]]]></description>
			<content:encoded><![CDATA[<p>It is time for this month&#8217;s <a href="http://webdesign.meetup.com/108/calendar/8542022/">Auckland Web Meet Up</a> on Thursday 11th September at 6pm and I&#8217;m really looking forward to it. I have had to miss the last two events, however, this one looks like it will make up for that.</p>
<p>A very brave guy from Microsoft&#8217;s Internet Explorer team in Redmond will be presenting the upcoming IE8 browser, followed by Robert O&#8217;Callahan from the Auckland Mozilla team that are working on the next version of Firefox. I&#8217;m impressed that Microsoft are doing this and I hope that the open source guys don&#8217;t give him too much trouble!</p>
<p>The agenda was set before anyone even knew about Google&#8217;s Chrome browser. 2008 is going to be the year of major browser releases and the implications for the web dev community are massive. I highly recommend making the effort to come along to this one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/technical/2008/09/browser-wars-episode-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Growing Old In The Internet Generation</title>
		<link>http://www.markerstudio.com/marketing/2008/09/growing-old-in-the-internet-generation/</link>
		<comments>http://www.markerstudio.com/marketing/2008/09/growing-old-in-the-internet-generation/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 11:10:47 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[growing old in the internet generation]]></category>
		<category><![CDATA[Irrelevant]]></category>
		<category><![CDATA[keeping up to date]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web 2.0 guides]]></category>

		<guid isPermaLink="false">http://blog.markerstudio.com/?p=499</guid>
		<description><![CDATA[Over the last few years there have been 3 things worrying me in the back of my mind: Will I stop being cool when I get old? Will I lose my hair when I get old? Will I lose touch with new technologies when I get old? I think its a safe bet to say [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last few years there have been 3 things worrying me in the back of my mind:</p>
<ol>
<li>Will I stop being cool when I get old?</li>
<li>Will I lose my hair when I get old?</li>
<li> Will I lose touch with new technologies when I get old?</li>
</ol>
<p>I think its a safe bet to say I will never stop being cool, so forget that. Loosing my hair is inevitable (thanks Dad), however there are drugs and a number of rad hats to fix this. So this just leaves our last problem&#8230;</p>
<p>Over the years I was known as the tech kid. Not only was I more up to date than Vista Service Pack 1 (Oh wait..) but I could explain it all to you in a language that didn&#8217;t sound like a mixture of cling-on and C++. And if I didn&#8217;t know it? I would have had it learned before the next time we met.</p>
<p>However over the last few weeks at the ripe old age of 20 I have noticed myself slowing down. With paying bills, cleaning my own house, collecting records that shaped my childhood and trying to finish my friggin degree (stop laughing Jon), the bright lights and shiny icons of a new web tool or the latest OS X update don&#8217;t seem to get me as excited as they used to.</p>
<p>They say eventually you become, or at least have traits of what your parents are, and looking at my Dad I can see the pending doom. Once the ultimate nerds nerd, owning one of the first personal computers in South Africa he too was also on the constant quest for the coolest and fastest tech equipment. Now not to say my Dad has lost any of this, he still keeps up to date with everything going on and even out guns me on the latest release of whatever, but I have noticed him slipping into what I like to call the <strong>&#8220;I-don&#8217;t-really-care-that-much-about-the-newest-release&#8221;</strong> syndrome. A couple weeks after gifting him a brand new iPod Touch, I noticed it still sitting in his car, not really doing much. When I asked him about this he simply said &#8220;I don&#8217;t like or get iTunes, I like having all my mp3&#8242;s in a folder and my current mp3 software (Winamp&#8230; cringe)&#8221;.</p>
<p>I then started to notice this in myself. With half our office now sporting brand new iPhones (I&#8217;m not even on the 3G model yet), there is constant talk about what cool apps can do this or that. From emulating a light saber to making a monkey run in a ball around a track, there is everything. As cool as all of this is, all I could think was, &#8220;You paid money for this?&#8221;</p>
<p>A prime example of my slipping into this syndrome was with the release of Google&#8217;s <a href="http://www.google.com/chrome">Chrome</a> browser.</p>
<p>Firstly, I didn&#8217;t even know about it until a few hours before its release which shocked me. Secondly, I just didn&#8217;t really care. Sure, I downloaded the beta. Sure, I even booted up VMWare Fusion and gave it a whirl. But after 10 minutes in, all I could think was that Firefox and Safari do everything I want, and none of these supposed new things really had me Googling up hacks or articles on it. Maybe this is just what growing old is about? I will have to confer with more senior members of staff.</p>
<p>Don&#8217;t get me wrong, I will always stay current with whatever is going on in the industry and blogesphere and probably out nerd the best, but I put this up as a warning. Internet superstar kids beware &#8211; you will eventually become a victim of the <strong>&#8220;I-don&#8217;t-really-care-that-much-about-the-newest-release&#8221;</strong> syndrome. I do however offer some advice for those of you who are currently at this point, or long past it:</p>
<p>1) Load up your RSS reader with all of the latest and greatest blogs (you&#8217;ll find they all link to each other some how). Even if you don&#8217;t read everything in there, you can at least glance at the headlines and pretend you&#8217;ve heard about it when confronted by fellow nerds.</p>
<p>2) Latch onto a more enthusiastic and up to date nerd (I, for example, have chosen Calvin) and leech all information from them. In fact, keep them close at hand so that when you do find yourself in a tight spot at the latest Web Meet Up you have your wing man to save your ass.</p>
<p>3) Get an iPhone and have the Google search icon front and center on your screen. That way when you hear the internet elite throwing around terms you&#8217;ve never heard before, you can do a quick Google search while pretending to update your Twitter status and carry on the conversation like you&#8217;ve been coding Ruby on Rails your whole life.</p>
<p>Take these lessons and go forward with confidence. Next time you see me I&#8217;ll be balding and sporting a nice tartan cardigan.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/marketing/2008/09/growing-old-in-the-internet-generation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Text Message from the Pope</title>
		<link>http://www.markerstudio.com/uncategorized/2008/05/a-text-message-from-the-pope/</link>
		<comments>http://www.markerstudio.com/uncategorized/2008/05/a-text-message-from-the-pope/#comments</comments>
		<pubDate>Thu, 08 May 2008 05:40:22 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Measurable Marketing]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[pope]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[text message]]></category>

		<guid isPermaLink="false">http://blog.markerstudio.com/?p=479</guid>
		<description><![CDATA[This is what thousands of attendees will be receiving daily over the 6-day World Youth Day event held in Australia. I&#8217;m not Catholic but think it&#8217;d be truly epic to receive a text message from God&#8217;s spokesperson. &#8220;We wanted to make WYD08 a unique experience by using new ways to connect with today&#8217;s tech-savvy youth,&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://localhost:8888/wp-content/uploads/2008/05/pope.jpg'><img src="http://blog.markerstudio.com/wp-content/uploads/pope-201x300.jpg" alt="" title="pope" width="201" height="300" class="alignnone size-medium wp-image-480" /></a><br />
This is what thousands of attendees will be receiving daily over the 6-day World Youth Day event held in Australia. I&#8217;m not Catholic but think it&#8217;d be truly epic to receive a text message from God&#8217;s spokesperson.</p>
<blockquote><p>&#8220;We wanted to make WYD08 a unique experience by using new ways to connect with today&#8217;s tech-savvy youth,&#8221; Bishop Anthony Fisher said in a statement on Wednesday. </p></blockquote>
<p>Via <a href="http://www.reuters.com/article/technologyNews/idUSSYD19071020080507?feedType=RSS&#038;feedName=technologyNews" target="new">Reuters</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/uncategorized/2008/05/a-text-message-from-the-pope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Handy Dandy Data Duplicating Blue Box</title>
		<link>http://www.markerstudio.com/uncategorized/2008/04/the-handy-dandy-data-duplicating-blue-box/</link>
		<comments>http://www.markerstudio.com/uncategorized/2008/04/the-handy-dandy-data-duplicating-blue-box/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 20:47:53 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tool]]></category>

		<guid isPermaLink="false">http://blog.markerstudio.com/archives/468</guid>
		<description><![CDATA[The HDDDBB, if you will. Nexcopy&#8217;s USB Duplicator, the USB200PC, will most definitely be on my Christmas list this year. I can&#8217;t count the amount of times I&#8217;ve stayed up late copying movies, TV shows and music to friends USB drives till the wee hours of the morn. Now I don&#8217;t have to! Besides being [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="usb200.jpg" id="image467" src="http://localhost:8888/wp-content/uploads/2008/04/usb200.jpg" /></p>
<p>The HDDDBB, if you will.</p>
<p>Nexcopy&#8217;s USB Duplicator, <a target="_blank" href="http://www.nexcopy.com/usb-duplicator-pc-based/">the <strong>USB200PC</strong></a>, will most definitely be on my Christmas list this year.  I can&#8217;t count the amount of times I&#8217;ve stayed up late copying movies, TV shows and music to friends USB drives till the wee hours of the morn. Now I don&#8217;t have to! Besides being completely useful, it&#8217;s design is something out of the <a target="_blank" href="http://en.wikipedia.org/wiki/The_Jetsons">Jetsons</a>. Very <a target="_blank" href="http://en.wikipedia.org/wiki/Retro-futurism">retro-futuristic</a>.</p>
<p>And I supposed its good for large companies who distribute portable data to customer and employees as well.</p>
<p>via <a target="_blank" href="http://www.ohgizmo.com/2008/03/21/copy-up-to-20-flash-drives-at-once/">Oh Gizmo</a>
</p>
<p><!--5aa39a3404b4f6a9913767c166c012a7-->
</p>
<p><!--c818fc2d6d482bfafc10f0cd6afdd18f-->
</p>
<p><!--21096a58abca3d8eda2f006a0dbaeeaa-->
</p>
<p><!--6e5866e6dac4f964972e1a993003a08a--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/uncategorized/2008/04/the-handy-dandy-data-duplicating-blue-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does technology control my life?</title>
		<link>http://www.markerstudio.com/uncategorized/2008/03/does-technology-control-my-life/</link>
		<comments>http://www.markerstudio.com/uncategorized/2008/03/does-technology-control-my-life/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 00:38:53 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.markerstudio.com/archives/461</guid>
		<description><![CDATA[In an industry like ours technological know how and early adoption is a must. But the result of this can sometimes be a technology overload. I have often cracked the joke about my boss (not too smart on my part) being overloaded with gadgets, from his I Phone to bluetooth headset, multiple chat accounts and [...]]]></description>
			<content:encoded><![CDATA[<p>In an industry like ours technological know how and early adoption is a must. But the result of this can sometimes be a technology overload.</p>
<p>I have often cracked the joke about my boss (not too smart on my part) being overloaded with gadgets, from his I Phone to bluetooth headset, multiple chat accounts and an addiction to Twitter. The result of this is that he is wired everywhere and in constant reach.</p>
<p><img src="http://blog.markerstudio.com/wp-content/uploads/Photo%2024.jpg" width="480" height="360" alt="Photo 24.jpg" /></p>
<p>I come to write about this on the day my Blackberry has finally given up the ghost. At first I was a little bothered by the loss of my device and the convenience it had brought me. For those not familiar with the Blackberry it is a phone that receives emails as well. The result of this technology is that you are available at all times.</p>
<p>Not having the blackberry has made me realise how invasive it was and how I was constantly checking the device waiting for some kind of contact. Rather than being a time saver I actually believe the devices take up more time by acting as a distraction and the time it takes to write an email when you are all thumbs.</p>
<p>I have often heard that technology was supposed to be our saviour and return our sacred time to spend outside of work and with our friends and families. In fact in many ways it has done the opposite, the more we embrace it the blurrier the line becomes between work and home. I have often caught myself writing emails at a dinner party or having my phone on the dining room table while I eat, even checking an email while fishing (You can see where the name Crackberry comes from).</p>
<p>If this sounds like a tirade against technology, it is not, after all I am the proud owner of a Nintega Mega 360. All I am saying is that we do need balance in our lives and need to be able separate our work from our home life a little better</p>
<p>So I suppose as my boss reads this he will be busily ordering me another one or maybe jumping up and down on his bluetooth headset! Freeeddoommm</p>
<p><!--6e6de3ff27155a20eb53db6d34c10419-->
</p>
<p><!--afdeddbdc041a79ff4f0aff0556cf501-->
</p>
<p><!--bf71a73de98e60a2d4338751a5353516--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/uncategorized/2008/03/does-technology-control-my-life/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple vs. Hackers</title>
		<link>http://www.markerstudio.com/uncategorized/2008/03/apple-vs-hackers/</link>
		<comments>http://www.markerstudio.com/uncategorized/2008/03/apple-vs-hackers/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 23:24:15 +0000</pubDate>
		<dc:creator>Marker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.markerstudio.com/archives/445</guid>
		<description><![CDATA[Steve Jobs has announced today their official support for third-party applications on the iPhone. Along with this comes support for push email, Activesync and Exchange support (think Blackberry). Lifehacker.com has the low-down on what this all means: If official third-party app support piques your interest most, Apple delivered with some exciting announcements. First, if you&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Jobs has announced today their official support for third-party applications on the iPhone. Along with this comes support for push email, Activesync and Exchange support (think Blackberry).</p>
<p><img src="http://www.lifehacker.com/assets/resources/2008/03/app-store.png"></p>
<p><a href="http://www.lifehacker.com">Lifehacker.com</a> has the low-down on what this all means:</p>
<blockquote><p>If official third-party app support piques your interest most, Apple delivered with some exciting announcements. First, if you&#8217;ve already jailbroken you iPhone or iTouch and experienced what installing apps is like through the excellent Installer.app, Apple&#8217;s official application management software, called the App Store, works just like Installer.app; it allows you to install, manage, update, or uninstall any application directly from your device, either over EDGE or Wi-Fi. Unlike Installer.app, the official App Store integrates with iTunes so you can also sideload apps through iTunes if you don&#8217;t feel like installing on-the-go. </p>
</blockquote>
<p>Although we could all see this coming, one of the big concerns was whether Apple would start charging for the 3rd party iPhone apps. It turns out that they are leaving that up to the developers, they can choose whether or not to charge for the apps they make.</p>
<p>The App Store won&#8217;t be available till about June, which is when the iPhone 2.0 update is expected as well.</p>
<p>See <a href="http://feeds.gawker.com/~r/lifehacker/full/~3/246952862/iphone-gets-official-third+party-apps-aim-and-enterprise-support">Lifehacker.com</a> for the full story.</p>
<p><!--bf540ebbbedac34aa48bd4b9e3cc7d2e-->
</p>
<p><!--cdf6ec40145419ea7f3368305f666da1--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markerstudio.com/uncategorized/2008/03/apple-vs-hackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

