<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Zodomatica</title>
	
	<link>http://zodomatica.com</link>
	<description>Bits of Tzaddi's Life</description>
	<lastBuildDate>Tue, 14 Dec 2010 00:29:53 +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/Zodomatica" /><feedburner:info uri="zodomatica" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>(another way to) Make a Private Resources Page in WordPress</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/0NH4U6VGnFI/</link>
		<comments>http://zodomatica.com/wordpress-tips/make-a-private-page-in-wordpress/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 00:21:55 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=880</guid>
		<description><![CDATA[There&#8217;s a bazillion ways to do most things in WordPress. Here&#8217;s one I just used to make a simple private page for the Sunshine Coast Community Foundation. The request: allow board members to download a document in a members-only page. &#8230; <a href="http://zodomatica.com/wordpress-tips/make-a-private-page-in-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a bazillion ways to do most things in WordPress. Here&#8217;s one I just used to make a simple private page for the <a title="Sunshine Coast Community Foundation" href="http://sccfoundation.com/">Sunshine Coast Community Foundation</a>.</p>
<p><strong>The request</strong>: allow board members to download a document in a members-only page. Of course, I&#8217;d like to protect the document from direct access as well.</p>
<p><strong>The solution</strong> I used was as follows. It requires comfort with FTP and installing plugins.</p>
<h2>1. Install the <a href="http://wordpress.org/extend/plugins/pagerestrict/">Page Restrict plugin</a></h2>
<p>This is basic and really easy to set up: simply select the page(s) you want to protect. The result is that the private page will be hidden with a &#8220;please log in&#8221; message (which you can set on the plugin&#8217;s settings page) plus a log-in form.</p>
<p><strong>Note</strong>: private pages don&#8217;t appear on the list of pages you can restrict, so if your page is marked private when you go to restrict it you&#8217;ll have to adjust that.</p>
<p><strong>Nitpicks</strong>: I didn&#8217;t like the way the plugin displayed the log-in form. Instead of it using WordPress&#8217;s native wp_login_form(), it inserts it&#8217;s own. Unfortunately it had a layout I didn&#8217;t like with HTML that wouldn&#8217;t be easy for me to adjust via CSS. So I did something I almost never do and altered the plugin directly. I saved backups of the original and my new version outside the plugin folder in case it&#8217;s needed after future upgrades.</p>
<p>If you&#8217;re looking for a free plugin that controls content in a more advanced way, check out <a href="http://wordpress.org/extend/plugins/role-scoper/">Role Scoper</a>.  You can protect a parent page for instance and have all child pages follow the same rules. You can create groups of users and limit access to certain pages per group.</p>
<h2>2. Create a private folder for the documents</h2>
<p>Even though I only have one document to protect at this point, it&#8217;s likely there could be more in future. The doc was too large for uploading via the WP admin anyway so it seemed to make sense for me to create a folder for these. I created /docs-private/ in the root of the site, and uploaded the document there.</p>
<h2>3. Protect the folder from browsing and contents from direct links</h2>
<p>In that folder, I made an .htaccess file that prevents people directly accessing the files unless coming there via the website. So in my /docs-private/ folder I created a file called: .htaccess and in it I put:</p>
<p><pre><code>IndexIgnore *
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(www\.)?sccfoundation\.com/ [NC]
RewriteCond %{REQUEST_URI} !hotlink\.(gif|png|jpg|doc|xls|pdf|html|htm|xlsx|docx) [NC]
RewriteRule .*\.(gif|png|jpg|doc|xls|pdf|html|htm|xlsx|docx)$ http://sccfoundation.com/ [NC]</code></pre></p>
<p>To quote <a title="WP Support Thread" href="http://wordpress.org/support/topic/how-to-protect-media-library-uploads-folder-within-a-membership-site">wwhitehead</a> whom I adapted this from:</p>
<blockquote><p>In the above example the first line disables file directory listings (so  no one can view the files in the &#8216;uploads&#8217; or any of its  subdirectories. The line with HTTP_REFERER makes sure linking to a  particular file is coming from my site. The  gif|png|jpg|doc|xls|pdf|html|htm|xlsx|docx) is a list of filetypes I  want to prevent from being directly linked to (unless they are clicking  from my site).</p></blockquote>
<p>Of course <strong>there is another step</strong> implied above: On my restricted resources page, I created a link to the actual download.</p>
<p>Now I just have to create user accounts for all the members to be able to log in, view the resources page, and download the document.</p>
<p>The one unfortunate thing about this model is that it means the board members won&#8217;t be able to add new documents to a protected folder without knowing FTP. I should probably try to increase the file upload limit and apply the same protection to the uploads folder so that they can do so. Another day, another puzzle <img src='http://zodomatica.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/wordpress-tips/make-a-private-page-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://zodomatica.com/wordpress-tips/make-a-private-page-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>Enabling &amp; Limiting WordPress Revisions</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/Kmlr7C_cs3E/</link>
		<comments>http://zodomatica.com/wordpress-tips/enabling-limiting-wordpress-revisions/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 01:33:14 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=874</guid>
		<description><![CDATA[Most WordPress websites have a post revisions feature which stores older versions of pages and posts as you update them. This is very handy if you make a really bad edit or something strange happens in the editor and you &#8230; <a href="http://zodomatica.com/wordpress-tips/enabling-limiting-wordpress-revisions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Most WordPress websites have a <a href="http://codex.wordpress.org/Revision_Management">post revisions</a> feature which stores older versions of pages and posts as you update them. This is very handy if you make a really bad edit or something strange happens in the editor and you lose everything in the window. Strange things happen once in a while.</p>
<p>Some sites have this feature disabled. (Dreamhost 1-click installs, for instance, install with this feature turned off. Grrr!)</p>
<h2>How to enable post revisions</h2>
<p><strong>Open up your wp-config.php file for editing</strong>. You&#8217;ll find it in the main folder where all your WordPress php files are.</p>
<p><strong>You may already have a line like this:<br />
define(&#8216;WP_POST_REVISIONS&#8217;, false);</strong></p>
<p><strong>If so, change &#8220;false&#8221; to the number</strong> of revisions you want to keep. Try to strike a balance between the number you might actually need, and database size. The higher the number, the more data you&#8217;re storing.</p>
<p><strong>If not, add the following line</strong>, with &#8220;5&#8243; being the number of versions stored. You can change it to whatever number you like.<br />
<strong>define(&#8216;WP_POST_REVISIONS&#8217;, 5 );</strong></p>
<p>If you want to keep unlimited numbers, change &#8220;false&#8221; to &#8220;true&#8221;</p>
<p><strong>Save the file</strong>, and your future edits will cause post revisions to be saved.</p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/wordpress-tips/enabling-limiting-wordpress-revisions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://zodomatica.com/wordpress-tips/enabling-limiting-wordpress-revisions/</feedburner:origLink></item>
		<item>
		<title>Mucking about with Twenty Ten Theme</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/rQoItPrFEfE/</link>
		<comments>http://zodomatica.com/about-this-site/mucking-about-with-twenty-ten-theme/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 05:12:14 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[About this site]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=858</guid>
		<description><![CDATA[Boring site announcement: I&#8217;m checking out the new default WordPress theme so I can get familiar with it and try things the newbie way.  And maybe some other newbie-friendly themes after that&#8230; Things may be in flux for a while. &#8230; <a href="http://zodomatica.com/about-this-site/mucking-about-with-twenty-ten-theme/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Boring site announcement: I&#8217;m checking out the new default WordPress theme so I can get familiar with it and try things the newbie way.  And maybe some other newbie-friendly themes after that&#8230; Things may be in flux for a while. Pardon the dust.</p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/about-this-site/mucking-about-with-twenty-ten-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://zodomatica.com/about-this-site/mucking-about-with-twenty-ten-theme/</feedburner:origLink></item>
		<item>
		<title>Lucy comes home</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/O2e8rR7Lrl0/</link>
		<comments>http://zodomatica.com/life/lucy-comes-home/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 05:56:25 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=844</guid>
		<description><![CDATA[Sometimes, my life doesn&#8217;t go the way I plan. Yours too? I&#8217;ve spent the last 3 months going through a process of grieving and then adjusting to being a 1-dog household. I was pretty sure I wanted to keep it &#8230; <a href="http://zodomatica.com/life/lucy-comes-home/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://zodomatica.com/wp/wp-content/uploads/2010/06/lucy-133-jex.jpg"><img class="alignright size-medium wp-image-845" title="Lucy a.k.a. 133 JEX" src="http://zodomatica.com/wp/wp-content/uploads/2010/06/lucy-133-jex-225x300.jpg" alt="Puppy with her ear flopped inside out" width="225" height="300" /></a>Sometimes, my life doesn&#8217;t go the way I plan. Yours too?</p>
<p>I&#8217;ve spent the last 3 months going through a process of <a title="letter to my dog who died too young" href="/life/dear-maggie/">grieving</a> and then adjusting to being a 1-dog household. I was pretty sure I wanted to keep it that way. So much quieter! So much easier!</p>
<p>But, the conviction faded as my heart healed more and more. Then I began to feel maybe I was being selfish to keep the possibility of a new companion away from <a title="our dog Jack on Flickr" href="http://www.flickr.com/photos/tzaddi/tags/jack/">Jack</a>. Or as I began to say: <strong>I&#8217;m pretty sure Jack was using his super powerful brain waves to tell me it&#8217;s time for a puppy.</strong></p>
<p>So I opened my heart more and more to the possibility, and then I began surfing the listings at the SPCA. That&#8217;s how you know you&#8217;re done-for.</p>
<p><strong>My two desires were</strong>: not another shepherd cross, and not too big. Those were nice ideals while they lasted.</p>
<p>We met Lucy when she&#8217;d only been at the shelter 2 days. She was being held until she could be spayed so we had a few days to visit and think about it. But really, we were sold from the first belly rub. She is a very warm, eager, and bright puppy.</p>
<p><strong>This is how I pictured today</strong>: We&#8217;d pick up a dopey, convalescing pup from the clinic. Bring her home, and she&#8217;d sniff around some, and curl up to sleep. I would get to work for the afternoon and be brilliantly productive. Bwahaha!</p>
<p><strong>How it actually played out</strong>: Rambunctious puppy bounded around the clinic waiting room, bulldozing everything in site with her <a title="Pictures of cone of shame" href="http://www.google.ca/images?q=cone+of+shame&amp;oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;source=univ&amp;ei=j39KTL6lE436swPUuqhI&amp;sa=X&amp;oi=image_result_group&amp;ct=title&amp;resnum=1&amp;ved=0CCYQsAQwAA">cone of shame</a>. We drove home with her half on my lap, marveling at how FREAKING HUGE she is already. We took the cone off before she even got into the house so she and Jack could socialize better.</p>
<p>The next several hours were spent telling her &#8220;No&#8221; and giving her alternatives as she tried to chew, tug, jump up on just about everything in sight.</p>
<p>It&#8217;s been so long, <strong>we totally forgot about the need to puppy-proof the house</strong>.</p>
<p>So much for my brilliantly productive afternoon.</p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/life/lucy-comes-home/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://zodomatica.com/life/lucy-comes-home/</feedburner:origLink></item>
		<item>
		<title>Fresh Water Summit &amp; Petition</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/DtyMoP0mezo/</link>
		<comments>http://zodomatica.com/activism-environment/fresh-water-summit-petition/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 06:12:11 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=841</guid>
		<description><![CDATA[Tonight I listened to a great panel discussion called &#8220;Speaking Truth to Power&#8221; on CBC radio&#8217;s program &#8220;Ideas&#8221; . It was from a summit about the crucial importance of fresh water to the future of our planet. The 2010 Fresh &#8230; <a href="http://zodomatica.com/activism-environment/fresh-water-summit-petition/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Tonight I listened to a great panel discussion called &#8220;Speaking Truth to Power&#8221; on <a href="http://www.cbc.ca/ideas/">CBC radio&#8217;s program &#8220;Ideas&#8221;</a> . It was from a summit about the crucial importance of fresh water to the  future of our planet.</p>
<p>The <a title="The official summit website" href="http://2010freshwatersummit.org/">2010 Fresh Water Summit</a> resulted in a petition proposing a Canadian Charter of Water Rights and Responsibilities. From the opening letter:</p>
<blockquote><p>&#8220;We the undersigned recognize that water is fundamental to life. Without it all living things perish, some within a few minutes, most within a few days. We understand the essential role of water to life, to the ecosystem around us, and ultimately to our own well-being. We have a reverence for life, and a reverence for water.&#8221;</p>
<p><a href="http://www.thepetitionsite.com/petition/912/828/259">View/sign the Petition</a></p></blockquote>
<p>I understood from the program that the communique from the summit is being delivered to leaders at the G20 but I couldn&#8217;t find any info online about that.</p>
<p>Little bits from the panel are swimming around in my brain right now. Things like:</p>
<ul>
<li><strong>Pollution and other <a title="Facts about bottled water" href="http://www.canadians.org/water/issues/Unbottle_It/factsheet.html">issues with bottled water</a>.</strong> Barlow said something like if you take all the small bottles from water we drink, globally, annually, and lined them up, they would go to the moon and back 65 times. The vast majority are not recycled.</li>
<li><strong>The environment cannot be separated from health.</strong> When a child has to go to emergency with asthma, or people need treatment for cancers that can be caused by pollutants, people will talk about health care being a priority for them because that&#8217;s the urgent need at that time for that person. But at the root of it is an unhealthy ecosystem causing such health concerns.</li>
<li>Incredibly wise words from so many of <a href="http://2010freshwatersummit.org/speakers.htm">the speakers</a> there. <a href="http://2010freshwatersummit.org/speakers.htm#Lickers">Henry Lickers</a> in particular said some things that really resonated for me. And of course <a href="http://2010freshwatersummit.org/speakers.htm#Barlow">Maude Barlow</a> was brilliant and inspiring as usual.</li>
</ul>
<p>It doesn&#8217;t seem like the CBC makes this program very accessible online (from what I could find anyway) but if you do find it it&#8217;s well worth a listen.</p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/activism-environment/fresh-water-summit-petition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://zodomatica.com/activism-environment/fresh-water-summit-petition/</feedburner:origLink></item>
		<item>
		<title>Dear Maggie</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/1tnNCmiBakM/</link>
		<comments>http://zodomatica.com/life/dear-maggie/#comments</comments>
		<pubDate>Thu, 20 May 2010 07:00:42 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=823</guid>
		<description><![CDATA[I miss you. It&#8217;s been a month since you died. I haven&#8217;t written until now because losing you has been such a powerful and profound experience for me. Maybe people who haven&#8217;t been as lucky as I have, who&#8217;ve experienced &#8230; <a href="http://zodomatica.com/life/dear-maggie/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://zodomatica.com/wp/wp-content/uploads/2010/05/maggie.jpg"><img class="alignright size-medium wp-image-828" title="Maggie" src="http://zodomatica.com/wp/wp-content/uploads/2010/05/maggie.jpg" alt="Maggie" width="270" height="408" /></a>I miss you.</p>
<p>It&#8217;s been a month since you died. I haven&#8217;t written until now because losing you has been such a powerful and profound experience for me. Maybe people who haven&#8217;t been as lucky as I have, who&#8217;ve experienced more losses in their lives, maybe they would be better at this than I am. Maybe they could write this without the tears. And yet, even though I feel like I&#8217;ve done a tremendous amount of healing in this month of mourning, I have been also feeling like there&#8217;s more stuck inside me that I need to get out. So I don&#8217;t know if I&#8217;ll even publish this or if anyone will care enough to read it, but I gotta do it. So I write and I cry.</p>
<p><strong>At first it was the shock.</strong> How could our strong, beautiful, young dog be gone so quickly? Sick for a few short days, and then dead. Fucking dead. What?</p>
<p>We brought your body home from the vet, wrapped up in a blanket in the back of the car. God, you were still warm. I let Jack sniff you so he&#8217;d understand. He didn&#8217;t. Wouldn&#8217;t follow me away from the car. So I let him see you again, and then he did.</p>
<p>The next morning we picked a spot on the mountain for you and I carried you to it. You were so heavy but I needed to do that for some reason. We laid you there with your favourite red ball. Sometimes that ball seemed to be the only thing in the world that mattered more to you than I did.</p>
<p>And so you were buried.</p>
<p>I kept thinking: how do parents survive a loss of their child? If this is what it feels like to lose your dog, I could never survive <em>that</em>.</p>
<p><strong>Then, it was guilt and blame.</strong> Did we miss the signs? Could we have prevented this? What if, what if, what if. Still.</p>
<p>I was thankful that we had Jack to cuddle but more importantly to force us  back to the forest and the beach.  We each had a good howl with him 2  days after you died. Cathartic acts for all of us.</p>
<p><strong>Next came the existential thoughts.</strong> Life is so short. What is the purpose of my life?</p>
<p>How much you tried to teach me. You whole-heartedly threw your self, body and soul into everything you did. There is only <em>now</em>. Time to run? Run like hell. Time to relax? Find the  warmest spot and get yourself in the most comfortable position and let your jowls hang out. There is only <em>now</em>, and we should be doing something important like chasing balls or cuddling or enjoying whatever&#8217;s in the oven making those really good smells.</p>
<p>It was almost like you knew there was no time to waste. Life is so damn short! So I wondered: what am I doing that <em>matters</em>? What matters to me? Why do I procrastinate on this or that? How can I appreciate NOW and THIS more?</p>
<p>So I guess in writing this, I am trying to be more present to all the thoughts that have been milling around in my head. To acknowledge that even if I&#8217;m done crying every damn day, I still have some more tears to shed. I still miss you.</p>
<p>Thanks for the lessons and the memories.</p>
<p><small>&#8220;Dog Days&#8221; video by <a href="http://joanneprobyn.com">Joanne Probyn</a> June 2009</small></p>
<div id="v98">
<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this video.
</div>
<p><script type="text/javascript" src="https://media.dreamhost.com/mp4/swfobject.js"></script><br />
<script type="text/javascript">
var swf = new SWFObject("https://media.dreamhost.com/mp4/player.swf", "mpl", "640", "499", 8);
swf.addParam("allowfullscreen", "true");
swf.addParam("allowscriptaccess", "always");
swf.addVariable("file", "http://www.zodomatica.com/DogDays_640x480.flv");
swf.addVariable("image", "http://www.zodomatica.com/DogDays_640x480.jpeg");
swf.write("v98");
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/life/dear-maggie/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
<enclosure url="http://www.zodomatica.com/DogDays_480x360.flv" length="1529405" type="video/x-flv" />
<enclosure url="http://www.zodomatica.com/DogDays_640x480.flv" length="1976943" type="video/x-flv" />
		<feedburner:origLink>http://zodomatica.com/life/dear-maggie/</feedburner:origLink></item>
		<item>
		<title>Three Years Later</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/XVfZHFMRLWQ/</link>
		<comments>http://zodomatica.com/life/three-years-later/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 05:19:39 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=812</guid>
		<description><![CDATA[Today marks 3 years of self employment for me. What an exciting ride it&#8217;s been! I am so thankful to Christine, the queen of code monkeys, who helped me take the leap and has taught me immeasurable things. I have &#8230; <a href="http://zodomatica.com/life/three-years-later/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://zodomatica.com/wp/wp-content/uploads/2010/04/champagne.jpg"><img class="alignright size-medium wp-image-813" title="Let's celebrate!" src="http://zodomatica.com/wp/wp-content/uploads/2010/04/champagne-225x300.jpg" alt="Glass of champagne" width="225" height="300" /></a>Today marks 3 years of self employment for me. What an exciting ride it&#8217;s been!</p>
<p>I am so thankful to Christine, <a title="Christine Rondeau, Bluelime Media" href="http://bluelimemedia.com/about">the  queen of code monkeys</a>, who helped me take the leap and has taught me immeasurable things.</p>
<p>I have learned so much in these 3 years. About web development, about myself, about  handling clients, the joys and challenges of running <a title="Custom  WordPress Web Sites" href="http://thrivewire.ca/">my business</a>, of working for myself at  home. About <a title="Mixed-for-you Semi-Custom WordPress web sites" href="http://haveasmoothie.com/">starting  new ventures</a>.</p>
<p>It hasn&#8217;t been all sun &amp; roses. It can be frustrating, scary, and lonely at times. I tend to work a lot more than I did at my corporate job. When you (mostly) love the work you do, that happens easily because it doesn&#8217;t all feel like work. On the flip side if I need to get out for a hike in the middle of the day, I often can.</p>
<p>Yet I can&#8217;t imagine giving it up for any <em>traditional</em> job. (Offer me  one of those &#8220;best job in the world&#8221; gigs somewhere tropical for a year  and I might change my tune <img src='http://zodomatica.com/wp/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) I love being able to shape my direction,  the freedom of my schedule, the variety of my clients and their  projects.</p>
<p>Thank you to everyone who&#8217;s been so supportive of this journey!</p>
<p>To my husband who quietly brings me coffee or lunch (or makes me go take a nap) just when I need it&#8230;</p>
<p>To the clients who have such faith in me&#8230;</p>
<p>To the communities of the Sunshine Coast who&#8217;ve been so welcoming&#8230;</p>
<p>And my Twitter friends who give me a virtual water cooler and library and a good laugh&#8230;</p>
<p>A toast! Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/life/three-years-later/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://zodomatica.com/life/three-years-later/</feedburner:origLink></item>
		<item>
		<title>Display a Google Map in a WordPress page without it breaking</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/-sMR1NU_oYU/</link>
		<comments>http://zodomatica.com/wordpress-tips/display-a-google-map-in-a-wordpress-page-without-it-breaking/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 21:27:23 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=805</guid>
		<description><![CDATA[If you&#8217;ve tried putting a Google map in your WordPress site&#8217;s contact page, you might have noticed that sometimes it breaks when you edit the page in visual mode later. Here&#8217;s a quick fix I just used in a site &#8230; <a href="http://zodomatica.com/wordpress-tips/display-a-google-map-in-a-wordpress-page-without-it-breaking/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve tried putting a Google map in your WordPress site&#8217;s contact page, you might have noticed that sometimes it breaks when you edit the page in visual mode later. Here&#8217;s a quick fix I just used in a site I&#8217;m working on.</p>
<p>This solution uses custom fields. Here&#8217;s a <a href="http://www.millionclues.com/problogging/wordpress-tips/wordpress-custom-fields-tutorial-for-total-newbie">tutorial on custom fields</a> in case you need it.</p>
<p>First, I took the code from Google Maps and put it into a custom field in my contact page.</p>
<p>Then I edited my theme by adding a bit of code into page.php, just after where the line which outputs my title. Yours would look something like this:<br />
<code>&lt;h1&gt;the title();&lt;/h1&gt;</code></p>
<p>So after the title I inserted the following to get my custom field which I had called &#8220;floatright&#8221;:<br />
<pre><code>
$customField = get_post_custom_values(&quot;floatright&quot;);
if (isset($customField[0])) {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo &#039;&lt;div class=&quot;alignright&quot;&gt;&#039;.$customField[0].&#039;&lt;/div&gt;&#039;;
}
</code></pre></p>
<p>So basically that checks if I&#8217;ve set a value for that custom field in the current page, and if so it inserts the field wrapped in a div which is floated right.</p>
<p>Of course I could have just hard-coded the map into page.php when the page is &#8220;contact us&#8221;. But this is a flexible solution that could be used on other pages and for any item that we want to float over to the right. And, the client can update that map area if they want to later without breaking that wrapper HTML. If you&#8217;re savvy enough to do this on your own site you might just put the div into your custom field for even more flexibility. </p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/wordpress-tips/display-a-google-map-in-a-wordpress-page-without-it-breaking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://zodomatica.com/wordpress-tips/display-a-google-map-in-a-wordpress-page-without-it-breaking/</feedburner:origLink></item>
		<item>
		<title>Beautifully animated music video – Neko Case</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/nTgMjgopC_o/</link>
		<comments>http://zodomatica.com/art/beautifully-animated-music-video-neko-case/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 03:27:27 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Culture Consumed]]></category>
		<category><![CDATA[Goofy, Fun & Cool]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=793</guid>
		<description><![CDATA[I&#8217;m loving this animation, and the song is quite catchy too. Thanks to Darren&#8217;s list of newest favourite songs for the discovery.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m loving this animation, and the song is quite catchy too. Thanks to Darren&#8217;s list of <a href="http://www.darrenbarefoot.com/archives/2009/08/five-of-my-newest-favourite-songs.html">newest favourite songs</a> for the discovery.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/zXl870NoF4E&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/zXl870NoF4E&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/art/beautifully-animated-music-video-neko-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://zodomatica.com/art/beautifully-animated-music-video-neko-case/</feedburner:origLink></item>
		<item>
		<title>Fun Coffee images found on Flickr</title>
		<link>http://feedproxy.google.com/~r/Zodomatica/~3/VovELxewJiY/</link>
		<comments>http://zodomatica.com/art/fun-coffee-images-found-on-flickr/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 04:59:17 +0000</pubDate>
		<dc:creator>Tzaddi</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Goofy, Fun & Cool]]></category>

		<guid isPermaLink="false">http://zodomatica.com/?p=766</guid>
		<description><![CDATA[While writing about why you should probably make time for Twitter and Facebook over on the ThriveWire blog, I searched for Creative Commons licensed photos on Flickr. Here&#8217;s some of the gems I found but didn&#8217;t end up using over &#8230; <a href="http://zodomatica.com/art/fun-coffee-images-found-on-flickr/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While writing about <a title="Or, how social media is like a coffee shop" href="http://thrivewire.ca/blog/do-you-have-time-for-coffee">why you should probably make time for Twitter and Facebook</a> over on the ThriveWire blog, I searched for <a title="About Creative Commons licensing" href="http://creativecommons.org/">Creative Commons</a> licensed photos on Flickr. Here&#8217;s some of the gems I found but didn&#8217;t end up using over there.</p>
<h3>Bright &amp; Colourful:</h3>
<div id="attachment_775" class="wp-caption alignnone" style="width: 209px"><a title="Duncan Rawlinson" href="http://www.thelastminuteblog.com/"><img class="size-medium wp-image-775" title="Arbutus Coffee" src="http://zodomatica.com/wp/wp-content/uploads/2009/08/3283192936_2f3b1d2491-199x300.jpg" alt="Arbutus Coffee (thelastminute, flickr)" width="199" height="300" /></a><p class="wp-caption-text">Arbutus Coffee (Duncan Rawlinson a.k.a. thelastminute, flickr)</p></div>
<div id="attachment_774" class="wp-caption alignnone" style="width: 310px"><a href="http://www.flickr.com/photos/justinknol/5031835/"><img class="alignleft size-medium wp-image-774" title="I just love the colour and simplicity in this. (justinknol, flickr)" src="http://zodomatica.com/wp/wp-content/uploads/2009/08/5031835_6ccbd649ae-300x280.jpg" alt="I just love the colour and simplicity in this. (justinknol, flickr)" width="300" height="280" /></a><p class="wp-caption-text">I just love the colour and simplicity in this. (justinknol, flickr)</p></div>
<h3>In the Vintage &amp; weird department:</h3>
<div id="attachment_777" class="wp-caption alignnone" style="width: 310px"><a href="http://www.flickr.com/photos/seanbonner/2385126490/"><img class="size-medium wp-image-777" title="Coffee + Spankings" src="http://zodomatica.com/wp/wp-content/uploads/2009/08/2385126490_bd793be25c-300x266.jpg" alt="Coffee + Spankings, vintage ad (seanbonner, flickr)" width="300" height="266" /></a><p class="wp-caption-text">Coffee + Spankings, vintage ad (seanbonner, flickr)</p></div>
<div id="attachment_773" class="wp-caption alignnone" style="width: 251px"><a href="http://www.flickr.com/photos/cowtools/1892153882/in/set-72157602966433161/"><img class="size-medium wp-image-773" title="Coffee means pleasure, coffee means fun! (cowtools, flickr)" src="http://zodomatica.com/wp/wp-content/uploads/2009/08/1892153882_d288c9f8d0-241x300.jpg" alt="Coffee means pleasure, coffee means fun! (cowtools, flickr)" width="241" height="300" /></a><p class="wp-caption-text">Coffee means pleasure, coffee means fun! (cowtools, flickr)</p></div>
<div id="attachment_768" class="wp-caption alignnone" style="width: 310px"><a href="http://www.flickr.com/photos/cowtools/1891321965/"><img class="size-medium wp-image-768" title="Coffee can bring the world to you! - vintage brochure imagery from cowtools on flickr" src="http://zodomatica.com/wp/wp-content/uploads/2009/08/1891321965_485b646e53_o-300x256.jpg" alt="Coffee can bring the world to you! - vintage brochure imagery from cowtools on flickr" width="300" height="256" /></a><p class="wp-caption-text">Coffee can bring the world to you! - vintage brochure imagery (cowtools, flickr)</p></div>
<h3>Dedicated to the craft</h3>
<div id="attachment_778" class="wp-caption alignnone" style="width: 310px"><a href="http://www.flickr.com/photos/scarygami/3745907496/"><img class="size-medium wp-image-778" title="Coffee Break (scarygami, flickr)" src="http://zodomatica.com/wp/wp-content/uploads/2009/08/3745907496_3fc950d446-300x224.jpg" alt="Coffee Break (scarygami, flickr)" width="300" height="224" /></a><p class="wp-caption-text">Coffee Break (scarygami, flickr)</p></div>
<h3>Old-time charm</h3>
<div id="attachment_771" class="wp-caption alignnone" style="width: 310px"><a href="http://www.flickr.com/photos/sheyne/140511114/"><img class="size-medium wp-image-771" title="London coffee shop from sheyne on flickr" src="http://zodomatica.com/wp/wp-content/uploads/2009/08/140511114_6707e02d04-300x285.jpg" alt="London coffee shop from sheyne on flickr" width="300" height="285" /></a><p class="wp-caption-text">London coffee shop (sheyne, flickr)</p></div>
]]></content:encoded>
			<wfw:commentRss>http://zodomatica.com/art/fun-coffee-images-found-on-flickr/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://zodomatica.com/art/fun-coffee-images-found-on-flickr/</feedburner:origLink></item>
	</channel>
</rss>

