<?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>Davinian &#187; Apple</title>
	<atom:link href="http://www.davinian.com/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davinian.com</link>
	<description></description>
	<lastBuildDate>Wed, 17 Mar 2010 21:57:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0-beta1</generator>
		<item>
		<title>Random Update</title>
		<link>http://www.davinian.com/random-update/</link>
		<comments>http://www.davinian.com/random-update/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 11:37:38 +0000</pubDate>
		<dc:creator>Davinian</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blogs & Blogging]]></category>

		<guid isPermaLink="false">http://www.davinian.com/?p=88</guid>
		<description><![CDATA[In an effort to move the rather amusing, yet annoying picture of bang-cock down the page a bit I have decided to write a little something and nothing&#8230; Well, that was it&#8230; something and nothing&#8230; Perhaps I should write a new list and&#160;&#8230; <a href="http://www.davinian.com/random-update/">Continue&#160;reading&#160;<span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In an effort to move the rather amusing, yet annoying picture of bang-cock down the page a bit I have decided to write a little something and nothing&#8230;</p>
<p>Well, that was it&#8230; something and nothing&#8230;</p>
<p>Perhaps I should write a new list and review of my must have OS X (Leopard) apps?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davinian.com/random-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X Leopard &#8211; Are you sure you want to open it?</title>
		<link>http://www.davinian.com/os-x-leopard-are-you-sure-you-want-to-open-it/</link>
		<comments>http://www.davinian.com/os-x-leopard-are-you-sure-you-want-to-open-it/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 12:39:48 +0000</pubDate>
		<dc:creator>Davinian</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://davinian.com/os-x-leopard-are-you-sure-you-want-to-open-it/</guid>
		<description><![CDATA[I think by now, every OS X Leopard users will be well acquainted with the warning message &#8220;Are you sure you want to open it?&#8221;. Apple&#8217;s over cautious security feature thats been described by some as a Vista-esque feature, but&#160;&#8230; <a href="http://www.davinian.com/os-x-leopard-are-you-sure-you-want-to-open-it/">Continue&#160;reading&#160;<span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I think by now, every OS X Leopard users will be well acquainted with the warning message &#8220;Are you sure you want to open it?&#8221;. Apple&#8217;s over cautious security feature thats been described by some as a Vista-esque feature, but for me it&#8217;s just a real pain in the backside.</p>
<p><img class="ngg-singlepic ngg-center" src="http://www.davinian.com/content/apps/are-you-sure-you-want-to-open-it.jpg" alt="Are you sure you want to open it!?" /></p>
<p>Basically every file downloaded from the internet is tagged by the OS depending on its file type. If the download is an application or script, the OS will warn you with the above message when you first try and open it. Fine if you are opening one or two files, but not if you are trying to open up 20+ files at a time.</p>
<p>There is some reasoning behind this security feature, but I can&#8217;t help think that Apple should have included a way to turn it off or at least configure what file types the user deems &#8217;safe&#8217; or &#8216;unsafe&#8217;.</p>
<p>After Googleing for a solution I discovered two options. The first is by Henrik (<a title="Lift the Leopard download quarantine" href="http://henrik.nyh.se/2007/10/lift-the-leopard-download-quarantine">Lift the Leopard download quarantine</a>) is a simply Apple Script folder action that you apply to your Downloads folder. Every time a file is downloaded the Apple Script removes the &#8216;unsafe&#8217; tag from it and thus banishes the warning message. The only problem I can see with the script is that is dose not work its magic on files within sub-folders.</p>
<p>The second is by Lazeez (<a title="Changing the system’s default settings for html files (safe)" href="http://mymacinations.com/2008/02/06/changing-the-systems-default-settings-for-html-files-safe/">Changing the system’s default settings for html files (safe)</a>) and is my preferred solution. Basically you need to create a file called com.apple.DownloadAssessment.plist with a list of the file types you consider &#8217;safe&#8217;, you then need to save it to the ~/Library/Preferences folder, log-out or reboot to activate the changes, and no more warning messages!</p>
<p>The file looks like this:-</p>
<pre>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
&lt;plist version="1.0"&gt;
&lt;dict&gt;
	&lt;key&gt;LSRiskCategorySafe&lt;/key&gt;
&lt;dict&gt;
	&lt;key&gt;LSRiskCategoryContentTypes&lt;/key&gt;
&lt;array&gt;
	&lt;string&gt;public.html&lt;/string&gt;
	&lt;string&gt;public.php-script&lt;/string&gt;
&lt;/array&gt;
&lt;/dict&gt;
&lt;/dict&gt;
&lt;/plist&gt;</pre>
<p>You can see I have added two strings, <em>public.html</em> and <em>public.php-script</em> this allows me to open both .html and .php files without the warning. A full list of file types can be found on the Apple Developer site: <a title="System-Declared Uniform Type Identifiers" href="http://developer.apple.com/documentation/Carbon/Conceptual/understanding_utis/utilist/chapter_4_section_1.html">System-Declared Uniform Type Identifiers</a>.</p>
<p>To add more, simply add in &lt;string&gt;file.type.here&lt;/string&gt; (The file type Identifier)</p>
<p>I hope this helps other Leopard users as much as it has helped me &#8211; as any unnecessary clicks can really start to slow a work flow down.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davinian.com/os-x-leopard-are-you-sure-you-want-to-open-it/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>My Top 5 Website Building Tools</title>
		<link>http://www.davinian.com/my-top-5-website-building-tools/</link>
		<comments>http://www.davinian.com/my-top-5-website-building-tools/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 11:34:13 +0000</pubDate>
		<dc:creator>Davinian</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blogs & Blogging]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://davinian.com/my-top-5-website-building-tools/</guid>
		<description><![CDATA[Designing and editing websites and blogs can be much easier with the right tools. Here is a list of my top 5 website building tools: Smultron: A free text editor for the Mac which is both easy to use and&#160;&#8230; <a href="http://www.davinian.com/my-top-5-website-building-tools/">Continue&#160;reading&#160;<span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Designing and editing websites and blogs can be much easier with the right tools. Here is a list of my top 5 website building tools:</p>
<p><strong><img class="ngg-singlepic ngg-none alignleft" src="http://www.davinian.com/content/apps/smultron.jpg" alt="smultron" width="56" height="56" />Smultron</strong>: A free text editor for the Mac which is both easy to use and powerful. It is designed to not confuse newcomers nor disappoint advanced user. I have been using Smultron for well over a year, and it has become my default text editor of choice for .txt, .html to .php</p>
<p class="details"><strong>Website</strong>: <a title="Smultrob by Peter Borg" href="http://smultron.sourceforge.net/">Smultron by Peter Borg</a>. <strong>Requirements</strong>: Mac OS X 10.4.9 Tiger or later<br />
<strong>Price</strong>: Free!</p>
<p><strong><img class="ngg-singlepic ngg-none alignleft" src="http://www.davinian.com/content/apps/cssedit.jpg" alt="cssedit" width="56" height="56" />CSSEdit</strong>: This little application is quick, clean and offers superb CSS styling of absolutely any web page. It is the fastest, easiest CSS editing application I have used, and find using anything else a real pain in the &#8230;</p>
<p class="details"><strong>Website</strong>: <a title="MacRabbit - CSSEdit" href="http://macrabbit.com/">MacRabbit</a>.  <strong>Requirements</strong>: Mac OS X 10.4 or higher.<br />
<strong>Price</strong>: $29.95.</p>
<p><img class="ngg-singlepic ngg-left alignleft" src="http://www.davinian.com/content/apps/photoshop.jpg" alt="photoshop" width="56" height="56" /><strong>Adobe Photoshop</strong>: Possible slightly over the top, in price terms, for most web-designers, and can be a bit daunting to use for the first time. But I&#8217;ve been using Photoshop for fifteen years now and know it like the back of my hand &#8211; so I never start a new design project or website without mocking it up in Photoshop first. It is always running on my Mac and allows me to edit any image instantly.</p>
<p class="details"><strong>Website</strong>: <a title="Adobe" href="http://www.adobe.com/">Adobe</a>.  <strong>Requirements</strong>: PS CS3 Mac OS X v.10.4.8 or higher.<br />
<strong>Price</strong>: from $649.</p>
<p><img class="ngg-singlepic ngg-none alignleft" src="http://www.davinian.com/content/apps/transmit.jpg" alt="transmit" width="56" height="56" /><strong>Transmit 3</strong>: If you design your site locally like I do, then you need a way to get it from your desktop to your server! For pure simplicity I have used Transmit for years now, as it does just that. It is the FTP app of choice for a lot of Mac user, allowing perfect Synchronisation between Your Stuff and Theirs (<em>local and server</em>).</p>
<p class="details"><strong>Website</strong>: <a title="Panic - Shocking good software!" href="https://www.panic.com">Panic</a>.  <strong>Requirements</strong>: Mac OS X 10.3.9 or higher.<br />
<strong>Price</strong>: $29.95.</p>
<p><img class="ngg-singlepic ngg-none alignleft" src="http://www.davinian.com/content/apps/parallels.jpg" alt="parallels" width="56" height="56" /><strong>Parallels</strong>: If you build it you really (<em>really</em>) should make sure it works in every browser! I must confess I am slightly cynical on the whole browser testing thing because I use Safari for most of my browsing these days, and generally it seems to work with 99.9% of every website I visit. Firefox does come a close second, and I do use it for writing and editing posts on my Wordpress sites as this is one thing that Safari doesn&#8217;t like (<em>sigh!</em>).</p>
<p><span id="more-35"></span>But if I am building a website for a client, I really need to make sure it works in everything, yes, even the lovely Windows browser Internet Explorer! And that is where Parallels comes in as I really cant see the point in also owning a PC when the Mac can now do both! On my XP install I use the excellent <a title="Install multiple=">Multiple IE</a> app which lets me test in every version of IE, I can also test in Firefox and any number of other browser I like &#8211; all from the comfort of my Mac.</p>
<p class="details"><strong>Website</strong>: <a title="Parallels" href="http://www.parallels.com">Parallels</a>.  <strong>Requirements</strong>: Mac OS X 10.4+ running on an Intel Mac.<br />
<strong>Price</strong>: $79.99.</p>
<p>Although this is a Top 5 list, I can&#8217;t really leave out two very important application that I use when designing and testing websites. So here are 2 extra apps I always use, and wouldn&#8217;t leave home with out!</p>
<p><strong><span style="font-weight: normal;"><img class="ngg-singlepic ngg-none alignleft" src="http://www.davinian.com/content/apps/mampicon-64x64.jpg" alt="mampicon-64x64" width="38" height="38" /></span><a title="MAMP" href="http://www.mamp.info/en/index.php">MAMP</a></strong><a title="MAMP" href="http://www.mamp.info/en/index.php">:</a> It stands for: Macintosh, Apache, Mysql and PHP, and installs a local server environment in a matter of seconds on your Mac, be it PowerBook or iMac. MAMP is much quicker and easier than fussing around with trying to install and configure a server manually, and to top it all, it&#8217;s Free!</p>
<p><strong><span style="font-weight: normal;"><img class="ngg-singlepic ngg-none alignleft" src="http://www.davinian.com/content/apps/itunes-64x64.jpg" alt="itunes-64x64" width="38" height="38" /></span><a title="Apple iTunes" href="http://www.apple.com/itunes/">iTunes</a></strong>: Yes I know, it is not a design app, it can&#8217;t make wonderful website or clean up your messy code. But what iTunes does do is to block out surrounding noise and distractions, thus helping me to concentrate and maximise my time and energy so that I can get away from the computer every once and a while so I can have a life!</p>
<p><strong>My Top 5 web building tools</strong> was inspired by Mark over at 45n5, who originally wrote his own <em>Top 5 Website Building Tools</em>. Unfortunately, his website is no longer available!</p>
<p>What do you use? If you want to write your own top 5 and let me know the link, I will add it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davinian.com/my-top-5-website-building-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Just because your paranoid (Mac Security)</title>
		<link>http://www.davinian.com/just-because-your-paranoid-mac-security/</link>
		<comments>http://www.davinian.com/just-because-your-paranoid-mac-security/#comments</comments>
		<pubDate>Tue, 05 Sep 2006 17:02:34 +0000</pubDate>
		<dc:creator>Davinian</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://wonkaweb.co.uk/davinian/just-because-your-paranoid-mac-security/</guid>
		<description><![CDATA[Security is always a good idea, it protects you from all those nasty viruses and evil hackers that you just know are lurking in the darker corners of the web, waiting silently to slip into you computer and take over&#160;&#8230; <a href="http://www.davinian.com/just-because-your-paranoid-mac-security/">Continue&#160;reading&#160;<span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="ngg-singlepic ngg-none alignright" src="http://www.davinian.com/content/fun/passwordprotect.jpg" alt="passwordprotect" width="170" height="145" />Security is always a good idea, it protects you from all those nasty viruses and evil hackers that you just know are lurking in the darker corners of the web, waiting silently to slip into you computer and take over your life!</p>
<p>But even if you have the best security in the world, it wont protect you from your office mates or so called friends who you invite around for a cup of coffee and a chat.</p>
<p><a title="The perils of not password-protecting your computer" href="http://www.geekculture.com/joyoftech/joyarchives/863.html">The perils of not password-protecting your computer</a> is just as bad, we can laugh about it, but it can be a lot more dangerous than not running a firewall or not having anti-virus software installed. If you&#8217;re laughing at this right now, ask yourself, would you really let the person sitting next to you freely browse the contents of your computer?</p>
<p>Below are 5 simple steps to password protecting your Mac*</p>
<p><span id="more-11"></span></p>
<ol>
<li>Open up <strong>System Preferences</strong>.</li>
<li>Click on <strong>Accounts</strong> and add a password to your profile (<em>if you haven&#8217;t already</em>). Write it down if you really must, but try to come up with something simple that you can remember, yet not easily guess-able for the office snoop! <em>Oh, and don&#8217;t use your children or pets name as passwords – that&#8217;s just stupid!</em></li>
<li>Go back to the <strong>System Preference</strong> overview (<em>Show all Apple L</em>) and click on <strong>Security</strong>. Check the tick box for <strong>Require password to wake this computer form sleep or screensaver</strong> and <strong>Disable automatic login.</strong></li>
<li>Back to preference overview (<em>Apple L</em>) and select <strong>Dashboard &amp; Exposé</strong>. Set up one of the <strong>Active Screen Corners</strong> to <strong>Start Screen Saver</strong>.</li>
<li>Quit <strong>System Preference</strong> and test the hot corner by moving your mouse to it, you should see the Screen Saver start?. If you move the mouse again or hit any key on the keyboard, you will be prompted for the password you set up in <strong>step 2</strong>.<br />
You will also notice that when you next turn off/on you Mac that you will be presented with a <strong>User Login widow</strong> instead of just logging in. Select your profile and enter your password.</li>
</ol>
<p>Now, unlike the coffee making couple in <a title="Joy of Tech" href="http://www.geekculture.com/joyoftech/joyarchives/863.html">The Joy of Tech</a>, you can quickly activate your screen saver before popping to the kitchen for a chat!</p>
<p><!--adsense#postfooter--></p>
<p class="smallprint">*Simple steps where worked out on a Mac running OS 10.4. System Preferences may vary on older version of OS 10.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davinian.com/just-because-your-paranoid-mac-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New iMac Problems</title>
		<link>http://www.davinian.com/new-imac-problems/</link>
		<comments>http://www.davinian.com/new-imac-problems/#comments</comments>
		<pubDate>Sun, 03 Sep 2006 12:59:57 +0000</pubDate>
		<dc:creator>Davinian</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://wonkaweb.co.uk/davinian/new-imac-problems/</guid>
		<description><![CDATA[I bought a new 20 inch Core Duo iMac a few months ago, my first Apple product in four years. Its clean edges look fantastic on the desk and it sits like a big brother next to my old 12&#160;&#8230; <a href="http://www.davinian.com/new-imac-problems/">Continue&#160;reading&#160;<span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="ngg-singlepic ngg-none alignright" src="http://www.davinian.com/content/news/imac-02.jpg" alt="imac-02" width="144" height="256" />I bought a new <a title="20 inch Core Duo iMac" href="http://www.apple.com/uk/imac/">20 inch Core Duo iMac</a> a few months ago, my first Apple product in four years. Its clean edges look fantastic on the desk and it sits like a big brother next to my old <a title="12 inch PowerBook G4" href="http://en.wikipedia.org/wiki/PowerBook_G4">12 inch PowerBook G4</a> .</p>
<p>But after a few weeks (<em>conveniently just out of the 14 day return policy</em>) I started noticing something weird happening after waking the iMac from sleep mode. At first there was a weird flickering across the screen, the kind of flicker you get when degaussing a conventional monitor. But this seemed to last longer and longer with each sleep and eventually took over an hour to clear itself, and even longer if it had been in sleep mode overnight.</p>
<p><span id="more-10"></span></p>
<p>Then with the longer flicker periods I started noticing strange discolouration along the top and bottom of the screen, which didn&#8217;t fade and stayed as long as the Mac was on. The only way I found to clear the discolouration was to turn it off for a few hours which then seemed to reset the problem.</p>
<p><img class="ngg-singlepic ngg-none" src="http://www.davinian.com/content/news/imac-screen.jpg" alt="imac-screen" /></p>
<p>I searched the Apple forums and found a few similar cases, but nobody seemed to really know what was causing the problems. Reluctantly I decided to call Apple, but the helpdesk hadn&#8217;t heard of the problem and after testing the usual off/on hold down this and that button tricks (<em>which I&#8217;d already tried</em>), they suggested I take the Mac to my nearest Apple aurthorised repair centre and get it checked out.</p>
<p>It turns out there are three such centres close to me, all within a 40 mile radius. I rang the first (<em>I wont name them</em>) and they said they hadn&#8217;t heard of the problem, but if I bring it in they will take a look. Cool I thought, but when I ask how long they thought it would take to test and hopefully fix the problem, they said &#8220;three to four weeks&#8221;. Flipping heck I though, I think I&#8217;ll call one of the others. So number two, still hadn&#8217;t heard of the problem, but bring it in etc., I then ask how long, they said &#8220;two to three weeks&#8221;, so a little better than the first, but not great.</p>
<p>So to the third, &#8220;you will have to leave your name and number, a technician will call you back&#8221; said reception. Ok I thought, when will they call me? &#8220;within 20min&#8221; yeah right I thought! But guess what – they did, and to my surprise they had also heard of the problem, and to my surprise again – &#8220;it should only take one to two weeks max&#8221;.  Brilliant – jump in the car to drop it off.</p>
<p>Ten days later I get a call &#8220;it&#8217;s fixed&#8221;. Cool less that two weeks – jump in the car to pick it. I&#8217;ve had it back for five days now and haven&#8217;t noticed the problem once, so it seems to have been fixed (<em>fingers crossed</em>). Which incidentally was just a matter of replacing the logic board, seems that there was a defective video port on it.</p>
<p><!--adsense#postfooter--></p>
<p>So if you are having similar problems with your new iMac, ring up your nearest repair centre and book it in. Apple haven&#8217;t admitted that there is a fault with the logic boards, but off the record, the technician did say he had replaced about ten boards in the last couple of months &#8211; so it may be possible that there was a bad batch of logic boards produced? Then again I just could have been unlucky!</p>
<p><strong>For ref:</strong> Use the <a title="Apple Where to Buy Apple Products and Services" href="http://www.apple.com/uk/buy/locator/">Apple Where to Buy Apple Products and Services</a> search page to find your nearest Authorised service centre (<em>use Find Service in the You want to: drop down, then stick in your postcode and click search</em>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davinian.com/new-imac-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
