<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Redbeard Technologies</title>
	<atom:link href="http://redbeardtechnologies.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://redbeardtechnologies.wordpress.com</link>
	<description>Just another FOSS fan</description>
	<lastBuildDate>Tue, 24 Jan 2012 15:21:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='redbeardtechnologies.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Redbeard Technologies</title>
		<link>http://redbeardtechnologies.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://redbeardtechnologies.wordpress.com/osd.xml" title="Redbeard Technologies" />
	<atom:link rel='hub' href='http://redbeardtechnologies.wordpress.com/?pushpress=hub'/>
		<item>
		<title>R mySQL Sqlite SQL Generator</title>
		<link>http://redbeardtechnologies.wordpress.com/2011/12/05/r-mysql-sqlite-sql-generator/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2011/12/05/r-mysql-sqlite-sql-generator/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 14:14:57 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[LAMP]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=424</guid>
		<description><![CDATA[R Insert SQL Generator I need a generic way to create SQL statements within R. I prefer to develop a convention to follow that is re-usable. I hate hand-writing one off SQL SELECT and Insert statements, every time I need to push or pull data from the database into R. R Insert SQL Prepared Statement [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=424&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>R Insert SQL Generator</h1>
<p>I need a generic way to create SQL statements within R. I prefer to develop a convention to follow that is re-usable. I hate hand-writing one off SQL SELECT and Insert statements, every time I need to push or pull data from the database into R.</p>
<p><pre class="brush: r;">
#build an SQL insert query based on the data frame that gets passed in
getInsertSqlQuery &lt;- function(tableName, dataFrame){

columns &lt;- paste(colnames(dataFrame), sep=&quot;&quot;, collapse=&quot;, &quot;)
values &lt;- paste(&quot;:&quot;, colnames(dataFrame), sep=&quot;&quot;, collapse=&quot;, &quot;)
sql &lt;- paste(&quot;INSERT INTO &quot;, tableName, &quot; (&quot;, columns, &quot;) VALUES (&quot;, values, &quot;)&quot;, sep=&quot;&quot;)

sql
}
</pre></p>
<h1>R Insert SQL Prepared Statement</h1>
<p>Now that I have a working SQL generator, I need a convenient way to insert the data into the Database using RMySQL&#8217;s and SQLite&#8217;s interfaces.</p>
<p><pre class="brush: r;">
#generic RSQLite &amp; RMysql SQL Insert
insertData &lt;- function (tableName, dataFrame){
    drv &lt;- dbDriver(&quot;SQLite&quot;)
    #works with RMySQL too
    con &lt;- dbConnect(drv, dbname=&quot;sqlite/blogger.db&quot;)

sql &lt;- getInsertSqlQuery(tableName, dataFrame)

dbBeginTransaction(con)

dbGetPreparedQuery(con, sql, dataFrame)
dbCommit(con)
}

#From your application call
insertData(tableName=&quot;comments&quot;,dataFrame=data.frame(&quot;dollars&quot;=c(3.44),&quot;year&quot;=c('2012'),units=c(5))

</pre></p>
<p>If you need to manipulate your data do that prior to calling insertData.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/424/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=424&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2011/12/05/r-mysql-sqlite-sql-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
		<item>
		<title>Analyze Apache Logs With R</title>
		<link>http://redbeardtechnologies.wordpress.com/2011/07/14/analyze-apache-logs-with-r/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2011/07/14/analyze-apache-logs-with-r/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 03:55:02 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=406</guid>
		<description><![CDATA[I am trying to turn a new leaf and learn more about statistics. In order to demonstrate my new abilities I wanted to share with you how to analyze your Apache web logs using R. Download R I am going to be using R because it is free, open source and has a large community [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=406&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am trying to turn a new leaf and learn more about statistics. In order to demonstrate my new abilities I wanted to share with you how to analyze your Apache web logs using R.</p>
<h2>Download R</h2>
<p>I am going to be using R because it is free, open source and has a large community backing it. Download the latest version of R from <a href="http://cran.r-project.org">http://cran.r-project.org.</a></p>
<h2>Get Your Apache Log File</h2>
<p>Log into your web server and download your access file(s) from Apache to your local computer or wherever you have R installed. I recommend merging your Apache log files together in order to increase the quality of the information you want to extract from your web logs. Merge your virtual host files if you serve CSS and Images from separate virtual hosts.</p>
<h2>Parse Apache Log Files With R</h2>
<p>I am using a standard Ubuntu Apache 2 configuration. Lets first examine the access log file.</p>
<p><pre class="brush: r;">

access_log &lt;- read.table(file=&quot;C:\\Users\\windoze\\Documents\\R\\data\\other_vhosts_access.log&quot;)
access_log[1,] # Display the different vectors in the access_log dataframe
</pre></p>
<p>This is the easiest way to parse the log file into a data frame for analysis.</p>
<h2>R Bar Chart Of Apache HTTP Codes</h2>
<pre>Here is a nice visual break down of the HTTP codes your application is serving.
<pre class="brush: r;">
table(access_log[,8]) # Gives a nice text break down of HTTP codes served.
barplot(table(access_log[,8])) # Gives a nice bar plot visual of the HTTP codes served.
</pre>

<div id="attachment_416" class="wp-caption alignnone" style="width: 490px"><a href="http://redbeardtechnologies.files.wordpress.com/2011/07/rplot.png"><img class="size-full wp-image-416" title="Rplot" src="http://redbeardtechnologies.files.wordpress.com/2011/07/rplot.png?w=480&#038;h=392" alt="R Barplot of Apache HTTP Codes " width="480" height="392" /></a><p class="wp-caption-text">R Barplot of Apache HTTP Codes</p></div>
<h2></h2>
<h2>Later,</h2>
<pre>I will demonstrate how to extract more information from your access log such number of unique users visiting your site and when is the busiest time of week for your web site..</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/406/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=406&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2011/07/14/analyze-apache-logs-with-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>

		<media:content url="http://redbeardtechnologies.files.wordpress.com/2011/07/rplot.png" medium="image">
			<media:title type="html">Rplot</media:title>
		</media:content>
	</item>
		<item>
		<title>Video Encoding and Video Distribution (Youtube VS Akamai)</title>
		<link>http://redbeardtechnologies.wordpress.com/2011/07/13/video-encoding-and-video-distribution-youtube-vs-akamai/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2011/07/13/video-encoding-and-video-distribution-youtube-vs-akamai/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 23:29:26 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[LAMP]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=381</guid>
		<description><![CDATA[This piece reflects my opinion about encoding and distributing on-line video. Akamai provides a great way for distributing media using their content delivery network. Akamai is really nice because your marketing people can jump for joy because they can brand their own content. The downside to Akamai is the technical guy gets to field all [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=381&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This piece reflects my opinion about encoding and distributing on-line video. Akamai provides a great way for distributing media using their content delivery network. Akamai is really nice because your marketing people can jump for joy because they can brand their own content. The downside to Akamai is the technical guy gets to field all the questions why HD video does not stream smoothly.</p>
<h3>Youtube is better than Akamai for streaming video content, because YouTube:</h3>
<ol>
<li>is free</li>
<li>is a CDN</li>
<li>has great video quality</li>
<li>works on all PC and mobile devices</li>
<li>encodes video</li>
</ol>
<p>If you can not commit the resources to making multiple bit rate versions of a video and different resolutions do not use Akamai, use Youtube.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/381/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=381&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2011/07/13/video-encoding-and-video-distribution-youtube-vs-akamai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
		<item>
		<title>Database Dispatcher Part 1</title>
		<link>http://redbeardtechnologies.wordpress.com/2011/07/03/database-dispatcher-part-1/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2011/07/03/database-dispatcher-part-1/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 19:48:46 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[Software Architecture]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=389</guid>
		<description><![CDATA[I am working on a new project that will have a lot of data. MySQL has been selected as the database, Doctrine 2 for the ORM and Zend Framework for application framework. The project is going to be a data warehouse where each customer will have similar data. Instead of cramming all the data into [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=389&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am working on a new project that will have a lot of data. MySQL has been selected as the database, Doctrine 2 for the ORM and Zend Framework for application framework. The project is going to be a data warehouse where each customer will have similar data. Instead of cramming all the data into a single database, I am going to partition the data in advance. Each client will have their own database. A dispatcher will be setup to handle managing the database connection to use based on the customer.</p>
<h2>Initial Thoughts</h2>
<p>In order to route the application software to the correct database settings I must have a monolithic database for storing the following fields:</p>
<ol>
<li>Id</li>
<li>Username</li>
<li>Password</li>
<li>Database Settings</li>
<ol>
<li>Username</li>
<li>Password</li>
<li>Database name</li>
<li>Host name or IP address</li>
</ol>
<li>Active</li>
</ol>
<p>An alternative design might have</p>
<ol>
<li>Id</li>
<li>Username</li>
<li>Database Settings</li>
<li>Active</li>
</ol>
<h2></h2>
<h2></h2>
<h2>Implementation Considerations</h2>
<p>After implementing some of code I realized that a session must be setup in order to link the end-user to the proper database. The end-user must be logged into the web site before the session can be set. A default database must be setup that can be assigned to the end-user before they login. The alternative method for implementation would be to not run the database dispatcher code if a session has not been assigned and limit what actions are accessible.</p>
<p>I am going to implement a hybrid where a default database is assigned and all actions except the few pages are accessible.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/389/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=389&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2011/07/03/database-dispatcher-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
		<item>
		<title>Doctrine 2 DQL IN statement</title>
		<link>http://redbeardtechnologies.wordpress.com/2011/07/01/doctrine-2-dql-in-statement/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2011/07/01/doctrine-2-dql-in-statement/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 18:12:39 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[Doctrine 2]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[DQL]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=392</guid>
		<description><![CDATA[I have been working with Doctrine 2 for the last month. This week, I really needed to pass an array of values to the Doctrine 2&#8242;s DQL IN statement. There is no documentation on Doctrine&#8217;s web site for passing in an array of identifiers. Here is how to pass in an array of identifiers into [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=392&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been working with Doctrine 2 for the last month. This week, I really needed to pass an array of values to the Doctrine 2&#8242;s DQL IN statement. There is no documentation on Doctrine&#8217;s web site for passing in an array of identifiers. Here is how to pass in an array of identifiers into DQL</p>
<h3>For Integers</h3>
<p><pre class="brush: php;">

$em-&gt;createQuery(&quot;SELECT users FROM Entities\User users WHERE users.id IN(&quot;.implode('  ',$userIds).&quot;)&quot;);

</pre></p>
<h3>For Strings</h3>
<p><pre class="brush: php;">

$em-&gt;createQuery(&quot;SELECT users FROM Entities\User users WHERE users.id ('&quot;.implode(&quot;', '&quot;, $userUuids).&quot;')&quot;);

</pre></p>
<p>The Query object does not support flattening arrays and throws the exception, &#8220;Doctrine\ORM\Query\QueryException: Invalid parameter number: number of bound variables does not match number of tokens&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/392/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=392&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2011/07/01/doctrine-2-dql-in-statement/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
		<item>
		<title>Magento What Are The Processes</title>
		<link>http://redbeardtechnologies.wordpress.com/2011/01/20/magento-what-are-the-processes/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2011/01/20/magento-what-are-the-processes/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 02:32:21 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[LAMP]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=384</guid>
		<description><![CDATA[Magento great for developers, not great for everyday users I have been working on a Magento web site for a couple of months now. I like Magento a lot because most of the feature requests I get from the operations, sales, shipping and receiving teams I can easily find a 3rd party module to use. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=384&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Magento great for developers, not great for everyday users</h2>
<p>I have been working on a Magento web site for a couple of months now. I like Magento a lot because most of the feature requests I get from the operations, sales, shipping and receiving teams I can easily find a 3rd party module to use. That is so awesome! I love developing software but I hate reinventing the wheel.</p>
<h2>What I dislike about Magento</h2>
<p>I noticed that Magento lacks documentation for the most simple processes. The user manual I purchased does not have any documentation about editing orders. Magento is great if your customers just buy from your web site and require no additional help. I work at a company that offers exceptional customer care and shipping and receiving services. By being exceptional they get stung by Magento&#8217;s rigidness and lack of documentation a lot. I can live with Magento&#8217;s processes. I just wish they documented basic processes like editing orders, canceling orders, modifying orders after they have been invoiced, how the credit memo functionality works. If Magento is that popular why has no one documented these processes?</p>
<h2>Change the company not the software</h2>
<p>I will be spending some time documenting the processes within Magento (Your Welcome Varien). I will post the processes here to save people from the pain of trying to discover how to do basic order manipulations. Trying to customize Magento to function the way your business functions is unrealistic. When you go with Magento you are locked into the Magento way. Prepare to defend the rigid, undocumented processes and convince everyone else to drink the kool-aide with you.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/384/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/384/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/384/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=384&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2011/01/20/magento-what-are-the-processes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
		<item>
		<title>RVM use not working RHEL5 / Centos 5</title>
		<link>http://redbeardtechnologies.wordpress.com/2010/09/28/rvm-use-not-working-rhel5-centos-5/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2010/09/28/rvm-use-not-working-rhel5-centos-5/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 13:36:22 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[rvm not working]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=369</guid>
		<description><![CDATA[Hello All, I just finished up installing rvm for ruby on my RHEL5  box. I did the system wide installation but could not get my settings to stick when I selected a different version of ruby through the rvm user interface. I had 2 major issues Permissions rvm use not working Solutions: Make sure your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=369&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello All,</p>
<p>I just finished up installing rvm for ruby on my RHEL5  box. I did the system wide installation but could not get my settings to stick when I selected a different version of ruby through the rvm user interface. I had 2 major issues</p>
<ol>
<li>Permissions</li>
<li>rvm use not working</li>
</ol>
<p>Solutions:</p>
<p>Make sure your login account is a member of the rvm group. Make sure you add the following line to the end of your <strong>.bashrc</strong> file which is located in your Home directory.</p>
<p><pre class="brush: bash;">

# User specific aliases and functions
source &quot;/usr/local/rvm/scripts/rvm&quot;

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/369/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=369&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2010/09/28/rvm-use-not-working-rhel5-centos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
		<item>
		<title>Can&#8217;t connect to LimeSurvey database. Reason: No such file or directory</title>
		<link>http://redbeardtechnologies.wordpress.com/2010/09/17/cant-connect-to-limesurvey-database-reason-no-such-file-or-directory/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2010/09/17/cant-connect-to-limesurvey-database-reason-no-such-file-or-directory/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 13:46:43 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[LAMP]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=362</guid>
		<description><![CDATA[I am trying to install LimeSurvey and keep gettings this error, &#8220;Can&#8217;t connect to LimeSurvey database. Reason: No such file or directory&#8221;. After debugging the code I discovered if you specify &#8216;localhost&#8217; as the hostname of your database server it does not use &#8216;localhost&#8217; connect to the database. It uses the Unix file socket &#8216;unix:///tmp/mysql.sock&#8217;. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=362&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am trying to install LimeSurvey and keep gettings this error, &#8220;Can&#8217;t connect to LimeSurvey database. Reason: No such file or directory&#8221;. After debugging the code I discovered if you specify &#8216;localhost&#8217; as the hostname of your database server it does not use &#8216;localhost&#8217; connect to the database. It uses the Unix file socket &#8216;unix:///tmp/mysql.sock&#8217;. On an Apple server the mySQL socket file is usually located in &#8216;/var/mysql/mysql.sock&#8217;. The easiest way to fix the problem is to create a soft link.</p>
<p><pre class="brush: bash;">

ln -s /var/mysql/mysql.sock /tmp/mysql.sock

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=362&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2010/09/17/cant-connect-to-limesurvey-database-reason-no-such-file-or-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
		<item>
		<title>gearman: error while loading shared libraries: libgearman.so.4: cannot open shared object file: No such file or directory</title>
		<link>http://redbeardtechnologies.wordpress.com/2010/09/01/gearman-error-while-loading-shared-libraries-libgearman-so-4-cannot-open-shared-object-file-no-such-file-or-directory/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2010/09/01/gearman-error-while-loading-shared-libraries-libgearman-so-4-cannot-open-shared-object-file-no-such-file-or-directory/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 01:49:04 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[gearman]]></category>
		<category><![CDATA[libgearman.so.4]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=355</guid>
		<description><![CDATA[I am playing around with Gearman. I installed the software but got the error &#8220;gearman: error while loading shared libraries: libgearman.so.4: cannot open shared object file: No such file or directory&#8221; To fix the problem run the following command Presto it works! I am running RHEL 5.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=355&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am playing around with Gearman. I installed the software but got the error<br />
&#8220;gearman: error while loading shared libraries: libgearman.so.4: cannot open shared object file: No such file or directory&#8221;</p>
<p>To fix the problem run the following command</p>
<p><pre class="brush: bash;">
sudo ldconfig
</pre></p>
<p>Presto it works! I am running RHEL 5.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/355/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=355&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2010/09/01/gearman-error-while-loading-shared-libraries-libgearman-so-4-cannot-open-shared-object-file-no-such-file-or-directory/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
		<item>
		<title>When Not To Use AJAX and Javascript</title>
		<link>http://redbeardtechnologies.wordpress.com/2010/08/31/when-not-to-use-ajax-and-javascript/</link>
		<comments>http://redbeardtechnologies.wordpress.com/2010/08/31/when-not-to-use-ajax-and-javascript/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 17:33:02 +0000</pubDate>
		<dc:creator>redbeardtechnologies</dc:creator>
				<category><![CDATA[LAMP]]></category>

		<guid isPermaLink="false">http://redbeardtechnologies.wordpress.com/?p=350</guid>
		<description><![CDATA[Do Not Use Ajax I have been working on project for the last couple months that uses AJAX calls to pull down data from the server. The more I work with AJAX and JavaScript the more I realize when I should not use it. If the data is static do not use an AJAX call [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=350&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1>Do Not Use Ajax</h1>
<p>I have been working on project for the last couple months that uses AJAX calls to pull down data from the server. The more I work with AJAX and JavaScript the more I realize when I should not use it. If the data is static do not use an AJAX call to retrieve the data. Instead hide your data inside an HTML hidden field. Your front-end JavaScript code can easily read arrays, objects and values from the hidden field.</p>
<h2>Do Not Dynamically Generate JavaScript Code</h2>
<p>I am guilt of this mistake. Do not use backend code to generate code like this,</p>
<p><pre class="brush: jscript;">

var data = 34;

</pre></p>
<p>Just put the data in HTML hidden field. Debugging dynamically generated JavaScript is harder. Use JavaScript to read and assign the value from the HTML hidden field.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/redbeardtechnologies.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/redbeardtechnologies.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/redbeardtechnologies.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/redbeardtechnologies.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/redbeardtechnologies.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/redbeardtechnologies.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/redbeardtechnologies.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/redbeardtechnologies.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/redbeardtechnologies.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/redbeardtechnologies.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/redbeardtechnologies.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/redbeardtechnologies.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/redbeardtechnologies.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/redbeardtechnologies.wordpress.com/350/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=redbeardtechnologies.wordpress.com&amp;blog=7295552&amp;post=350&amp;subd=redbeardtechnologies&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://redbeardtechnologies.wordpress.com/2010/08/31/when-not-to-use-ajax-and-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c856790799be900be78b88978763942b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redbeardtechnologies</media:title>
		</media:content>
	</item>
	</channel>
</rss>
