<?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/" version="2.0">

<channel>
	<title>kristarella.com</title>
	
	<link>http://www.kristarella.com</link>
	<description>Website of photography loving, mac-using, Christian molecular biology graduate working in web design.</description>
	<lastBuildDate>Sun, 05 May 2013 12:44:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/kristarella/blog" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="kristarella/blog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">kristarella/blog</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>WordCamp Melbourne was great!!!</title>
		<link>http://www.kristarella.com/2013/05/wordcamp-melbourne-was-great/</link>
		<comments>http://www.kristarella.com/2013/05/wordcamp-melbourne-was-great/#comments</comments>
		<pubDate>Wed, 01 May 2013 10:12:13 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4204</guid>
		<description><![CDATA[I got back from Melbourne last night where we had WordCamp. It was so great! I look forward to writing a more detailed post about all the WordPress goodies I learned.]]></description>
				<content:encoded><![CDATA[<p>I got back from Melbourne last night where we had WordCamp. It was so great! I look forward to writing a more detailed post about all the WordPress goodies I learned.</p>
<p><img src="http://www.kristarella.com/wp-content/uploads/20130501-200220.jpg" alt="20130501-200220.jpg" class="aligncenter size-full" /></p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/Of0rvr-oao0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2013/05/wordcamp-melbourne-was-great/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bbPress Forum Icons</title>
		<link>http://www.kristarella.com/2013/04/bbpress-forum-icons/</link>
		<comments>http://www.kristarella.com/2013/04/bbpress-forum-icons/#comments</comments>
		<pubDate>Mon, 22 Apr 2013 00:00:56 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4198</guid>
		<description><![CDATA[It surprised me how long it took me to find anything about adding icons to bbPress forums! It wasn&#8217;t until it occurred to me that a useful way to implement them would be to use WordPress featured images and searched for forum featured images that I made some progress. In the end it is really [...]]]></description>
				<content:encoded><![CDATA[<p>It surprised me how long it took me to find anything about adding icons to bbPress forums! It wasn&#8217;t until it occurred to me that a useful way to implement them would be to use WordPress featured images and searched for forum featured images that I made some progress.</p>
<p>In the end it is really quite simple!<br />
First you need to enable featured images on the forum post type, then you need to put that image in the right place (I prefer to use a hook action for this when I can).<br />
<span id="more-4198"></span></p>
<h3 id="the_code">The code</h3>
<p>Just place this code in your theme&#8217;s functions.php file.</p>
<pre><code class="language-php">add_post_type_support('forum', array('thumbnail'));

function ks_forum_icons() {
	if ( 'forum' == get_post_type() ) {
		global $post;
	    if ( has_post_thumbnail($post->ID) )
	    	echo get_the_post_thumbnail($post->ID,'thumbnail',array('class' => 'alignleft forum-icon'));
	 }
}
add_action('bbp_theme_before_forum_title','ks_forum_icons');</code></pre>
<p>The code above does those two things: enables featured images on forums and then hooks the image before the forum title on the bbPress archive page (the one with all the forums listed at once).</p>
<h3 id="single_forum_pages">Icons on single forum pages</h3>
<p>If you want to show the image on single forum pages too the method might vary depending on your theme, since the main forum title on those pages is generated using the regular WordPress <code class="language-php">the_title()</code> function.<br />
If you&#8217;re using a theme with hooks, like Thesis or Genesis (and most &#8216;frameworks&#8217;, I think), you can use the relevant &#8220;before post title&#8221; hook to add the same function as above to the relevant hook. E.g., in Genesis you can use <code class="language-php">add_action('genesis_before_post_title','ks_forum_icons');</code></p>
<p><strong>There you have it! Forum icons in bbPress.</strong></p>
<p><img src="http://www.kristarella.com/wp-content/uploads/forum_icons.png" alt="forum list with icons" width="641" height="334" class="aligncenter size-full wp-image-4201" /></p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/Hv77lT7XyJw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2013/04/bbpress-forum-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s all this then?</title>
		<link>http://www.kristarella.com/2013/04/whats-all-this-then/</link>
		<comments>http://www.kristarella.com/2013/04/whats-all-this-then/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 13:10:20 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordCamp]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4199</guid>
		<description><![CDATA[You might have noticed that things look a little different, and maybe a bit raw around here. I have decided to strip things back and build up from almost scratch, in real time. Yep! I&#8217;m going to make my changes and experiment right on my site for the world to see. Why? Actually I&#8217;m not [...]]]></description>
				<content:encoded><![CDATA[<p>You might have noticed that things look a little different, and maybe a bit raw around here.</p>
<p>I have decided to strip things back and build up from almost scratch, in real time. Yep! I&#8217;m going to make my changes and experiment right on my site for the world to see.</p>
<p>Why? Actually I&#8217;m not really sure. It has something to do with how much I love WordPress right now, and a desire to use it more and be be involved in the community a bit more.</p>
<p><a href="http://www.kristarella.com/wp-content/uploads/2013-04-20-20.30.08.jpg"><img src="http://www.kristarella.com/wp-content/uploads/2013-04-20-20.30.08-212x300.jpg" alt="Progress poster" width="212" height="300" class="alignright size-medium wp-image-4200" /></a></p>
<p>How will this venture do that? Maybe it will give people a chance to comment on the progress of the site and make suggestions, which you are welcome to do. Perhaps it will give me time to take inspiration from different sources, read more blogs, and learn some new things. It might inspire me to post more, which is something I&#8217;ve been meaning to do for a while (forever?!). You might think that paring back the design might make me intent on designing rather than writing, but I think by allowing my blog to be a bit naked for a while I won&#8217;t feel that pressure to get the design finished and ready for the world. I can just spend a bit more time with WordPress in general; it can be a work in progress while I do other things like write and go to WordCamp!</p>
<p><a href="http://2013.melbourne.wordcamp.org" title="I'm Attending WordCamp Melbourne 2013"><img alt="I'm Attending WordCamp Melbourne 2013" src="http://2013.melbourne.wordcamp.org/files/2013/02/WCMelb-Badge_260x200-Attending.png" class="alignleft" /></a></p>
<p>Heck yes! I&#8217;m pretty excited. In part because WordPress is great and getting better, also partly because I&#8217;ve never been to Melbourne before.</p>
<p>In other (somewhat related) news, over the past few months I have been teaching WordPress courses for a training company in Sydney. There can be between 1 and 8 people in a one-day class and I really enjoy it! I love being part of people learning about how great WordPress is! And their questions give me an opportunity to explore WordPress further, which has been bril!</p>
<p>It&#8217;s quite likely that my most recent Thesis child theme will be available in my store this week, and any other previous skins, if I have time to pull them together.</p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/KMsV38tDiIE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2013/04/whats-all-this-then/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Depression with a side of anxiety</title>
		<link>http://www.kristarella.com/2013/04/depression-with-a-side-of-anxiety/</link>
		<comments>http://www.kristarella.com/2013/04/depression-with-a-side-of-anxiety/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 23:49:22 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[My life & thoughts]]></category>
		<category><![CDATA[depression]]></category>
		<category><![CDATA[GTD]]></category>
		<category><![CDATA[health]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4197</guid>
		<description><![CDATA[That&#8217;s me! Well, it&#8217;s not &#8220;me&#8221;; I&#8217;m not defined by depression, but it is a significant part of me that I have to manage the best way that I can. What&#8217;s there to be depressed about? I can&#8217;t decide if this is a fair question, or one that shows a complete ignorance of mental health [...]]]></description>
				<content:encoded><![CDATA[<p>That&#8217;s me! Well, it&#8217;s not &#8220;me&#8221;; I&#8217;m not defined by depression, but it is a significant part of me that I have to manage the best way that I can.</p>
<blockquote><p>What&#8217;s there to be depressed about?</p></blockquote>
<p>I can&#8217;t decide if this is a fair question, or one that shows a complete ignorance of mental health issues that affect millions of people. On one hand it is a fair question and the answer is &#8220;not much&#8221;; I have a great home, a great husband, beautiful pet bunnies, a loving family, a fantastic coffee shop down the road, good food all around me, decent clothes&#8230; What <em>is</em> there to be depressed about? On the other hand the question is the wrong question because depression often has little to do with current circumstances.</p>
<p>Depression <em>can</em> be triggered by life circumstances &#8212; usually by long-term struggles such as unemployment, illness, long-term stress<sup><a href="http://www.kristarella.com/2013/04/depression-with-a-side-of-anxiety/#footnote_0_4197" id="identifier_0_4197" class="footnote-link footnote-identifier-link" title="See What Causes Depression on the Beyond Blue website">1</a></sup> &#8212; or it might have no identifiable cause at all! Depression can be genetic: it can be caused by biochemical imbalances in the brain and doesn&#8217;t always need an external trigger.<br />
<span id="more-4197"></span><br />
For me, the first major episode of depression in my adult life<sup><a href="http://www.kristarella.com/2013/04/depression-with-a-side-of-anxiety/#footnote_1_4197" id="identifier_1_4197" class="footnote-link footnote-identifier-link" title="I had been depressed as a teen, but with all the crazy hormones of growing up it was easier for me to grow out of it when those hormones evened out.">2</a></sup> had no trigger that I know of. In fact, I was actually the healthiest I had even been! I had lost 24kg (so I was a healthy 58kg at 5&#8217;2&#8243;), I was exercising, I felt great. Gradually though I became less active, less motivated, more stressed, sad, angry, irritable, tired, lethargic, isolated&#8230; I couldn&#8217;t motivate myself to cook so we ate a lot of take away, I couldn&#8217;t motivate myself to work and I tended to spend a lot of time watching TV or sleeping on the couch. My Mum, who has had depression too, recognised these signs and told me to see a doctor, which I did. With a combination of medication and psychological therapy to identify unhelpful thought patterns and behaviours and learn to manage them I got a lot better. I was able to go off my medication and live quite well.</p>
<p>About a year later I noticed myself slipping again, and as much as I tried to implement the strategies I&#8217;d learned I was anxious, angry and wanted to sleep and cry too much of the time. I went back to the doctor, back to the psychologist and things are going a lot better again. Still, some days are fantastic, some are not. It&#8217;s a continual balancing act and sometimes struggle to do the right thing for myself and for others.</p>
<p><strong>Why am I telling you all of this?</strong></p>
<p>Well, while some behaviours and feelings are a lot more severe and prolonged in people with depression, many of them are still just as much a part of the human condition. So I think some of these strategies, mantras and challenges could be just as useful for you as for me.</p>
<ul>
<li><span style="line-height: 13px;"><strong>If it takes less that a minute, do it now!<br />
</strong>This is something I got from <a href="http://www.happiness-project.com/">The Happiness Project</a> by Gretchen Rubin. Lack of motivation, laziness and procrastination can be significant in the mentally ill and the healthy alike, sometimes it&#8217;s just a part of life. If you stop putting everything off and just do it now, it makes things a lot easier! Put that document away now, put that rubbish in the bin now, rinse that glass now&#8230; if it takes less than a minute, just do it now.<br />
</span></li>
<li><strong>Is it interfering with what you need to do?</strong><br />
Sometimes I wonder if I am spending too much time on a particular task that isn&#8217;t necessarily important. E.g., finding a new watch when I had lost my old one, or finding the right task manager tool rather than just getting my tasks done, or finding project management tools instead of just managing my projects in the simplest way I can. Sometimes you <em>do</em> need to invest a bit of time in structures that will help you get on with what you need to do, but sometimes you just need to pick a method and start getting things done.</li>
<li><strong>I might not be able to control everything around me, but I can control [insert personal behaviour here]</strong><br />
The thing that you need to control might vary from person to person. For me it is usually what I eat. I am trying to shed the weight from my previous depression episode, but when things are tough it is even more difficult not to succumb to laziness and just get take away, or just eat the high-carb option, or drink too much wine. On a bad day <strong>I might not be able to control everything around me, but I can damn well control what I put in my mouth.</strong></li>
</ul>
<p>I haven&#8217;t got these things down pat, but I am trying to remember them in my day to day. I need to keep going. Keep doing. Keep being.</p>
<p><strong>Do you have any tips or mantras that help you when things get tough or everything seems overwhelming?</strong></p>
<p>For more information about depression and anxiety please visit <a href="http://www.beyondblue.org.au/">Beyond Blue</a> and <a href="http://www.blackdoginstitute.org.au/index.cfm">Black Dog Institute</a>.</p>
<ol class="footnotes"><li id="footnote_0_4197" class="footnote">See <a href="http://www.beyondblue.org.au/the-facts/depression/what-causes-depression">What Causes Depression</a> on the Beyond Blue website</li><li id="footnote_1_4197" class="footnote">I had been depressed as a teen, but with all the crazy hormones of growing up it was easier for me to grow out of it when those hormones evened out.</li></ol><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/sqyywaEkv3U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2013/04/depression-with-a-side-of-anxiety/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Update your WordPress username!</title>
		<link>http://www.kristarella.com/2013/04/update-your-wordpress-username/</link>
		<comments>http://www.kristarella.com/2013/04/update-your-wordpress-username/#comments</comments>
		<pubDate>Tue, 16 Apr 2013 04:01:50 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4194</guid>
		<description><![CDATA[After Dion&#8217;s message at WordCamp Sydney last year, &#8220;Update your bloody WordPress!&#8221;, comes this new-ish message update your bloody WordPress admin username. It&#8217;s not really a new message, it&#8217;s just that it probably hasn&#8217;t been as dangerous to have a username of &#8220;admin&#8221; as it is now. Many hosts and news outlets are reporting widespread [...]]]></description>
				<content:encoded><![CDATA[<p>After <a href="http://twitter.com/dd32" title="Dion Hulse on Twitter">Dion&#8217;s</a> message at WordCamp Sydney last year, <strong>&#8220;Update your bloody WordPress!&#8221;</strong>, comes this new-ish message <strong>update your bloody WordPress admin username</strong>.</p>
<p>It&#8217;s not really a new message, it&#8217;s just that it probably hasn&#8217;t been as dangerous to have a username of &#8220;admin&#8221; as it is now. Many hosts and news outlets are <a href="http://www.zdnet.com/wordpress-hit-by-massive-botnet-worse-to-come-experts-warn-7000014019/">reporting widespread botnet attacks</a> to gain access to the username &#8220;admin&#8221; in WordPress installs.<br />
<span id="more-4194"></span><br />
It used to be that WordPress would automatically create an account with the username of admin, and usernames in WordPress can&#8217;t be changed without editing the database directly. Now-a-days WordPress gives you the option to enter any username you like when you install WordPress, but that doesn&#8217;t help all the people with older sites.</p>
<p>Thankfully, if you aren&#8217;t comfortable editing the mySQL database, there are some plugins that can change the admin username for you. My favourite is <a href="http://wordpress.org/extend/plugins/better-wp-security/">Better WP Security</a>, which can change the admin username and ID as well as a range of other things.</p>
<p class="note">When using these plugins please backup the database first (Better WP Security has this ability built in) and if you use any of the more advanced features, like changing the database table prefix, make sure you have access to your site&#8217;s config file and database&#8230; I used this feature on a site today and it changed the tables, but not the config file, which I had to change to get the WP files connected to the database again.</p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/p2dJjowLos0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2013/04/update-your-wordpress-username/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>You can’t take your organs with you</title>
		<link>http://www.kristarella.com/2013/03/you-cant-take-your-organs-with-you/</link>
		<comments>http://www.kristarella.com/2013/03/you-cant-take-your-organs-with-you/#comments</comments>
		<pubDate>Tue, 12 Mar 2013 11:35:11 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[My life & thoughts]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4189</guid>
		<description><![CDATA[When I got my driver licence there was no question in my mind that I&#8217;d be happy to give any of my organs for donation in the event of my death &#8212; you can sign up for the NSW organ donor register when you apply for a licence, or specify which organs you would be [...]]]></description>
				<content:encoded><![CDATA[<p>When I got my driver licence there was no question in my mind that I&#8217;d be happy to give any of my organs for donation in the event of my death &#8212; you can sign up for the NSW organ donor register when you apply for a licence, or specify which organs you would be happy to give. There was no question because, heck, you can&#8217;t take them with you!</p>
<p>Organ transplants can give not only the recipients of the donation a new lease on life, but also their carers, friends and other loved ones (maybe even their pets!).</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/9rtVRl1cOhg" frameborder="0" allowfullscreen></iframe><br />
<span id="more-4189"></span><br />
The donation situation in Australia is pretty sad; donation rates are very low. You can opt to donate in your home state on your licence, but relatives have complete power of veto if the moment ever comes. Also many people don&#8217;t know that you need to register your wish to donate on the <a href="http://www.humanservices.gov.au/customer/services/medicare/australian-organ-donor-register">national register</a> to donate country-wide, but again family can choose not to donate your organs when the time comes. So you really need to talk to your family and friends and ask them to respect your wishes regarding donation.</p>
<p>If you don&#8217;t have a deeply religious need to hold onto your organs after your death <strong>please register AND talk to your loved ones about it</strong>. They need to know your wishes so they are not burdened with the decision in a time of grief.</p>
<p>To hear a bit about living with chronic illness and waiting for a transplant please listen to this short <a href="http://www.abc.net.au/radionational/programs/lifematters/living-with-cystic-fibrosis2c-jennifer-symonds/4567636">interview with Jennifer Symonds</a>.</p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/x1M7YB8LSus" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2013/03/you-cant-take-your-organs-with-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps for iPhone: woooot!</title>
		<link>http://www.kristarella.com/2012/12/google-maps-for-iphone-woooot/</link>
		<comments>http://www.kristarella.com/2012/12/google-maps-for-iphone-woooot/#comments</comments>
		<pubDate>Thu, 13 Dec 2012 07:41:57 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4176</guid>
		<description><![CDATA[The official Google Maps for iPhone came out today! I&#8217;m pretty excited. Apple maps wasn&#8217;t so bad, if you live in California and possibly inner-city China. I thought the design of Apple Maps was pretty great, I liked the layout of the directions and how you could swipe across to see the next step of [...]]]></description>
				<content:encoded><![CDATA[<p><a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8"><img src="http://www.kristarella.com/wp-content/uploads/googlemaps.jpg" alt="" title="Google Maps" width="175" height="175" class="alignleft size-full wp-image-4177" /></a></p>
<p>The official <a href="https://itunes.apple.com/us/app/google-maps/id585027354?mt=8">Google Maps for iPhone</a> came out today! I&#8217;m pretty excited.</p>
<p>Apple maps wasn&#8217;t so bad, if you live in California and possibly inner-city China. I thought the design of Apple Maps was pretty great, I liked the layout of the directions and how you could swipe across to see the next step of your journey. The only problem with it in Australia was that you couldn&#8217;t see major landmarks until you zoomed in pretty much as far as it goes&#8230; and you couldn&#8217;t search for business names or types and actually find anything useful&#8230; and it told you to do things that are illegal and therefore dangerous in New South Wales (like u-turns at lights)&#8230; and it sometimes told you to do impossible things like turn into a street from a cul-de-sac end&#8230; oh, and it got people <a href="http://www.vicpolicenews.com.au/more-news/11081-police-concerned-with-apple-ios-6-mapping-system.html">so lost that they needed police assistance</a>.</p>
<p>Yes, Google Maps had a couple of those problems (like the cul-de-sac one) in the early days, but why didn&#8217;t Apple learn from Google&#8217;s mistakes and do more testing before making such a drastic change?</p>
<p>I&#8217;m not sure what this release means for Apple Maps. Perhaps some good samaritans, or folks who don&#8217;t download a lot of apps, will still use it and report problems back to them. Perhaps I will be a good samaritan and compare directions and report problems to Apple occasionally. What do you think Apple will do? Will they ditch their maps app like they did their YouTube app? It seems a shame after all the work they put in, but all that work wasn&#8217;t quite enough.</p>
<p><div id="attachment_4178" class="wp-caption alignleft" style="width: 210px"><a href="http://www.kristarella.com/wp-content/uploads/20121213-182830.jpg"><img src="http://www.kristarella.com/wp-content/uploads/20121213-182830-200x300.jpg" alt="" title="Google Maps iPhone Sydney" width="200" height="300" class="size-medium wp-image-4178" /></a><p class="wp-caption-text">I can actually see the train stations!</p></div> <div id="attachment_4179" class="wp-caption alignleft" style="width: 210px"><a href="http://www.kristarella.com/wp-content/uploads/20121213-182840.jpg"><img src="http://www.kristarella.com/wp-content/uploads/20121213-182840-200x300.jpg" alt="" title="Google Maps iPhone search" width="200" height="300" class="size-medium wp-image-4179" /></a><p class="wp-caption-text">You can tap on red dots, or swipe across the bottom business name to select search results</p></div></p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/axoIsvDcEds" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2012/12/google-maps-for-iphone-woooot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail iPhone app is useful now!</title>
		<link>http://www.kristarella.com/2012/12/gmail-iphone-app-is-useful-now/</link>
		<comments>http://www.kristarella.com/2012/12/gmail-iphone-app-is-useful-now/#comments</comments>
		<pubDate>Wed, 05 Dec 2012 06:03:48 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[Gmail]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4172</guid>
		<description><![CDATA[I woke up this morning to an update to the Gmail app for iPhone. On a whim I looked at the &#8220;what&#8217;s new&#8221; section of update message and BOOM! It now has features that you actually want, and more! Nice layout Multiple account support! Easy image attachment &#8220;Scribbles&#8221; drawing attachments (this comes under the more [...]]]></description>
				<content:encoded><![CDATA[<p>I woke up this morning to an update to the <a href="http://gmailblog.blogspot.com.au/2012/12/the-gmail-app-for-iphone-and-ipad.html">Gmail app for iPhone</a>. On a whim I looked at the &#8220;what&#8217;s new&#8221; section of update message and BOOM! It now has features that you actually want, and more!</p>
<ul>
<li>Nice layout</li>
<li>Multiple account support!</li>
<li>Easy image attachment</li>
<li>&#8220;Scribbles&#8221; drawing attachments (this comes under the more than I want; although cute I can&#8217;t see myself really using it!)</li>
<li>Search with auto-suggest</li>
</ul>

<a href='http://www.kristarella.com/2012/12/gmail-iphone-app-is-useful-now/20121205-085303-jpg/' title='iPhone Gmail scribbles'><img width="139" height="200" src="http://www.kristarella.com/wp-content/uploads/20121205-085303-139x200.jpg" class="attachment-thumbnail" alt="Scribbles in Gmail on iPhone" /></a>
<a href='http://www.kristarella.com/2012/12/gmail-iphone-app-is-useful-now/iphone1/' title='iPhone Gmail new layout'><img width="116" height="200" src="http://www.kristarella.com/wp-content/uploads/iphone1-116x200.png" class="attachment-thumbnail" alt="Smoother layout" /></a>
<a href='http://www.kristarella.com/2012/12/gmail-iphone-app-is-useful-now/iphone4/' title='iPhone Gmail multiple accounts'><img width="116" height="200" src="http://www.kristarella.com/wp-content/uploads/iphone4-116x200.png" class="attachment-thumbnail" alt="Multiple accounts!" /></a>

<p>There&#8217;s room for improvement, but this is sooo much better!</p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/oK80yr0KXqI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2012/12/gmail-iphone-app-is-useful-now/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IDs and classes in Exifography output</title>
		<link>http://www.kristarella.com/2012/10/ids-and-classes-in-exifography-output/</link>
		<comments>http://www.kristarella.com/2012/10/ids-and-classes-in-exifography-output/#comments</comments>
		<pubDate>Fri, 26 Oct 2012 01:15:09 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4168</guid>
		<description><![CDATA[I just released Exifography 1.1.3, which includes the ability to add unique IDs and classes to the HTML output of your EXIF data. EXIF block ID In order to add the image ID to the EXIF container HTML use %s where you want the ID to appear. E.g., &#60;ul class="exif" id="%s"&#62; The output for that [...]]]></description>
				<content:encoded><![CDATA[<p>I just released <a href="http://www.kristarella.com/exifography/">Exifography</a> 1.1.3, which includes the ability to add unique IDs and classes to the HTML output of your EXIF data.</p>
<h3>EXIF block ID</h3>
<p>In order to add the image ID to the EXIF container HTML use <code>%s</code> where you want the ID to appear. E.g., <code class="language-markup">&lt;ul class="exif" id="%s"&gt;</code></p>
<p>The output for that ID is <code>wp-image-ID</code>, since WordPress automatically adds the same as a class to the images it inserts into posts you can fairly easily associate the EXIF block with its image, which will be useful for javascript effects and that sort of thing.</p>
<p>If you happen to be using that ID as an ID for something else on the same page you could include it as a class instead: <code class="language-markup">&lt;ul class="exif %s"&gt;</code>.</p>
<h3>EXIF item classes</h3>
<p>You can also add a unique class to each exif item to style them separately.</p>
<p>E.g., <code class="language-markup">&lt;li class="%s"&gt;</code></p>
<p>The class that is applied is the same as the <a href="http://www.kristarella.com/exifography/#shortcode">keys used in the shortcode</a>. So, in order to style the timestamp differently to all the other items, for example, you would use <code class="language-css">.created_timestamp {text-transform:uppercase; color:blue;}</code>.</p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/iO4ut4KBW3k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2012/10/ids-and-classes-in-exifography-output/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset the Thesis 2.0 Classic skin</title>
		<link>http://www.kristarella.com/2012/10/reset-thesis-2-classic-skin/</link>
		<comments>http://www.kristarella.com/2012/10/reset-thesis-2-classic-skin/#comments</comments>
		<pubDate>Wed, 03 Oct 2012 02:35:36 +0000</pubDate>
		<dc:creator>kristarella</dc:creator>
				<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.kristarella.com/?p=4160</guid>
		<description><![CDATA[Update 29 Oct 2012: Thesis 2.0.1 includes a more extensive skin manager (located via the Manager tab in the Skin Editor), which allows you to backup skin states and reset a skin to its default settings, so you shouldn&#8217;t need the below instructions. They should still work if you follow them though. Hey, so you&#8217;ve [...]]]></description>
				<content:encoded><![CDATA[<p class="note"><strong>Update 29 Oct 2012:</strong> Thesis 2.0.1 includes a more extensive skin manager (located via the Manager tab in the Skin Editor), which allows you to backup skin states and reset a skin to its default settings, so you shouldn&#8217;t need the below instructions. They should still work if you follow them though.</p>
<p>Hey, so you&#8217;ve just installed <a href="">Thesis 2.0</a> and you&#8217;re trying to figure out what is going on and completely messed up the classic skin? You&#8217;re not alone!</p>
<p>This is my recommendation for resetting the classic skin to its default. DIYthemes might release an official method soon, but until then, this should work if your skin files are still in tact.</p>
<p><span id="more-4160"></span></p>
<ol>
<li>Switch to the Thesis Blank skin<br />
<a href="http://www.kristarella.com/wp-content/uploads/select_skin.png"><img src="http://www.kristarella.com/wp-content/uploads/select_skin-500x163.png" alt="" title="select_skin" width="500" height="163" class="aligncenter size-large wp-image-4161" /></a></li>
<li>find <tt>custom.php</tt> in <tt>wp-content/thesis/skins/thesis-blank/</tt> (you will need FTP, or your host&#8217;s file editor for this) and insert the following code:
<pre><code class="language-php">delete_option( 'thesis_classic_css_custom' );
delete_option( 'thesis_classic_css' );
delete_option( 'thesis_classic_vars' );
delete_option( 'thesis_classic_snippets' );
delete_option( 'thesis_classic_packages' );
delete_option( 'thesis_classic_templates' );
delete_option( 'thesis_classic_boxes' );
update_option( 'thesis_raw_css','' );</code></pre>
</li>
<li>Reload your home page (it should be blank unless you&#8217;ve played with adding HTML to the blank skin)</li>
<li>Reactivate the Thesis Classic skin</li>
<li>Save and Compile CSS in the skin editor <a href="http://www.kristarella.com/wp-content/uploads/save_css.png"><img src="http://www.kristarella.com/wp-content/uploads/save_css-300x156.png" alt="" title="Save CSS" width="300" height="156" class="alignright size-medium wp-image-4157" /></a></li>
<li>Delete the code from step 2.</li>
</ol>
<p>This deletes the classic skin related data from the database, so that when you reactivate the Classic Skin it loads its defaults back into the database.</p>
<img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/_PTnRrNzevE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kristarella.com/2012/10/reset-thesis-2-classic-skin/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.603 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-05-19 07:28:02 --><!-- Compression = gzip -->
