<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Hotchkiss Consulting</title>
	<atom:link href="http://hotchkissconsulting.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://hotchkissconsulting.net</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 12 Apr 2012 17:48:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on Contact by Hotchkiss Consulting &#124; PHP Development &#124; Specializing in WordPress, CodeIgniter, and jQuery</title>
		<link>http://hotchkissconsulting.net/contact/#comment-987</link>
		<dc:creator>Hotchkiss Consulting &#124; PHP Development &#124; Specializing in WordPress, CodeIgniter, and jQuery</dc:creator>
		<pubDate>Thu, 12 Apr 2012 17:48:09 +0000</pubDate>
		<guid isPermaLink="false">http://hotchkissconsulting.net/?page_id=291#comment-987</guid>
		<description>[...] ClientsBlogContact      we work magic with  [...]</description>
		<content:encoded><![CDATA[<p>[...] ClientsBlogContact      we work magic with  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing content for non-active languages with qTranslate by Jacky Andrew</title>
		<link>http://hotchkissconsulting.net/accessing-content-for-non-active-languages-with-qtranslate/#comment-365</link>
		<dc:creator>Jacky Andrew</dc:creator>
		<pubDate>Sun, 14 Aug 2011 10:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://hotchkissconsulting.net/?p=271#comment-365</guid>
		<description>Doing the same thing, but with much less: 
 
$getpost = get_post($post-&gt;ID); 
if (preg_match_all(&#039;/--&gt;(.+?)&lt;!--:--&gt;/&#039;, $getpost-&gt;post_title, $titles)): 
    $titles = $titles[1]; 
endif; 
if (preg_match_all(&#039;/--&gt;(.+?)&lt;!--:--&gt;/&#039;, $getpost-&gt;post_content, $content)): 
    $content = $content[1]; 
endif; 
 
Now your titles are in an array $titles. $titles[0] being english and $titles[1] being hebrew.  Same for the content with $content. </description>
		<content:encoded><![CDATA[<p>Doing the same thing, but with much less:</p>
<p>$getpost = get_post($post-&gt;ID);</p>
<p>if (preg_match_all(&#039;/&#8211;&gt;(.+?)&lt;!&#8211;:&#8211;&gt;/&#039;, $getpost-&gt;post_title, $titles)):</p>
<p>    $titles = $titles[1];</p>
<p>endif;</p>
<p>if (preg_match_all(&#039;/&#8211;&gt;(.+?)&lt;!&#8211;:&#8211;&gt;/&#039;, $getpost-&gt;post_content, $content)):</p>
<p>    $content = $content[1];</p>
<p>endif;</p>
<p>Now your titles are in an array $titles. $titles[0] being english and $titles[1] being hebrew.  Same for the content with $content.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing Basecamp Tasks into iCal by Yuri Victor</title>
		<link>http://hotchkissconsulting.net/importing-basecamp-tasks-into-ical/#comment-54</link>
		<dc:creator>Yuri Victor</dc:creator>
		<pubDate>Wed, 20 Jan 2010 13:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://hotchkissconsulting.net/?p=246#comment-54</guid>
		<description>This was awesome. Thanks. 
 
For secure basecamp: you&#039;ll have to edit mytasks.php and add an s to http in $url ($url = &#039;https://&#039;.$sitename.&#039;.basecamphq.com/&#039;;) 
 
Also, if you want to use due dates, edit the mytasks.php 
 
ADD TO foreach($list-&gt;{&#039;todo-items&#039;}-&gt;{&#039;todo-item&#039;} as $item) LOOP 
 
$item_dueat = $item-&gt;{&#039;due-at&#039;}; 
$dueatCharacters = array(&quot;:&quot;, &quot;-&quot;, &quot;Z&quot;); 
$item_dueat2 = str_replace($dueatCharacters, &quot;&quot;, &quot;$item_dueat&quot;); 
 
 
CHANGE $the_list[] to THIS 
$the_list[] = &#039;DUE:&#039;. $item_dueat2 . &quot;n&quot; . &#039;SUMMARY:&#039; . $project_name . &#039; &#039; . $list_title . &#039; - &#039; . $item_text . &#039;   (&#124;&#039;.$item_id.&#039;&#124;&#039;.$list_id.&#039;&#124;&#039;.$project_id.&#039;&#124;)&#039; . &quot;n&quot;; 
 
DELETE SUMMARY IN BOTTOM FOREACH LOOP: 
BEGIN:VTODO 
 
END:VTODO </description>
		<content:encoded><![CDATA[<p>This was awesome. Thanks. </p>
<p>For secure basecamp: you&#039;ll have to edit mytasks.php and add an s to http in $url ($url = &#039;<a href="https://&#039;.$sitename.&#039;.basecamphq.com/&#039;" rel="nofollow">https://&#039;.$sitename.&#039;.basecamphq.com/&#039;</a> <img src='http://hotchkissconsulting.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
<p>Also, if you want to use due dates, edit the mytasks.php </p>
<p>ADD TO foreach($list-&gt;{&#039;todo-items&#039;}-&gt;{&#039;todo-item&#039;} as $item) LOOP </p>
<p>$item_dueat = $item-&gt;{&#039;due-at&#039;};<br />
$dueatCharacters = array(&quot;:&quot;, &quot;-&quot;, &quot;Z&quot;);<br />
$item_dueat2 = str_replace($dueatCharacters, &quot;&quot;, &quot;$item_dueat&quot;); </p>
<p>CHANGE $the_list[] to THIS<br />
$the_list[] = &#039;DUE:&#039;. $item_dueat2 . &quot;n&quot; . &#039;SUMMARY:&#039; . $project_name . &#039; &#039; . $list_title . &#039; &#8211; &#039; . $item_text . &#039;   (|&#039;.$item_id.&#039;|&#039;.$list_id.&#039;|&#039;.$project_id.&#039;|)&#039; . &quot;n&quot;; </p>
<p>DELETE SUMMARY IN BOTTOM FOREACH LOOP:<br />
BEGIN:VTODO </p>
<p>END:VTODO</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing Basecamp Tasks into iCal by Arturas</title>
		<link>http://hotchkissconsulting.net/importing-basecamp-tasks-into-ical/#comment-53</link>
		<dc:creator>Arturas</dc:creator>
		<pubDate>Fri, 06 Nov 2009 04:41:41 +0000</pubDate>
		<guid isPermaLink="false">http://hotchkissconsulting.net/?p=246#comment-53</guid>
		<description>Pretty original solution. Have you tried &lt;a href=&quot;http://www.comindwork.com&quot; rel=&quot;nofollow&quot;&gt;http://www.comindwork.com&lt;/a&gt;? </description>
		<content:encoded><![CDATA[<p>Pretty original solution. Have you tried <a href="http://www.comindwork.com" rel="nofollow">http://www.comindwork.com</a>?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New eMail-based notes manager released for free! by Rick Hall</title>
		<link>http://hotchkissconsulting.net/email-based-notes-manager/#comment-30</link>
		<dc:creator>Rick Hall</dc:creator>
		<pubDate>Thu, 23 Apr 2009 10:48:34 +0000</pubDate>
		<guid isPermaLink="false">http://hotchkissconsulting.net/?p=182#comment-30</guid>
		<description>Wow Sam!  This is pretty cool, especially because I send email reminders to myself all the time!  :) </description>
		<content:encoded><![CDATA[<p>Wow Sam!  This is pretty cool, especially because I send email reminders to myself all the time!  <img src='http://hotchkissconsulting.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remember the Milk Email Scripts by Building an eMail interface for Remember the Milk using PHP &#124; Hotchkiss Consulting, Advanced Web Developers for Durango and the World</title>
		<link>http://hotchkissconsulting.net/remember-the-milk-email-scripts/#comment-29</link>
		<dc:creator>Building an eMail interface for Remember the Milk using PHP &#124; Hotchkiss Consulting, Advanced Web Developers for Durango and the World</dc:creator>
		<pubDate>Tue, 14 Apr 2009 18:46:45 +0000</pubDate>
		<guid isPermaLink="false">http://hotchkissconsulting.net/?p=177#comment-29</guid>
		<description>[...] UPDATE: Scripts are available here: http://hotchkissconsulting.net/177/remember-the-milk-email-scripts/ [...] </description>
		<content:encoded><![CDATA[<p>[...] UPDATE: Scripts are available here: <a href="http://hotchkissconsulting.net/177/remember-the-milk-email-scripts/" rel="nofollow">http://hotchkissconsulting.net/177/remember-the-milk-email-scripts/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building an eMail interface for Remember the Milk using PHP by Andrew</title>
		<link>http://hotchkissconsulting.net/email-interface-remember-the-milk/#comment-24</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Fri, 10 Apr 2009 11:18:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotchkissconsulting.net/?p=89#comment-24</guid>
		<description>Very cool application of PHP &amp; Remember the Milk! Would be great to see your implementation of this, would you be willing to share the source code? </description>
		<content:encoded><![CDATA[<p>Very cool application of PHP &amp; Remember the Milk! Would be great to see your implementation of this, would you be willing to share the source code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I work on by Sam</title>
		<link>http://hotchkissconsulting.net/what-i-work-on/#comment-26</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Sun, 05 Apr 2009 08:59:12 +0000</pubDate>
		<guid isPermaLink="false">http://hotchkissconsulting.net/?p=143#comment-26</guid>
		<description>I have used Espresso briefly, and found it to be a little bit convoluted, but I think I need to play with it more to make a complete assessment. </description>
		<content:encoded><![CDATA[<p>I have used Espresso briefly, and found it to be a little bit convoluted, but I think I need to play with it more to make a complete assessment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I work on by Nosebean</title>
		<link>http://hotchkissconsulting.net/what-i-work-on/#comment-25</link>
		<dc:creator>Nosebean</dc:creator>
		<pubDate>Sun, 05 Apr 2009 08:52:36 +0000</pubDate>
		<guid isPermaLink="false">http://hotchkissconsulting.net/?p=143#comment-25</guid>
		<description>What is your opinion of Espresso? Have you had the chance to use it? </description>
		<content:encoded><![CDATA[<p>What is your opinion of Espresso? Have you had the chance to use it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building an eMail interface for Remember the Milk using PHP by Sam</title>
		<link>http://hotchkissconsulting.net/email-interface-remember-the-milk/#comment-23</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 01 Apr 2009 08:21:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.hotchkissconsulting.net/?p=89#comment-23</guid>
		<description>Thanks for the reminder-- I&#039;ve been very busy lately and haven&#039;t posted the scripts, but should get around to it in the next day or so. </description>
		<content:encoded><![CDATA[<p>Thanks for the reminder&#8211; I&#039;ve been very busy lately and haven&#039;t posted the scripts, but should get around to it in the next day or so.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

