<?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>Graphic Design services covering Lancashire the Fylde coast and beyond - nasarik.com &#187; iphone</title>
	<atom:link href="http://nasarik.com/tag/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://nasarik.com</link>
	<description>If you are looking for print or web media designs then I can help you - I also blog about technology, the web and design</description>
	<lastBuildDate>Tue, 01 May 2012 20:55:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://nasarik.com</link>
  <url>http://nasarik.com/wp-content/themes/sandbox/images/nasarikfav.jpg</url>
  <title>Graphic Design services covering Lancashire the Fylde coast and beyond - nasarik.com</title>
</image>
		<item>
		<title>Don&#8217;t be afraid of responsive design</title>
		<link>http://nasarik.com/responsive-designs/</link>
		<comments>http://nasarik.com/responsive-designs/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 20:56:19 +0000</pubDate>
		<dc:creator>nasarik</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[bullet]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[dependant]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[dimension]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[hype]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[impact]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[journey]]></category>
		<category><![CDATA[Magazine]]></category>
		<category><![CDATA[maximum]]></category>
		<category><![CDATA[nasarik]]></category>
		<category><![CDATA[novice]]></category>
		<category><![CDATA[overview]]></category>
		<category><![CDATA[pixel]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[response]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[Smashing]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[width]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://nasarik.com/?p=1281</guid>
		<description><![CDATA[If you use Twitter, read Smashing Magazine or any of the other leading design blogs on the web, then no doubt you will be aware of responsive design and the impact that the industry knows it will have on all web developers and designers. If you don&#8217;t, then here is an overview of what it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm7.static.flickr.com/6189/6109968044_50613e24d8.jpg" alt="responsive design" /></p>
<p>If you use Twitter, read Smashing Magazine or any of the other leading design blogs on the web, then no doubt you will be aware of responsive design and the impact that the industry knows it will have on all web developers and designers. If you don&#8217;t, then here is an overview of what it is and why I decided now was the time to get on-board.<span id="more-1281"></span></p>
<h2>So what is response design</h2>
<p>Responsive design is basically adapting a website to appear appropriately dependant on the device being used by the user. This has existed in web design for some time, particularly when a designer has needed to ensure that a site appeared correctly in all web browsers, and more notably IE6. Usual this was achieved by using media queries which detected the browser version and delivered the appropriate style sheet, eliminating the need for crude hacks or work-arounds to create a consistent experience for all.</p>
<p>Today with the introduction of CSS3, we are not simply limited to browser specific queries, we have much more control and can detect a browser screen size and deliver a set of specific styles to that as well. This new ability means that we can choose to build our projects with a set of structured options or alternatively with a fluid response meaning that one site can potentially work comfortably on many devices without a huge amount of work.</p>
<h2>A simple responsive experience, and why?</h2>
<p>With all the hype I simply couldn&#8217;t ignore the seemingly inevitable future for our industry, so I finally bit the bullet and gave it a go. Now, as I have only every really created fixed width designs my first job was to update all my values to percentages so that the design would scale effectively, however, I still wanted to keep a maximum site width, so in addition to the width:100%; value I added the max-width: value as well, specifying my desired pixel dimension (sorry, I know pixel!). So this would give me a desired maximum site look while still giving the overall flexibility of the percentages.</p>
<p>Once the scaling was complete (feel free to test this by resizing the browser window), I then did my research which took me to a great article on <a title="See the article here - Responsive Web Design: What It Is and How To Use It" href="http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/" target="_blank">Smashing Magazine</a>. Articles like this give invaluable information on all aspects of the responsive design process and I would recommend taking your time to find the most appropriate option before really trying to get to grips with responsive designs. For me however, I explored the <code>'@media </code><code>screen' function</code>, this gave me the control to adapt my design when hitting certain screen dimensions, for example the first thing I tried was to remove content when the screen dimension was that of an iPhone, which looked like this:-</p>
<p>@media screen and (max-width:400px) {<br />
#primary {display:none;}<br />
}</p>
<p>You will see that if you reduce the browser window to below this dimension the sidebar of my site disappears, and the same happens on the iPhone, and that is how the responsive journey of nasarik.com began.</p>
<h2>Stumbling blocks</h2>
<p>I hit a few novice snags along the way which nearly caused me to give up, one of which was the iPhone still scaling my site even though I had included queries. Don&#8217;t panic a simple meta value in your &lt;head&gt; ensures that the iPhone behaves as you would expect and here it is &#8211; &lt;meta name=&#8221;viewport&#8221; content=&#8221;width=device-width; initial-scale=1.0&#8243;&gt;</p>
<p>Finally, testing can be an issue particularly if you don&#8217;t have an iPhone, so try using <a href="http://iphone4simulator.com/" target="_blank">http://iphone4simulator.com/</a> it seems to render perfectly and is free.</p>
<h2>Conclusion</h2>
<p>Responsive design isn&#8217;t to be feared, play with it, try and break your site and see what happens.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nasarik.com/responsive-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems importing images to iPhoto from iPhones</title>
		<link>http://nasarik.com/iphoto-issues/</link>
		<comments>http://nasarik.com/iphoto-issues/#comments</comments>
		<pubDate>Sun, 22 May 2011 12:56:41 +0000</pubDate>
		<dc:creator>nasarik</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[iMac]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iPhoto]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[Problems]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[warning]]></category>

		<guid isPermaLink="false">http://nasarik.com/?p=1086</guid>
		<description><![CDATA[It has been quite a few months since the last time I backed-up the images from my iPhone to iTunes, so I decided it was probably a good idea to do it now considering the age of my iPhone 3G. When I connected the device to my iMac, it detected the iPhone and found all [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm6.static.flickr.com/5223/5746500718_1f26bd9ec1.jpg" alt="Problems importing images to iPhoto from iPhones" /></p>
<p>It has been quite a few months since the last time I backed-up the images from my iPhone to iTunes, so I decided it was probably a good idea to do it now considering the age of my iPhone 3G. When I connected the device to my iMac, it detected the iPhone and found all 1186 images, but then hit me with a &#8216;cannot read image format&#8217; warning message!</p>
<p><span id="more-1086"></span></p>
<p>After disconnecting and reconnecting my iPhone twenty times and restarting my iMac equally as often a change in strategy was needed. So to save others having to go through this frustrating process here is the what I did&#8230;</p>
<h2>Hard reset your iPhone (Still not sure why I didn&#8217;t do this in the first place!)</h2>
<p>To do this hold the power button and the home button simultaneously, keep holding this even when the red power off slider appears and until the phone completely switches off. Now restart your iPhone connect it directly to your Mac and launch iPhoto, now iPhoto should pick up all the images on your device with no problems, it&#8217;s as easy as that!</p>
<p>I am using an iPhone 3G and iPhoto 09 so this may only work depending on your setup. If this doesn&#8217;t work don&#8217;t despair, there is another way if iPhoto simply won&#8217;t play. On most iMacs there is a piece of software called &#8216;image capture&#8217; which works just as well.  Using the same process attach your iPhone while image capture is open, it will then detect your device and give you the option to download the images to a folder of your choice.</p>
<p>I hope this helps any iPhone and iPhoto users out there, however, if you have any other solutions or fixes for this issue I would like to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://nasarik.com/iphoto-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More FREE iphone apps</title>
		<link>http://nasarik.com/more-free-iphone-apps/</link>
		<comments>http://nasarik.com/more-free-iphone-apps/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 23:16:47 +0000</pubDate>
		<dc:creator>nasarik</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[FREE]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[MMS]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitterrific]]></category>

		<guid isPermaLink="false">http://nasarik.com/?p=85</guid>
		<description><![CDATA[Since my iphone arrived way back in August I have had plenty of time to download and test a wide range of apps available.  So I thought it was high time I recommended a couple more excellent free options that you just wouldn&#8217;t want to be without. MMS Photo Messaging One of the main problems with the iphone [...]]]></description>
			<content:encoded><![CDATA[<p><img class="post_images" src="http://farm4.static.flickr.com/3092/3231648103_41f6422903.jpg?v=0" alt=""/></p>
<p>Since my iphone arrived way back in August I have had plenty of time to download and test a wide range of apps available.  So I thought it was high time I recommended a couple more excellent free options that you just wouldn&#8217;t want to be without.</p>
<p><span id="more-85"></span></p>
<h3><strong>MMS Photo Messaging</strong></h3>
<p>One of the main problems with the iphone has been the lack of built in MMS capability which the majority of other mobile phones have as standard.  Well just maybe that problem has been resolved for FREE, MMS Photo Messaging (by Ed Lea) is a great little app that allows your iphone to receive pictures directly without the need to visit that annoying 02 website. </p>
<p>The way it works is simple, a four digit code is within the standard notification SMS that you receive when a picture has been sent, take this code along with your phone number and add it to the MMS application, once this has been added the app will happily download the images directly into your inbox at no charge.  Beware however, that sending messages is still a little expensive and you will need to purchase credit for this unless your contract already allows MMS.</p>
<p>There seems to be only one small problem with this app, every few weeks 02 change the four digit key that is required to download your pictures, so you have to remember to update this in the app which is more of an annoyance that a major issue.  Even with this small draw back I still think this has helped overcome my concerns regarding the iphone&#8217;s lack of MMS capability and I would recommend that you give it a go.</p>
<h3><strong>Social networking</strong></h3>
<p>As MMS Photo Messaging makes the iphone do a job it should have done all along, the next two add something extra that I personally can&#8217;t live without, I&#8217;m talking about Twitterrific and Facebook.  Twitterrific by The Iconfactory and Facebook are exactly what you would expect, great conduits into the social networking world.  Between them they offer everything you should need to keep up-to-date with friends and let your followers know what you are doing. </p>
<p>As with most free apps there are a few draw back.  Twitterrific doesn&#8217;t seem to have the functionality to search for people or the abilility to clear the list for ease of navigation, but this is more than likely available through the premium edition if you are willing to pay £5.99.  Facebook on the other hand doesn&#8217;t have any obvious major flaws, although being able to have multiple accounts saved would be a nice addition.</p>
<p>There are many more apps that are worth a look, here is a short list of others I am using:-</p>
<ul>
<li>Remote &#8211; Allows you to control your Apple Mac itunes via a WI-FI connection</li>
<li>Ustream &#8211; Watch live video broadcasts on you phone</li>
<li>Seadragon Mobile &#8211; Microsoft&#8217;s high resolution gallery</li>
</ul>
<p>I will post again soon with a detailed overview of the 3G iphone, and maybe some more apps that you should pick up.</p>
]]></content:encoded>
			<wfw:commentRss>http://nasarik.com/more-free-iphone-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

