<?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/"
	xmlns:series="http://organizeseries.com/"
	>

<channel>
	<title>Mark Bloomfield &#124; This is me &#187; Musings</title>
	<atom:link href="http://mark.bloomfield.co.za/musings/feed" rel="self" type="application/rss+xml" />
	<link>http://mark.bloomfield.co.za</link>
	<description>Thoughts &#38; Musings</description>
	<lastBuildDate>Mon, 09 Jan 2012 06:41:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>What does retina display on desktops &amp; laptops mean for developers?</title>
		<link>http://mark.bloomfield.co.za/code-snippets/what-does-retina-display-on-desktops-laptops-mean-for-developers</link>
		<comments>http://mark.bloomfield.co.za/code-snippets/what-does-retina-display-on-desktops-laptops-mean-for-developers#comments</comments>
		<pubDate>Mon, 09 Jan 2012 06:39:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Musings]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[retina]]></category>

		<guid isPermaLink="false">http://mark.bloomfield.co.za/?p=455</guid>
		<description><![CDATA[The iPhone 4 wow&#8217;d us with retina display &#8211; the &#8216;HD&#8217; mobile display that is now the benchmark for top [...]]]></description>
				<content:encoded><![CDATA[<p>The iPhone 4 wow&#8217;d us with <strong><a href="http://www.apple.com/iphone/features/retina-display.html">retina display</a></strong> &#8211; the &#8216;HD&#8217; mobile display that is now the benchmark for top end mobile devices. For mobile site developers however, this added an extra layer of required development because images used in mobile web designs now looked blurry on an iPhone 4. Because the retina screen essentially &#8216;explodes&#8217; each pixel into 2 pixels in order to generate a denser pixel grid, logo&#8217;s and images used in mobile designs now were expanded to twice the size and you ended up with a blurry image.</p>
<p>Thus each logo/image used in a mobile web layout, required a duplicate image, at a higher resolution. Then with a bit of <a href="http://webdesignerwall.com/tutorials/css3-media-queries">CSS3 Media Query</a> magic, you&#8217;d check the resolution of the user&#8217;s mobile device and if higher than X, you&#8217;d display the higher resolution image.</p>
<pre class="brush: css; title: ; notranslate">
@media
only screen and (-webkit-min-device-pixel-ratio : 2),
only screen and (min-device-pixel-ratio : 2) {

  #logo {
    background: url(images/logo-iphone.png) 0 0 no-repeat;
    background-size: contain;
  }
}
</pre>
<p>So not a massive time-sink, but on a site with loads of CSS&#8217;d images etc, you can see the potential time required to retina-display-ify a mobile site.</p>
<p><img class="size-full wp-image-457 aligncenter" title="new-macbook-pro-imac" src="http://mark.bloomfield.co.za/wp-content/uploads/new-macbook-pro-imac.jpg" alt="" width="652" height="408" /></p>
<p>If the Apple rumor-mill is to be believed, the new Macbook Pro and iMac lines could be getting retina displays.</p>
<p>This now means that <strong>responsible developers</strong> will need to go through all their sites, themes, client work etc and add a new layer of images &amp; code to cater for these higher-resolution displays.</p>
<p>I don&#8217;t see any quick way out of this either&#8230; Whilst a plugin could perhaps cater for the code side of the required tweakage, it requires a higher resolution image which no plugin is able to do.</p>
<p>So bottom line is us developers and designers &#8211; all of us, not just those of us who do mobile sites &#8211; are going to have to spend a fair chunk of time preparing our sites for the enslaught of new retina enabled devices. What do you think? Am I making a big deal of nothing?</p>
]]></content:encoded>
			<wfw:commentRss>http://mark.bloomfield.co.za/code-snippets/what-does-retina-display-on-desktops-laptops-mean-for-developers/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Web app idea to get signatures on documents</title>
		<link>http://mark.bloomfield.co.za/musings/web-app-idea-to-get-signatures-on-documents</link>
		<comments>http://mark.bloomfield.co.za/musings/web-app-idea-to-get-signatures-on-documents#comments</comments>
		<pubDate>Tue, 08 Feb 2011 20:23:30 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[signature]]></category>
		<category><![CDATA[web app]]></category>

		<guid isPermaLink="false">http://mark.bloomfield.co.za/?p=137</guid>
		<description><![CDATA[I often have awesome (IMO) ideas for web applications that&#8217;ll do well to fill a need. I thought of something [...]]]></description>
				<content:encoded><![CDATA[<p>I often have awesome (IMO) ideas for web applications that&#8217;ll do well to fill a need. I thought of something today and thought I&#8217;d put the proverbial pen to paper and document the idea. Who knows, maybe something like this already exists, or whoever decides to make it, will cut me in for a slice of the pie :)</p>
<h3>The Problem</h3>
<p>You need to sign a document &#8211; a loan agreement, rental document, NDA, whatever. So in order to do that,</p>
<ol>
<li><img class="alignright size-medium wp-image-138" title="signadocument" src="http://mark.bloomfield.co.za/wp-content/uploads/signadocument-300x199.jpg" alt="" width="300" height="199" />Person A sends you the PDF document.</li>
<li>You print out said document.</li>
<li>You fill out the necessary odds &amp; ends &#8211; name, details etc.</li>
<li>You sign the document</li>
<li>Then you have to fax it back to Person A</li>
</ol>
<p>Firstly, it boggles my mind that we still have to fax in this day and age. I&#8217;m aware that there&#8217;s things like E-Signatures that are used to sign document, but what about filling it out? Not everyone has PDF editing software and what a shlep! Am I correct so far?</p>
<p>Right, so enter my awesome idea.</p>
<h3>The Solution</h3>
<ol>
<li>Person A creates the document online and using a simple UI, adds the content &amp; the area&#8217;s requiring feedback like name, address, etc.</li>
<li>Person A then &#8216;adds&#8217; the people who need to fill out the form &#8211; Person B and C.</li>
<li>Person B and C get an email notification and then once they login, they are presented with the document and the areas requiring feedback are highlighted.</li>
<li>Then at the bottom is a legal statement with a checkbox that basically indicates agreement of the entire document. The wording of the statement would be crucial to ensure there&#8217;s no loopholes and once the checkbox is ticked and the form submitted, Person B and C are legally bound by the stipulations in the document. As Person B or C complete the document, Person A receives notification.</li>
<li>Persons A, B and C can all login &amp; view their documentation &#8211; docs they&#8217;ve created and docs they&#8217;ve signed in a form of dashboard. Person A will see his documents, with an indication of invited parties and whether those parties have signed the document or not.</li>
</ol>
<p>In terms of revenue, the most obvious way would be to have subscription plans which allow for various numbers of documents to be sent/signed etc. Or alternatively, you can create documents for free, but you&#8217;re charged for each &#8216;signature&#8217; you get on the document&#8230; With a bit of creativity, you could easily come up with a few ways to generate revenue but because Person A doesn&#8217;t have any direct means of recouping the money he&#8217;s paying for the service, it can&#8217;t be too exorbitant.</p>
<p>So what do you think? I reckon its a killer idea :) But that&#8217;s just me&#8230;</p>
<p>From a legal point of view, perhaps legal guru @pauljacobson &#8211; <a href="http://pauljacobson.org/">http://pauljacobson.org</a> -  can give some feedback on the legalities and the validity of such a form of &#8216;signature&#8217;  to a document.</p>
<p>Keen to hear your thoughts :)</p>
]]></content:encoded>
			<wfw:commentRss>http://mark.bloomfield.co.za/musings/web-app-idea-to-get-signatures-on-documents/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
