<?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/"
	>

<channel>
	<title>cjyabraham.com</title>
	<atom:link href="http://cjyabraham.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cjyabraham.com</link>
	<description></description>
	<pubDate>Fri, 27 Nov 2009 19:36:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Browser Cacheing</title>
		<link>http://cjyabraham.com/blog/2009/11/27/browser-cacheing/</link>
		<comments>http://cjyabraham.com/blog/2009/11/27/browser-cacheing/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 16:02:01 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=192</guid>
		<description><![CDATA[The Problem
If you go to a post on streetsblog.org, type in a beautifully written comment, fill in the rest of the fields including 5+7 is, um, 13 and hit &#8220;Post&#8221;, you get &#8220;Error: You have entered the wrong sum in the spam protection field&#8230;&#8221;  Damn!  So you hit Back and go to correct your error [...]]]></description>
			<content:encoded><![CDATA[<h3>The Problem</h3>
<p>If you go to a post on <a href="http://www.streetsblog.org/2009/11/25/kids-on-bikes-where-you-live/">streetsblog.org</a>, type in a beautifully written comment, fill in the rest of the fields including 5+7 is, um, 13 and hit &#8220;Post&#8221;, you get &#8220;<strong>Error:</strong> You have entered the wrong sum in the spam protection field&#8230;&#8221;  Damn!  So you hit Back and go to correct your error only to find that your comment is gone and you&#8217;ll have to type it all over again.  Sucks!<span id="more-192"></span></p>
<h3>Tests</h3>
<p>I have been told that this problem didn&#8217;t used to exist on streetsblog.org.  You would hit Back after such an error and still find your comment populating the Comment field.  So I repeated this simple test on different sites and browsers.  Here are the results:</p>
<p>Does the browser cache the comment text after an error?</p>
<table border="0" cellspacing="5">
<tbody>
<tr>
<td><strong>gothamschools.org</strong><br />
no ie6<br />
no ie7<br />
no ie8<br />
yes chrome<br />
no ff 2.0.0.7 - xp<br />
no ff - mac<br />
yes safari - mac</td>
<td><strong>streetsblog.org</strong><br />
n ie6<br />
n ie7<br />
n ie8<br />
y chrome<br />
n ff - xp<br />
n ff - mac<br />
y safari</td>
</tr>
<tr>
<td><strong>streetfilms.org</strong><br />
n ie6<br />
y ie7<br />
y ie8<br />
y chrome<br />
y ff - xp<br />
y ff - mac<br />
y safari</td>
<td><strong>cjyabraham.com</strong><br />
y ie6<br />
y ie7<br />
y ie8<br />
y chrome<br />
y ff - xp<br />
y ff - mac<br />
y safari</td>
</tr>
</tbody>
</table>
<p>So it seems each browser has some kind of intelligence that tells it when to cache form content.  The top two sites are getting cached by fewer browsers than the bottom two.  One possible cause for this is the <a href="http://wordpress.org/extend/plugins/mobilepress/">Wordpress MobilePress plugin</a> that only the top two run.  I set up a test instance of streetsblog.org at design.streetsblog.org and deactivated the MobilePress plugin and got these results:</p>
<p><strong>design.streetsblog.org w/o mobilepress</strong><br />
n ie6<br />
y ie7<br />
y ie8<br />
y chrome<br />
y ff 2.0.0.7 - xp<br />
y ff - mac<br />
y safari</p>
<p>So it looks like that plugin is causing some browsers to stop cacheing a perfectly cacheable form entry.  Why is this?</p>
<p>I looked at the MobilePress code somewhat and suspected it might be the session_start(); line of the code and then <a href="http://help.tinyimpact.com/discussions/mobilepress-questions/15-browser-cache-and-mobilepress--">spoke with Matt</a>, one of the MobilePress developers, about this.  He suggested a few things which I tried but had no effect.  I even tried deleting this line completely but, still, the browsers would not cache the page.  So the problem must be somewhere deeper in the plugin.</p>
<h3>Questions and Next Steps</h3>
<p>This is where things stand for now.  I&#8217;m going to bounce this back to Matt and see if he has any other ideas.  Myself, I&#8217;m going to start stripping down the mobilepress plugin until I can find the line that might be causing this problem.</p>
<p>An alternative solution would be to get Wordpress to provide error messages dynamically on the same page as the form.  This would be a good solution since cacheing form content in the browser is ultimately up to the browser so if we get things working in one version of Firefox, there&#8217;s no guarantee that they&#8217;ll work in the next.  The <a href="http://www.deliciousdays.com/cforms-plugin">Wordpress Cforms plugin</a> can easily replace your comment form with an ajaxified form of its own that provides the errors inline.</p>
<p>And another solution would be to get rid of the math spam protection on streetsblog.org, which is the main cause for comment form errors there.  GothamSchools.org has been running without such a spam protection and has been having no problems with comment spam, due to akismet.</p>
<h3>Afternoon Update</h3>
<p>I performed two more tests on design.streetsblog.org by modifying the <span>session_start(); line of code in MobilePress to two different options:</span></p>
<table border="0" cellspacing="5">
<tbody>
<tr>
<td><strong>session_cache_limiter(&#8217;public&#8217;);<br />
session_start();</strong><br />
y ie6<br />
y ie7<br />
y ie8<br />
y chrome<br />
y ff 2.0.0.7 - xp<br />
y ff - mac<br />
y safari</td>
<td><strong>if ( ! session_id()) @session_start();</strong><br />
y ie6<br />
y ie7<br />
n ie8<br />
y chrome<br />
n ff 2.0.0.7 - xp<br />
n ff - mac<br />
y safari</td>
</tr>
</tbody>
</table>
<p>So both are an improvement but the left one is the best.  I ended up combining both edits because the second edit is going to be deployed in the new version of MobilePress.  Here is my final <a href="https://projects.openplans.org/opencore/changeset/26052/streetsblog/trunk">revision</a>.</p>
<p>After I deployed this on all streetsblogs and gothamschools, I did another round of testing to find that, for some reason, things still aren&#8217;t being cached on the streetsblogs in ie8 and ie6.  The only reason I can think of for this is that the production server is configured differently than our test server.  Well, it&#8217;s running lighttpd instead of apache for one thing.  I think we can live with this for now.  All other tests pass.</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/11/27/browser-cacheing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Block Party NYC Site Launched</title>
		<link>http://cjyabraham.com/blog/2009/06/17/block-party-nyc-site-launched/</link>
		<comments>http://cjyabraham.com/blog/2009/06/17/block-party-nyc-site-launched/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 15:57:38 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=178</guid>
		<description><![CDATA[Who knew there are over 3000 block parties in New York City each summer?  Well, we&#8217;ve just launched BlockPartyNYC.org to be the go-to site for everything block party.  Nicholas Bergson-Shilcock and myself have been working on this site over the last few months in partnership with  Transportation Alternatives.  It contains information to assist you [...]]]></description>
			<content:encoded><![CDATA[<p>Who knew there are over 3000 block parties in New York City each summer?  Well, we&#8217;ve just launched <a href="http://BlockPartyNYC.org">BlockPartyNYC.org</a> to be the go-to site for everything block party.  <a href="http://nicholasbs.com">Nicholas Bergson-Shilcock</a> and myself have been working on this site over the last few months in partnership with  <a href="http://www.transalt.org/">Transportation Alternatives</a>.  It contains information to assist you in throwing a block party, and allows you to promote your block party on our interactive map.  You can also sign up for weekly notifications of block parties in your neighborhood.<img class="aligncenter size-full wp-image-181" src="http://cjyabraham.com/files/2009/06/block-party-nyc.jpg" alt="block-party-nyc" width="573" height="193" /></p>
<p>The tricky part now is to draw enough interest to get the bulk of the 3000 block parties registered on the site without which our weekly notifications would be less useful.  Transportation Alternatives is in contact with the Upper West Side Community Board to encourage them to register each block party they approve.  We hope to also work out similar partnerships with other Community Boards.  As a return service, we have developed a <a href="http://blockpartynyc.org/help/party-widgets-for-your-website/">widget</a> for inclusion on Community Board sites that lists their upcoming parties.</p>
<p>Behind the scenes is a PostGIS database we use for its spatial queries.  The site is built in pylons and Wordpress, and the mapping is done using OpenLayers.  The site was built to facilitate re-skinning for other purposes.  If you are interested in using or developing with the open source software we wrote, <a href="http://sites.openplans.org/blockparty/">the Block Party project page</a> has the details.</p>
<p>So check it out!  Find out when parties are coming up in your neighborhood.  If you know anyone throwing a party, get them to register it on the site, and, don&#8217;t be shy, go and throw a party yourself!</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/06/17/block-party-nyc-site-launched/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Comment Geo Maps v0.2 Released</title>
		<link>http://cjyabraham.com/blog/2009/06/05/comment-geo-maps-v02-released/</link>
		<comments>http://cjyabraham.com/blog/2009/06/05/comment-geo-maps-v02-released/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 18:37:20 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=172</guid>
		<description><![CDATA[I have just released version 0.2 of the WordPress Comment Geo Maps plugin.  I&#8217;d like to also announce that it is now being used in production on GothamSchools.org.  Version 0.2 has a bunch of general improvements and bug fixes.  I have moved the project page for the plugin to its TOPP Labs trac instance but [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left">I have just released version 0.2 of the <a href="http://wordpress.org/extend/plugins/comment-geo-maps/">WordPress Comment Geo Maps</a> plugin.  I&#8217;d like to also announce that it is now being used in production on <a href="http://gothamschools.org/comment-maps/whats-on-the-chopping-block-at-your-school/">GothamSchools.org</a>.  Version 0.2 has a bunch of general improvements and bug fixes.  I have moved the <a href="http://oss.openplans.org/commentgeomaps">project page</a> for the plugin to its TOPP Labs trac instance but the general discussion about the plugin is still ongoing, for now, on this <a href="http://cjyabraham.com/projects/comment-geo-maps/">page</a>.  For more information about this release, please go to the <a href="http://oss.openplans.org/commentgeomaps">project page</a>.</p>
<p style="text-align: left"><img class="aligncenter size-full wp-image-175" src="http://cjyabraham.com/files/2009/06/cgmgotham.jpg" alt="cgmgotham" width="597" height="330" /></p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/06/05/comment-geo-maps-v02-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Comment Geo Maps v0.1 Released</title>
		<link>http://cjyabraham.com/blog/2009/05/08/comment-geo-maps-v01-released/</link>
		<comments>http://cjyabraham.com/blog/2009/05/08/comment-geo-maps-v01-released/#comments</comments>
		<pubDate>Fri, 08 May 2009 19:55:36 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=165</guid>
		<description><![CDATA[Over the last couple of weeks I developed a plugin that allows Wordpress comments to be geo-located on a map to enable geo-based conversations.  Today I have released version 0.1.  The idea for this came from Nick Grossman.  See the Comment Geo Maps plugin page for comments and suggestions.
]]></description>
			<content:encoded><![CDATA[<p>Over the last couple of weeks I developed a plugin that allows Wordpress comments to be geo-located on a map to enable geo-based conversations.  Today I have released version 0.1.  The idea for this came from <a href="http://wrkng.net/">Nick Grossman</a>.  See the <a href="http://cjyabraham.com/projects/comment-geo-maps/">Comment Geo Maps</a> plugin page for comments and suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/05/08/comment-geo-maps-v01-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>You Just Don&#8217;t Get Twitter!</title>
		<link>http://cjyabraham.com/blog/2009/03/19/you-just-dont-get-twitter/</link>
		<comments>http://cjyabraham.com/blog/2009/03/19/you-just-dont-get-twitter/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 19:13:06 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=139</guid>
		<description><![CDATA[At the South by Southwest Interactive conference this past weekend I attended a number of sessions that dealt with the sociological effects of our new suite of social networking tools including twitter, facebook, online dating sites, blogs, and news and tech forums.  At each talk during the five-day conference, a twitter hash tag was used [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-141" src="http://cjyabraham.com/files/2009/03/welcome-to-south-by-southwest-2009-sxswcom.jpg" alt="welcome-to-south-by-southwest-2009-sxswcom" width="242" height="227" />At the <a href="http://sxsw.com/interactive">South by Southwest Interactive</a> conference this past weekend I attended a number of sessions that dealt with the sociological effects of our new suite of social networking tools including twitter, facebook, online dating sites, blogs, and news and tech forums.  At each talk during the five-day conference, a twitter hash tag was used to coordinate a background discussion on the topic being presented.  This twitter stream was often used to steer the direction of the presentation and was used for questions during the Q &amp; A period.</p>
<p>In &#8220;Change Your World in 50 Minutes: Making Breakthroughs Happen,&#8221; <a href="http://en.wikipedia.org/wiki/Kathy_Sierra">Kathy Sierra</a> talked about how she had famously avoided using twitter for years.  People would insist, however, that, &#8220;You just don&#8217;t get twitter!&#8221;  and in this talk she finally conceded to the mysterious genius of twitter—something no one seems to be able to really explain except by presenting a series of anecdotes about how twitter has changed their life.</p>
<p>Right after her talk <a href="http://en.wikipedia.org/wiki/Bruce_Sterling">Bruce Sterling</a> took the stage for his meandering poetic monologue on the state of cyberspace.  About half-way through the talk he got to the topic of twitter and looked out upon a sea of twittering audience members, paused a moment to listen to the tap-tap-tap of keyboards, before saying something like, &#8220;you listen to what&#8217;s being said for 2 minutes and then have to let everyone know what you heard so you twitter about it and then miss the part where I talk about dogs fucking horses&#8230; Don&#8217;t fool yourself&#8211;you are losing out here!&#8221;<span id="more-139"></span></p>
<p>The topic of using twitter during presentations was directly addressed in &#8220;Presenting Straight to the Brain.&#8221;  One panelist stated, &#8220;in board meetings, when I see people put their hands into a prayer position and look down at the blackberries, I know that I&#8217;ve failed them as a presenter.&#8221;   Another panelist countered, &#8220;I think having a background twitter conversation in parallel to the presentation can be useful.&#8221;</p>
<p>Personally, I didn&#8217;t use twitter during talks.  You&#8217;ll see on <a href="http://twitter.com/cjyabraham">my feed</a> that the <a href="http://twitter.com/cjyabraham/status/1324394237">last</a> of my 6 updates was a message to Sonali asking which conference room she was in.  Wow that&#8217;s lame!  That probably should have been a direct message.  But I did witness people summarizing a presentation in a blog post while tweeting highlights, reading a steady flow of incoming tweets, and still paying enough attention to ask questions.  It was pretty impressive!</p>
<p>But is that it?  <em>Were</em> they losing out on anything?  In &#8220;Brave New Dating&#8221; on the first night of the conference someone said that, &#8220;in a conversation between two people, 80% of what is communicated is not in the words.&#8221;  Rather it is in the tone of voice, the body language, and perhaps, the silent pauses.  Is this true too for technical talks?  In &#8220;Can Social Media End Racism?&#8221; how important is it to see the glimmer of emotion in the eye of a presenter, to see the way a particular person stands as they ask a question.  Are these subtle signals important to us?</p>
<p>On the last day of the conference I attended &#8220;Therapy 2.0: Mental Health for Geeks.&#8221;  This was hosted by a Stanford psychotherapist and played out as a support group to air out grievances with the new technology.  One woman summed it up nicely as she talked about her numerous streams of information and communication from facebook, twitter, text messages, voicemail, personal email, company email, personal blog comments, RSS, etc. being constantly delivered to her computers and iPhone and her addiction and anxiety related to them.  She spoke about her loss of solitude, overall dis-enpowerment, and the loss of a feeling of wholeness in her life.</p>
<p>Another person described the mixed feelings on seeing 10 new message in his inbox as both a relief at being validated as a person and also irritation at the obligation to read and respond to the emails.  And there were the coping mechanisms: One woman admitted that she had about 500 messages in her facebook inbox which she would probably never read.  Another person said that they don&#8217;t check their voicemail anymore and say so in their voicemail message.</p>
<p>I posed the question, &#8220;are these neurosis really new forms of suffering or are they just new ways of manifesting the age-old dis-ease with our lives?&#8221;  Perhaps thirty years ago we suffered just as much but it was based around different things, like television or UFO attacks.  What I was trying to get at is whether the problem was in the technology or in the person using the technology (or both).  There were no easy answers here.</p>
<p>Of course, throughout this conversation, someone&#8217;s phone buzzed loudly at least once a minute, perhaps as they received new tweets from their friends.  At one point a woman held her head wincing and with all seriousness said, &#8220;Whoever&#8217;s phone keeps buzzing throughout this last hour, it is really affecting my peace of mind.&#8221;  There were a few muffled laughs, an awkward silence, and then an other buzz.</p>
<p>Towards the end of the session, the facilitator directed the conversation to the ways that our Web 2.0 tools <em>were</em> helping us.  People spoke about things like online support groups, meetup.com, accessible medical information, and airline status updates.  It was a relief to direct our attention to the positive side of things.</p>
<p>So I left South by Southwest with more questions than answers and an increased awareness of the issues with designing technology to really help us live our lives.</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/03/19/you-just-dont-get-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top Post from Category v.0.3 Plugin released</title>
		<link>http://cjyabraham.com/blog/2009/03/11/top-post-from-category-v03-plugin-released/</link>
		<comments>http://cjyabraham.com/blog/2009/03/11/top-post-from-category-v03-plugin-released/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 15:39:32 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=131</guid>
		<description><![CDATA[Today I released a new version of the Top Post from Category plugin, v.0.3.  This widget is now a multi-widget, that is, it is built to allow multiple instances of itself on a single sidebar, each serving the top post of a different category.  This feature had been requested a few times by people including [...]]]></description>
			<content:encoded><![CDATA[<p>Today I released a new version of the <a href="http://cjyabraham.com/projects/top-post-from-category-plugin/">Top Post from Category plugin</a>, v.0.3.  This widget is now a multi-widget, that is, it is built to allow multiple instances of itself on a single sidebar, each serving the top post of a different category.  This feature had been requested a few times by people including the bloggers at <a href="http://gothamschools.org">GothamSchools</a>.  I figured out how to do this by using the example at the bottom of the wp-includes/widgets.php file.</p>
<p>The other thing I added is a drop-down listing of categories for the admin ui.  This saves people having to lookup their category id themselves.</p>
<p>Please go <a href="http://cjyabraham.com/projects/top-post-from-category-plugin/">here</a> for more information, to ask questions and to comment on this plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/03/11/top-post-from-category-v03-plugin-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEO at GothamSchools continued</title>
		<link>http://cjyabraham.com/blog/2009/02/20/seo-at-gothamschools-continued/</link>
		<comments>http://cjyabraham.com/blog/2009/02/20/seo-at-gothamschools-continued/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 21:11:21 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=66</guid>
		<description><![CDATA[Since my last post on this, I have made a few tweaks to GothamSchools.org to try and further improve its rankings on Google:

I changed the wording on the About page to use &#8220;NYC schools&#8221; instead of &#8220;the nation&#8217;s largest school district&#8221;
I similarly changed the wording of the welcome message on the home page
I added Description [...]]]></description>
			<content:encoded><![CDATA[<p>Since my <a href="http://cjyabraham.com/2009/01/10/seo-developments-on-gothamschoolsorg/">last post</a> on this, I have made a few tweaks to <a href="http://gothamschools.org">GothamSchools.org</a> to try and further improve its rankings on Google:</p>
<ul>
<li>I changed the wording on the About page to use &#8220;NYC schools&#8221; instead of &#8220;the nation&#8217;s largest school district&#8221;</li>
<li>I similarly changed the wording of the welcome message on the home page</li>
<li>I added Description and Keywords meta tags to the home page and am generating them on all single-post pages with the help of the <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO Pack</a> plugin</li>
</ul>
<p>Today, this is how GothamSchools is ranking on Google:</p>
<ul>
<li>nyc schools (26th, up from 37th)</li>
<li>schools in nyc (18th, up from 32nd)</li>
<li>nyc public schools (17th, up from 33rd)</li>
<li>new york schools (&gt; 50)</li>
<li>school nyc (&gt; 50)</li>
<li>nyc education (&gt; 50)</li>
<li>new york city schools (&gt; 50)</li>
</ul>
<p><span id="more-66"></span>So we&#8217;ve risen up for some of our chosen keyword picks.  I took a look at some other keyword combination and see that we&#8217;re ranked in the top 50 for the following:</p>
<ul>
<li>doe nyc schools (25th)</li>
<li>nyc charter schools (44th)</li>
<li>nyc public school (24th)</li>
<li>private school in nyc (40th)</li>
</ul>
<p>We&#8217;re definitely moving in the right direction.  Of course, it&#8217;s hard to draw a direct causal relationship between changes I made and our rise in rankings.  It is also affected by posts our bloggers have been writing and who is linking to them.  It is affected by our competitors and what they are doing with their sites.</p>
<p>I don&#8217;t have any immediate plans for further SEO tweaks but will keep an eye on our rankings as we grow our readership and influence in the coming year.</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/02/20/seo-at-gothamschools-continued/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BlockPartyNYC 2009</title>
		<link>http://cjyabraham.com/blog/2009/02/05/blockpartynyc-2009/</link>
		<comments>http://cjyabraham.com/blog/2009/02/05/blockpartynyc-2009/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 19:57:13 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=112</guid>
		<description><![CDATA[Last year a few of us here at TOPP built BlockPartyNYC.  This project was done for Transportation Alternatives, mainly to promote their party sponsorship program.  A sponsored block party received consulting on solutions to community problems like traffic, speeding, and noise and air pollution.
For this year of block parties in NYC, we have plans to [...]]]></description>
			<content:encoded><![CDATA[<p>Last year a few of us here at <a href="http://topp.openplans.org/">TOPP</a> built <a href="http://blockpartynyc.org/">BlockPartyNYC</a>.  This project was done for <a href="http://www.transalt.org/">Transportation Alternatives</a>, mainly to promote their party sponsorship program.  A sponsored block party received consulting on solutions to community problems like traffic, speeding, and noise and air pollution.</p>
<p>For this year of block parties in NYC, we have plans to make BlockPartyNYC the main hub for all 3000 NYC parties.  We plan on receiving data feeds from Community Boards as they approve block parties and, in turn, hosting relevant parties on Community Board sites.  We plan on having more advanced mapping, facebook integration, and other features.</p>
<p>See the <a href="http://sites.openplans.org/blockparty/wiki/WikiStart">full specification</a>.  If anyone has comments on the proposed ways of tackling the new site, please get in touch.</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/02/05/blockpartynyc-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top Post from Category v.0.2 Plugin released</title>
		<link>http://cjyabraham.com/blog/2009/01/14/top-post-from-category-v02-plugin-released/</link>
		<comments>http://cjyabraham.com/blog/2009/01/14/top-post-from-category-v02-plugin-released/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 16:16:24 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=68</guid>
		<description><![CDATA[This release removes the dependency on the excerpt reloaded plugin and fixes the &#8220;more&#8221; tag which used to disappear when you overrode the excerpt.  For more information and to leave comments, go here.
]]></description>
			<content:encoded><![CDATA[<p>This release removes the dependency on the excerpt reloaded plugin and fixes the &#8220;more&#8221; tag which used to disappear when you overrode the excerpt.  For more information and to leave comments, go <a href="http://cjyabraham.com/projects/top-post-from-category-plugin/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/01/14/top-post-from-category-v02-plugin-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEO Developments at GothamSchools.org</title>
		<link>http://cjyabraham.com/blog/2009/01/10/seo-developments-on-gothamschoolsorg/</link>
		<comments>http://cjyabraham.com/blog/2009/01/10/seo-developments-on-gothamschoolsorg/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 17:04:28 +0000</pubDate>
		<dc:creator>Chris Abraham</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://cjyabraham.com/?p=56</guid>
		<description><![CDATA[The initial research into Search Engine Optimization of GothamSchools.org was discussed in this post.  Since then, I have made some changes to the site:


I changed the &#60;title&#62; tag on the home page of the site to read &#8220;GothamSchools - Breaking News and Analysis of the NYC Public Schools&#8221;

I changed the text inside the &#60;h1&#62; to [...]]]></description>
			<content:encoded><![CDATA[<p>The initial research into Search Engine Optimization of GothamSchools.org was discussed in this <a href="http://cjyabraham.com/2008/12/19/seo-on-gothamschoolsorg/">post</a>.  Since then, I have made some changes to the site:</p>
<ul>
<li>
<p>I changed the &lt;title&gt; tag on the home page of the site to read &#8220;GothamSchools - Breaking News and Analysis of the NYC Public Schools&#8221;</p>
</li>
<li>I changed the text inside the &lt;h1&gt; to read &#8220;GothamSchools &#8212; daily independent reporting on NYC public schools&#8221;.  I&#8217;m not sure if this text will have any effect on the rankings since the CSS makes it invisible.</li>
</ul>
<p>These changes were made on December, 19, 2008.  Within a day or so I noticed a change in our ranking for some of our keyword phrases.  The new rankings fluctuated a bit over the last few weeks.  Today, this is how GothamSchools is ranking:</p>
<ul>
<li>nyc schools (37)</li>
<li>schools in nyc (32)</li>
<li>nyc public schools (33)</li>
<li>new york schools (&gt; 50)</li>
<li>school nyc (&gt; 50)</li>
<li>nyc education (&gt; 50)</li>
<li>new york city schools (&gt; 50)</li>
</ul>
<p><span id="more-56"></span></p>
<p>We have plans to introduce a tagline into our site design.  We can make sure to choose a tagline that contains some of our keywords.  Apart from that, though, I&#8217;m not sure what other things can be done to increase our search engine rankings by manipulating the content of our site. Does anyone have any other ideas?</p>
]]></content:encoded>
			<wfw:commentRss>http://cjyabraham.com/blog/2009/01/10/seo-developments-on-gothamschoolsorg/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
