<?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/"
	>

<channel>
	<title>the rabbit hole &#187; php</title>
	<atom:link href="http://bugssite.org/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://bugssite.org</link>
	<description>where you feel a little closer to home</description>
	<lastBuildDate>Wed, 02 Jun 2010 23:31:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>Long post titles messing up your format?</title>
		<link>http://bugssite.org/blog/2010/05/02/long-post-titles-messing-up-your-format/</link>
		<comments>http://bugssite.org/blog/2010/05/02/long-post-titles-messing-up-your-format/#comments</comments>
		<pubDate>Mon, 03 May 2010 03:17:03 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[wordpress tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=788</guid>
		<description><![CDATA[There is a way to fix that. After some major headaches and a few games later I wrote up a neat regex that takes the information outputted by the &#8216;next_post_link&#8217; and &#8216;previous_post_link&#8217; function&#8217;s filters and made it so it it added a three dot ellipse at the end of the post title after it shortened [...]]]></description>
			<content:encoded><![CDATA[<p>There is a way to fix that. <img src='http://bugssite.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  After some major headaches and a few games later I wrote up a neat regex that takes the information outputted by the &#8216;next_post_link&#8217; and &#8216;previous_post_link&#8217; function&#8217;s filters and made it so it it added a three dot ellipse at the end of the post title after it shortened it up.<span id="more-788"></span>In this example I will be using code that is on my site. You might have to tailor your regex to match the outputted default format for your theme/site.</p>
<pre class="brush: php;">
&lt;div class=&quot;post&lt;?php if ( $location != 'bottom' ) : ?&gt;-top&lt;?php endif; ?&gt;-pagelinks&lt;?php if ( $location == 'bottom' ) : ?&gt; pl-right-side&lt;?php endif;?&gt;&quot;&gt;&lt;?php next_post_link('&amp;nbsp;next: %link'); ?&gt;&lt;/div&gt;
&lt;div class=&quot;post&lt;?php if ( $location != 'bottom' ) : ?&gt;-top&lt;?php endif; ?&gt;-pagelinks&lt;?php if ( $location == 'bottom' ) : ?&gt; pl-right-side&lt;?php endif;?&gt;&quot;&gt;&lt;?php previous_post_link('prev: %link&amp;nbsp;'); ?&gt;&lt;/div&gt;
</pre>
<p>This is how I generate my &#8216;next post&#8217; and &#8216;prev post&#8217; for my theme. <img src='http://bugssite.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So&#8230; adding to the filters:</p>
<pre class="brush: php;">
add_filter( 'previous_post_link', array(&amp;$this, 'link_shortner'), 10, 2);
add_filter( 'next_post_link', array(&amp;$this, 'link_shortner'), 10, 2);
</pre>
<p>The heart of the code is in link_shortner.</p>
<pre class="brush: php; highlight: [11,15];">
/**
 * Shortner the link.
 * @since 1.3.0
 * @param $format
 * @param $link
 * @return Echo link.
 */
 function link_shortner($format, $link) {

 //  The RegEx Pattern
 $pattern = '/(.*?)(&lt;a .*?&gt;)(.*?)(&lt;\/a&gt;)/is';
 //  Pattern Of the Next/Previous Links
 preg_match($pattern, $format, $matches);

 if ( strlen($matches[3]) &lt;= 60 )
 return $format;

 //  Replacement
 $replacement = '$1 $2 ' . mb_substr( $matches[3], 0, 60) . '... $4';
 //  Run Preg Replace
 $source = preg_replace($pattern, $replacement, $format, 1);
 return $source;
 }
</pre>
<p>The highlighted lines process the format that I use in the functions to call the next/prev links. Because we want to make sure we preserve the formatting we run off $format and not $link. After we have determined that the display text is passed a certain length, we are going to run a replacement making sure we keep all the other elements along as well.</p>
<p>And tada! We now have a shortened display link that won&#8217;t mess up the theme when the post title is too long. So if you have any questions be sure to ask them!</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2010/05/02/long-post-titles-messing-up-your-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye Aptana, Hello Netbeans</title>
		<link>http://bugssite.org/blog/2010/05/02/goodbye-aptana-hello-netbeans/</link>
		<comments>http://bugssite.org/blog/2010/05/02/goodbye-aptana-hello-netbeans/#comments</comments>
		<pubDate>Sun, 02 May 2010 20:17:05 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[on the mind]]></category>
		<category><![CDATA[aptana]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=786</guid>
		<description><![CDATA[After 1.5 years of using Aptana, I am sick of the lack up updates the Aptana teams gives to their product. So after a quick compare of all the other IDEs, I figured I give Netbeans a try. In the past few minutes of setting up my project, I am already impressed with it. Icons [...]]]></description>
			<content:encoded><![CDATA[<p>After 1.5 years of using Aptana, I am sick of the lack up updates the Aptana teams gives to their product. So after a quick compare of all the other IDEs, I figured I give Netbeans a try. In the past few minutes of setting up my project, I am already impressed with it. Icons on my site will have to change soon to show my change of allegiance.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2010/05/02/goodbye-aptana-hello-netbeans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Days and Nights, Sounds Like A Movie, but Life</title>
		<link>http://bugssite.org/blog/2010/04/30/30-days-and-nights-sounds-like-a-movie-but-life/</link>
		<comments>http://bugssite.org/blog/2010/04/30/30-days-and-nights-sounds-like-a-movie-but-life/#comments</comments>
		<pubDate>Sat, 01 May 2010 03:20:17 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[on the mind]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[best buy]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=775</guid>
		<description><![CDATA[I spent the past 30 days and nights in Minnesota working on my internship with Best Buy Corporate. Wow. I can tell you I had a great time over the past 30 days doing programing full time and hanging out with other programers who are as savy as myself. It&#8217;s not over yet! I am [...]]]></description>
			<content:encoded><![CDATA[<p>I spent the past 30 days and nights in Minnesota working on my internship with Best Buy Corporate. Wow. I can tell you I had a great time over the past 30 days doing programing full time and hanging out with other programers who are as savy as myself. It&#8217;s not over yet! I am slated to be back in Minnesota after brief break from being away from NY for such a long time. I am going to be home for the next week catching up of being with people, celerbrating my birthday, and also heading to a wedding in Boston.<span id="more-775"></span></p>
<p>This experience as brought me to the top stress levels of doing programing full time and I can honestly say it wasn&#8217;t as bad as I thought I would get sitting at a computer and typing code for 8 hours of day. Over the past two months working, not only has my code syntax improved, but also speed up in typing code. Before doing code would take a me a while and now I can whip it out real fast and get the correct result 99.9% of the time. Since being there I have caught up on my Microsoft .NET and learned a whole new java script framework called <a href="http://www.extjs.com/">ExtJS</a>.</p>
<p>The 9 of us (now down to 8 because of a promotion at a co-worker&#8217;s store) have become really close friends and it&#8217;s nice meeting people all over this great company. Being at corporate I have met a lot of the corporate employees and field (district and store level) employees who come up to corporate for a variety of functions.</p>
<p>So I am home for a week and while I am not doing work here at home, I am going to try to get another WordPress plugin released (yay!) and update my blog which needs a serious code makeover with 3.0 coming out very soon! Be sure to follow my twitter feed and anything I post here to keep up to date with what I am doing and what is going on in my life. <img src='http://bugssite.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2010/04/30/30-days-and-nights-sounds-like-a-movie-but-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The difference of wp_ajax and wp_ajax_nopriv</title>
		<link>http://bugssite.org/blog/2010/04/13/the-difference-of-wp_ajax-and-wp_ajax_nopriv/</link>
		<comments>http://bugssite.org/blog/2010/04/13/the-difference-of-wp_ajax-and-wp_ajax_nopriv/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 23:58:45 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=770</guid>
		<description><![CDATA[When you are writing a plugin that uses Ajax in the front end, you must use: add_action( 'wp_ajax_nopriv_&#60;ACTION NAME&#62;', &#60;YOUR FUNCTION&#62; ); &#8230;as doing&#8230; add_action( 'wp_ajax_&#60;ACTION NAME&#62;', &#60;YOUR FUNCTION&#62; ); &#8230; is only for logged in users. So if you have a plugin that operates no matter which way users interface with the plugin, you [...]]]></description>
			<content:encoded><![CDATA[<p>When you are writing a plugin that uses Ajax in the front end, you must use:</p>
<pre class="brush: php;">
add_action( 'wp_ajax_nopriv_&lt;ACTION NAME&gt;', &lt;YOUR FUNCTION&gt; );
</pre>
<p>&#8230;as doing&#8230;</p>
<pre class="brush: php;">
add_action( 'wp_ajax_&lt;ACTION NAME&gt;', &lt;YOUR FUNCTION&gt; );
</pre>
<p>&#8230; is only for logged in users. So if you have a plugin that operates no matter which way users interface with the plugin, you must provide <strong>both</strong> action calls to make sure it all gets processed. Helpful tip. <img src='http://bugssite.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Will be back shortly&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2010/04/13/the-difference-of-wp_ajax-and-wp_ajax_nopriv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back in MN already&#8230;</title>
		<link>http://bugssite.org/blog/2010/03/22/back-in-mn-already/</link>
		<comments>http://bugssite.org/blog/2010/03/22/back-in-mn-already/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 00:58:21 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[on the mind]]></category>
		<category><![CDATA[best buy]]></category>
		<category><![CDATA[minnesota]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=755</guid>
		<description><![CDATA[Boy was the weekend quick! So I am back here for two weeks until the 2nd&#8230; fly back&#8230; and then fly back on the 5th. However, after the 5th I am staying up for the month since it&#8217;s crazy for me to fly back. A few things to talk about later&#8230; but for now after [...]]]></description>
			<content:encoded><![CDATA[<p>Boy was the weekend quick! So I am back here for two weeks until the 2nd&#8230; fly back&#8230; and then fly back on the 5th. However, after the 5th I am staying up for the month since it&#8217;s crazy for me to fly back.</p>
<p>A few things to talk about later&#8230; but for now after my day.. 4am awake in NYC (5am but 4am from MN time) it&#8217;s been pretty close to 14 hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2010/03/22/back-in-mn-already/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Woopra SOAP API Connections</title>
		<link>http://bugssite.org/blog/2010/02/04/woopra-soap-api-connections/</link>
		<comments>http://bugssite.org/blog/2010/02/04/woopra-soap-api-connections/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 05:39:31 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[programing]]></category>
		<category><![CDATA[woopra]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[soap]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=679</guid>
		<description><![CDATA[Questions are already starting to surface on the Woopra forums on how to use the new SOAP interface. There really isn&#8217;t a lot of documentation on how to do this on the Woopra site itself, but I am going to give you a quick lesson right now on how to use the Woopra API with [...]]]></description>
			<content:encoded><![CDATA[<p>Questions are already starting to surface on the Woopra forums on how to use the new SOAP interface. There really isn&#8217;t a lot of documentation on how to do this on the Woopra site itself, but I am going to give you a quick lesson right now on how to use the Woopra API with your programing project.</p>
<p><span id="more-679"></span></p>
<p>I can say that the documentation on the Woopra site is wrong, but in the process of being updated. The SOAP keys are incorrectly listed. We are going to be using the <a href="http://www.woopra.com/docs/api/#GLOBALS">&#8216;Global&#8217; query</a> in this example.</p>
<p>Useful URLS:</p>
<ol>
<li>http://api.woopra.com/v0/Analytics?WSDL &#8211; Overall Method Listing</li>
<li>http://api.woopra.com/v0/Analytics?xsd=1 &#8211; Current Methods with the fields needed to query them and <strong>in which order</strong>.</li>
<li>http://api.woopra.com/v0/Analytics?Tester &#8212; Run a sample query.</li>
</ol>
<p>The keys that are valid are:</p>
<ul>
<li>website</li>
<li>apiKey</li>
<li>type<sup>*</sup></li>
<li>dateFormat</li>
<li>startDay</li>
<li>endDay</li>
<li>limit</li>
<li>offset</li>
<li>filters</li>
</ul>
<p><sup>* Only used if using the &#8216;getReferrers&#8217; method</sup></p>
<p>The array must be sent in the order listed above and be <em>excat</em> in the formatting and spelling &#8212; otherwise it will not work correctly and you will be a sad panda.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2010/02/04/woopra-soap-api-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBulletin 4.x: 7 days to go through the Stylevar System</title>
		<link>http://bugssite.org/blog/2010/01/29/vbulletin-4-x-7-days-to-go-through-the-stylevar-system/</link>
		<comments>http://bugssite.org/blog/2010/01/29/vbulletin-4-x-7-days-to-go-through-the-stylevar-system/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 05:51:17 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[/tmp/rant]]></category>
		<category><![CDATA[vbulletin]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[paid]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[stylevars]]></category>
		<category><![CDATA[vb]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=675</guid>
		<description><![CDATA[I do a lot of programming. My queue for that matter that I run for &#8220;tasks&#8221; to do has been backed up because of this vBulletin (vB) design system. It&#8217;s not because of the code or operation, but the way that it is designed. In WordPress we strive to have a great UI and UX [...]]]></description>
			<content:encoded><![CDATA[<p>I do a lot of programming. My queue for that matter that I run for &#8220;tasks&#8221; to do has been backed up because of this vBulletin (<strong>vB</strong>) design system.</p>
<p>It&#8217;s not because of the code or operation, but the way that it is designed. In WordPress we strive to have a great UI and UX team to be able to see the pitfalls of usability before we release WordPress to the masses. vBulletin is not free, so you/I expect a few things including this kind of testing.</p>
<p><span id="more-675"></span>Some of the aggravations I been having:</p>
<ol>
<li>Information/Settings is all over the place.</li>
<li>Documentation/Help System &#8211; No where near complete. Some of the StyleVars have do description of what they change.</li>
<li>No &#8220;Live&#8221; Preview.</li>
<li>Not everything is in the StyleVar system to begin  with.</li>
</ol>
<p>After &#8220;7 days&#8221; of working on a new design <sub>(It has taken me more time in reality, but this time does not include all the interruptions I had, or travel or work, etc.)</sub> I have final come to the conclusion that after finishing my new vBulletin theme that the AdminCP which has been the same since vBulletin 3.x does not work for vBulletin 4.x.</p>
<p>One of my friends that is part of the vBulletin community has always asked if I was going to take on the task of redoing the AdminCP area, and I am seriously thinking about it now since vBulletin 4.x AdminCP system sucks. I would do this after I empty my queue.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2010/01/29/vbulletin-4-x-7-days-to-go-through-the-stylevar-system/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9 RC</title>
		<link>http://bugssite.org/blog/2009/12/16/wordpress-2-9-rc/</link>
		<comments>http://bugssite.org/blog/2009/12/16/wordpress-2-9-rc/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 19:34:13 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress 2.9]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=625</guid>
		<description><![CDATA[WordPress 2.9 RC1 is out and ready for use and abuse! Please update all live sites using WordPress to this version so we can now get a huge sampling on any other errors before we mark it &#8216;GOLD&#8217;!. Be sure to submit tickets to the trac site so we know about them. The faster we [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.9 RC1 is out and ready for use and abuse! Please update <strong>all live</strong> sites using WordPress to this version so we can now get a huge sampling on any other errors before we mark it &#8216;GOLD&#8217;!. Be sure to <a href="https://core.trac.wordpress.org/">submit tickets to the trac site</a> so we know about them.</p>
<p>The faster we can get reports back, the faster we can give you an early present for the holidays and for the New Year!</p>
<p>Translators: You have two weeks to get your translations into the system before Gold. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2009/12/16/wordpress-2-9-rc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Update on Media in WordPress</title>
		<link>http://bugssite.org/blog/2009/11/21/update-on-media-in-wordpress/</link>
		<comments>http://bugssite.org/blog/2009/11/21/update-on-media-in-wordpress/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 04:35:06 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[wordpress development]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wireframes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=581</guid>
		<description><![CDATA[Just want to let all you fellow WordPress users know that while I was at WordCamp NYC 2009, I did talk for a few minutes with Matt about a potential new media system. A while back I posted up a wireframes document. That version is now way outdated and been working on a new version [...]]]></description>
			<content:encoded><![CDATA[<p>Just want to let all you fellow WordPress users know that while I was at WordCamp NYC 2009, I did talk for a few minutes with Matt about a potential new media system. A while back <a href="http://bugssite.org/blog/2009/04/11/media-management-system-wireframes-for-wordpress-29x/">I posted up a wireframes document</a>. That version is now <em>way</em> outdated and been working on a new version since the end of WordCamp.</p>
<p>Most of the text is done. All that is left is mock-ups of the design proposal. I should have it submitted to Matt (<a href="http://ma.tt/">photomatt</a>) by the next few days after Thanksgiving and then once we talk it over and make any corrections, I will post it here for everyone to review for comments and suggestions on changes.</p>
<p>Once I am done with talking with Matt, hopefully I can start dedicating 100% of my time to re-developing the system for either 3.0.x or 3.1.x release. (3.0.x would be preferable because of the longer cycle) With 2.9.x feature frozen and image editing now added into the system it will be much easier to complete this task.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2009/11/21/update-on-media-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Core Contributors at WordCamp NYC</title>
		<link>http://bugssite.org/blog/2009/11/17/core-contributors-at-wordcamp-nyc/</link>
		<comments>http://bugssite.org/blog/2009/11/17/core-contributors-at-wordcamp-nyc/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 16:15:16 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[wordpress wordcamp]]></category>
		<category><![CDATA[core]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[wcnyc]]></category>
		<category><![CDATA[wordcamp nyc]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://bugssite.org/?p=576</guid>
		<description><![CDATA[As you know, I was at WordCamp NYC 2009 and meeting everyone was just one aspect of the trip putting IRC, email, and photos to real life. One thing that was very cool since we already knew almost everyone background meeting everyone was just like lets continue this conversation we been having for years. At [...]]]></description>
			<content:encoded><![CDATA[<p>As you know, I was at WordCamp NYC 2009 and meeting everyone was just one aspect of the trip putting IRC, email, and photos to real life.</p>
<p>One thing that was very cool since we already knew almost everyone background meeting everyone was just like lets continue this conversation we been having for years.</p>
<p><span id="more-576"></span></p>
<p>At the end of the 2nd day we all got together (the core contributors) to the WordPress code for a group shot. I think it&#8217;s the biggest group yet.</p>
<div id="attachment_587" class="wp-caption aligncenter" style="width: 510px"><a href="http://bugssite.org/wp-content/uploads/2009/11/wordpress_core_contributors_nyc_2009.jpg"><img class="size-medium wp-image-587" title="WordPress Core Contributors: WordCamp NYC 2009" src="http://bugssite.org/wp-content/uploads/2009/11/wordpress_core_contributors_nyc_2009-500x227.jpg" alt="WordPress Core Contributors: WordCamp NYC 2009" width="500" height="227" /></a><p class="wp-caption-text">WordPress Core Contributors: WordCamp NYC 2009</p></div>
<p style="text-align: center;">
<p style="text-align: left;">You can find who is who by checking out the WordPress blog post below. Props to <em><a href="http://www.nothingcliche.com/">Chris Cochran</a></em> for the great photo. He caught me with my eyes open.</p>
<div id="attachment_579" class="wp-caption aligncenter" style="width: 160px"><a href="http://bugssite.org/wp-content/uploads/2009/11/shane_wordcamp_nyc_2009.jpg"><img class="size-thumbnail wp-image-579" title="Shane at WordCamp NYC 2009" src="http://bugssite.org/wp-content/uploads/2009/11/shane_wordcamp_nyc_2009-e1258474946396-150x150.jpg" alt="Shane at WordCamp NYC 2009" width="150" height="150" /></a><p class="wp-caption-text">Shane at WordCamp NYC 2009</p></div>
<p>Source: <a href="http://wordpress.org/development/2009/11/core-wordcamp-nyc/">WordPress › Blog » Core Contributors at WordCamp NYC</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugssite.org/blog/2009/11/17/core-contributors-at-wordcamp-nyc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
