<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Partners</title>
  <link rel="alternate" type="text/html" href="http://pingv.com/company/partners"/>
  <link rel="self" type="application/atom+xml" href="http://pingv.com/taxonomy/term/12/atom/feed"/>
  <id>http://pingv.com/taxonomy/term/12/atom/feed</id>
  <updated>2008-01-07T09:24:06-06:00</updated>
  <entry>
    <title> Our partners, resources and affiliations</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/our-partners-resources-and-affiliations" />
    <id>http://pingv.com/our-partners-resources-and-affiliations</id>
    <published>2008-06-25T11:26:03-05:00</published>
    <updated>2008-08-25T14:45:15-05:00</updated>
    <author>
      <name>John Fiala</name>
    </author>
    <category term="About" />
    <category term="Partners" />
    <content type="html"><![CDATA[<p><img src="/misc/druplicon.png" alt="Druplicon" title="Drupal" />We are big proponents of the <a href="/about/2005/03/05/why-open-source">open source</a> revolution that is sweeping the globe. This is about self-empowerment.</p>

<p>We design and build many of our websites using <a href="http://www.drupal.org" target="_blank">Drupal</a>, which we've found to be an elegant, powerful and very flexible CMS. As beneficiaries of the hard work done there, we actively participate in the Drupal community.</p>

<h3>Sponsor of DrupalCon Szeged 2008</h3>

<img src="/files/drupalconSzeged-360x100.png" alt="DrupalCon logo" title="DrupalCon Szeged 2008 logo" /><p>Although we are not attending <a href="http://szeged2008.drupalcon.org/">DrupalCon Szeged 2008</a>, we support the Drupal community and the Drupal Association.

<h3>Platinum Sponsor of DrupalCon Boston 2008</h3>

<img src="/files/DrupalCon-Boston-2008-full-color.png" alt="DrupalCon logo" title="DrupalCon Boston 2008 logo" /><p>We were proud and delighted to be Platinum Sponsors of <strong>DrupalCon Boston 2008</strong>.</p>

<br class="clear" />

<blockquote><b>Recent posts relating to Drupal:</b>

<div class="item-list"><ul><li class="first"><a href="/blog/laura/2008/tips-using-eclipse-and-drupal-wednesdays-meet-up-pingvision">Tips using Eclipse and Drupal, at Wednesday&#039;s Meet-Up at pingVision</a></li>
<li><a href="/blog/john-fiala/2008/node-bodies-teasers-and-hooknodeapipresave">Node Bodies, Teasers, and hook_nodeapi(&#039;presave&#039;)</a></li>
<li><a href="/blog/laura/2008/pro-drupal-development-second-edition-has-arrived">&quot;Pro Drupal Development, Second Edition&quot; has arrived</a></li>
<li><a href="/blog/laura/2008/subversion-os-x-and-elusive-folder-merge">Subversion, OS X and the elusive folder merge</a></li>
<li><a href="/blog/laura/2008/pingvision-presenters-drupalcamp-colorado-2008">pingVision presenters at DrupalCamp Colorado 2008</a></li>
<li class="last"><a href="/blog/john-fiala/2008/drupal-6-blocks-need-extra-consideration">In Drupal 6, Blocks Need Extra Consideration</a></li>
</ul></div></blockquote>

<br class="clear" />
<hr />

<p><a href="http://blogher.org"><img src="/files/blogher.png" alt="BlogHer" title="We were proud to be partners with BlogHer" class="wrap" /></a>We are proud to have been a featured sponsor of <a href="http://blogher.org">BlogHer 2006</a>. Our involvement with BlogHer began in 2005, when we provided the official <a href="/personal-blog-entry/laura/200507/blogher-chatroom-transcripts">chatroom</a> for BlogHer Conference '05. In 2006, we developed a new community website for the BlogHer Network, using Drupal.</p>

As we grow, we hope to contribute more to these development efforts.    ]]></content>
  </entry>
  <entry>
    <title>Getting Historic Revisions of Drupal Modules for Comparison</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/blog/greg/200610/getting-historic-revisions-of-drupal-modules-for-comparison" />
    <id>http://pingv.com/blog/greg/200610/getting-historic-revisions-of-drupal-modules-for-comparison</id>
    <published>2006-10-30T15:04:17-06:00</published>
    <updated>2006-10-30T15:12:41-06:00</updated>
    <author>
      <name>Greg</name>
    </author>
    <category term="Partners" />
    <category term="code" />
    <category term="CVS" />
    <category term="Drupal" />
    <content type="html"><![CDATA[ <p>I was recently working on an older <a href="http://drupal.org">Drupal</a> site that hadn't been updated in a while.  It used lots of contributed modules and we were unsure whether these had any custom hacks in them.  So, I needed a way to find what version of the module was in use, and then pulling down to relevant version of that module in a format suitable to use in a "diff" tool.  </p>
<p>So, I did a couple fancy little things and wanted to share them for others to enjoy:</p>
<h3>Finding the Id string</h3>
<p>Many Drupal modules have an "Id" string in the top of the file.  The CVS system replaces these with some information about the file when they are checked out of CVS.  This gives you an automatically updated set of information about the file you are using.  So, if we can find files named .module, grab the first 3 lines of those files, search for the string Id, and output the results into a file then we've tackled the question <strong>"What version of this module do I have?</strong></p>
<div class="codeblock"><code>find ./ -name &#039;*.module&#039; -exec head -n 3 {} \; | grep Id &gt;&gt; versionNumbers.txt</code></div>
<p>(Note that all of the pieces of text that are in these little boxes should be one one line.)</p>
<p>Which gives you output like:</p>
<div class="codeblock"><code>// $Id: devel.module,v 1.108 2006/10/15 21:59:25 weitzman Exp $<br />// $Id: devel_node_access.module,v 1.7 2006/08/17 12:33:29 dww Exp $<br />// $Id: color.module,v 1.3 2006/10/29 15:13:01 unconed Exp $<br />// $Id: gsitemap.module, v4.8.11</code></div>
<h3>Getting the corresponding code from CVS</h3>
<p>The next step is to use that Id information to find the version from CVS.  Fortunately, CVS provides the capability of checking out files based upon a date.  First, we need to parse out the section of the Id string that contains the module name and the date.  The fanciest way would be to use awk, but the problem with that is not all modules use the Id string.  So, I used the <a href="http://www.openoffice.org/">OpenOffice.org Calc spreadsheet program</a> and the <a>Text to Columns Macro</a>.  From there, two formulas got me the data I wanted: </p>
<div class="codeblock"><code>=LEFT(C1;FIND(&quot;.&quot;;C1)-1)</code></div>
<p>and</p>
<div class="codeblock"><code>=CONCATENATE(&quot;cvs -d :pserver:greggles@cvs.drupal.org:/cvs/drupal-contrib checkout -r DRUPAL-4-6 -D &quot;&quot;&quot;;F1;&quot;&quot;&quot; contributions/modules/&quot;;B1)</code></div>
<p>The benefit of doing this in a spreadsheet is that it makes it easy to find modules (e.g. <a href="http://cvs.drupal.org/viewcvs/drupal/contributions/modules/gsitemap/gsitemap.module?rev=1.53&amp;view=markup">gsitemap</a>) where the Id string has been implemented in a non-standard way so that I can search down the right details myself.</p>
<p>When the information is present, these functions get me the module name out of name.module and then provides a cvs checkout command to pull down the DRUPAL-4-6 branch from the date that was in the top of the module file.</p>
<p>So, I paste those into my shell pastebuffer, they pull down all the modules, and I can do my diff.</p>
<h3>What's the Diff</h3>
<p>Once you are there it's trivial to use your favorite comparison/diff tool to find the difference between the modules.  And from there, you can follow the road back to Drupal sanity by removing custom modifications from the modules and implementing them as theme_ and hook_ functions.</p>
<p>Whew!  That was difficult, but now it's easier for others to do (or for me to do again, I have a feeling I'll need it).</p>
<h3>Drupal Project Module Updates</h3>
<p>It's worth noting that most of this tom-foolery will no longer be necessary after some more improvements to the <a href="http://drupal.org/project/project">Drupal Project Module</a>.  If you are interested in supporting that work, take a look at <a href="http://drupal.org/node/77562">this overview and fundraising page</a>.</p>
<p>Final note: there are many ways to do these kinds of tricks, these just happen to be the way.</p>
     ]]></content>
  </entry>
  <entry>
    <title>Drupal development code freeze: Drupal 5.0 expected November 2006</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/blog/laura/200609/drupal-development-code-freeze-drupal-5-0-expected-november-2006" />
    <id>http://pingv.com/blog/laura/200609/drupal-development-code-freeze-drupal-5-0-expected-november-2006</id>
    <published>2006-09-01T09:35:20-05:00</published>
    <updated>2006-09-02T10:30:16-05:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Turnkey Systems" />
    <category term="Web" />
    <category term="Partners" />
    <category term="Ajax" />
    <category term="Drupal" />
    <category term="jQuery" />
    <content type="html"><![CDATA[ <p>It's September 1, and that means that the active development for <a href="http://drupal.org/node/81861">the next release of Drupal</a> is now moving into the bug-fixing phase. As Dries says:</p>
<p><img src="http://pingv.com/system/files/Drupal-135x42.png" alt="Drupal button" title="Drupal is enterprise-quality free open source CMS software" class="wrapr" /><br />
<blockquote>Thanks to all the hard work we've done in the past three months, the next version of Drupal will have a lot of great improvements, including an installer, requirement checking for modules, a reorganization of the administration pages and file structure, a light-weight CCK, inclusion of jQuery and much more. We're also working on a new core theme (no guarantees it'll make it in time). With all that, I feel that, finally, the stars have aligned, and we're ready to call the next Drupal version, "Drupal 5.0.0". Thanks to all our contributors, Drupal 5.0.0 promises to be an amazing release!</p></blockquote>
<p>We're very excited (once again) about the direction the worldwide developer community is taking Drupal. We can expect more scalability, some clearer organization of the administration area (which has grown immensely with so much more power in the past couple of years), and a change in file structure that, along with some other changes, will make Drupal even more scalable.</p>
<p>There will be some nice new gloss in the next release of Drupal, with the addition of <a href="http://jquery.com/">jQuery</a> scripts [<i>see</i> <a href="http://acko.net/blog/new-wave-javascript-in-drupal-jquery">Steven Wittens' post</a>], more <a href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">Ajax</a> in various modules, some additional theme engine changes to empower designers even more (woohoo!) ... and possibly a new default Drupal theme, which will hopefully help draw more DIY folks into trying Drupal.</p>
<p>As soon as there's a stable release candidate, we'll start developing in Drupal 5.0 all new sites scheduled to launch after the official Drupal 5.0 release comes out.</p>
<p>Meanwhile, Drupal 4.7 is still pretty cool. (And, of course, we'll be doing upgrades.)</p>
     ]]></content>
  </entry>
  <entry>
    <title>IBM&#039;s Internet Technology Group explains the Drupal basics</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/blog/laura/200608/ibms-internet-technology-group-explains-the-drupal-basics" />
    <id>http://pingv.com/blog/laura/200608/ibms-internet-technology-group-explains-the-drupal-basics</id>
    <published>2006-08-30T10:17:38-05:00</published>
    <updated>2006-08-30T11:35:15-05:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Partners" />
    <category term="Drupal" />
    <category term="IBM" />
    <content type="html"><![CDATA[ <p>IBM's Internet Technology Group has written <a href="http://pingv.com/blog/laura/200607/big-blue-drop-ibm-goes-with-drupal">a very nice series of articles on Drupal</a>, the latest of which gives <a href="http://www-128.ibm.com/developerworks/ibm/library/i-osource5/">a fabulous introduction to the basics of Drupal</a>.</p>
<blockquote><p>This article gives you an overview of the Drupal content management system. We'll describe the common building blocks and discuss some common assumptions of the Drupal approach. It is helpful to understand core concepts and basic Drupal terminology as you go through this article and beyond.</p></blockquote>
<p>The article starts off by explaining much of the Drupal jargon, and does so without falling back on other jargon, which is the first step for anyone wanting to understand the basic structures behind how Drupal works. For example, explaning nodes:</p>
<blockquote><p>An important concept in Drupal is that all content is stored as a node. They are the basic building blocks for the system, and provide a foundation from which content stored in Drupal can be extended. Creating new node modules allows developers to define and store additional fields in the database that are specific to your site's needs. Nodes are classified according to a type. Each type of node can be manipulated and rendered differently based on its use case.</p></blockquote>
<p>Or taxonomy:</p>
<blockquote><p>The Drupal taxonomy system allows the classification of nodes, which enables the organization of node content on a displayed Web page. This categorization can also be used to modify Web site navigation.</p>
<p>Categories are defined by tags, or <i>terms</i>, and sets of terms can be grouped into a vocabulary. Drupal can automatically classify node content with terms, or node content can be manually classified using associated vocabularies. Drupal also allows <i>free tagging</i>, letting users define their own terms for node content.</p></blockquote>
<p>Even the concept of program hooks is covered.</p>
<p>The authors also spend a fair amount on Drupal theming and template construction, going through various functions and node presentation hooks available to customize the look and feel of your Drupal content to however you like.</p>
<blockquote><p>The PHPtemplate engine allows you to map templates to specific <a href="http://api.drupal.org/api/4.7/group/themeable" target="new">theme functions</a>. Theme functions provide generic methods to build Web content that is used by modules providing core functions in Drupal, or by your own modules to extend Drupal.</p>
<p>One example is the <code>theme_links</code> function. Given an array of xHTML anchor elements (links), <code>theme_links</code> will return a string containing these links delimited by a given character. This is an example of a very simple building block....</p>
<div class="codeblock"><code>				<br />function phptemplate_links($links, $delimiter = &#039; | &#039;) {<br />&nbsp; if (!is_array($links)) {<br />&nbsp;&nbsp;&nbsp; return &#039;&#039;;<br />&nbsp; }<br />&nbsp; $content = &#039;&amp;lt;div class=&quot;links&quot;&amp;gt;&#039;;<br />&nbsp; $content .= implode($delimiter, $links);<br />&nbsp; $content .= &#039;&amp;lt;/div&amp;gt;&#039;;<br />&nbsp; return $content;<br />}</code></div>
</p>
</p></blockquote>
<p>Okay, so the writing tends to be a little on the geeky side, but this article admittedly is for the geek reader -- probably someone who is either interested in learning how to develop with or theme for Drupal -- but the post is clear enough that it could also be of interest to anyone interested in getting more than the most simplistic sense of how Drupal works.</p>
<p>I find myself hoping that <a href="http://www-128.ibm.com/developerworks/ibm/library/i-osource5/#author">authors</a> Alister Lewis-Bowen, Stephen Evanchik and Louis Weitzman have the time to join the <a href="http://drupal.org/node/14205">Drupal documentation team</a>.</p>
<p><i>Hat tip to <a href="http://willy.boerland.com/myblog/new_ibm_drupal_howto">Bert Boerland</a> and <a href="http://www.langemark.com/node/2336">Gunnar Langemark</a>.</i></p>
     ]]></content>
  </entry>
  <entry>
    <title>Not live-blogging at BlogHer</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/blog/laura/200607/not-live-blogging-at-blogher" />
    <id>http://pingv.com/blog/laura/200607/not-live-blogging-at-blogher</id>
    <published>2006-07-28T14:29:57-05:00</published>
    <updated>2008-02-06T15:58:09-06:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Partners" />
    <category term="Blogher" />
    <category term="community" />
    <category term="Drupal" />
    <content type="html"><![CDATA[ <p>I sat in on the <a href="http://blogher.org/node/5518">so you have this crazy idea</a> session, where community sites were the topic. The room divided up into working groups -- legal issues,  maintaining and sustaining and growing a community, starting a community, and technology to use. I sat in on the first two groups. Very interesting.</p>
<p>At the end, reps for each group presented their findings. The tech group listed Drupal as one of the top tools to use for a robust community site (along with Plone) -- which, I suppose, is an obvious result, especially as <a href="http://blogher.org">the BlogHer site</a> is powered by Drupal, but it was nice to hear, especially since I wasn't there to evangelize it.</p>
<p>Right now I'm typing this while <a href="http://blogher.org/node/7666">a very interesting discussion</a> is happening. More not-live blogging later....</p>
     ]]></content>
  </entry>
  <entry>
    <title>BlogHer site scaling as the Conference approaches</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/blog/laura/200607/blogher-site-scaling-as-the-conference-approaches" />
    <id>http://pingv.com/blog/laura/200607/blogher-site-scaling-as-the-conference-approaches</id>
    <published>2006-07-19T13:48:42-05:00</published>
    <updated>2008-01-07T09:20:05-06:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Hosting" />
    <category term="Web" />
    <category term="Partners" />
    <category term="blogging" />
    <category term="Blogher" />
    <category term="Blogher06" />
    <category term="community" />
    <category term="Drupal" />
    <category term="Web 2.0" />
    <content type="html"><![CDATA[ <p>The <a href="http://www.boston.com/business/personaltech/articles/2006/07/17/women_tap_the_power_of_the_blog/">buzz</a> on <a href="http://www.technorati.com/search/BlogHer.org">BlogHer</a> is booming. I think we got <a href="http://blogher.org">the main BlogHer site</a> moved to a scalable multi-server setup just in the nick of time. Kudos to our hosting partners on the BlogHer website project, <a href="http://firebright.com">Firebright</a>, for their hard work! The new setup is humming!</p>
<p>Via <a href="http://blogher.org/node/7678">BlogHer Contributing Editor Jeneane Sessum</a>, I've learned that also speaking <em>of</em> (not <em>at</em>, unfortunately) BlogHer is Shelley Powers, who's back blogging <a href="http://words.einsteinslock.com/">on</a> <a href="http://bbgun.burningbird.net/">three</a> <a href="http://scriptteaser.com/">blogs</a> (so far). (Her old flagship, <a href="http://Burningbird.com">Burningbird.com</a>, now seems to showcase some of her beautiful photography.) <a href="http://words.einsteinslock.com/invisible/one-successful-web-20-company/">Shelley has noticed</a> the incredible growing sponsor list on BlogHer's home page. The sidebar full of sponsor logos indeed has shot roots down deep 'below the fold' of the pages. (In fact, the sheer weight of the logo images was becoming a server load issue on the former hosting configuration -- a 'good problem to have,' to be sure, but still something that kept the server working harder than anticipated.)</p>
<p><a href="/image/portfolio-gallery/web-screenshots/blogher-beta"><img src="http://pingv.com/system/files/images/BlogHer-beta.thumbnail.jpg" alt="" title="" class="image thumbnail wrap" height="140" width="155" /></a>When we got involved with BlogHer's site development, BlogHer's web presence was basically <a href="http://surfette.typepad.com/blogher/">a Typepad blog</a> used to disseminate info about the <a href="http://blogher.org/about-blogher-conference-06">BlogHer Conference</a> '05. The new site, powered by Drupal (with some customizations), has become an incredibly robust community. And not only that, but now it's the center of <a href="http://blogher.org/advertise">a new ad network</a> that is poised to grow rapidly.</p>
<p><a href="http://words.einsteinslock.com/invisible/one-successful-web-20-company/">Shelley states</a>:</p>
<blockquote><p>I had originally thought of Blogher as a loosely organized non-profit formed from consensus. It wasn’t until I read the Bostom.com article and saw the list of sponsors that I realized that Blogher is actually a prime example of what it takes to be a succcessful Web 2.0 company.</p>
<p>Company co-founders, Jory Des Jardins, Elisa Camahort, and Lisa Stone have taken a grass roots effort and turned it into a <a href="http://www.contracostatimes.com/mld/cctimes/14623341.htm">professionally run media company</a>, with it’s own <a href="http://workerbeesblog.blogspot.com/2006/05/blogher-announces-new-business-venture.html">ad network</a>, and featured in <a href="http://publications.mediapost.com/index.cfm?fuseaction=Articles.showArticleHomePage&amp;art_aid=43296">Media Daily</a>, as well as various other ad and media related publications.The three are now in great demand as speakers on the issue of women in weblogging, but it won’t be long before they’ll be in demand as speakers for their success as Web 2.0 company founders.</p></blockquote>
<p>and adds, at the end:</p>
<blockquote><p>Congratulations to Blogher, the <em>company</em> and good luck with the conference next week. I have a feeling it will be the ‘it’ conference of the year.</p></blockquote>
<p>I have a feeling it won't be just the conference that will comprise the all-things-BlogHer-that-are-'it' category.</p>
<p><em>Related:  </em><em><a href="http://www.boston.com/business/personaltech/articles/2006/07/17/women_tap_the_power_of_the_blog/">Boston.com article on BlogHer</a></em></p>
     ]]></content>
  </entry>
  <entry>
    <title>Drupal.Groups: Community logo</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/image/partners/drupal-groups-community-logo" />
    <id>http://pingv.com/image/partners/drupal-groups-community-logo</id>
    <published>2006-06-07T18:31:19-05:00</published>
    <updated>2007-04-11T21:07:19-05:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Partners" />
    <category term="community" />
    <category term="Drupal" />
    <category term="Groups.Drupal.org" />
    <category term="logo" />
    <content type="html"><![CDATA[ <p>Actually, this isn't really a logo <i>per se</i> -- more of a quickie "associated image" we did for the <a href="http://groups.drupal.org/community">Community group in Drupal.Groups</a>, using color and hue variations of the <a href="http://drupal.org/node/9068">Druplicon</a>.</p>
<p><i>This image is available under the GPL license.</i></p>
     ]]></content>
  </entry>
  <entry>
    <title>BlogHer &#039;06 Conference icon</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/image/blogher-06-conference-icon" />
    <id>http://pingv.com/image/blogher-06-conference-icon</id>
    <published>2006-06-07T18:08:44-05:00</published>
    <updated>2006-06-22T15:53:03-05:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Graphic Design" />
    <category term="Partners" />
    <category term="Blogher" />
    <category term="icon" />
    <category term="logo" />
    <content type="html"><![CDATA[ <p>This is the taxonomy image we created for the <a href="http://blogher.org/about-blogher-conference-06">BlogHer '06 Conference</a>, doing a little conferencing riff on the BlogHer hermoticon.</p>
     ]]></content>
  </entry>
  <entry>
    <title>BlogHer (beta)</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/image/portfolio-gallery/web-screenshots/blogher-beta" />
    <id>http://pingv.com/image/portfolio-gallery/web-screenshots/blogher-beta</id>
    <published>2006-03-25T00:58:15-06:00</published>
    <updated>2006-05-07T21:19:59-05:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Sponsorships" />
    <category term="Partners" />
    <category term="Portfolio" />
    <category term="Blogher" />
    <category term="Blogher06" />
    <category term="Drupal" />
    <content type="html"><![CDATA[ <p>This is the 2006 <a href="http://blogher.org">BlogHer</a> website. At the time of this screenshot (and this writing), the site is still in beta -- <i>i.e.,</i> public but still undergoing further development and design work.</p>
<p>The BlogHer website itself serves as a clearinghouse of information for the <a href="http://blogher.org/about-blogher-conference-06">2006 BlogHer Conference</a> itself, but it's also a vibrant online builder of community for women with its multiple daily front-page blogs about what women (and men, too) are writing about on blogs covering all kinds of topics.</p>
<p>The <a href="http://blogher.org/bloghers-blogrolls">BlogHer Blogroll</a> is the third main component -- categorized blogs whose listings are submitted by any and all who register on the site. We did some custom coding to get all those blogrolls to list the appropriate categories while paginating gracefully <i>and</i> linking directly to the linked sites while still tracking click-throughs. We also have <a href="http://blogher.org/forum">forums</a> set up, and a few other things planned.</p>
<p>We're proud to be sponsors of this year's BlogHer Conference.</p>
<p><i>More on the BlogHer site to come once it's launched and I write a little development case study. -Laura</i></p>
     ]]></content>
  </entry>
  <entry>
    <title>BlogHer on the cover of the Austin Chronicle</title>
    <link rel="alternate" type="text/html" href="http://pingv.com/blog/laura/200603/blogher-on-the-cover-of-the-austin-chronicle" />
    <id>http://pingv.com/blog/laura/200603/blogher-on-the-cover-of-the-austin-chronicle</id>
    <published>2006-03-04T20:30:51-06:00</published>
    <updated>2008-01-07T09:24:06-06:00</updated>
    <author>
      <name>Laura</name>
    </author>
    <category term="Partners" />
    <category term="blogging" />
    <category term="Blogher" />
    <category term="Drupal" />
    <content type="html"><![CDATA[ <p>At the risk of seeming like every post of late here is about the <a href="http://blogher.org">BlogHer</a> site, I just thought <a href="http://homepage.mac.com/elisa_camahort/iblog/C788295036/E20060302164628/index.html">this</a> was worth mentioning....</p>
<p><a href="http://www.flickr.com/photos/scatteredsunshine/107887913/"><img src="http://static.flickr.com/35/107887913_f60913450a_m.jpg" width="209" height="240" class="wrap" alt="BlogHer on the cover of the Austin Chronicle" title="BlogHer makes the cover of the Austin Chronicle" /></a>Never mind the cheesy sci-fi poster imagery for a moment (more on that below), it's some pretty good ink, getting on the cover of Texas capital's paper. <a href="http://www.austinchronicle.com/issues/dispatch/2006-03-03/screens_feature4.html">The Austin Chronicle article</a> opens with the topic that BlogHer founders <a href="http://surfette.typepad.com">Lisa</a>, <a href="http://www.sxsw.com/">Elisa</a> and <a href="http://www.jorydesjardins.com/">Jory</a> are addressing in sessions at <a href="http://www.sxsw.com/">SXSW</a>:</p>
<blockquote><p>SXSW Interactive is evolving. Alongside the exhibitions of better-faster-more emergent technologies, from BattleDecks and DOM scripting to Darknets, with a nod to all the dollars appertaining, panelists are keeping it real about what brings us online in the first place: ourselves.</p>
<p>But which selves do we place online? That's the question before the three co-founders of <a href="http://blogher.org">BlogHer</a>. Last year, Lisa Stone, Elisa Camahort, and Jory Des Jardins created BlogHer.org, a cluster site in which women (and some men) write about everything from technology to travel to religion and race, food, shopping, and current events in order to "create opportunities for women bloggers to pursue exposure, education, and community." All three intermittently describe themselves as "evangelists" for personal voices, for the transmission and sharing of ideas about women's lives, and for the craft of blogging itself. </p></blockquote>
<p><a href="http://www.austinchronicle.com/issues/dispatch/authors/marritingman.html">Marrit Ingman</a>'s article gets into some of the ways blogging can affect one's personal and/or professional life -- as well as how women bloggers are treated differently from men bloggers.</p>
<blockquote><p> Camahort and Des Jardins also theorize that the consequences for getting personal might be different for women and men if they reveal details of their romantic and family lives in a business setting. When a blogger like Technorati darling Robert Scoble mentions his spouse or child, his credibility is unaffected, they suggest, and possibly even enhanced.</p>
<p>"Women who write about family are 'mommybloggers,' while men who write about family are 'personal bloggers,' incorporating personal elements into their blogs," Des Jardins says. "It's so easy to call someone a 'mommyblogger,' to say that they write 'just' about family."</p>
<p>"As though so much of our great literature and art isn't about family relationships," Camahort points out. "When Arthur Miller wrote All My Sons, nobody said, 'Oh, he's just a 'daddy playwright.' Nobody calls him a 'male playwright.' I think that's why women are rightfully apprehensive." </p></blockquote>
<p><a href="http://www.austinchronicle.com/issues/dispatch/2006-03-03/screens_feature4.html">Interesting stuff worth a look</a>. </p>
<p>It's just too bad the whole thing is branded with the cheesy drawing of a half-naked vixen, with a title that evokes the plethora of science fiction flicks featuring evil ambitious women who enslave men while striving to rise above their station and dominate the universe. I know it's all in fun, and captures some of the cut-loose and let-loose spirit, but the imagery carries a rather unfortunate overtone of using sex appeal to subjugate men.</p>
<p>But hey, it's Austin, city of cheese. We can laugh, since it's all done with a wink. Who knows? I think I'm probably older than most bloghers, and might be one of only a handful of people who remember those movies from Saturday afternoon television (sans <a href="http://en.wikipedia.org/wiki/Mystery_Science_Theater_3000">Mystery Science Theatre</a> commentary). In this modern day, I think more people have seen the posters than the pulpy adventures themselves, and I don't think anyone would seriously believe that BlogHer is a throwback to bad 1950s B movies -- though I'm sure some folks would love the idea.</p>
     ]]></content>
  </entry>
</feed>
