<?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>Fri, 27 Apr 2012 07:56:08 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</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>WordPress networks, child themes and Thesis</title><link>http://www.kristarella.com/2012/04/wp-networks-child-themes-thesis/</link> <comments>http://www.kristarella.com/2012/04/wp-networks-child-themes-thesis/#comments</comments> <pubDate>Tue, 03 Apr 2012 12:52:55 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Blogging]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[Websites]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4102</guid> <description><![CDATA[I&#8217;ve written about child themes and Thesis and WPMU and Thesis before, but as can happen with time and work both Thesis and WordPress have evolved. So I think both of these issues need to be readdressed. WordPress networks and Thesis A WP network is the new name for WPMU since it was included with [...]]]></description> <content:encoded><![CDATA[<p></p><p>I&#8217;ve written about <a
href="http://www.kristarella.com/2010/10/wordpress-child-themes-and-thesis/">child themes and Thesis</a> and <a
href="http://www.kristarella.com/2009/09/using-thesis-with-wpmu/">WPMU and Thesis</a> before, but as can happen with time and work both Thesis and WordPress have evolved. So I think both of these issues need to be readdressed.</p><h3>WordPress networks and Thesis</h3><p>A WP network is the new name for WPMU since it was included with the WordPress core in WP version 3. It allows you to create multiple sites/blogs with the one WordPress install.</p><p><a
href="http://www.shareasale.com/r.cfm?B=198392&#038;U=403481&#038;M=24570">Thesis</a> uses a custom folder to isolate your own CSS and PHP customisations to the theme, and it also writes the CSS from the design options to this folder (to layout.css). Prior to Thesis 1.8.3 to use Thesis with a WP network <em>and</em> keep the customisations for each site separate you needed to use a new Thesis folder for each site in the network (which makes updates very tedious), or modify Thesis core files to use different custom folders for each site (also not amazing for updates), or use a child theme for each site.<br
/> <span
id="more-4102"></span><br
/> The child theme thing was fine with me, but now when Thesis is activated on a site in a network it gives it its own custom folder with the site&#8217;s ID. That is pretty cool, particularly since you don&#8217;t have to worry about it, and you don&#8217;t have to worry about sites changing each other&#8217;s CSS: the folders are automatically created and uniquely identified, so there&#8217;s no accidental cross-over.</p><p>An extra cool thing about this new system is that you can also use &#8220;master custom controls&#8221; on a network, so you can have PHP customisations that affect all the sites on a network by putting them in the &#8220;custom&#8221; folder of a network. That is, if you have a folder called <tt>custom</tt> in your Thesis directory, while all your sites have their own <tt>custom-ID</tt> folders, the PHP in <tt>custom/custom_functions.php</tt> will be applied to all the sites running Thesis.</p><h3>Thesis and child themes</h3><p>There are some other changes in Thesis, which benefit <a
href="http://codex.wordpress.org/Child_Themes">child themes</a> and make them easier to implement.</p><p>Thesis now combines <tt>style.css</tt> and <tt>layout.css</tt> into one file (<tt>style.css</tt> gets written into <tt>layout.css</tt> and isn&#8217;t called separately). That&#8217;s great because it cuts down on the number of HTTP requests made when your site loads (always a good thing!), and it also means that the Thesis styles are always going to be loaded before your child theme <tt>style.css</tt> and <tt>custom.css</tt> (which didn&#8217;t always happen and occasionally led to oddities in <a
href="http://diythemes.com/thesis/css-specificity-thesis/">CSS specificity</a>). Also, we don&#8217;t need to call Thesis&#8217; <tt>style.css</tt> in any way with our child theme, both it and <tt>custom.css</tt> are added to the site&#8217;s head by Thesis. That is nice: we only need to worry about adding extra stylesheets.</p><p>So, to create a child theme for Thesis all we need to do is create a new theme directory containing:</p><ul><li><strong>style.css</strong> containing something like this (adapted from codex.wordpress.org)<pre>/*
Theme Name:     Thesis Child
Theme URI:      http://example.com/
Description:    Child theme for the Thesis theme
Author:         Your name here
Author URI:     http://example.com/about/
Template:       thesis
Version:        0.1.0
*/</pre></li><li><strong>functions.php</strong>, which is optional in many cases, but if you want to use the Thesis Custom Loop, or add your child&#8217;s stylesheet to the head you will probably need this file and a contents of<pre>&lt;?php

