<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>jonathans blog</title>
	
	<link>http://jonathansblog.co.uk</link>
	<description>about music industry mac stuff and tech</description>
	<lastBuildDate>Tue, 21 May 2013 10:34:58 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jonathansbloguk" /><feedburner:info uri="jonathansbloguk" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>55.456090</geo:lat><geo:long>4.623200</geo:long><feedburner:emailServiceId>jonathansbloguk</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>open man pages in safari or other browsers in osx</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/JRgFOw7iK60/open-man-pages-in-safari-or-other-browsers-in-osx</link>
		<comments>http://jonathansblog.co.uk/open-man-pages-in-safari-or-other-browsers-in-osx#comments</comments>
		<pubDate>Tue, 21 May 2013 10:34:58 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17972</guid>
		<description><![CDATA[this is an excellent tweak to make to your osx or linux system: man pages are great, but they arent the most usable. browsers are far more usable. you can set an enviroment variable that will let your man pages be read in your browser of choice: in osx to read man pages in safari [...]]]></description>
				<content:encoded><![CDATA[<p>this is an excellent tweak to make to your osx or linux system:</p>
<p>man pages are great, but they arent the most usable.<br />
browsers are far more usable.</p>
<p>you can set an enviroment variable that will let your man pages be read in your browser of choice:</p>
<p>in osx to read man pages in safari<br />
open a terminal:</p>
<pre>export PAGER="col -b  | open -a /Applications/Safari.app -f"</pre>
<p>in osx to open man pages in google chrome:<br />
open a terminal:</p>
<pre>export PAGER="col -b | open -a /Applications/Google\ Chrome.app -f"</pre>
<p>now whenever you run &#8216;man whatever&#8217; in your terminal it will open the manual page in your browser</p>
<p>there is also an app called <a href="http://www.bruji.com/bwana/" >bwana</a> that you can install which allows you to get the manual pages by entering man://whatever in your url bar!</p>
<p>if you have bwana installed, then you can get bwana to open the man page in your browser when you type the man commands in the terminal too:</p>
<p>firstly open ~/.bash_profile in your text editor<br />
(if it doesnt exist, then create it)</p>
<p>add the following</p>
<pre>function newman() { open -a /Applications/Safari.app man://$@ ;}
alias man='newman'</pre>
<p>save the file. close all open terminals and open a new one<br />
now when you type </p>
<pre>man bash</pre>
<p>in the (new) terminal it will open the man page in safari using bwana</p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/JRgFOw7iK60" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/open-man-pages-in-safari-or-other-browsers-in-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/open-man-pages-in-safari-or-other-browsers-in-osx</feedburner:origLink></item>
		<item>
		<title>how to disable sleepsafe hibernate mode on your mac</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/lP6xjMjPO_E/how-to-disable-sleepsafe-hibernate-mode-on-your-mac</link>
		<comments>http://jonathansblog.co.uk/how-to-disable-sleepsafe-hibernate-mode-on-your-mac#comments</comments>
		<pubDate>Sat, 18 May 2013 12:24:24 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17970</guid>
		<description><![CDATA[your mac has a few cool features to let it wake form hibernation quickly. one is called sleepsafe. sleepsafe works by creating a file in your harddrive that contains all of the contents of your ram inside it so that it can be applied to your system once it wakes from sleep. the problem with [...]]]></description>
				<content:encoded><![CDATA[<p>your mac has a few cool features to let it wake form hibernation quickly.<br />
one is called sleepsafe.<br />
sleepsafe works by creating a file in your harddrive that contains all of the contents of your ram inside it so that it can be applied to your system once it wakes from sleep.</p>
<p>the problem with this is that it takes up lots of space on your drive.</p>
<p>apple has introduced Autosave and Resume, which will automatically save the content of all your documents and will automatically open them again after you restart your computer.</p>
<p>these two new features make the need for sleepsafe not so important any more.<br />
by disabling sleepsafe you can effectively recover harddrive space (in my case I can get an extra 8gb!)</p>
<p>to turn off sleepsafe mode, open terminal and type:</p>
<pre>sudo pmset hibernatemode 0</pre>
<p>you have now disabled sleepsafe mode, but the file that holds the content of your ram still exists, you can now remove it:</p>
<pre>sudo rm /var/vm/sleepimage</pre>
<p>to re-enable sleepsafe mode, open terminal and type:<br />
<ore>sudo pmset hibernatemode 3</p>
<p>the man page for pm set has the following recommendations:</p>
<pre class="alert alert-info">We do not recommend modifying hibernation settings. Any changes you make are not supported. If you choose to do so anyway, we recommend using one of these three settings. For your sake and mine, please don't use anything other 0, 3, or 25.

hibernatemode = 0 (binary 0000) by default on supported desktops. The system will not back memory up to persistent storage. The system must wake from the contents of memory; the system will lose context on power loss. This is, historically, plain old sleep.

hibernatemode = 3 (binary 0011) by default on supported portables. The system will store a copy of memory to persistent storage (the disk), and will power memory during sleep. The system will wake from memory, unless a power loss forces it to restore from disk image.

hibernatemode = 25 (binary 0001 1001) is only settable via pmset. The system will store a copy of memory to persistent storage (the disk), and will remove power to memory. The system will restore from disk image. If you want "hibernation" - slower sleeps, slower wakes, and better battery life, you should use this setting.</pre>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/lP6xjMjPO_E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/how-to-disable-sleepsafe-hibernate-mode-on-your-mac/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/how-to-disable-sleepsafe-hibernate-mode-on-your-mac</feedburner:origLink></item>
		<item>
		<title>google images easter egg – atari breakout</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/_bIR0QzbCsY/google-images-easter-egg-atari-breakout</link>
		<comments>http://jonathansblog.co.uk/google-images-easter-egg-atari-breakout#comments</comments>
		<pubDate>Sat, 18 May 2013 12:12:18 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17985</guid>
		<description><![CDATA[this is cool: go to images.google.com search for &#8216;Atari Breakout&#8217; try not to waste too much time!]]></description>
				<content:encoded><![CDATA[<p>this is cool:</p>
<p>go to images.google.com</p>
<p>search for &#8216;Atari Breakout&#8217;</p>
<p>try not to waste too much time!</p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/_bIR0QzbCsY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/google-images-easter-egg-atari-breakout/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/google-images-easter-egg-atari-breakout</feedburner:origLink></item>
		<item>
		<title>change the default notification center sound on osx</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/OZhvKeg8uA4/change-the-default-notification-center-sound-on-osx</link>
		<comments>http://jonathansblog.co.uk/change-the-default-notification-center-sound-on-osx#comments</comments>
		<pubDate>Mon, 13 May 2013 17:56:19 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[notification center]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17957</guid>
		<description><![CDATA[this post will show you how to change the default notification sound for the osx notification centre. firstly, there are a couple of rules: 1) the file has to be an AIFF file 2) the file cant be longer than 2 seconds once you have a suitable file (or have converted another format to aiff) [...]]]></description>
				<content:encoded><![CDATA[<p>this post will show you how to change the default notification sound for the osx notification centre.</p>
<p>firstly, there are a couple of rules:</p>
<p>1) the file has to be an AIFF file<br />
2) the file cant be longer than 2 seconds</p>
<p>once you have a suitable file (or have converted another format to aiff)<br />
rename that file to</p>
<p>Basso.aiff</p>
<p>open finder and navigate to </p>
<pre>~/Library/Sounds</pre>
<p>if there is an existing Basso.aiff file, rename that to Basso.AIFF.bak<br />
next, copy in the replacement.</p>
<p>now, open terminal and type:</p>
<pre>killall NotificationCenter</pre>
<p>your notification sounds will now be your new custom sound :D</p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/OZhvKeg8uA4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/change-the-default-notification-center-sound-on-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/change-the-default-notification-center-sound-on-osx</feedburner:origLink></item>
		<item>
		<title>how to disable osx notification center</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/majVMt6Vnpg/how-to-disable-osx-notification-center</link>
		<comments>http://jonathansblog.co.uk/how-to-disable-osx-notification-center#comments</comments>
		<pubDate>Sat, 11 May 2013 17:40:27 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[notification center]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17951</guid>
		<description><![CDATA[this post will show you how to disable the osx notification center. the notification center on osx is a good idea, but I personally dont ever use it, so I figured that it was time to disable it, like the other osx features that I dont use to disable the notification centre: open terminal type: [...]]]></description>
				<content:encoded><![CDATA[<p>this post will show you how to disable the osx notification center.</p>
<p>the notification center on osx is a good idea, but I personally dont ever use it, so I figured that it was time to disable it, like the other osx features that I dont use</p>
<p>to disable the notification centre:</p>
<p>open terminal</p>
<p>type:</p>
<pre>launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
killall Notification Center
</pre>
<p>the notification center will now be gone!</p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/majVMt6Vnpg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/how-to-disable-osx-notification-center/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/how-to-disable-osx-notification-center</feedburner:origLink></item>
		<item>
		<title>How to disable DNS zones for every domain in plesk11</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/2UjwGgjKip4/how-to-disable-dns-zones-for-every-domain-in-plesk11</link>
		<comments>http://jonathansblog.co.uk/how-to-disable-dns-zones-for-every-domain-in-plesk11#comments</comments>
		<pubDate>Thu, 09 May 2013 15:12:56 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17949</guid>
		<description><![CDATA[We recently upgraded plesk to v11.0.9 at work We use an external DNS service, so dont need plesk to handle it for us. it turns out that there isnt a way to disable dns from the plesk panel. you can go to tools > DNS settings and turn DNS off but that only applies to [...]]]></description>
				<content:encoded><![CDATA[<p>We recently upgraded plesk to v11.0.9 at work<br />
We use an external DNS service, so dont need plesk to handle it for us.</p>
<p>it turns out that there isnt a way to disable dns from the plesk panel.<br />
you can go to tools > DNS settings and turn DNS off<br />
but that only applies to new domains.</p>
<p>if you need to turn off dns for all of your existing domains, try this:</p>
<p>assuming that your domains are all in /var/www/vhosts</p>
<pre>ls /var/www/vhosts | while read x; do /usr/local/psa/bin/dns --off $x; done</pre>
<p>it will itterate through all the domains listed in /var/www/vhosts and will turn their dns off.</p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/2UjwGgjKip4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/how-to-disable-dns-zones-for-every-domain-in-plesk11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/how-to-disable-dns-zones-for-every-domain-in-plesk11</feedburner:origLink></item>
		<item>
		<title>absolutely the best ipad mini case</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/XQ4_NLERVws/absolutely-the-best-ipad-mini-case</link>
		<comments>http://jonathansblog.co.uk/absolutely-the-best-ipad-mini-case#comments</comments>
		<pubDate>Sun, 28 Apr 2013 15:25:13 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[iphone and ipad]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17947</guid>
		<description><![CDATA[I got a dodo case for my ipad mini a couple of months ago. since then it hasnt been off. I had an ipad when they first came out, and tried a load of different cases, all ended up the same, in a box. the dodocase is different. it doesnt cover the edges of your [...]]]></description>
				<content:encoded><![CDATA[<p>I got a dodo case for my ipad mini a couple of months ago.</p>
<p>since then it hasnt been off.<br />
I had an ipad when they first came out, and tried a load of different cases, all ended up the same, in a box. </p>
<p><img src="http://i1.wp.com/jonathansblog.co.uk/wp-content/uploads/2013/04/20130427-154049.jpg?w=900" alt="jonathans blog absolutely the best ipad mini case" class="alignnone size-full" title="jonathans blog absolutely the best ipad mini case" data-recalc-dims="1" /></p>
<p>the dodocase is different. it doesnt cover the edges of your ipad, so like the smart cover you still feel like you are using an ipad.</p>
<p>the dodocase, like the smart cover, has a magnet in it that turns off the screen when you close it, and turns on the screen when you open it.</p>
<p>it also makes your ipad mini look like a moleskine book.</p>
<p><img src="http://i1.wp.com/jonathansblog.co.uk/wp-content/uploads/2013/04/20130427-154237.jpg?w=900" alt="jonathans blog absolutely the best ipad mini case" class="alignnone size-full" title="jonathans blog absolutely the best ipad mini case" data-recalc-dims="1" /></p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/XQ4_NLERVws" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/absolutely-the-best-ipad-mini-case/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/absolutely-the-best-ipad-mini-case</feedburner:origLink></item>
		<item>
		<title>twitter bootstrap code snippets</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/_sofPypqQo8/twitter-bootstrap-code-snippets</link>
		<comments>http://jonathansblog.co.uk/twitter-bootstrap-code-snippets#comments</comments>
		<pubDate>Wed, 24 Apr 2013 17:11:47 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17934</guid>
		<description><![CDATA[bootsnipp.com is another twitter bootstrap site that I found on my travels around the internets, It has some nice examples and snippets of code if you are looking for some inspiration for your bootstrap enabled designs, etc bootsnip.com]]></description>
				<content:encoded><![CDATA[<p>bootsnipp.com is another twitter bootstrap site that I found on my travels around the internets, It has some nice examples and snippets of code if you are looking for some inspiration for your bootstrap enabled designs, etc</p>
<p><a href="http://bootsnip.com" ></a>bootsnip.com</p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/_sofPypqQo8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/twitter-bootstrap-code-snippets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/twitter-bootstrap-code-snippets</feedburner:origLink></item>
		<item>
		<title>an easy way to change your wordpress admin username</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/W46PUllaMW4/an-easy-way-to-change-your-wordpress-admin-username</link>
		<comments>http://jonathansblog.co.uk/an-easy-way-to-change-your-wordpress-admin-username#comments</comments>
		<pubDate>Mon, 22 Apr 2013 15:21:29 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17927</guid>
		<description><![CDATA[this is an easy way to change the username of your wordpress admin account: login as your current admin user navigate to users &#62; all users add a new user make sure the role is &#8216;administrator&#8217; give the user the desired username that you want the next steps are: logout of your current admin account [...]]]></description>
				<content:encoded><![CDATA[<p>this is an easy way to change the username of your wordpress admin account:</p>
<ul>
<li>login as your current admin user</li>
<li>navigate to users &gt; all users</li>
<li>add a new user</li>
<li>make sure the role is &#8216;administrator&#8217;</li>
<li>give the user the desired username that you want</li>
</ul>
<p>the next steps are:</p>
<ul>
<li><span style="line-height: 13px;">logout of your current admin account</span></li>
<li>log back in as your new admin user</li>
<li>navigate to users &gt; all users</li>
<li>delete your old admin user.</li>
</ul>
<p class="alert alert-info">WordPress will now ask what you want to do with the posts created by your old admin user. Simply pick your new admin users name from the drop down list and assign them all to your new user.</p>
<p>you now have a new administrator account with a different username :D</p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/W46PUllaMW4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/an-easy-way-to-change-your-wordpress-admin-username/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/an-easy-way-to-change-your-wordpress-admin-username</feedburner:origLink></item>
		<item>
		<title>how to change the temperature scale in ipad</title>
		<link>http://feedproxy.google.com/~r/jonathansbloguk/~3/gGk4T0n39vM/how-to-change-the-temperature-scale-in-ipad</link>
		<comments>http://jonathansblog.co.uk/how-to-change-the-temperature-scale-in-ipad#comments</comments>
		<pubDate>Fri, 19 Apr 2013 14:50:28 +0000</pubDate>
		<dc:creator>Jonathan Mitchell</dc:creator>
				<category><![CDATA[iphone and ipad]]></category>

		<guid isPermaLink="false">http://jonathansblog.co.uk/?p=17924</guid>
		<description><![CDATA[siri will tell you the weather on the ipad if you ask. on the iphone there is a weather app. in the weather app you can change between Centigrade and Fahrenheit. the ipad doesnt have the weather app, but there is a way to change the scale if siri is telling you the temperature in [...]]]></description>
				<content:encoded><![CDATA[<p>siri will tell you the weather on the ipad if you ask.<br />
on the iphone there is a weather app. in the weather app you can change between Centigrade and Fahrenheit. the ipad doesnt have the weather app, but there is a way to change the scale if siri is telling you the temperature in &#8216;old fashioned&#8217; or &#8216;new fangled&#8217;.</p>
<p>i prefer centigrade, because I understand it.</p>
<p>open the clock (trust me)<br />
goto &#8216;world clock&#8217;<br />
hit edit at the top right<br />
at the bottom of this menu you will see F and C<br />
pick your preferred scale :)</p>
<img src="http://feeds.feedburner.com/~r/jonathansbloguk/~4/gGk4T0n39vM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jonathansblog.co.uk/how-to-change-the-temperature-scale-in-ipad/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jonathansblog.co.uk/how-to-change-the-temperature-scale-in-ipad</feedburner:origLink></item>
	</channel>
</rss>
