<?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>memeLab &#187; tim</title>
	<atom:link href="http://memelab.com.au/author/tim/feed/" rel="self" type="application/rss+xml" />
	<link>http://memelab.com.au</link>
	<description>Search Engine Marketing and Web Publishing Services</description>
	<lastBuildDate>Sat, 28 Aug 2010 11:35:01 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Configuring XAMPP as a Wordpress development server</title>
		<link>http://memelab.com.au/configuring-xampp-wordpress-development-server/</link>
		<comments>http://memelab.com.au/configuring-xampp-wordpress-development-server/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 11:32:39 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[wp-config.php]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://memelab.com.au/?p=324</guid>
		<description><![CDATA[Finally!  I&#8217;ve managed to get a satisfying development environment for Wordpress on my local machine! I&#8217;ve had a semi-operational setup for a few years, but have just managed to meet all my needs!
I&#8217;m using XAMPP on Mac OSX to design my Wordpress themes, and now my setup features:

a sensible, unique hostname for my local site [...]]]></description>
			<content:encoded><![CDATA[<p>Finally!  I&#8217;ve managed to get a satisfying development environment for Wordpress on my local machine! I&#8217;ve had a semi-operational setup for a few years, but have just managed to meet all my needs!</p>
<p>I&#8217;m using XAMPP on Mac OSX to design my Wordpress themes, and now my setup features:</p>
<ul>
<li>a sensible, unique hostname for my local site (eg. memelab.dev)</li>
<li>prettylinks using url rewrite</li>
<li>functioning Wordpress and plugin updates</li>
<li>a wp-config.php edit which eliminates the need to edit the database when uploading the site to the production server<span id="more-324"></span></li>
</ul>
<h2>Installation</h2>
<p>Install <a href="http://www.apachefriends.org/en/xampp-macosx.html">XAMPP</a> and <a href="http://wordpress.org/">Wordpress</a>.</p>
<p>This is pretty straight forward, but for the sake of completeness, I&#8217;ll mention this comprehensive guide from <a href="http://sixrevisions.com/tutorials/web-development-tutorials/using-xampp-for-local-wordpress-theme-development/">Six Revisions</a> (which I haven&#8217;t examined too closely, but looks solid).</p>
<h2>Configure prettylinks</h2>
<p>I found that my prettylinks failed when I initially installed&#8230; I think this is fixed in later versions of XAMPP.  I&#8217;m running XAMPP 1.7.3, and I don&#8217;t recall needing to do anything on since upgrading, but if you&#8217;re having trouble, you may need to edit some config files.  You can open them in TextEdit.app if you don&#8217;t have a favourite editor (I love TextMate) by adapting the following:</p>
<p><code>sudo open -e “/Applications/XAMPP/etc/httpd.conf”</code></p>
<p>You may need to:</p>
<blockquote><p>Enable URL rewrite) by opening <code>xampp/xamppfiles/etc/httpd.conf</code> and deleting the hash/pound sign at the front of the line to uncomment:<br />
<code>LoadModule rewrite_module modules/mod_rewrite.so</code><br />
<a href="http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems">Fixing Permalink problems</a></p></blockquote>
<p>When I intially had trouble (several years ago I think) the post which helped me out was:</p>
<blockquote><p>&#8220;&#8230;Clean URLs do not work out of the box on XAMPP 1.5.x with PHP4 due to a problem in Apache&#8217;s module load order&#8230;<br />
&#8220;<a href="http://drupal.org/node/43545">Clean URL support in XAMPP</a></p></blockquote>
<p>Bottom line &#8211; its working a charm now!</p>
<h2>Configure local servers</h2>
<p>To access your local site at an address like http://memelab.dev/, you&#8217;ll need to configure XAMPP.  XAMPP stores its virtual hosts configuration in a separate file called httpd-vhosts.conf, which is not actually used by default, so:</p>
<ol>
<li>In <code>/xampp/xamppfiles/etc/httpd.conf</code> uncomment the line: <code>Include /Applications/XAMPP/etc/extra/httpd-vhosts.conf</code></li>
<li>You can now make entries into <code>httpd-vhosts.conf</code>.  There is an example in there &#8211; adapt it to your needs!</li>
<li>Enter your hostname into <code>/etc/hosts</code> like so:<br />
<code>127.0.0.1 yoursite.dev</code><br />
(Your hosts file is not visible in finder, and needs to be edited with admin privileges, so open the terminal and paste:<br />
<code>sudo Open /Applications/TextEdit.app /etc/hosts</code></li>
<li>Reload apache, and you&#8217;re done! (XAMPP control &gt; Modules &gt; Restart Apache).</li>
</ol>
<p>I adapted my solution from a post in the <a href="http://codex.wordpress.org/MacOS_X_Local_Mirror#Create_a_example.mirror_static_site">Wordpress Codex</a>.</p>
<h2>Enable Wordpress updates whilst using XAMPP</h2>
<p>This is the breakthrough which has prompted this post, thanks to Ian at messaliberty.com.  If you&#8217;ve come this far, you&#8217;ll have no trouble returning to <code>/xampp/xamppfiles/etc/httpd.conf</code> and replacing</p>
<p><code>User nobody<br />
Group admin</code></p>
<p>with:</p>
<p><code>User yourusername<br />
Group staff</code></p>
<p>You can find more detailed instructions at the source:</p>
<blockquote><p>edit the XAMPP apache config file to run it as your local user.<br />
<a href="http://www.messaliberty.com/2010/04/how-to-fix-wordpress-automatic-upgrades-and-plugin-installs-on-xampp/">How to fix WordPress automatic upgrades and plugin installs on XAMPP</a></p></blockquote>
<p>(And make sure that LittleSnitch, if you use it, is allowing httpd to access wordpress.org)</p>
<h2>Tweak wp-config.php</h2>
<p>Ordinarily, migrating your database to your local installation, and vice-versa requires that you the Wordpress database &#8211; in particular the WP_HOME and WP_SITEURL.  Ian at messaliberty.com again has a solution!  This is working well for me:</p>
<blockquote><p>&#8220;set-up the wp-config.php to check to see if it is a local server, if it  is then set the configuration one way, otherwise set it using the  production values&#8221;<br />
<a title="Permanent Link to How to create a single wp-config file for local and remote WordPress development" rel="bookmark" href="http://www.messaliberty.com/2010/01/how-to-create-a-single-wp-config-file-for-local-and-remote-wordpress-development/">create a single wp-config file for local and remote WordPress development</a></p></blockquote>
<p>A bonus tip on whilst we&#8217;re here &#8211; Joost has offered this addition:</p>
<blockquote><p>&#8220;a quick hack I do in almost all WordPress installs I manage, that allows me to quickly switch on debug mode when needed&#8221;<br />
<a href="http://yoast.com/wordpress-debug/">Joost &#8211; Simple Wordpress debuggin</a></p></blockquote>
<p>Next recommendation from me: use some versioning software &#8211; I use Versions.app, which is a simple SVN client for the mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://memelab.com.au/configuring-xampp-wordpress-development-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Productivity on the Mac: Saving Files</title>
		<link>http://memelab.com.au/productivity-mac-saving-files/</link>
		<comments>http://memelab.com.au/productivity-mac-saving-files/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 02:00:28 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[file management]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Save As]]></category>

		<guid isPermaLink="false">http://memelab.com.au/?p=311</guid>
		<description><![CDATA[If there&#8217;s one thing that annoys me, its trawling through a Save As dialog box in order to save the file to an appropriate location.
Save time with three simple but rarely mentioned strategies which can take the pain out of filing your documents.
Save it to a temporary location
Of course the desktop is the obvious choice [...]]]></description>
			<content:encoded><![CDATA[<p>If there&#8217;s one thing that annoys me, its trawling through a Save As dialog box in order to save the file to an appropriate location.</p>
<p>Save time with three simple but rarely mentioned strategies which can take the pain out of filing your documents.<span id="more-311"></span></p>
<h2>Save it to a temporary location</h2>
<p>Of course the desktop is the obvious choice here, particularly because you can hit Cmd-D to use the system-wide shortcut for selecting the Desktop as the save location.</p>
<p>Then you can do a cleanup at the end of the session, or use the tips below to tidy-up as you go.</p>
<p>This make saving a two step process, but doesn&#8217;t require you to navigate throught the awkward Save As dialog.  The Save As dialog will remember the last place you saved a document, so if you always save to an accessible temporary location, the whole caper is a lot simpler.</p>
<p>I prefer to keep the Desktop really clean, so I keep my unprocessed files in my Temp folder, which I&#8217;ve created in Documents, and lodged in Finder&#8217;s sidebar (see below!).</p>
<h2>Create a Sidebar Alias in Finder</h2>
<p>This is a great method to implement anytime you&#8217;re going to be working on a project for more than half an hour!   Because the chances are you&#8217;ve already got a Finder window open showing your project&#8217;s files. You can drag any folder into the Finder sidebar and it will show up in all dialog boxes system-wide.</p>
<p><a rel="attachment wp-att-316" href="http://memelab.com.au/wp-content/uploads/Finder-sidebar-alias.png"><img class="aligncenter size-full wp-image-316" title="Finder-sidebar-alias" src="http://memelab.com.au/wp-content/uploads/Finder-sidebar-alias.png" alt="" width="530" height="286" /></a></p>
<ul>
<li>Simply navigate to the desired folder, and drag its icon over the sidebar</li>
<li>Watch for the Insertion bar to show, then drop the folder.  Presto!</li>
<li>To remove the icon from the sidebar, simply drag it out; it will disappear with a &#8216;puff&#8217;.</li>
</ul>
<p>This process creates an <em>alias</em>, or <em>shortcut</em> of the folder, meaning that the actual location of the folder remains unchanged, and removing the alias from the sidebar won&#8217;t delete any files!</p>
<p>Just make sure that you drop the folder when you see the insertion bar; if you drop it when you&#8217;re hovering over another folder in the sidebar, you&#8217;ll end up moving the folder.  If this happens, don&#8217;t worry, Edit &gt; Undo (Cmd-Z) is your friend.</p>
<h2>Drag the document directly from the application</h2>
<p>Here are some nice ninja tricks which don&#8217;t require you to do any setup..</p>
<p>Little known fact for you: applications&#8217; title bars are often clickable!  You can Cmd Click on a filename to see where it is located in the folder hierachy on your drive.  You can also drag the icon next to the filename in order to move (or copy, or create an alias/shortcut) the file.  This is true of Finder, Word and Office apps, Preview and many others, but may not be relevant for apps like Photoshop, which may change the default mac interface, and Thunderbird which are not dealing with actual files.</p>
<p><a rel="attachment wp-att-315" href="http://memelab.com.au/wp-content/uploads/Finder-path.jpg"><img class="aligncenter size-full wp-image-315" title="Finder-path" src="http://memelab.com.au/wp-content/uploads/Finder-path.jpg" alt="" width="530" height="286" /></a></p>
<p>To make use of this gem, simply</p>
<ul>
<li>click and drag the icon, but don&#8217;t release the mouse button, or</li>
<li>switch to a Finder window and drop the file directly into place.</li>
</ul>
<p>There are a raft of options here: you could:</p>
<ul>
<li> Open a Finder window to the correct location in advance, ready to receive the file using
<ul>
<li> Exposé hit F9 (you may need to hold the Fn key depending on your keyboard) and drag the file onto the Finder window</li>
<li> Hit Cmd-Tab to switch to Finder.<br />
This is my usual tactic (my greatest peeve is that Finder does not permit you to switch between its various windows using Cmd~)</li>
</ul>
</li>
<li>Use the &#8217;spring-loaded&#8217; functionality of Finder to navigate through your file system.)
<ul>
<li> Hover over the each waypoint briefly and wait for that location to open, then hover over the next step.</li>
<li> Whilst dragging you can hit the spacebar to immediately open a folder.<br />
Sounds complicated, but in practice it can be really quick!</li>
</ul>
</li>
</ul>
<h2>Mix and Match!</h2>
<p>Well, that just touches on some component skills which you can combine to shape your own workflow.  I find that file management becomes like driving: it&#8217;s second nature in your own car, but driving someone elses system can feel like navigating a tractor!</p>
<p>If you&#8217;ve got a tip to add to the lost, drop me a line in the comments!  If there&#8217;s enough interest, I&#8217;ll have an excuse to do a screen cast of these techniques <img src='http://memelab.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://memelab.com.au/productivity-mac-saving-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photoshop Precision: Using transform options</title>
		<link>http://memelab.com.au/photoshop-precision-using-transform-options/</link>
		<comments>http://memelab.com.au/photoshop-precision-using-transform-options/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 03:00:41 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[photoshop-precision]]></category>
		<category><![CDATA[transform]]></category>

		<guid isPermaLink="false">http://memelab.com.au/?p=271</guid>
		<description><![CDATA[This is the next installment in the Photoshop Precision series: how to cut the guesswork out of scaling and positioning your images.
You can postion and scale objects precisely using the transform toolbar, which runs along the top of the screen if it is set to visible.
To show it, you must be in transform mode (Command-T [...]]]></description>
			<content:encoded><![CDATA[<p>This is the next installment in the <a title="Photoshop Precision Tutorials" href="/tag/photoshop-precision/">Photoshop Precision</a> series: how to cut the guesswork out of scaling and positioning your images.</p>
<p>You can postion and scale objects precisely using the <strong>transform toolbar</strong>, which runs along the top of the screen if it is set to visible.</p>
<p>To show it, you must be in transform mode (Command-T [Mac] or Control-T [PC] or Edit &gt; Free Transform), and the options must visible (Window &gt; Options).<span id="more-271"></span></p>
<h2>Positioning an object exactly</h2>
<p>In the first of the following screenshot,</p>
<ul>
<li>I&#8217;ve <a title="Photoshop Precision: Aligning guides to the Pixel Grid" href="photoshop-tips-aligning-guides-to-the-pixel-grid/">shifted the Ruler Origin</a> to 20,20, then </li>
<li>I&#8217;ve gone into transform mode and set the anchor point to top left (by clicking the top left box in the grid of nine boxes at the top left of the screenshot). </li>
<li>You can then type the offset from the Ruler Origin into the X and Y boxes.  If you knew that you needed to shift the object 23 pixels down and 17 across, you could enter &#8216;relative&#8217; mode by clicking the triangle between X and Y.</li>
</ul>
<p><img title="transform-position" src="http://memelab.com.au/wp-content/uploads/transform-position.png" alt="transform-position" width="300" height="300" /></p>
<h2>Scaling with precision</h2>
<p>Here, I&#8217;m transforming the circle using the Width and Height controls to resize my circle.  Note that the units displayed can be changed by typing them in.  You can even have a mix on units!  Here I&#8217;m using percentage and Pixels, which is just a gimmick <img src='http://memelab.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  Clicking the chain icon here is useful to ensure that aspect ratio is locked, and your object doesn&#8217;t get squashed.</p>
<p><img title="transform-scale" src="http://memelab.com.au/wp-content/uploads/transform-scale.png" alt="transform-scale" width="300" height="300" /></p>
<p><br class="spacer_" /></p>
<p>You can also finetune the rotation and skew of the object using the transform toolbar, but I&#8217;m sure you&#8217;ve fugured that out already!  That&#8217;s it for today; let me know if you&#8217;ve got something to add by leaving a comment! <br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://memelab.com.au/photoshop-precision-using-transform-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buying a Secondhand Macbook, in detail</title>
		<link>http://memelab.com.au/buying-a-secondhand-macbook-in-detail/</link>
		<comments>http://memelab.com.au/buying-a-secondhand-macbook-in-detail/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 07:00:02 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[applecare]]></category>
		<category><![CDATA[Buyers Guide]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[second hand]]></category>

		<guid isPermaLink="false">http://memelab.com.au/?p=294</guid>
		<description><![CDATA[Macs rock.  Here is an update of my previous post on buying secondhand now covering hardware differences, where to buy in Australia, Applecare warranty, and why they hold their value.
I&#8217;m a big fan, because its the very best way to recycle, and its cheaper!  I&#8217;ve had really good experiences, having bough a Powerbook secondhand, sold [...]]]></description>
			<content:encoded><![CDATA[<p>Macs rock.  Here is an update of my <a href="/buying-a-second-hand-macbook/">previous post</a> on buying secondhand now covering hardware differences, where to buy in Australia, Applecare warranty, and why they hold their value.</p>
<p>I&#8217;m a big fan, because its the very best way to recycle, and its cheaper!  I&#8217;ve had really good experiences, having bough a Powerbook secondhand, sold 2 macs to friends, and advised several other friends on satisfactory purchases.  I&#8217;ve covered everything that comes to mind, and included links to more information where relevant.<span id="more-294"></span></p>
<h2>Terms you should know</h2>
<p>There&#8217;s an infinite amount of lingo, right? In this case you should know:</p>
<ul>
<li>Polycarbonate &#8211; refers to the white plastic Macbook</li>
<li>Unibody &#8211; is the new aluminium model of Macbook and Macbook Pro</li>
<li>iBook &#8211; is not a Macbook!  The iBook is white, and similar looking to a Macbook, but a completely different vintage.  Still a great little unit if you own one, but don&#8217;t settle for less than a Core2Duo</li>
<li>C2D, Core2Duo &#8211; Two cores (processors), using 64bit architechture. Older computers are still fine, but this is the current generation, and there are plenty around for reasonable prices.</li>
<li>Combo Drive &#8211; CD burner, DVD player, no DVD burning</li>
<li>Super Drive &#8211; Burns CDs and DVDs</li>
<li>Blue Ray &#8211; Get real!!</li>
<li>Multitouch &#8211; the Macbook trackpads allow you to use multiple finger swipes and clicks for scrolling, right clicking, and other functions.  This is an awesome feature!</li>
<li>Applecare &#8211; is the Apple warranty.  Read more below.</li>
</ul>
<h2>Major differences between models</h2>
<p>You can compare the specs of different models of Macbook at <a href="http://members.everymac.com/index.php?option=com_comparison&amp;task=compare_product">Everymac.com</a>.  This site is an invaluable resource which will compare the nitty gritty of 3 computers side-by-side, and provide in depth specs, articles and upgrade options for all.</p>
<p>These are crucial differences for most people:</p>
<ul>
<li>DVD burner &#8211; Pay attention! Super drive does, Combo drive does not.</li>
<li>Multitouch &#8211; newer models can recognise up to 4 fingers, most recognise 2 fingers.  Make sure you get (at least) two finger multitouch, otherwise its a dealbreaker for me!</li>
<li>Firewire &#8211; as of the Unibody, there are only Firewire ports on Macbook Pros!  Polycarbonate MB to the May&#8217;09 model still have Firewire.. sneaky advantage if you need this for capturing from your Video Camera Apperatus.</li>
</ul>
<p>Further differences to look out for are:</p>
<ul>
<li>Hard Drive capacity &#8211; anywhere from 60gb to 320gb.  Very easy to upgrade yourself on the cheap.</li>
<li>Included RAM &#8211; is often upgraded by the user, so look out for the bargain individuals!</li>
<li>Maximum RAM &#8211; all the C2D can all handle 4gb+, so why worry?</li>
<li>Graphics Card &#8211; All the 2009 models Poly and Uni have the Nvidia GeForce 9400M.  Great!  Regardless, unless you&#8217;re planning to render crazy huge photoshop docs, or play hard in FCP, no worries!!</li>
<li>Video port &#8211; the polycarbonate MB has mini DVI out, and the Unibody has mini Display Port.  This is a consideration if you already own an monitor external monitor.  In any case, all of the MBs from the last few years support a second monitor, and adapters are available from the <a href="http://store.apple.com/au/browse/home/shop_mac/mac_accessories/displays?mco=MTM3NDY5NDk">Apple store</a>..</li>
<li>Battery life &#8211; Varies wildly.  In short: newer is better (up to 7 hours) than older (starts as low as 2.5 hours).  If you&#8217;re buying an older MB, the battery may already be fatigued.</li>
<li>Backlit keyboard &#8211; handy if you work on the plane&#8230; I switch it off.</li>
</ul>
<p>What doesn&#8217;t change (much)?</p>
<ul>
<li>Wireless, LAN, Bluetooth connectivity</li>
<li>Size / Form factor &#8211; the unibody is marginally thinner, but they&#8217;re both pretty handy.  Same goes for weight.</li>
<li>Screen surface &#8211; I think I&#8217;m right in saying that the C2Ds are mostly glossy.. </li>
<li>Keyboard features (layout changes a little)</li>
<li>USB 2.0 ports (only 2!)</li>
<li>Kensington keylock port (for chaining your lappie to the desk, lest it try to sneak off)</li>
</ul>
<p>The operating system!  Lets face it: OSX is the killer feature of these babies anyway, so rest assured that you&#8217;re in for a treat regardless of which you buy.  Even the old iBook remains a thoroughly useful unit for office work, movies and music, surfing and light photoshop!  This is the key to Macs holding their value, and the other factor is Applecare&#8230;</p>
<h2>Applecare is transferrable!</h2>
<p>Applecare is Apple&#8217;s extended warranty.  It is excellent value for a number of reasons:</p>
<ul>
<li>Things do go wrong, and the warranty means that you can take it into a service centre (eg. Nextbyte has 2 locations in Melbourne, 8 nationwide) and have it seen to.  It has saved me three times in the last 5 years.</li>
<li>Having such a transferrable warranty is great for resale value.</li>
</ul>
<p>Yes, Applecare is transferrable!  I bought my Macbook for $1750 (trainers discount) in late 07, owned it for 18 months, sold it for $1150 with another 18 months warranty to go.  Everyone was happy.</p>
<p>Other great things to know:</p>
<ul>
<li>You can purchase Applecare anytime inside the initial 1 year factory warranty period, and not at all afterwards, so this is another great way to distribute costs if you&#8217;re buying a fresh unit.</li>
<li>You can buy Applecare on eBay cheaper than from Apple!  Compare ~$200 to $400+.  I&#8217;ve done it.. <a href="http://www.wisebread.com/can-cheap-applecare-on-ebay-be-trusted">check it out yourself</a>.</li>
<li>Applecare is model specific: you can&#8217;t use Applecare:iMac for a Macbook.</li>
</ul>
<p><strong><abbr title="I Am Not A Lawyer!">IANAL</abbr>!! </strong>An extreme crop of  Section 6: Transfer of Plan from <a href="http://images.apple.com/legal/applecare/docs/APAC_APP_English_ZAv5.1.pdf">Applecare conditions for Asia/Pacific</a>:</p>
<blockquote><p><em>..you may make a one-time permanent transfer of all of your rights under the Plan to another party, provided that: (a) the transfer must include the original Proof of Purchase, the Plan&#8217;s Certificate and all of the Plan&#8217;s packaging material, including printed materials and these Terms and Conditions; (b) you notify Apple of the transfer&#8230;</em></p>
</blockquote>
<p>You can manage registration of warranty at the <a href="https://selfsolve.apple.com/Agreements.do">Apple support site</a>.</p>
<h2>Could you buy new with an EDU discout?</h2>
<p>Worth considering: if you are employed by a Registered Training Organisation, or enrolled at a recognised institution, there is a discount which may be as much as $150 on Macbooks.  <a href="http://store.apple.com/au/browse/home/education_routing">Read more at Apple</a>.</p>
<p>You can still buy from your local: I provided them with a letter from my employer on company letterhead and a payslip, if I remember correctly.</p>
<h2>DIY refurbished</h2>
<p>If you&#8217;re trying to repair your own Macbook, or think you might get a bargain on eBay with or broken screen or suchlike, then you head over to <a href="http://www.macfixit.com.au/shop/index.php?_a=viewCat&amp;catId=30">Mac Fixit</a> for parts and <a href="http://www.powerbookmedic.com/mac-repair.php">Mac Repair Guides</a> for instructions.  If you&#8217;re handy with the tools, you might repair it yourself for around AU$300!</p>
<h2>Where to buy Secondhand Macbooks in Australia</h2>
<p>My updated list for searching for <strong>secondhand Mac hardware </strong>in Australia:</p>
<ul>
<li><a href="http://www.newwavesystems.com.au/">New Wave Systems</a> &#8211; a great range of products, and a sense of humour. Delivers to Melbourne Metro for $10 at the tim of writing.</li>
<li><a href="http://store.apple.com/au/browse/home/specialdeals/mac">Refurbished from Apple.com.au</a> &#8211; the offerings are generally limited, but I&#8217;ve had a friend get lucky here.</li>
<li><a href="http://www.nextbyte.com.au/pages/bestbuys.aspx">Next Byte Best Buys</a> &#8211; There&#8217;s not often much on offer here, but keep an eye out.</li>
<li><a href="http://whirlpool.net.au/wiki/?tag=Mac_Shops">Whirlpool Wiki: Mac Stores Australia wide</a></li>
<li><a href="http://forums.whirlpool.net.au/forum/38?g=40&amp;p=2">Whirlpool Forums: Mac</a> &#8211; do a search for &#8217;sale&#8217; or &#8216;discount&#8217; (eg. Headline: up to 19% off at Dick Smith!?)!</li>
<li>(eBay)</li>
</ul>
<h2>My Roundup of Tips</h2>
<ul>
<li>Narrow your search to Core2Duo Macbooks.  Then you&#8217;re looking at contemporary computers: all will run the latest version of OSX (10.6 at time of writing)</li>
<li>Look out for Applecare included, or the opportunity to buy it.  Applecare is a must!</li>
<li>You can Upgrade RAM and Harddrive size easily.  So maybe you can do it later, and distribute the cost.</li>
<li>More RAM is more fun. (see the previous point)</li>
<li>Even the little 13&#8243; Macbooks drive lovely big 24&#8243; monitors</li>
</ul>
<p>Epic post!  I wish I got a commission, but for now I&#8217;ll put this down to public service.  Comments / suggestions welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://memelab.com.au/buying-a-secondhand-macbook-in-detail/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photoshop Precision: Avoid blurring your image</title>
		<link>http://memelab.com.au/photoshop-precision-avoid-blurring-your-image/</link>
		<comments>http://memelab.com.au/photoshop-precision-avoid-blurring-your-image/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 03:00:26 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[anti-alias]]></category>
		<category><![CDATA[blur]]></category>
		<category><![CDATA[moire]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[photoshop-precision]]></category>

		<guid isPermaLink="false">http://memelab.com.au/?p=258</guid>
		<description><![CDATA[This is the second article in the Photoshop Precision series.
Photoshop sometimes appears to blur objects, lines or images.  This could be due to rounding, or losing data after transforming a layer.  Read on for best practice in resizing images and creating vector shapes, and come to grips with the way Photoshop displays your document.
Rounding Errors
Rounding [...]]]></description>
			<content:encoded><![CDATA[<p>This is the second article in the <a title="Photoshop Precision Tutorials" href="/tag/photoshop-precision/">Photoshop Precision</a> series.</p>
<p>Photoshop sometimes appears to blur objects, lines or images.  This could be due to rounding, or losing data after transforming a layer.  Read on for best practice in resizing images and creating vector shapes, and come to grips with the way Photoshop displays your document.<span id="more-258"></span></p>
<h2>Rounding Errors</h2>
<p>Rounding is a result of displaying a objects of various sizes on a screen which has a finite number of pixels.  Read about <a href="http://en.wikipedia.org/wiki/Moire">moiré patterns</a> to come to grips with this!</p>
<p>It occurs when, for instance, you have two objects snapped next to eachother, and you change your zoom level and ghost lines appear between the objects.  This is normal, and nothing to worry about: just ensure that you are looking at the document at 100% zoom (Command-Alt-Zero on Mac, Control-Alt-Zero on PC).  I find that every second zoom level looks right, and I get jaggies or ghosts in between.  In the images below, identical boxes are placed next to eachother, and shown at different zoom levels.</p>
<p><img class="alignnone size-full wp-image-259" title="rounding-66" src="http://memelab.com.au/wp-content/uploads/rounding-66.png" alt="rounding-66" width="200" height="200" /> <img class="alignnone size-full wp-image-260" title="rounding-50" src="http://memelab.com.au/wp-content/uploads/rounding-50.png" alt="rounding-50" width="200" height="200" /></p>
<p>This can be disconcerting if you are editing a vector (like text), and it looks jaggy when you zoom right in.  This can be useful to allow you to compare all of the objects in your document in the same scale, to help align them and so forth.  If you export your document with vectors intact, the text will still be rendered dynamically in all its glory in Acrobat or Preview.</p>
<h2>Losing detail by resizing</h2>
<p>Blurring is <strong>not</strong> good if you&#8217;ve resized an image within your document inappropriately.</p>
<p>Photoshop culls data when you scale the image down, and then pixelates the image when you blow it up again.  To avoid this, right click the image&#8217;s name in the Layers palette, and &#8216;Convert to Smart Object&#8217; before resizing.  This will embed the image in the document, and use it as a reference each time you resize the layer, avoiding the problem I&#8217;ve described.</p>
<p><img class="alignnone size-full wp-image-262" title="smart-obj" src="http://memelab.com.au/wp-content/uploads/smart-obj.png" alt="smart-obj" width="200" height="200" /></p>
<p>Here is an example: the circle on the left has been copied and moved to the right, then scaled right down with the transform tool, then returned to its orginal size.  They would be indistinguishable if I had made the copy a Smart Object before resizing it.</p>
<p><img class="alignnone size-full wp-image-261" title="resize-blur" src="http://memelab.com.au/wp-content/uploads/resize-blur.png" alt="resize-blur" width="400" height="200" /></p>
<h2>Producing crip Vector Objects</h2>
<p>If you position an object at 1.5 pixels, Photoshop will <a title="Wikipedia: anti-alias" href="http://en.wikipedia.org/wiki/Anti-alias">anti-alias</a> it, resulting in the sort of blur you see in the bottom of two orange boxes in the diagram below.  You can avoid this a number of ways: ensure that the object&#8217;s size is an even number of pixels, and when moving it, snap it to the underlying pixels.  When drawing a Vector Object (Rectangle Tool: U) use the options drop-down and select &#8216;Snap to Pixels&#8217; to guarantee crispness!</p>
<p><img class="alignnone size-full wp-image-265" title="snap-shape" src="http://memelab.com.au/wp-content/uploads/snap-shape.png" alt="snap-shape" width="480" height="250" /></p>
<p>In some situations, it is simplest to create a shape the right size first off, rather than hammering something out and trying to resize it.  In this case, simply select &#8216;Fixed Size&#8217; in the options box displayed above.  Similar options are available for other tools, such as the crop tool and <a title="Photoshop Precision: Using transform options" href="/photoshop-precision-using-transform-options/">free transform</a>.</p>
<p>That&#8217;s it for now &#8211; if you&#8217;ve got any tips to contribute, throw out a comment &#8211; I&#8217;d love to hear about it!</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://memelab.com.au/photoshop-precision-avoid-blurring-your-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