if(!is_admin()) {
	include_once(TEMPLATEPATH . '/functions.php');
	wp_enqueue_style( 'thesischild', get_stylesheet_directory_uri() . '/style.css', '', false, 'screen,projection' );
}</pre></li><li><strong>your custom folder</strong></li></ul><p>That&#8217;s all you need to make a basic Thesis child theme.</p><p>As with the regular Thesis custom folder, you will need to make sure that your <tt>childtheme/custom/layout.css</tt> and <tt>childtheme/custom/cache</tt> directory have permissions of 666 and 775, respectively.</p><p>You might be wondering why, with the nifty multi-directory features I mentioned above, would anyone bother with a Thesis child theme. Well, I can think of two strong reasons! One is extra page templates: it&#8217;s a lot easier to manage updates on a site with extra page templates when they&#8217;re in a child theme folder. The other reason is when you&#8217;re using a mobile theme switcher, or something similar; if you want to make significant changes to the layout of your site for mobile devices a good way to do that is with a <a
href="http://studio.kristarella.com/skins/thesis-mobile-child-theme/">mobile child theme</a>.</p><h4>Child themes on Networks</h4><p>I discovered a little quirk in the way child themes work with Thesis 1.8.4 networks: Thesis checks the child theme directory for a <tt>custom</tt> folder and if it doesn&#8217;t find one it decides that the site specific custom folder should be created in the parent Thesis directory. So, until further notice you should just keep a folder called &#8220;custom&#8221; in your child theme directory, whether it contains custom files or not. Thesis will then proceed to create a custom-ID directory for your site specific customisations in the child theme. It&#8217;s important to pass that initial check because that will determine the location of the stylesheets that get included in the head of the site, as well as where to write the design options CSS, and which files get edited by the custom editor. I think keeping an extra custom folder in the child theme is the best way to do that, for now.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=DHLWDc1aW4g:0zWj7qNYdSc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=DHLWDc1aW4g:0zWj7qNYdSc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=DHLWDc1aW4g:0zWj7qNYdSc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=DHLWDc1aW4g:0zWj7qNYdSc:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=DHLWDc1aW4g:0zWj7qNYdSc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/DHLWDc1aW4g" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2012/04/wp-networks-child-themes-thesis/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Air-dry clay jewellery</title><link>http://www.kristarella.com/2012/03/air-dry-clay-jewellery/</link> <comments>http://www.kristarella.com/2012/03/air-dry-clay-jewellery/#comments</comments> <pubDate>Sat, 03 Mar 2012 05:20:41 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Life and ramblings]]></category> <category><![CDATA[craft]]></category> <category><![CDATA[DIY]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4100</guid> <description><![CDATA[Since joining the local library and Pinterest I have had the urge to try all kind of different crafts. Some have been a success, others not so much, others were okay, but need a bit of practice. I think this venture falls into the latter category. I used Das air-drying clay to make some pendants. [...]]]></description> <content:encoded><![CDATA[<p></p><p>Since joining the local library and Pinterest I have had the urge to try all kind of different crafts. Some have been a success, others not so much, others were okay, but need a bit of practice. I think this venture falls into the latter category.</p><p>I used Das air-drying clay to make some pendants. I found some random items around the house for rolling, cutting and creating textures. I found a nifty little set of pokers (no idea what they&#8217;re really called, but they poke holes in things) at the hardware store, and I already had some acrylic paint and unused clear nail polish as varnish.</p><p> <a
href='http://www.kristarella.com/2012/03/air-dry-clay-jewellery/20120303-161613-jpg/' title='Das air-drying clay and stamps'><img
width="149" height="200" src="http://www.kristarella.com/wp-content/uploads/20120303-161613-149x200.jpg" class="attachment-thumbnail" alt="Das air-drying clay and stamps" title="Das air-drying clay and stamps" /></a> <a
href='http://www.kristarella.com/2012/03/air-dry-clay-jewellery/20120303-161502-jpg/' title='Clay pendants drying'><img
width="133" height="200" src="http://www.kristarella.com/wp-content/uploads/20120303-161502-133x200.jpg" class="attachment-thumbnail" alt="Clay pendants drying" title="Clay pendants drying" /></a> <a
href='http://www.kristarella.com/2012/03/air-dry-clay-jewellery/20120303-161529-jpg/' title='Partially painted clay pendants'><img
width="200" height="149" src="http://www.kristarella.com/wp-content/uploads/20120303-161529-200x149.jpg" class="attachment-thumbnail" alt="Partially painted clay pendants" title="Partially painted clay pendants" /></a> <a
href='http://www.kristarella.com/2012/03/air-dry-clay-jewellery/20120303-161628-jpg/' title='Clay pendants painted and varnished'><img
width="200" height="149" src="http://www.kristarella.com/wp-content/uploads/20120303-161628-200x149.jpg" class="attachment-thumbnail" alt="Clay pendants painted and varnished" title="Clay pendants painted and varnished" /></a> <a
href='http://www.kristarella.com/2012/03/air-dry-clay-jewellery/20120303-161642-jpg/' title='Clay pendant earrings'><img
width="149" height="200" src="http://www.kristarella.com/wp-content/uploads/20120303-161642-149x200.jpg" class="attachment-thumbnail" alt="Clay pendant earrings" title="Clay pendant earrings" /></a> <br
/> <span
id="more-4100"></span><br
/> Most of the pendants I painted with a base colour (silver, blue or pink) and when that was dry I painted over with a darker, watered-down colour, which I wiped off with a damp cloth  to give the patterns more definition.</p><p>I wasn&#8217;t thrilled with the results, but the general idea has promise. Some lessons learned:</p><ul><li>Make an effort to roll the clay evenly and cut the edges cleanly.<br
/>My pendants were of varying thicknesses, which isn&#8217;t a bid deal unless you want to use them in the same project. I also found some cheap cookie cutters, which I&#8217;ll use next time; they should give a bit of a cleaner cut than the piping bag tip I used the first time.</li><li>Make the threading holes bigger, or thread jump rings before they dry because some of the holes just aren&#8217;t big enough for jump rings and one of the pendants got a bit smushed around the hole where I tried to put one in.<br
/>The pendants are hard enough, but not very sturdy, so they don&#8217;t take a lot of forcing when it comes to threading them.</li><li>I used cheap clear nail polish to varnish them, partly because it&#8217;s what I had on hand, and partly because I couldn&#8217;t find anything else that seemed suitable. I didn&#8217;t like the nail polish much; it is stinky (even a bit after drying), and seems slightly tacky after drying too. I found some hard-drying Mod Podge, which I&#8217;ll try next time.</li><li>Try a variety of patterns and don&#8217;t be too sad if some don&#8217;t work out. I was surprised how much I liked the rain cloud stamp, and how some others (like the key) didn&#8217;t work out as well as I&#8217;d thought they would.</li></ul><p>I&#8217;ve made a Tumblr blog to post photos of <a
href="http://craftykristarella.tumblr.com/">my craft creations</a>, so feel free to follow that if you&#8217;re interested.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=SLnBNKeGeTg:M_V4r9X2apE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=SLnBNKeGeTg:M_V4r9X2apE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=SLnBNKeGeTg:M_V4r9X2apE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=SLnBNKeGeTg:M_V4r9X2apE:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=SLnBNKeGeTg:M_V4r9X2apE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/SLnBNKeGeTg" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2012/03/air-dry-clay-jewellery/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Photogene2 for iPhone</title><link>http://www.kristarella.com/2012/02/photogene2-for-iphone/</link> <comments>http://www.kristarella.com/2012/02/photogene2-for-iphone/#comments</comments> <pubDate>Mon, 27 Feb 2012 15:53:37 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Tech]]></category> <category><![CDATA[Geek]]></category> <category><![CDATA[Graphics]]></category> <category><![CDATA[iPhone]]></category> <category><![CDATA[Photography]]></category> <category><![CDATA[Photos]]></category> <category><![CDATA[Software (free)]]></category> <category><![CDATA[tech]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4092</guid> <description><![CDATA[This is a truly underrated app! Okay, maybe not literally since it has an average of 4.5/5 stars on the app store and most reviews are 5 stars. However it seems like no one in the tech podcasts that I listen to ever mention it, but they mention Snapseed often&#8230; Snapseed is cute, but I [...]]]></description> <content:encoded><![CDATA[<p></p><p><a
href="http://itunes.apple.com/us/app/photogene2-for-iphone/id463731084?mt=8"><img
src="http://www.kristarella.com/wp-content/uploads/20120228-025037-200x200.jpg" alt="" title="Photogene2 splash page" width="200" height="200" class="frame alignleft size-thumbnail wp-image-4091" /></a></p><p>This is a truly underrated app! Okay, maybe not literally since it has an average of 4.5/5 stars on the app store and most reviews are 5 stars. However it seems like no one in the tech podcasts that I listen to ever mention it, but they mention Snapseed often&#8230; Snapseed is cute, but I think <a
href="http://itunes.apple.com/us/app/photogene2-for-iphone/id463731084?mt=8">Photogene<sup>2</sup></a> is far superior!</p><h3>Why is Photogene<sup>2</sup> so awesome?</h3><p><span
id="more-4092"></span>Well! These are the features that I use pretty much daily:</p><ul><li>Sharpen (has a default value that is usually pretty good)</li><li>Levels (has an auto button that works well for most photos)</li><li>Curves</li><li>Crop</li><li>Straighten (I don&#8217;t really use this daily, but it&#8217;s pretty handy sometimes)</li><li>Export (to so many places! Including the camera roll, Facebook, Dropbox, and the ones I haven&#8217;t used yet Twitter, Flickr, FTP, Picasa, Tumblr, Evernote, and some other options too, including selecting multiple images and exporting in batch to those services!)</li></ul><p>These features are also very cool:</p><ul><li>Information view &#8212; you can view the EXIF and edit the IPTC data for the image!</li><li>Collage</li><li>Vignette</li><li>Blur/centre focus</li><li>Vintage filters/presets</li><li>Black &#038; White filters/presets</li><li>Red eye retouching (and several other retouching tools)</li><li>Frames</li><li>Text boxes and bubbles</li></ul><p>And there&#8217;s also the new &#8220;clarity&#8221; adjustment, which I haven&#8217;t used much yet, and you can now save your own presets too.</p><p>There&#8217;s other filters that I enjoy in other apps (Diana and Country in Path are cool), but for most tasks Photogene<sup>2</sup> is all I need. Easily worth 99c!</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=EH4pazVyArs:cDJTyCgutoE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=EH4pazVyArs:cDJTyCgutoE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=EH4pazVyArs:cDJTyCgutoE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=EH4pazVyArs:cDJTyCgutoE:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=EH4pazVyArs:cDJTyCgutoE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/EH4pazVyArs" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2012/02/photogene2-for-iphone/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Leather wrist cuff</title><link>http://www.kristarella.com/2012/01/leather-wrist-cuff/</link> <comments>http://www.kristarella.com/2012/01/leather-wrist-cuff/#comments</comments> <pubDate>Fri, 20 Jan 2012 21:33:39 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Life and ramblings]]></category> <category><![CDATA[craft]]></category> <category><![CDATA[DIY]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4088</guid> <description><![CDATA[I have an old belt that was very worn around the holes and seemed to be on the verge of tearing. I was going to throw it out, but it seemed such a shame to waste the rest of it, which is quite nice. I realised I could make wrist cuffs out of it! I [...]]]></description> <content:encoded><![CDATA[<p></p><p>I have an old belt that was very worn around the holes and seemed to be on the verge of tearing. I was going to throw it out, but it seemed such a shame to waste the rest of it, which is quite nice. I realised I could make wrist cuffs out of it!</p><p>I found a tutorial at <a
href="http://theprojectspot.blogspot.com/2011/01/leather-belt-wrist-cuff.html">The Project Spot</a>, which gave me the idea for the snap fasteners and reassured me that they weren&#8217;t too difficult to use. It took me a while to find the snaps at the shops: there&#8217;s a dearth of craft shops around here, but I found some good ones at a fabric shop and away I went!</p><p>Here&#8217;s the result!</p><p><a
href="http://www.kristarella.com/wp-content/uploads/20120121-083212.jpg"><img
src="http://www.kristarella.com/wp-content/uploads/20120121-083212-500x373.jpg" alt="" title="Leather wrist cuffs" width="500" height="373" class="frame aligncenter size-large wp-image-4087" /></a></p><p>The belt has a nice pattern on it that you can&#8217;t see in the photo from my iPhone, but it&#8217;s there. As you can see, I added some rivets to the second one, for a bit more flare.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=OITZkhspfNI:MQHAssgKoq4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=OITZkhspfNI:MQHAssgKoq4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=OITZkhspfNI:MQHAssgKoq4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=OITZkhspfNI:MQHAssgKoq4:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=OITZkhspfNI:MQHAssgKoq4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/OITZkhspfNI" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2012/01/leather-wrist-cuff/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Basil &amp; Almond Pesto</title><link>http://www.kristarella.com/2012/01/basil-almond-pesto/</link> <comments>http://www.kristarella.com/2012/01/basil-almond-pesto/#comments</comments> <pubDate>Fri, 20 Jan 2012 06:58:07 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Recipes]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4085</guid> <description><![CDATA[Tomorrow holds a lunch for my husband&#8217;s grandmother&#8217;s birthday and we&#8217;re on pasta salad. I thought it would be a good chance to try making pesto again. Last time I made pesto it was okay &#8212; it dried out a bit &#8212; but I barely remember that recipe, except that it used low fat ricotta [...]]]></description> <content:encoded><![CDATA[<p></p><p><a
href="http://www.kristarella.com/wp-content/uploads/20120120-175020.jpg"><img
src="http://www.kristarella.com/wp-content/uploads/20120120-175020-300x300.jpg" alt="" title="Basil almond pesto" width="300" height="300" class="frame alignright size-medium wp-image-4086" /></a></p><p>Tomorrow holds a lunch for my husband&#8217;s grandmother&#8217;s birthday and we&#8217;re on pasta salad. I thought it would be a good chance to try making pesto again. Last time I made pesto it was okay &#8212; it dried out a bit &#8212; but I barely remember that recipe, except that it used low fat ricotta for creaminess and moisture, without the fat content that the usual oils provide.</p><p>I threw together this concoction this afternoon and hoped for the best! I haven&#8217;t put the pasta salad together yet, but the pesto tastes good!<br
/> <span
id="more-4085"></span></p><h3>Ingredients</h3><ul><li>1 bunch basil (mine was approx. 3 cups of medium packed leaves)</li><li>0.5 cup low fat ricotta</li><li>2 tbs almonds (I used sliced because I had them in the cupboard, but I don&#8217;t think it matters &#8212; blanched or roasted would give different flavours)</li><li>1.5 tbs apple sauce (no added sugar)</li><li>1 dash each salt, pepper &#038; garlic salt</li><li>2 dashes cayenne pepper</li></ul><h3>Method</h3><p>Combine all ingredients in a food processor and blend until smooth. That&#8217;s it! Although, I did have to process the basil before adding the other ingredients so that it would all fit in my little processor. Also, I added just one dash of cayenne pepper at first, but I found the pesto was still a bit sweet from the apple sauce, so I added another dash.</p><p>You could also add some parmesan cheese (1 tbs would probably be about right). I intended to add parmesan, but I forgot to use it until after I&#8217;d already put my pesto in a jar. You could exchange some of the cayenne pepper for parmesan, which should counteract some of the sweetness of the apple sauce (which is in there as a low fat alternative to oil and helps keep the pesto moist).</p><p>If you try this recipe or some variation of it, or if you have a favourite low fat pesto recipe, let me know in the comments!</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=fi44OAFS8Lc:tcFH5_MHFtk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=fi44OAFS8Lc:tcFH5_MHFtk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=fi44OAFS8Lc:tcFH5_MHFtk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=fi44OAFS8Lc:tcFH5_MHFtk:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=fi44OAFS8Lc:tcFH5_MHFtk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/fi44OAFS8Lc" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2012/01/basil-almond-pesto/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Diary pen holder</title><link>http://www.kristarella.com/2012/01/diary-pen-holder/</link> <comments>http://www.kristarella.com/2012/01/diary-pen-holder/#comments</comments> <pubDate>Sat, 07 Jan 2012 05:42:44 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Life and ramblings]]></category> <category><![CDATA[craft]]></category> <category><![CDATA[DIY]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4082</guid> <description><![CDATA[I have a $3 notebook from Office Works that is great! It has heavy, creamy pages, an elastic band to keep the cover closed and a pen holder that fits my fountain pen nicely. Then I have a 2012 diary that is almost great: it has a beautiful cover, lovely pages and typography, but no [...]]]></description> <content:encoded><![CDATA[<p></p><p><a
href="http://www.kristarella.com/wp-content/uploads/20120107-163146.jpg"><img
src="http://www.kristarella.com/wp-content/uploads/20120107-163146-500x500.jpg" alt="" title="20120107-163146.jpg" width="500" height="500" class="aligncenter size-large wp-image-4081" /></a></p><p>I have a $3 notebook from Office Works that is great! It has heavy, creamy pages, an elastic band to keep the cover closed and a pen holder that fits my fountain pen nicely. Then I have a 2012 diary that is almost great: it has a beautiful cover, lovely pages and typography, but no pen holder&#8230; I didn&#8217;t realise how much I valued a pen holder on my notebooks and diaries until I had an excellent one on my notebook and none on my diary.</p><p>So, I cut the elastic off a 2011 diary that I barely used and used a craft brad and a little glue to secure it to my 2012 diary. Problem solved!</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=1gzCby-EmmI:qS44UfxXwkg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=1gzCby-EmmI:qS44UfxXwkg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=1gzCby-EmmI:qS44UfxXwkg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=1gzCby-EmmI:qS44UfxXwkg:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=1gzCby-EmmI:qS44UfxXwkg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/1gzCby-EmmI" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2012/01/diary-pen-holder/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>12 in 12</title><link>http://www.kristarella.com/2012/01/12-in-12/</link> <comments>http://www.kristarella.com/2012/01/12-in-12/#comments</comments> <pubDate>Thu, 05 Jan 2012 03:30:52 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Life and ramblings]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4080</guid> <description><![CDATA[Thanks to Twitter I caught wind of Fitarella&#8217;s 12 in 12. Not only does Jacqueline have a cool screen name, she also has a great idea for this year! The rules for 12 in 12 are that you do something every day for each month of 2012, at the end of each month you decide [...]]]></description> <content:encoded><![CDATA[<p></p><p>Thanks to Twitter I caught wind of <a
href="http://fitarella.com/2011/12/12in12/">Fitarella&#8217;s 12 in 12</a>. Not only does Jacqueline have a cool screen name, she also has a great idea for this year!</p><p>The rules for 12 in 12 are that you do something every day for each month of 2012, at the end of each month you decide whether to continue with what you have been doing <em>and</em> choose a new thing to do every day for the next month. The &#8220;thing&#8221; can be pretty much anything: exercise, giving up a food or activity, trying a new food or activity.</p><p>12 in 12 is a great opportunity to try new things, build new habits, practice activities that you haven&#8217;t made time to practice in the past. I like the idea because it&#8217;s a measurable goal, it&#8217;s good for developing discipline, and you can make it as easy or difficult on yourself as you like.</p><p>For January I am doing 3 sets of abdominal crunches when I get up each morning. I haven&#8217;t decided on any challenges for future months, but I have got a list of ideas. You&#8217;re welcome to draw from this list if you want to take up the challenge too!</p><ul><li>pushups</li><li>squats</li><li>lunges</li><li>walk up &#038; down stairs</li><li>no coffee</li><li>no chocolate</li><li>dark chocolate instead of milk</li><li>eat at least 3 greens</li><li>cook a new recipe</li><li>wake up earlier</li><li>don&#8217;t take a daytime nap</li><li>read at least 1 Christian (or topic of your choice) article</li><li>play guitar</li><li>play flute</li><li>learn to play piano</li><li>write a blog post</li><li>write a letter</li></ul><p>What new thing are you hoping to do this year?</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=0-JMnWuN9KU:cCLwdMiSS98:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=0-JMnWuN9KU:cCLwdMiSS98:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=0-JMnWuN9KU:cCLwdMiSS98:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=0-JMnWuN9KU:cCLwdMiSS98:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=0-JMnWuN9KU:cCLwdMiSS98:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/0-JMnWuN9KU" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2012/01/12-in-12/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Resolved to change</title><link>http://www.kristarella.com/2011/12/resolved-to-change/</link> <comments>http://www.kristarella.com/2011/12/resolved-to-change/#comments</comments> <pubDate>Sat, 31 Dec 2011 13:29:31 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Life and ramblings]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4078</guid> <description><![CDATA[I hate new year resolutions! At least I have for quite a long time. I think they&#8217;re cliché, they&#8217;re too often setting yourself up for failure &#8212; people don&#8217;t realise that change and improvement usually don&#8217;t happen in a linear fashion &#8212; and if you really want to make a change, or want to achieve [...]]]></description> <content:encoded><![CDATA[<p></p><p>I hate new year resolutions!</p><p>At least I have for quite a long time. I think they&#8217;re cliché, they&#8217;re too often setting yourself up for failure &#8212; people don&#8217;t realise that change and improvement usually don&#8217;t happen in a linear fashion &#8212; and if you really want to make a change, or want to achieve something, <strong>just do it!</strong> You don&#8217;t have to wait for new year to better yourself or achieve goals.<br
/> <span
id="more-4078"></span></p><p>That said, this last week or so has been pretty chilled for me, and a good opportunity to think, review and plan. It is actually a nice chance to think about what to work on and <strong>how to approach it</strong>. One of the things I hate about new year resolutions is the lack of follow through: people say they want something to happen, but do nothing to make it happen. And it&#8217;s a failing of my own as well: too often I think about doing something, but don&#8217;t do it. So, the <em>how to approach it</em> stage is a grand step towards actually taking action.</p><h3>Some tips for successful change</h3><ul><li>Don&#8217;t just think, <strong>do</strong></li><li>Change usually doesn&#8217;t happen overnight, nor is it consistent &#8212; there will be ups and downs</li><li>If you fall off the wagon, you haven&#8217;t failed (or if you have, your goal might have been too ambitious), just get back on at the first available opportunity</li></ul><h3>What changes do I want to make?</h3><p>Well, unfortunately, due to a lack of exercise and possibly too much take away food, I&#8217;ve put back on a fair bit of the <a
href="http://www.kristarella.com/2010/02/going-down/">weight I lost</a>. I&#8217;m super keen to lose that and keep it off. One of the methods to achieve this is to practice my karate kata at home every weekday, or close to it. I&#8217;ll need more exercise than that, but it&#8217;s a start.</p><p>I want to make <strong>more Thesis skins</strong> and plugins. It was my hope to do that last year, and while I made a couple of free plugins and one paid <a
href="http://studio.kristarella.com/product/thesis-mobile-child-theme/">child theme</a>, I want to do more.</p><p>I want to make a series of <strong>video tutorials</strong> about making websites (I think the series will be called Websites Back to Front). These will involve using FTP, HTML, CSS, WordPress and Thesis. I believe there are good videos and tutorials out there, but I think I&#8217;m in a good position to reach some keen beans that those other tutorials haven&#8217;t reached yet.</p><p>There is much more I want to do, but I don&#8217;t want to set myself up for failure by listing too many of them here (and I don&#8217;t mind if some of them happen in years to come).</p><p><strong>Happy new year everyone!</strong></p><p>Good luck, or if you believe in him, happy God&#8217;s providence to you.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=WoytjqQ5Me0:pPnH3Tq-OIU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=WoytjqQ5Me0:pPnH3Tq-OIU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=WoytjqQ5Me0:pPnH3Tq-OIU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=WoytjqQ5Me0:pPnH3Tq-OIU:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=WoytjqQ5Me0:pPnH3Tq-OIU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/WoytjqQ5Me0" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2011/12/resolved-to-change/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>All Mankind’s Simple Desire</title><link>http://www.kristarella.com/2011/10/all-mankinds-simple-desire/</link> <comments>http://www.kristarella.com/2011/10/all-mankinds-simple-desire/#comments</comments> <pubDate>Sun, 30 Oct 2011 05:38:05 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Music]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4050</guid> <description><![CDATA[My copy All Mankind&#8217;s new album Simple Desire came in the post a couple of weeks ago. I love it more and more every time I listen to it! I love the energy of Can You Hear Me? and Break the Spell, and I really enjoyed the peaceful vibe of Lay Me Down while I [...]]]></description> <content:encoded><![CDATA[<p></p><p><img
src="http://www.kristarella.com/wp-content/uploads/simpledesire.jpg" alt="" title="Simple Desire album cover" width="228" height="207" class="alignright frame size-full wp-image-4051" /></p><p>My copy All Mankind&#8217;s new album Simple Desire came in the post a couple of weeks ago. I love it more and more every time I listen to it!</p><p>I love the energy of Can You Hear Me? and Break the Spell, and I really enjoyed the peaceful vibe of Lay Me Down while I was driving this morning.</p><p>You can:</p><ul><li><a
href="http://simpledesire.net/">Listen to Simple Desire</a></li><li><a
href="http://simpledesire.allmankind.com/">Buy a signed copy</a></li><li><a
href="http://itunes.apple.com/au/album/simple-desire/id470102284">Buy it on iTunes</a></li><li>Check out their music videos on <a
class="http://www.youtube.com/user/allmankindofficial">YouTube</a></li></ul> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=rzwopDP-05M:j9jKHU0aZLw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=rzwopDP-05M:j9jKHU0aZLw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=rzwopDP-05M:j9jKHU0aZLw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=rzwopDP-05M:j9jKHU0aZLw:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=rzwopDP-05M:j9jKHU0aZLw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/rzwopDP-05M" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2011/10/all-mankinds-simple-desire/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Images &amp; Adblock Plus</title><link>http://www.kristarella.com/2011/10/images-adblock-plus/</link> <comments>http://www.kristarella.com/2011/10/images-adblock-plus/#comments</comments> <pubDate>Tue, 18 Oct 2011 06:58:12 +0000</pubDate> <dc:creator>kristarella</dc:creator> <category><![CDATA[Blogging]]></category><guid isPermaLink="false">http://www.kristarella.com/?p=4048</guid> <description><![CDATA[I haven&#8217;t used ad-blockers for a very long time&#8230; partly because I haven&#8217;t used Firefox (regularly) for a long time, and I&#8217;ve been slow to adopt Chrome plugins. Also, I&#8217;m a little conflicted about denying site-owners potential income by blocking their ads. So, I&#8217;m not an expert on ad-blocking by any means, but I ran [...]]]></description> <content:encoded><![CDATA[<p></p><p>I haven&#8217;t used ad-blockers for a very long time&#8230; partly because I haven&#8217;t used Firefox (regularly) for a long time, and I&#8217;ve been slow to adopt Chrome plugins. Also, I&#8217;m a little conflicted about denying site-owners potential income by blocking their ads. So, I&#8217;m not an expert on ad-blocking by any means, but I ran into an interesting issue with a client this week that I thought deserved sharing.<br
/> <span
id="more-4048"></span><br
/> My client had chosen to use thumbnails in the <a
href="http://www.shareasale.com/r.cfm?b=198392&#038;u=403481&#038;m=24570&#038;urllink=&#038;afftrack=">Thesis</a> teasers that were 300&#215;250 pixels. Personally I prefer something slightly more &#8220;widescreen&#8221;, like 300x200px, but it is a food blog, so I think they&#8217;d like to show as much of the dishes as they can. We had just finished implementing the design on the website &#8212; I had written a little script that grabs the first image uploaded to the post and displays the thumbnail version of that image, if there is no Thesis Thumbnail designated for the post &#8212; and the client told me that <a
href="http://adblockplus.org/en/" rel="nofollow">Adblock Plus</a> was blocking the thumbnails.</p><p>Since I don&#8217;t use ad-blockers and haven&#8217;t used this specific image size much, I&#8217;d never encountered this issue, but with the help of <a
href="http://perishablepress.com/press/2007/12/29/are-adblock-plus-visitors-seeing-your-content/">Perishable Press</a> and my client we figured it out! The images have <code>-300x250</code> at the end of their URL (WordPress adds the dimensions to all images it generates), and Adblock Plus was blocking images with <code>-300x250</code> in their file name. 300&#215;250 is one of the <a
rel="nofollow" href="http://en.wikipedia.org/wiki/Web_banner#Standard_sizes">standard ad sizes</a>&#8230; So assuming that Adblock Plus only blocks the standard ad sizes, the way to fix this issue in WordPress is to change your image size to something slightly different to 300&#215;250, even if it is just by one or two pixels.</p><p>If you need to change all the thumbnails on your site <a
href="http://wordpress.org/extend/plugins/regenerate-thumbnails/">Regenerate Thumbnails</a> is a very effective plugin for regenerating the images after you change the size settings.</p> <div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=FhNMGPS0GSs:PUNppUKo2X4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?i=FhNMGPS0GSs:PUNppUKo2X4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=FhNMGPS0GSs:PUNppUKo2X4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=FhNMGPS0GSs:PUNppUKo2X4:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kristarella/blog?a=FhNMGPS0GSs:PUNppUKo2X4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kristarella/blog?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/kristarella/blog/~4/FhNMGPS0GSs" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.kristarella.com/2011/10/images-adblock-plus/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> </channel> </rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic

Served from: www.kristarella.com @ 2012-05-18 18:28:33 -->

