<?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>blownpixel &#187; Web</title>
	<atom:link href="http://www.blownpixel.co.uk/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blownpixel.co.uk</link>
	<description>it&#039;s a design, tech, stuff thing..</description>
	<lastBuildDate>Fri, 16 Jul 2010 21:56:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>HOW TO: configure Google map application to select and use a valid API key when hosted behind multiple domains?</title>
		<link>http://www.blownpixel.co.uk/2010/06/how-to-configure-google-map-application-to-select-and-use-a-valid-api-key-when-hosted-behind-multiple-domains/</link>
		<comments>http://www.blownpixel.co.uk/2010/06/how-to-configure-google-map-application-to-select-and-use-a-valid-api-key-when-hosted-behind-multiple-domains/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 10:27:36 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=529</guid>
		<description><![CDATA[I had a client that had a .com and a .co.uk domain name both pointing to a single hosted website. Having previously only had the .co.uk domain name I had only included an api key for that domain]]></description>
			<content:encoded><![CDATA[<p>I had a client that had a .com and a .co.uk domain name both pointing to a single hosted website. Having previously only had the .co.uk domain name I had only included an api key for that domain.</p>
<p>When the site was displayed using the .com domain it threw up an invalid api key error.</p>
<p>Here is the fix:</p>
<p>Some applications may be hosted on multiple domains. For example, many content management systems push the same content to different domains (e.g.example.com and example.net) and wish to have that content single-sourced. Since Google Maps API keys are generated per domain, you&#8217;ll need to generate separate keys for each domain and configure your application to use the correct one. The easiest way to do this in JavaScript is to dynamically generate the 
<div class="codesnip-container" >&lt;script&gt;</div>
<p> tag using 
<div class="codesnip-container" >document.write</div>
<p> and assigning the correct domain-specific key within the src attribute&#8217;s URL as a parameter. In doing so, you&#8217;ll need to pre-generate and hardcode the list of keys within your application.</p>
<p>Create an object which contains a mapping between domain names and its corresponding Google Maps API keys. Use 
<div class="codesnip-container" >window.location.host</div>
<p> to retrieve the domain name your application is running against, and pass it into the object to select the appropriate key.</p>
<p>Below is a JavaScript snippet you can copy and paste into your application. Replace property names labeled 
<div class="codesnip-container" >domain*.com</div>
<p> on the left with your list of domains and assign to each entry its corresponding and unique Google Maps API key.</p>
<div class="codesnip-container" >
<div class="javascript codesnip" style="font-family:monospace;">document.<span class="kw1">write</span><span class="br0">&#40;</span><span class="br0">&#91;</span><br />
&nbsp; <span class="st0">&#8216;&lt;script src=&quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=&#8217;</span><span class="sy0">,</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="st0">&#8216;domain1.com&#8217;</span><span class="sy0">:</span> <span class="st0">&#8216;apikey1&#8242;</span><span class="sy0">,</span><br />
&nbsp; &nbsp; <span class="st0">&#8216;domain2.com&#8217;</span><span class="sy0">:</span> <span class="st0">&#8216;apikey2&#8242;</span><span class="sy0">,</span><br />
&nbsp; &nbsp; <span class="st0">&#8216;domain3.com&#8217;</span><span class="sy0">:</span> <span class="st0">&#8216;apikey3&#8242;</span><span class="sy0">,</span><br />
&nbsp; &nbsp; <span class="st0">&#8216;domainN.com&#8217;</span><span class="sy0">:</span> <span class="st0">&#8216;apikeyN&#8217;</span><br />
&nbsp; <span class="br0">&#125;</span><span class="br0">&#91;</span>window.<span class="me1">location</span>.<span class="me1">host</span><span class="br0">&#93;</span><span class="sy0">,</span><br />
&nbsp; <span class="st0">&#8216;&quot; type=&quot;text/javascript&quot;&gt;&lt;<span class="es0">\/</span>script&gt;&#8217;</span><br />
<span class="br0">&#93;</span>.<span class="me1">join</span><span class="br0">&#40;</span><span class="st0">&#8221;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</div>
<p>When using the snippet above, be sure to include it within your HTML document above any script tags or JavaScript containing references to Google Maps API objects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/06/how-to-configure-google-map-application-to-select-and-use-a-valid-api-key-when-hosted-behind-multiple-domains/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ripping Videos from YouTube&#8230;</title>
		<link>http://www.blownpixel.co.uk/2010/04/ripping-videos-from-youtube/</link>
		<comments>http://www.blownpixel.co.uk/2010/04/ripping-videos-from-youtube/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 20:24:24 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Rip]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=475</guid>
		<description><![CDATA[Sounds wrong I know.. but I have had some problems recently having launched on online TV station with organisations only having copies of videos available on YouTube.]]></description>
			<content:encoded><![CDATA[<p>Sounds wrong I know.. but I have had some problems recently having launched on online TV station with organisations only having copies of videos available on YouTube.</p>
<p>It seems that their PR or marketing companies had uploaded the programs and failed to provide a disc of originals to the organisations. The first couple of times this happend I put down to lethargy in the organisations internal marketing departments not wanting to be bothered to send me the files, but after the fifth time it seemed to be a trend.</p>
<p>So I had permission to use the footage but no way of embedding clean visuals without the YouTube logo, I also would much prefer to host and control the footage myself.</p>
<p>There are a few online sites that will rip the video for you and allow you to save it as .FLV or .MP4.</p>
<p>Some examples are:<br />
<a href="http://keepvid.com/">http://keepvid.com/<br />
</a><a href="http://vixy.net/">http://vixy.net/</a></p>
<p><a href="http://vixy.net/"></a>These worked ok but were quite slow and wouldn&#8217;t rip the HD versions of the video. After some searching I stumbled across <a href="http://brpg.hp.infoseek.co.jp/mactubes/index_en.html" target="_blank">MacTubes</a>.</p>
<p>This neat little app (yes Mac only I&#8217;m afraid), is free to download and use and works fantastically well. It allows you to search, play and download videos from YouTube even in HD 720p and 1080p versions if they are available.</p>
<p>System requirements:</p>
<ul>
<li>Only for Mac OS X.</li>
<li>Universal binary application supported PowerPC / Intel(R) processor. (Maybe)</li>
<li>Mac OS X 10.4.2 or higher / Mac OS X 10.5 or higher.(Maybe)</li>
<li>Safari 2.0 or higher / Adobe Flash Player Plug-ins 9.0 or higher</li>
</ul>
<p>Download:</p>
<p><a href="http://brpg.hp.infoseek.co.jp/mactubes/index_en.html">http://brpg.hp.infoseek.co.jp/mactubes/index_en.html</a></p>
<p>Screenshots:</p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/overview.jpeg" rel="lightbox[475]" title="overview"><img class="size-medium wp-image-477 aligncenter" title="overview" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/overview-300x211.jpg" alt="" width="300" height="211" /></a></p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/overview.jpeg" rel="lightbox[475]"></a><br />
<a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/gridview.jpeg" rel="lightbox[475]" title="gridview"><img class="size-medium wp-image-482 aligncenter" title="gridview" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/gridview-300x210.jpg" alt="" width="300" height="210" /></a></p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/gridview.jpeg" rel="lightbox[475]"></a><br />
<a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/hdsearch.jpeg" rel="lightbox[475]" title="hdsearch"><img class="size-medium wp-image-483 aligncenter" title="hdsearch" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/hdsearch-300x208.jpg" alt="" width="300" height="208" /></a></p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/hdsearch.jpeg" rel="lightbox[475]"></a><br />
<a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/player.jpeg" rel="lightbox[475]" title="player"><img class="size-medium wp-image-485 aligncenter" title="player" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/player-300x237.jpg" alt="" width="300" height="237" /></a></p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/playhistory.jpeg" rel="lightbox[475]" title="playhistory"><img class="size-medium wp-image-486 aligncenter" title="playhistory" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/playhistory-252x300.jpg" alt="" width="252" height="300" /></a></p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/downloads.jpeg" rel="lightbox[475]" title="downloads"><img class="size-medium wp-image-487 aligncenter" title="downloads" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/downloads-252x300.jpg" alt="" width="252" height="300" /></a></p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/related.jpeg" rel="lightbox[475]" title="related"><img class="size-medium wp-image-488 aligncenter" title="related" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/related-272x300.jpg" alt="" width="272" height="300" /></a></p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/info1.jpeg" rel="lightbox[475]" title="info1"><img class="size-medium wp-image-489 aligncenter" title="info1" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/04/info1-300x228.jpg" alt="" width="300" height="228" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/04/ripping-videos-from-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to build a facebook landing page</title>
		<link>http://www.blownpixel.co.uk/2010/03/how-to-build-a-facebook-landing-page/</link>
		<comments>http://www.blownpixel.co.uk/2010/03/how-to-build-a-facebook-landing-page/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 17:59:39 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=124</guid>
		<description><![CDATA[Facebook is known for its uniformity. You can post all sorts of content, but the actual design and layout of your profile is the same as everyone else’s.

But with Facebook Fan Pages and the array of apps you can plug into them, there are a few ways you can customize what people see when they land on your Page.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Logo.jpeg" rel="lightbox[124]" title="Facebook Logo"><img class="alignright size-full wp-image-92" style="margin-left: 10px; margin-right: 10px;" title="Facebook Logo" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Logo.jpeg" alt="" width="260" height="190" /></a>Facebook is known for its uniformity. You can post all sorts of content, but the actual design and layout of your profile is the same as everyone else’s.</p>
<p>But with Facebook Fan Pages and the array of apps you can plug into them, there are a few ways you can customize what people see when they land on your Page.</p>
<p>You’ve probably seen custom Fan Pages like those of <a href="http://www.facebook.com/bestbuy" target="_blank">Best Buy</a> and <a href="http://www.facebook.com/victoriassecret" target="_blank">Victoria’s Secret</a>. When you land there, you start on what is essentially a mini website within Facebook, instead of the Page’s wall or feed.</p>
<p>These are often used to promote deals, call attention to new products, or simply welcome visitors with an attractive branded splash page. Anyone with a Fan Page can create one, but it takes a little effort. Here’s how.</p>
<hr />
<h2>1. Add the Static FBML App</h2>
<p><strong> <span style="font-weight: normal;">The tabs at the top of your Facebook Fan Page are apps. Some, like your wall and photos are built into Facebook. Others are essentially plug-ins where fans can view external content, like YouTubevideos, Flickr photos, etc.</span></strong></p>
<p>The app you need for your custom page is called “Static FBML,” <a href="http://www.facebook.com/apps/application.php?id=4949752878" target="_blank">located here</a>. If you’re logged into Facebook, you can add it to your Page. It is essentially a blank canvas where you can add whatever content you want, including custom graphics and links via standard HTML.</p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 577px"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image.jpeg" rel="lightbox[124]" title="Facebook Fan Page Image"><img class="size-full wp-image-81 " title="Facebook Fan Page Image" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image.jpeg" alt="Facebook Fan Page Image" width="567" height="183" /></a><p class="wp-caption-text">Facebook Fan Page Image</p></div>
<h2>2. Set Up Your Tab<br />
<span style="font-weight: normal; font-size: 13px;"><br />
Once you’ve added the Static FBML app, click “Edit Page” below your company’s profile image. This will bring up all your settings and apps. Look for the FBML app and click the “Application Settings” link.</span></h2>
<div id="attachment_82" class="wp-caption aligncenter" style="width: 577px"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-1.jpeg" rel="lightbox[124]" title="Facebook Fan Page Image-1"><img class="size-full wp-image-82 " title="Facebook Fan Page Image-1" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-1.jpeg" alt="Facebook Fan Page Image-1" width="567" height="183" /></a><p class="wp-caption-text">Facebook Fan Page Image-1</p></div>
<p>The app can function in two ways: As a set of boxes, or as one dedicated profile tab. If you’re building a splash page, you’ll probably want to use it as a tab, so go ahead and make sure that the “Box” setting is removed, and the “Tab” setting is added. You can always experiment with boxes later if you find them more useful.</p>
<div id="attachment_84" class="wp-caption aligncenter" style="width: 577px"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-2.jpeg" rel="lightbox[124]" title="Facebook Fan Page Image-2"><img class="size-full wp-image-84 " title="Facebook Fan Page Image-2" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-2.jpeg" alt="Facebook Fan Page Image-2" width="567" height="205" /></a><p class="wp-caption-text">Facebook Fan Page Image-2</p></div>
<h2>3. Add Your Content<br />
<span style="font-weight: normal; font-size: 13px;"><br />
Once you’re in tab mode, go back to your settings and click the “Edit” link under the Static FBML app. This opens a standard text field where you can add your content.</span></h2>
<div id="attachment_85" class="wp-caption aligncenter" style="width: 577px"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-3.jpeg" rel="lightbox[124]" title="Facebook Fan Page Image-3"><img class="size-full wp-image-85 " title="Facebook Fan Page Image-3" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-3.jpeg" alt="Facebook Fan Page Image-3" width="567" height="205" /></a><p class="wp-caption-text">Facebook Fan Page Image-3</p></div>
<p>“Box Title” will be the name of your tab, so you’ll want to change it to something appropriate, like “This Week’s Deals,” “Special Offers,” or simply “Welcome,” depending on how you plan to use your Page.</p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-4.jpeg" rel="lightbox[124]" title="Facebook Fan Page Image-4"><img class="aligncenter size-full wp-image-89" title="Facebook Fan Page Image-4" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-4.jpeg" alt="" width="567" height="185" /></a></p>
<p>he main text field is where your content goes, and you can add standard HTML to the page as you would any website, including images, text, links, and other formatting. No need for HTML, BODY, or HEAD tags.</p>
<p>Note that your images must be hosted elsewhere (on your company’s website, for example) and only referenced in your HTML code.</p>
<h2>4. Make It the Default Landing Page<br />
<span style="font-weight: normal; font-size: 13px;"><br />
If you want this new tab to be the “face” of your business Fan Page, head back over to your page settings and edit your “Wall Settings.” There is an option for “Default Landing Tab for Everyone Else.” From that menu, select your new tab.</span></h2>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-5.jpeg" rel="lightbox[124]" title="Facebook Fan Page Image-5"><img class="aligncenter size-full wp-image-90" title="Facebook Fan Page Image-5" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-5.jpeg" alt="" width="567" height="246" /></a></p>
<p>From now on, it will be the first thing visitors see when they arrive.</p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-6.jpeg" rel="lightbox[124]" title="Facebook Fan Page Image-6"><img class="aligncenter size-full wp-image-91" title="Facebook Fan Page Image-6" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Facebook-Fan-Page-Image-6.jpeg" alt="" width="567" height="464" /></a></p>
<p style="text-align: center;">
<h2>5. Engage Further With FBML<br />
<span style="font-weight: normal; font-size: 13px;"><br />
FBML stands for Facebook Markup Language, and it is the code used in Facebook applications to reference items on the social network, like user profiles, groups, feeds, and other data. If you’re really looking to integrate your landing page and get interactive with visitors, it might be worthwhile to learn this language.</span></h2>
<p>A great primer on FBML and a resource for optimizing your Facebook landing page in general can be found at <a href="http://www.techipedia.com/2009/create-facebook-page/" target="_blank">Techipedia</a>.</p>
<p><em>Blatantly plagiarised from </em><a title="Mashable" href="http://mashable.com/" target="_blank"><em>Mashable</em></a><em> &#8211; The Social Media Guide who have added screengrabs to bolster the original post</em></p>
<p><em><a rel="nofollow" href="http://www.openforum.com/idea-hub/topics/technology/article/how-to-build-a-facebook-landing-page-for-your-business-matt-silverman" target="_blank">This post</a> originally appeared on the <a rel="nofollow" href="http://www.openforum.com" target="_blank">American Express OPEN Forum</a>, where Mashable regularly contributes articles about leveraging social media and technology in small business.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/03/how-to-build-a-facebook-landing-page/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MyOws: MY Original Works</title>
		<link>http://www.blownpixel.co.uk/2010/03/myows-my-original-works/</link>
		<comments>http://www.blownpixel.co.uk/2010/03/myows-my-original-works/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 10:23:27 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Copyright]]></category>
		<category><![CDATA[Protection]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=267</guid>
		<description><![CDATA[Myows stands for "MY Original Works"

It’s an easy-to-use app dedicated to providing a full suite of copyright solutions, from registration to management.

Myows has been created for designers, photographers, bloggers, writers, musicians and anyone who creates copyrightable work.

All in one place, online, for free.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/03/myows-logo.png" rel="lightbox[267]" title="myows logo"><img class="alignright size-full wp-image-269" style="margin: 10px;" title="myows logo" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/03/myows-logo.png" alt="" width="260" height="95" /></a>Myows stands for &#8220;MY Original Works&#8221;</p>
<p>It’s an easy-to-use app dedicated to providing a full suite of copyright solutions, from registration to management.</p>
<p>Myows has been created for designers, photographers, bloggers, writers, musicians and anyone who creates copyrightable work.</p>
<p>All in one place, online, for free: <a href="http://www.myows.com" target="_blank">www.myows.com</a></p>
<ul>
<li>Assists in securing the removal of unauthorised copy(s) of your work on- and off-line.</li>
<li>Provides access to a growing pool of copyright-related knowledge and resources.</li>
<li>Helps you keep track of permissions granted and active cases.</li>
<li>Provides you with deterrence measures including custom warning graphics.</li>
<li>Lets you store, view and manage your protected works in one place, online.</li>
<li>Creates valuable evidence of your copyright.</li>
<li>Presents the opportunity to become part of a global IP-savvy community.</li>
<li>Proves the exact dates on which you uploaded your files, down to the minute.</li>
</ul>
<p>I have been a champion of this great original idea since it&#8217;s inception, it&#8217;s what the design has been needing for some time. In fact my design agency (<a href="http://www.cocoamedia.co.uk" target="_blank">Cocoa Media</a>) even gets a mention on the home page..</p>
<p>Oh and if you are wondering the great MyOws character was designed and rendered by the amazing Vonster &#8211; <a href="http://www.vonglitschka.com/" target="_blank">http://www.vonglitschka.com/</a></p>
<p><strong>Who should use Myows?</strong><br />
Photographers, writers, designers, artists, journalists, bloggers – anybody who has created an original work and therefore has a copyright (owns intellectual property).</p>
<p><strong>How do I copyright my work?</strong><br />
You automatically have copyrights in any original work you produce but the onus is on you to prove that you are the creator (which is where Myows will help you).</p>
<p><strong>Is Myows just for professionals?</strong><br />
No. Myows is for anyone who creates something original that they want to claim ownership of. You have copyright in your original works – you just need to protect it.</p>
<p><strong>What is an original work?</strong><br />
Original works are anything you create that are not copies of something else and have been ‘reduced to material form’ (meaning they’re not just an idea).</p>
<p><strong>How does Myows help me to avoid expensive legal battles?</strong><br />
Uploading your work to myows provides you with evidence as well as a deterrence measure designed to prevent theft. The site will also assist you in contacting unauthorised users of your work and is able to provide verifiable third-party evidence on your behalf, at your request.</p>
<p><strong>How much does it cost to have a Myows account?</strong><br />
It is our vision to provide copyright protection and management at no cost to freelancers, creative individuals and smaller companies. For corporate users and larger accounts there will be a small fee depending on the amount of storage space used. We&#8217;re looking at the possibility of tiered accounts for those users who exceed their storage limits but more about that at a later date!</p>
<p><strong>What storage capacity does Myows provide?</strong><br />
During beta testing, the free account limit is 500MB (this may change for new users as we get a better idea of usage patterns and user-needs). If you&#8217;re running out of space, drop us a mail at support@myows.com and we&#8217;ll see what we can do to help you out.</p>
<p><strong>Exactly what kind of files can I upload to Myows?</strong><br />
Images (.jpg | .gif | .png | .bmp | .tif | etc.)<br />
video ( .mov | .avi | etc.)<br />
sound ( .mpg |. mp3 | etc.)<br />
text ( .doc | plain text)<br />
vector files ( .ai | .id | etc.)<br />
html files<br />
animations ( .fla | .swf )<br />
code<br />
presentations<br />
… pretty much any kind of file you can think of!</p>
<p><strong>Who can access my Myows account or view my work/information</strong><br />
Only you can (using your unique username and self-generated or system-generated password), unless you give someone else permission to see your files.</p>
<p><strong>Where can I access my myows account from?</strong><br />
Anywhere in the world, as long as you are online.</p>
<p><strong>What do I do if I find that someone has stolen my Original Work?</strong><br />
You open a case on myows which will then guide you through the necessary steps typically required to resolve the matter and any related disputes.</p>
<p><strong>How secure are Myows’ servers?</strong><br />
Very secure. As an additional safety measure, all information is backed up on a second set of remote servers which are located in another part of the world.</p>
<p><strong>How long will my files stay on Myows’ servers?</strong><br />
For as long as your account remains open and active (Free accounts must be accessed at least once every 2 months). Paid accounts must be settled on a monthly basis.</p>
<p><strong>Is it really impossible for anybody to alter the date on an uploaded file?</strong><br />
Yes, not even the team at Myows can alter the date of upload of your files, The unique hash value internally assigned to each file provides additional tamper proof evidence linking the file to the date of upload.</p>
<p><strong>Can Myows keep me informed of activity on my account?</strong><br />
Yes Myows will send you mails notifying you of your account activity if you elect to activate this feature (NB: this feature will soon be deployed). Remember though that you can simply log on at any time to view your most recent activity.</p>
<p><strong>Will Myows warn me if somebody has copied my work or uploaded similar work?</strong><br />
Not yet. But we hope soon to be able to assist you in combing the net for unauthorized copies of your work.</p>
<p>For now, we’d definitely recommend trying out TinEye (for pics), Copyscape (for text) or Fairshare (for RSS feeds) to find your work online.</p>
<p><strong>Can I modify files that I’ve already uploaded?</strong><br />
No, the files that you upload are non-modifiable. You can only delete them and, if necessary, replace them with newer versions.</p>
<p><strong>What’s to stop someone uploading copied work to their Myows account?</strong><br />
Nothing. But if disputed, the original creator would simply have to prove that they had the work before the date that the copier uploaded the work to myows. That way they can prove their copyright and disprove the uploading party’s claim.</p>
<p>Of course, if the original creator also has a myows account, that’ll be very easy! (Just remember to always upload your creations timeously)</p>
<p><strong>Will Myows send any legal letters on my behalf?</strong><br />
No, but we will provide you with great legal templates and will even fill them in for you using the information you supply. Myows will however send proof of your uploaded work and related date to third parties upon your request.</p>
<p><strong>Will Myows assist me in finding a lawyer if I ever need one?</strong><br />
We are building a global database of good Myows-friendly lawyers to assist in this regard.</p>
<p><strong>When will Myows be available in other languages?</strong><br />
We hope to have Myows available in Mandarin, French and Spanish some day soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/03/myows-my-original-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinEye &#8211; Reverse image lookup&#8230;</title>
		<link>http://www.blownpixel.co.uk/2010/03/tineye-reverse-image-lookup/</link>
		<comments>http://www.blownpixel.co.uk/2010/03/tineye-reverse-image-lookup/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 10:10:32 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Search Engine]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=258</guid>
		<description><![CDATA[TinEye is a reverse image search engine.

You can submit an image to find out where it came from, how it is being used, if modified versions of the image exist, or to find higher resolution versions.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/03/TinEye.png" rel="lightbox[258]" title="TinEye"><img class="size-medium wp-image-259  alignright" title="TinEye" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/03/TinEye-300x46.png" alt="" width="300" height="46" /></a></p>
<p>TinEye is a reverse image search engine.</p>
<p>You can submit an image to find out where it came from, how it is being used, if modified versions of the image exist, or to find higher resolution versions.</p>
<p>TinEye is the first image search engine on the web to use image identification technology rather than keywords, metadata or watermarks.</p>
<p>For some real TinEye search examples, check out their <a href="http://www.tineye.com/cool_searches">Cool Searches</a> page.</p>
<p>There are many uses for TinEye, but here are a few:</p>
<ul>
<li>Find out where an image came from, or get more information about it</li>
<li>Research or track the appearance of an image online</li>
<li>Find higher resolution versions of an image</li>
<li>Locate web pages that make use of an image you have created</li>
<li>Discover modified or edited versions of an image</li>
</ul>
<p>TinEye was created by <a href="http://ideeinc.com/">Idée Inc</a>. Idée develops advanced image identification and visual search software for photo wire agencies, stock photography firms, entertainment media companies and some of the world&#8217;s leading imaging firms including Adobe Systems Inc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/03/tineye-reverse-image-lookup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Up and Down TV&#8230;</title>
		<link>http://www.blownpixel.co.uk/2010/02/up-and-down-tv/</link>
		<comments>http://www.blownpixel.co.uk/2010/02/up-and-down-tv/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 14:31:12 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=140</guid>
		<description><![CDATA[SeeSaw.com has finally launched into public beta. 

The site is a watch again aggregator of UK Tv broadcast programs,essentially an online Tv station, but much more it has acquired the rights to distribute programmes on the web making them available to viewers legally for unlimited viewing.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/seesaw.jpeg" rel="lightbox[140]" title="seesaw"><img class="alignright size-medium wp-image-139" title="seesaw" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/seesaw-300x300.jpg" alt="" width="300" height="300" /></a>SeeSaw.com has finally launched into public beta.</p>
<p>The site is a watch again aggregator of UK Tv broadcast programs,essentially an online Tv station, but much more it has acquired the rights to distribute programmes on the web making them available to viewers legally for unlimited viewing.</p>
<p>Catch up for free on programmes you’ve missed for up to 30 days or rediscover many of the nation’s old favourites, specially selected by their editors.</p>
<p>You can choose from comedy, drama, lifestyle shows, factual programmes, sport and much more.  If it’s available, you can even watch whole a series in one go.</p>
<p>SeeSaw is quick, easy and free. Whether you’re a PC or Mac user, you can instantly start watching broadcast-quality programmes on the web, all you need is an internet connection with a speed of at least 1 Mbps – broadband or cable, and the latest version of Adobe Flash installed on your computer.</p>
<p>I have to say the quality is fantastic, with a choice of Low, Medium, and high quality delivery. Even on a UK domestic broadband link I was able to watch fullscreen on my 27inch iMac at full quality with no interruption.</p>
<p>You can find seesaw here: <a title="seesaw.com" href="http://www.seesaw.com" target="_blank">www.seesaw.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/02/up-and-down-tv/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The last word in Social Media&#8230;</title>
		<link>http://www.blownpixel.co.uk/2010/02/the-last-word-in-social-media/</link>
		<comments>http://www.blownpixel.co.uk/2010/02/the-last-word-in-social-media/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 10:11:27 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=127</guid>
		<description><![CDATA[Founded in July 2005, Mashable is the world’s largest blog focused exclusively on Web 2.0 and Social Media news.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/mashable.png" rel="lightbox[127]" title="mashable"><img class="alignright size-medium wp-image-128" style="margin: 10px;" title="mashable" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/mashable-300x194.png" alt="" width="300" height="194" /></a>Founded in July 2005, Mashable is the world’s largest blog focused exclusively on Web 2.0 and Social Media news.</p>
<p>With more than 15 million monthly pageviews, Mashable is the most prolific blog reviewing new Web sites and services, publishing breaking news on what’s new on the web and offering social media resources and guides.</p>
<p>Mashable’s audience includes early adopters, social media enthusiasts, entrepreneurs, influencers, brands and corporations, marketing, PR and advertising agencies, Web 2.0 aficionados and technology journalists.</p>
<p>Mashable is also popular with bloggers, Twitter and Facebook users — an increasingly influential demographic.</p>
<p>As described, the site covers virtually all the subjects a denizen of the modern web should be interested in:</p>
<ul>
<li>Social Media</li>
<li>Mobile</li>
<li>Web Video</li>
<li>Entertainment</li>
<li>Tech</li>
</ul>
<p>All these subjects are covered in depth and the reader can find a myriad of sub-categories within each area of interest.</p>
<p>A wealth of knowledge and right up to the second information a visit is a must.</p>
<p>Mashable can be found here: <a href="http://www.mashable.com" target="_blank">www.mashable.com</a><br />
You can follow on Twitter here: <a title="Mashable Twitter" href="http://twitter.com/mashable" target="_blank">http://twitter.com/mashable</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/02/the-last-word-in-social-media/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter pics from Space&#8230;</title>
		<link>http://www.blownpixel.co.uk/2010/02/twitter-pics-from-space/</link>
		<comments>http://www.blownpixel.co.uk/2010/02/twitter-pics-from-space/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 18:26:18 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Space]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=110</guid>
		<description><![CDATA[Japanese Astronaut, Soichi Noguchi has been tweeting photos from his phone from space.]]></description>
			<content:encoded><![CDATA[<p>Japanese Astronaut, Soichi Noguchi has been tweeting photos from his phone from space.</p>
<p>He is located in the International Space Station and is taking pictures as he orbits the Earth. Apart from the fact that these are amazing photos, it really blows my mind that he is micro-blogging through Twitter from space.</p>
<p>Click for larger view..</p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/arabian-desert.jpg" rel="lightbox[110]" title="arabian desert"><img class="size-medium wp-image-112  aligncenter" title="arabian desert" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/arabian-desert-300x199.jpg" alt="arabian desert" width="300" height="199" /></a><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Grand-Canyon.jpg" rel="lightbox[110]"></a></p>
<p style="text-align: center;">Arabian Desert</p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Grand-Canyon.jpg" rel="lightbox[110]" title="Grand Canyon"><img class="size-medium wp-image-113  aligncenter" title="Grand Canyon" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Grand-Canyon-300x199.jpg" alt="Grand Canyon" width="300" height="199" /></a></p>
<p style="text-align: center;">The Grand Canyon</p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Tokyo-at-Night.jpg" rel="lightbox[110]" title="Tokyo at Night"><img class="aligncenter size-medium wp-image-116" title="Tokyo at Night" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Tokyo-at-Night-300x199.jpg" alt="Tokyo at Night" width="300" height="199" /></a></p>
<p style="text-align: center;">Tokyo at Night</p>
<p style="text-align: center;"><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Patagonia-Glacier.jpg" rel="lightbox[110]" title="Patagonia Glacier"><img class="aligncenter size-medium wp-image-117" title="Patagonia Glacier" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Patagonia-Glacier-300x199.jpg" alt="Patagonia Glacier" width="300" height="199" /></a></p>
<p style="text-align: center;">
<p>Follow him on Twitter here: <a href="http://twitter.com/Astro_Soichi" target="_blank">http://twitter.com/Astro_Soichi</a></p>
<p>See and follow his Twitpics here: <a href="http://twitpic.com/photos/Astro_Soichi" target="_blank">http://twitpic.com/photos/Astro_Soichi</a></p>
<p>Soichi&#8217;s blog can be found here: <a href="http://www.j-wave.co.jp/blog/mp_noguchi/" target="_blank">http://www.j-wave.co.jp/blog/mp_noguchi/</a></p>
<p>And his NASA profile here: <a href="http://www.jsc.nasa.gov/Bios/htmlbios/noguchi.html" target="_blank">http://www.jsc.nasa.gov/Bios/htmlbios/noguchi.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/02/twitter-pics-from-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Networking, relevant to your business?</title>
		<link>http://www.blownpixel.co.uk/2010/02/social-networking-relevant-to-your-business/</link>
		<comments>http://www.blownpixel.co.uk/2010/02/social-networking-relevant-to-your-business/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 22:05:06 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=70</guid>
		<description><![CDATA[I was sent this great diagram recently showing how people chose to receive their news and information historically and trending how they are likely to in the future.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/2009-05-17_0124581.jpeg" rel="lightbox[70]" title="2009-05-17_012458"><img class="aligncenter size-full wp-image-72" title="2009-05-17_012458" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/2009-05-17_0124581.jpeg" alt="" width="500" height="249" /></a></p>
<p>I was sent this great diagram recently showing how people chose to receive their news and information historically and trending how they are likely to in the future.</p>
<p>I am increasingly asked what social networking is all about and how can it be relevant to business. the <em>simple </em>answer I give is that I like to think of it as electronic networking, in other words a quick way to interact and pass information to lots of people anywhere in the world.</p>
<p>It&#8217;s relevant to business purely because it allows you to get you massage about your business or service to your market very easily.</p>
<p>With current technology, particularly mobile technology, people are choosing to get their information in very different ways. People read newspapers online rather than buying a paper copy, the same is becoming true with magazines, news is delivered electronically to phones and <a id="aptureLink_gNtjPSd5bA" href="http://en.wikipedia.org/wiki/Digital%20Audio%20Broadcasting">DAB</a>.</p>
<p>You can take advantage of this by utilising linked up web services i.e when you update your website it automatically updates your twitter account and your facebook account. In this way potential clients do not have to visit your website to get your news, they will have have the information delivered to them in the way they choose to receive it.</p>
<div><span style="font-family: Helvetica, Arial, sans-serif; line-height: 22px; font-size: 12px; color: #4a4a4a;"><br />
</span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/02/social-networking-relevant-to-your-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Definition&#8230;</title>
		<link>http://www.blownpixel.co.uk/2010/02/definition/</link>
		<comments>http://www.blownpixel.co.uk/2010/02/definition/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 21:33:59 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Pixel]]></category>

		<guid isPermaLink="false">http://www.blownpixel.co.uk/?p=58</guid>
		<description><![CDATA[pix.el &#124;ˈpiksəl&#124;
noun Electronics
a minute area of illumination on a display screen, one of many from which an image is composed.
ORIGIN 1960s: abbreviation of picture element.]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste"><strong><a href="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Pixel.jpeg" rel="lightbox[58]" title="Pixel"><img class="alignright size-medium wp-image-59" style="margin-left: 10px; margin-right: 10px;" title="Pixel" src="http://www.blownpixel.co.uk/wp-content/uploads/2010/02/Pixel-179x300.jpg" alt="" width="179" height="300" /></a>pix.el</strong> |ˈpiksəl|</div>
<div id="_mcePaste">noun Electronics</div>
<div id="_mcePaste">a minute area of illumination on a display screen, one of many from which an image is composed.</div>
<div>ORIGIN 1960s: abbreviation of <em>picture element</em>.</div>
<div><span style="font-family: Tahoma, Arial, Verdana; line-height: normal; font-size: small; border-collapse: collapse; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"></p>
<div><strong>What is Pixel?</strong></div>
<div><strong><br />
</strong></div>
<div>The term &#8220;pixel&#8221; is actually short for &#8220;Picture Element.&#8221; These small little dots are what make up the images on computer displays, whether they are flat-screen (LCD) or tube (CRT) monitors. The screen is divided up into a matrix of thousands or even millions of pixels. Typically, you cannot see the individual pixels, because they are so small. This is a good thing, because most people prefer to look at smooth, clear images rather than blocky, &#8220;pixelated&#8221; ones. However, if you set your monitor to a low resolution, such as 640&#215;480 and look closely at your screen, you will may be able to see the individual pixels. As you may have guessed, a resolution of 640&#215;480 is comprised of a matrix of 640 by 480 pixels, or 307,200 in all. That&#8217;s a lot of little dots.</div>
<div>Each pixel can only be one color at a time. However, since they are so small, pixels often blend together to form various shades and blends of colors. The number of colors each pixel can be is determined by the number of bits used to represent it. For example, 8-bit color allows for 2 to the 8th, or 256 colors to be displayed. At this color depth, you may be able to see &#8220;graininess,&#8221; or spotted colors when one color blends to another. However, at 16, 24, and 32-bit color depths, the color blending is smooth and, unless you have some kind of extra-sensory vision capability, you should not see any graininess.</div>
<div><em>Source: <a title="iWebtool" href="http://www.iwebtool.com/" target="_blank">http://www.iwebtool.com/</a> electronics glossary</em></div>
<div><em></p>
<div><span style="font-style: normal;"><strong>Definition of: blown pixel</strong> </span></div>
<div><span style="font-style: normal;"><br />
</span></div>
<div><span style="font-style: normal;">A defective pixel on an LCD screen. Bad pixels are often transistors that are permanently dead and appear as black dots or permanently energized and show up as white or colored dots (&#8220;hot pixels&#8221;). These pixel defects usually occur at the time of manufacture. However, if a bad pixel appears after the screen has been in use for some time, it may also be due to a dented or scratched polarizer (see LCD).</span></div>
<div><span style="font-style: normal;"><br />
</span></div>
<div><span style="font-style: normal;">Sometimes, it is possible to repair a bad pixel by gently rubbing the screen with a cloth or running a pixel repair over the area for several hours, the latter repetitively flashing colors on and off to attempt to dislodge a stuck pixel.</span></div>
<div><span style="font-style: normal;">Source: <a href="http://www.pcmag.com" target="_blank">http://www.pcmag.com</a> encyclopedia</span></div>
<p></em></p>
</div>
<p></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.blownpixel.co.uk/2010/02/definition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
