<?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 Dan Polant :: Web Interaction Designer</title>
	<atom:link href="http://danpolant.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://danpolant.com</link>
	<description></description>
	<lastBuildDate>Fri, 09 Dec 2011 16:05:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on R integration with PHP by admin</title>
		<link>http://danpolant.com/r-integration-with-php/comment-page-1/#comment-343</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 09 Dec 2011 16:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=329#comment-343</guid>
		<description>I would probably do things differently if I did this again today. 

@valugi You are right, this method was rather slow because it was constantly re-loading the whole R environment. I would look into using RApache instead (http://rapache.net/) because it provides an R interpreter to the web server. I&#039;ve never used this.

@ken I guess it depends what you want to do with the data that R spits out in the long run; in my case I just wanted to show it to the user once and I didn&#039;t care about caching or anything. Using a database as the handoff is a good idea if you want to preserve the data but you will have to launch a separate query in PHP to get it. The fastest handoff can probably be achieved by constructing and exec()ing a shell script that runs R and returns data as a JSON string which then will be picked up by PHP as the return of exec().</description>
		<content:encoded><![CDATA[<p>I would probably do things differently if I did this again today. </p>
<p>@valugi You are right, this method was rather slow because it was constantly re-loading the whole R environment. I would look into using RApache instead (<a href="http://rapache.net/" rel="nofollow">http://rapache.net/</a>) because it provides an R interpreter to the web server. I&#8217;ve never used this.</p>
<p>@ken I guess it depends what you want to do with the data that R spits out in the long run; in my case I just wanted to show it to the user once and I didn&#8217;t care about caching or anything. Using a database as the handoff is a good idea if you want to preserve the data but you will have to launch a separate query in PHP to get it. The fastest handoff can probably be achieved by constructing and exec()ing a shell script that runs R and returns data as a JSON string which then will be picked up by PHP as the return of exec().</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on R integration with PHP by ken</title>
		<link>http://danpolant.com/r-integration-with-php/comment-page-1/#comment-342</link>
		<dc:creator>ken</dc:creator>
		<pubDate>Fri, 09 Dec 2011 14:05:54 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=329#comment-342</guid>
		<description>Interested in knowing why you didn&#039;t use the database as the location for handoff between R and Drupal versus the file system. I&#039;m not familiar with Drupal and brand new to R so maybe it&#039;s an obvious answer. Anyway my uneducated reaction would be that the file system approach would likely be less performant but it also would prohibit your R resultset data from being joined and recombined in interesting ways via SQL.</description>
		<content:encoded><![CDATA[<p>Interested in knowing why you didn&#8217;t use the database as the location for handoff between R and Drupal versus the file system. I&#8217;m not familiar with Drupal and brand new to R so maybe it&#8217;s an obvious answer. Anyway my uneducated reaction would be that the file system approach would likely be less performant but it also would prohibit your R resultset data from being joined and recombined in interesting ways via SQL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: Restrict access to activity feeds by admin</title>
		<link>http://danpolant.com/how-to-restrict-access-to-activity-feeds/comment-page-1/#comment-341</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 08 Dec 2011 02:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=167#comment-341</guid>
		<description>Not sure if this code still works ... I&#039;ve been out of the loop for WP for a while now, having been doing Drupal dev almost exclusively for 2+ years. The code goes inside a plugin, or somewhere else where wordpress will interpret the add_action directive. 

Even if the action names have changed in more recent versions, the general procedure should still be the same: add an action that removes the actions responsible for publishing the RSS feeds.</description>
		<content:encoded><![CDATA[<p>Not sure if this code still works &#8230; I&#8217;ve been out of the loop for WP for a while now, having been doing Drupal dev almost exclusively for 2+ years. The code goes inside a plugin, or somewhere else where wordpress will interpret the add_action directive. </p>
<p>Even if the action names have changed in more recent versions, the general procedure should still be the same: add an action that removes the actions responsible for publishing the RSS feeds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: Restrict access to activity feeds by Mark Sedgy</title>
		<link>http://danpolant.com/how-to-restrict-access-to-activity-feeds/comment-page-1/#comment-329</link>
		<dc:creator>Mark Sedgy</dc:creator>
		<pubDate>Fri, 21 Oct 2011 21:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=167#comment-329</guid>
		<description>hi

been looking for a solution to this issue, quick question, hope you have time to answer?

Is the above code ok to use with latest WP and BP ?

Where does the code go? in the fuctions or activity loop?

all help and advice appreciated

Mark</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>been looking for a solution to this issue, quick question, hope you have time to answer?</p>
<p>Is the above code ok to use with latest WP and BP ?</p>
<p>Where does the code go? in the fuctions or activity loop?</p>
<p>all help and advice appreciated</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Want to run xDebug? MAMP is the easiest way &#8230; by admin</title>
		<link>http://danpolant.com/want-to-run-xdebug-mamp-is-the-easiest-way/comment-page-1/#comment-283</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 23 Sep 2011 01:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=477#comment-283</guid>
		<description>If you are using MAMP, then yes.</description>
		<content:encoded><![CDATA[<p>If you are using MAMP, then yes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: Get Ajax working in Buddypress by Martin W</title>
		<link>http://danpolant.com/how-to-get-ajax-working-in-buddypress/comment-page-1/#comment-279</link>
		<dc:creator>Martin W</dc:creator>
		<pubDate>Sat, 30 Jul 2011 19:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=169#comment-279</guid>
		<description>Very good post. I used it as a pattern for making my forms in Buddypress and I&#039;m well underway to implement front-end blog posting just the way I wanted. Thanks.</description>
		<content:encoded><![CDATA[<p>Very good post. I used it as a pattern for making my forms in Buddypress and I&#8217;m well underway to implement front-end blog posting just the way I wanted. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: create groups in Buddypress with PHP by admin</title>
		<link>http://danpolant.com/how-to-create-groups-in-buddypress-with-php/comment-page-1/#comment-266</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 29 May 2011 01:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=40#comment-266</guid>
		<description>I think the added_usermeta action would let you accomplish this. Have you written plugins before? If you have or are willing to learn, look up how to use the added_usermeta action. Within your function for this action, you can use the value of the city metadata field to query the groups and see if it exists and then add the group and/or add the user to the group.</description>
		<content:encoded><![CDATA[<p>I think the added_usermeta action would let you accomplish this. Have you written plugins before? If you have or are willing to learn, look up how to use the added_usermeta action. Within your function for this action, you can use the value of the city metadata field to query the groups and see if it exists and then add the group and/or add the user to the group.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: create groups in Buddypress with PHP by mml</title>
		<link>http://danpolant.com/how-to-create-groups-in-buddypress-with-php/comment-page-1/#comment-265</link>
		<dc:creator>mml</dc:creator>
		<pubDate>Sat, 28 May 2011 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=40#comment-265</guid>
		<description>Is there a plugin that does above ?

My need is as stated below.

1) During user registration user enters a profile field, one of the text box field is city name.
2) Upon new user creation check if City (group) exists already. If YES assign the user to group (City)
3) If not create a new group (city) and assign the user.</description>
		<content:encoded><![CDATA[<p>Is there a plugin that does above ?</p>
<p>My need is as stated below.</p>
<p>1) During user registration user enters a profile field, one of the text box field is city name.<br />
2) Upon new user creation check if City (group) exists already. If YES assign the user to group (City)<br />
3) If not create a new group (city) and assign the user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: create groups in Buddypress with PHP by admin</title>
		<link>http://danpolant.com/how-to-create-groups-in-buddypress-with-php/comment-page-1/#comment-188</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 07 Mar 2011 14:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=40#comment-188</guid>
		<description>lol, yeah thats just a typo and I changed it. The correct class is BP_Groups_Group. Thanks for telling me about this.</description>
		<content:encoded><![CDATA[<p>lol, yeah thats just a typo and I changed it. The correct class is BP_Groups_Group. Thanks for telling me about this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BP Group Control Usability Test by Isaias Cardoso</title>
		<link>http://danpolant.com/bp-group-control-usability-test/comment-page-1/#comment-184</link>
		<dc:creator>Isaias Cardoso</dc:creator>
		<pubDate>Mon, 21 Feb 2011 21:05:45 +0000</pubDate>
		<guid isPermaLink="false">http://danpolant.com/?p=379#comment-184</guid>
		<description>hello, how are you?
i want to creat a social network for the members fo my church, but i have a few experience about this. you can help me? i have installed de budypress plugin in my wordpress and i wanted to created a group, community, forum. helpe me? 

i am african, but now i am studying in brazil
thanks. see you. bye</description>
		<content:encoded><![CDATA[<p>hello, how are you?<br />
i want to creat a social network for the members fo my church, but i have a few experience about this. you can help me? i have installed de budypress plugin in my wordpress and i wanted to created a group, community, forum. helpe me? </p>
<p>i am african, but now i am studying in brazil<br />
thanks. see you. bye</p>
]]></content:encoded>
	</item>
</channel>
</rss>

