<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">

  <title><![CDATA[walkah]]></title>
  
  <link href="http://walkah.net/" />
  <updated>2012-04-13T16:54:16-04:00</updated>
  <id>http://walkah.net/</id>
  <author>
    <name><![CDATA[James Walker]]></name>
    
  </author>

  
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/walkah/drupal" /><feedburner:info uri="walkah/drupal" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry>
    <title type="html"><![CDATA[Using Drush to Mass Delete Comments]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/gBZfczhKKTE/using-drush-to-mass-delete-comments" />
    <updated>2012-04-13T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/using-drush-to-mass-delete-comments</id>
    <content type="html">&lt;p&gt;Like many kind, good-natured geeks, I (yes, I was talking about me) host a number of small sites for friends. Many of those sites run Drupal and several don't get a lot of attention. That is, until spammers find their way around &lt;a href="http://mollom.com/"&gt;Mollom&lt;/a&gt;. I've seen this happen a few times, but most recently on a Drupal 7 site. In this particular case, the spam comments had been trickling in over a few weeks undetected. Following a burst of recent activity (enough to notice via monitoring), I checked in to find &gt; 60,000 spam comments.&lt;/p&gt;

&lt;p&gt;If this has ever happened to you: you're not alone. At this number of comments, using Drupal's interface (50 comments at a time) isn't really usable. Also, these things tend to happen in bursts - so chances are good there's a block of comments that are all spam (i.e. there haven't been any legitimate comments that you want to save since it started). So, I whipped up a small script here:&lt;/p&gt;

&lt;p&gt;&lt;div&gt;&lt;script src='https://gist.github.com/2379996.js?file='&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;pre&gt;&lt;code&gt;&amp;lt;?php

$first_comment = 38898;
$num_delete = 50;
   
do {
  $cids = db_select('comment', 'c')
    -&amp;gt;fields('c', array('cid'))
    -&amp;gt;condition('cid', $first_comment, '&amp;gt;=')
    -&amp;gt;range(0, 50)
    -&amp;gt;execute()
    -&amp;gt;fetchCol();

    print &amp;quot;deleting &amp;quot;. count($cids). &amp;quot; comments...\n&amp;quot;;
    comment_delete_multiple($cids);
} while (count($cids) == $num_delete);&lt;/code&gt;&lt;/pre&gt;&lt;/noscript&gt;&lt;/div&gt;
&lt;/p&gt;

&lt;p&gt;Here's how to use it:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Place the code in a file (say, &lt;code&gt;comment-rm.php&lt;/code&gt;) in your Drupal directory.&lt;/li&gt;
&lt;li&gt;Find the &lt;code&gt;cid&lt;/code&gt; of the first spam comment (exercise left to the reader) and set &lt;code&gt;$first_comment&lt;/code&gt; to that value.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;drush scr comment-rm.php&lt;/code&gt; and go grab a coffee.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;Hope that helps someone, but at least now I can find it again next time.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Beware&lt;/em&gt;: This deletes comments forever, be careful.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/gBZfczhKKTE" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/using-drush-to-mass-delete-comments</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Why Vagrant]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/HBCCPp2OGZo/why-vagrant" />
    <updated>2011-07-05T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/why-vagrant</id>
    <content type="html">&lt;p&gt;Few things are as frustrating in the life of a (web) developer as those unfortunate times when, despite passing QA and testing, your latest feature, bugfix or completed task stops working when it gets to production. Nobody likes to have the sweet feeling of "go live" victory wasted. While any number of things can cause the embarrassment and wasted time, one way to significantly reduce the number of potential errors is to keep your development, staging and production environments as close to each other as possible.&lt;/p&gt;

&lt;p&gt;Lately I've been dealing with my own special, self-inflicted challenge: I have two machines (a thinkpad x201 and an older, pre-unibody macbook pro) that run two different operating systems (Ubuntu 11.04 and Mac OS 10.6, respectively). Now, why I do this is probably a longer discussion, but I do - and I like it. Just to add a little more (minor) variation, my personal projects, experiments (and in fact this blog) all run on &lt;a href="http://www.linode.com/?r=3c5ce8caa09f2a260f8f696985dac260fcc01d5f"&gt;linode&lt;/a&gt; instances (running Ubuntu 10.04). The end result is, my development and "production" happens across 3 different OS versions. Standard package installations of development tools (regardless of which technology I'm exploring at the moment) are rarely ever the same release version. Throw in some subtle and potentially maddening differences between linux and os x (case insensitive filesystem, what?) and I've lost too much time debugging my own fixes.&lt;/p&gt;

&lt;p&gt;As it turns out, I do an okay job of emulating my own little development team (except in productivity, of course).&lt;/p&gt;

&lt;p&gt;In a more real world scenario: I have been doing some work lately with &lt;a href="http://myplanetdigital.com/"&gt;Myplanet Digital&lt;/a&gt; (a fun team located in Toronto - and they're hiring). One of their portfolio client projects is a fairly large, complex Drupal implementation. The production version is hosted on &lt;a href="http://acquia.com/products-services/managed-cloud"&gt;Acquia cloud&lt;/a&gt; hosting, they host their own QA / CI / testing infrastructure, and their (ever-growing) development team uses a mess of mac os x and windows versions. They are continually looking for ways to streamline their development process - and avoid any needless debugging time.&lt;/p&gt;

&lt;h3&gt;Vagrant Chefs to the rescue!&lt;/h3&gt;

&lt;p&gt;I've developed a growing interest in two tools to help solve this dilemma: &lt;a href="http://www.opscode.com/chef/"&gt;Chef&lt;/a&gt; (for environment management and provisioning) and &lt;a href="http://vagrantup.com/"&gt;Vagrant&lt;/a&gt; (for local, VirtualBox based virtual machine management). Vagrant is super easy to get running, like it says on the home page:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ gem install vagrant
$ vagrant box add base http://files.vagrantup.com/lucid32.box
$ vagrant init
$ vagrant up
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Assuming you have a reasonably functional ruby environment and have a recent version of VirutalBox installed, that's all there is to it! Chef (for provisioning), however, has taken me a bit more time to get my head fully around. You can see my experiments happening live(ish) on &lt;a href="https://github.com/walkah"&gt;my github&lt;/a&gt; account.&lt;/p&gt;

&lt;h3&gt;But I don't use lucid32!&lt;/h3&gt;

&lt;p&gt;One interesting thing about the Acquia managed hosting platform, is it's all built using Ubuntu Hardy (8.04). In Internet years, it's rather old but has some significant differences from Lucid (and most current packaged versions of the LAMP stack) - PHP 5.2 (vs. 5.3) and MySQL 5.0.x (vs. 5.1.x). To do this right - to actually replicate the production environment for development - it's important to have these versions in sync. There are subtle differences between these versions that can trip you up. Enter &lt;a href="https://github.com/jedi4ever/veewee"&gt;veewee&lt;/a&gt;. A few weeks ago, I provided a &lt;a href="https://github.com/jedi4ever/veewee/pull/53"&gt;pull request&lt;/a&gt; for veewee that added a "hardy32" template - for building a vagrant box with the same version of Ubuntu found on Acquia hosting. For the lazy, I've posted the &lt;a href="http://dl.dropbox.com/u/6091/hardy32.box"&gt;base box&lt;/a&gt; to my dropbox account.&lt;/p&gt;

&lt;p&gt;Overall, I've found it requires a bit of tinkering (I'll try to share more as I go), but the result is that I can deploy code with a bit more certainty and that is worth it. I'm here tinkering, so you don't have to.&lt;/p&gt;

&lt;p&gt;I should also mention, that all Drupal developers should checkout the &lt;a href="http://drupal.org/project/vagrant"&gt;vagrant project&lt;/a&gt; on drupal.org for a nice general solution for Drupal apps.&lt;/p&gt;

&lt;p&gt;Dev Ops!&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/HBCCPp2OGZo" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/why-vagrant</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Every Drupal Site is an Install Profile]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/PtRL5LIICPs/every-drupal-site-install-profile" />
    <updated>2011-05-20T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/every-drupal-site-is-an-install-profile</id>
    <content type="html">&lt;p&gt;I've been working with this hypothesis while working on &lt;a href="http://drupal.org/"&gt;Drupal 7&lt;/a&gt; sites. I don't think it's necessarily revolutionary, but I would like some feedback. Currently, I'm approaching every Drupal site build as its own install profile.&lt;/p&gt;

&lt;p&gt;Back when we were running &lt;a href="http://bryght.com/"&gt;Bryght&lt;/a&gt;, we recognized the need for "Installation Profiles" as a way to focus the highly configurable, but largely baffling initial experience with Drupal into making sense. We had lofty dreams of catering to various verticals with streamlined, elegant experiences that took the immense power of Drupal and made it &lt;em&gt;make sense&lt;/em&gt; for new users. That was Drupal 4.5... we were maybe ahead of our time. Needless to say, a lot has happened with Drupal since then.&lt;/p&gt;

&lt;p&gt;With the release of Drupal 7, one of the things people aren't talking about as much are the vast improvements to install profiles. For the first time ever, Drupal core ships with more than one install profile, which has also meant that for the first time people are consciously aware that such things actually exist. In D7, install profiles behave much more like other Drupal packages (i.e. modules and themes). They have .info file and .install files. They are far easier to create than ever before.&lt;/p&gt;

&lt;p&gt;Clearly, I'm not the only one who sees the importance. &lt;a href="http://developmentseed.org/"&gt;Development Seed&lt;/a&gt; and now &lt;a href="http://www.phase2technology.com/"&gt;Phase2 Technology&lt;/a&gt; have invested a lot in install profiles such as &lt;a href="http://openatrium.com/"&gt;OpenAtrium&lt;/a&gt;. For creating Drupal products such as Atrium, install profiles are important and central. What I am talking about, however, is to create an install profile for every Drupal site you build. In updating this very blog to D7, I created an install profile for my site to test (and tinker with) my theory.&lt;/p&gt;

&lt;h3&gt;The theory&lt;/h3&gt;

&lt;p&gt;What is a Drupal Site? Well, once you've determined a version, core remains unchanged across most sites (you know, &lt;a href="http://www.flickr.com/photos/schmidtgergely/3212038247/"&gt;don't hack core&lt;/a&gt; and all). So what makes a Drupal site your Drupal site is: 1) a theme 2) your selection of contrib modules and 3) any custom code / modules you may have written. If we dig a bit deeper, the things unique about a Drupal site are typically: 1) a theme 2) any custom code and 3) the &lt;em&gt;list&lt;/em&gt; of contrib modules / libraries in use. It just so happens that an install profile can nicely encapsulate this information for us. So why bother?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;A Drupal site rarely only gets installed in one place. Best practice suggests that we use development, staging and production for our websites. If we work on a team, "development" will actually be a separate install for each developer on the team. Being able to reliably install and replicate your site will actually make things much easier - whether it's just you or your whole team.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="http://drupal.org/project/drush_make"&gt;Drush Make&lt;/a&gt; works well like this. Your profile can have its own makefile (as &lt;a href="http://drupal.org/project/openatrium"&gt;openatrium&lt;/a&gt; does). Drush make will recursively make install profiles, and will add all contrib modules and libraries into your profile's directory. Maintaining nice separation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Make the most of multi-site. Since your core version remains constant (at least for major versions) across all the sites you work on, why do you keep installing core? In my development environment (which I will write more about soon), I have 2 virtual hosts d6.dev and d7.dev. All of the sites I'm working on fall under one of the two. Thanks to drush make, I can have a single makefile for each major version that recursively grabs each profile (i.e. site or group of sites) that I'm working on for that version. The same can be used in production &lt;em&gt;or not&lt;/em&gt; - the install profiles can move independently to production.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;The end result is, I have very small custom repositories - containing usually a drush make file, a custom module or two and a custom theme. Checkouts are a breeze and I have a clear manifest of any other other code I'm using.&lt;/p&gt;

&lt;h3&gt;Objections&lt;/h3&gt;

&lt;p&gt;Now, historically this isn't how people have approached Drupal sites. Historically it's not even how I've approached it. Generally, we have single repositories with all of core, our modules etc. Generally, a single repository containing all of the core, contrib and custom code - for years in subversion and now folks are transitioning to git. An argument for continuing this way (I received from &lt;a href="http://webchick.net/"&gt;webchick&lt;/a&gt; herself), is that a single repository makes it easy to see things like if someone has made changes directly on production (?!?!) or that just by having a single checkout all developers / installations have the exact same code.&lt;/p&gt;

&lt;p&gt;While I think "hot fixes" in production are a bad idea (no matter how small the site), the latter objection (exact same code) is worthy of a little more discussion. Keeping things in sync with Drush Make is a bit more work (always pin your versions!), I think it's a worthwhile habit to establish. Yes, git is fast enough that those long, painful svn checkouts are largely a thing of the past so having all of your code in a repository isn't as punishing.  For me, the hosting considerations above are significant, but another thing came up for me recently:&lt;/p&gt;

&lt;p&gt;If you build a lot of Drupal sites, chances are good that there is some overlap. Say there is a patch that you need for a favourite contrib module, drush make means that you can explicitly apply the patch (and maintain it outside of your repository - or pull directly from the issue queue). Similarly, using independent &lt;a href="http://drupal.org/project/features"&gt;feature module&lt;/a&gt; features allows for similar mixing and matching. Each module (or theme) should have a single, canonical source and a Drupal site is simply the combination or collection of them.&lt;/p&gt;

&lt;p&gt;It seems to me there are real gains in being explicit with makefiles, being smart about hosting and re-using core, and being modular in our repositories (using drush make to pull it all together).&lt;/p&gt;

&lt;p&gt;Am I crazy?&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/PtRL5LIICPs" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/every-drupal-site-install-profile</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Ch-ch-ch-changes]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/NBpoFtocx6Q/ch-ch-ch-changes" />
    <updated>2010-01-06T00:00:00-05:00</updated>
    <id>http://walkah.net/blog/walkah/ch-ch-ch-changes</id>
    <content type="html">&lt;p&gt;This year promises to be an exciting one - and one that proves to be full of changes galore. As I mentioned in my &lt;a href="http://walkah.net/blog/walkah/2010"&gt;last post&lt;/a&gt;, much of my 2010 change began late in 2009.&lt;/p&gt;

&lt;p&gt;Cue the Bowie...&lt;/p&gt;

&lt;h3&gt;Leaving Lullabot&lt;/h3&gt;

&lt;p&gt;Although it's been largely quiet (and really not a huge deal), before the rumours spread too far: I've left my position as the Director of Education for &lt;a href="http://www.lullabot.com/"&gt;Lullabot&lt;/a&gt;. I'm leaving behind a totally awesome team and a wonderful job (in the midst of a recession). Why on earth?!&lt;/p&gt;

&lt;p&gt;Let me be &lt;em&gt;very&lt;/em&gt; clear: Lullabot isn't in danger, stopping &lt;a href="http://www.lullabot.com/training"&gt;Drupal training&lt;/a&gt;, nor is there any backroom drama. The 'bots are wonderful people and chances are very good that we'll continue to collaborate in the future (at the very least, there's still hugs).&lt;/p&gt;

&lt;p&gt;This was a very personal decision - and one that was a long time coming. For the morbidly curious, it boils down to three things (and those of you who know me well, know it &lt;em&gt;always&lt;/em&gt; comes down to three things):&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Travel&lt;/strong&gt;: Anyone who is friends with a 'bot on &lt;a href="http://www.dopplr.com/traveller/walkah"&gt;Dopplr&lt;/a&gt; or &lt;a href="http://www.tripit.com/people/walkah"&gt;Tripit&lt;/a&gt; knows that the job entails a lot of time on the road. With over 230 days on the road in the past 2 years, I needed and my kids deserved a break. While we (Lullabot and I) largely worked around this - it's still just part of the gig.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Drupal&lt;/strong&gt;: I stood up in front of a rather large group of Drupal folks almost a year ago and explained &lt;a href="http://whyihatedrupal.com/"&gt;why I hate Drupal&lt;/a&gt; - so it's obvious, right? While I feel the points I tried to make still face the community at large (such as &lt;a href="http://smallcore.org/"&gt;smallcore&lt;/a&gt;/&lt;a href="http://www.disambiguity.com/designing-for-the-wrong-target-audience/"&gt;drupal is not a product&lt;/a&gt;, or even &lt;a href="http://drupal4hu.com/node/229"&gt;rethinking the maintainer structure&lt;/a&gt;), I don't actually hate Drupal (as those of you who grok sarcasm might have noted).&lt;/p&gt;

&lt;p&gt;However, Drupal has been my full-time job for 6 years. In that time, the community (and the software) has grown and changed considerably. It has been an amazing ride. As &lt;a href="http://buytaert.net/"&gt;Dries&lt;/a&gt; mentioned to me on the phone a few weeks ago, "once a Drupal guy, always a Drupal guy". This is probably true - I have no intention of leaving the community, but I am ready for some new challenges.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open Web&lt;/strong&gt;: One thing people may have noticed is that when I have had the chance to hack on Drupal lately - it tends to involve "open web" or "open standards" implementations (notably, OpenID etc). Many folks have also noticed that my contributions have trailed off lately. When your "after hours" time starts including more things like "sleep" - your after hours projects take a hit.&lt;/p&gt;

&lt;p&gt;I'd like to get back to building cool, new stuff. While I certainly get a lot out of teaching people how to make the most of the tools available, I'm passionate about building the next tools (which doesn't exclude Drupal). These are interesting times on the internets, I wanna have my nose in the middle of it.&lt;/p&gt;

&lt;h3&gt;Now what?&lt;/h3&gt;

&lt;p&gt;Officially, I will be freelancing (technically have been for a few weeks). I've already got some interesting things lined up that I'm excited to start talking about soon.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/NBpoFtocx6Q" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/ch-ch-ch-changes</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Open, Social for the rest of the web]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/TQC5lv6RFvw/open-social-rest-web" />
    <updated>2009-04-22T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/open-social-for-the-rest-of-the-web</id>
    <content type="html">&lt;p&gt;This past weekend, I had the privilege of being one of the chosen attendees for &lt;a href="http://swfoo09.pbwiki.com/"&gt;Social Web FooCamp&lt;/a&gt;. Needless to say, I was flattered and had an amazing time (thanks again, @daveman692 and @davemorin ) . One thing, however, became very apparent: the conversation, currently, is being dominated by the 'big players' (Google, Yahoo, Facebook and Myspace predominantly). In several discussions I found myself increasingly dropping the phrase:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;... on the rest of the web&lt;/p&gt;&lt;/blockquote&gt;

&lt;h3&gt;the big guys&lt;/h3&gt;

&lt;p&gt;First off, this is not a critique of the Google's and Facebook's of the internet. They are incredibly valuable to the growth of the openweb. The fact that Google, Yahoo and Myspace all three have various OpenID and OAuth initiatives in the wild and are actively pursuing additional ways to open their data is awesome (and Facebook wants to get there). It helps raise awareness and bring (slash confirm) "legitimacy".&lt;/p&gt;

&lt;p&gt;The big guys also have resources. They can attend the conferences (and camps!) and have dedicated resources to write the standards, participate in the discussions and help shape the future.&lt;/p&gt;

&lt;p&gt;However, they are only part of the discussion.&lt;/p&gt;

&lt;h3&gt;perspective&lt;/h3&gt;

&lt;p&gt;The issues the major providers face are different from the rest. They have a few sites with large numbers of users (hundreds of millions). Out here on the rest of the web, we have millions of websites, each with a "small" number of users (hundreds or thousands). We all understand the necessity for open data, identity, standards and protocols, but our reasoning tends to be slightly different.&lt;/p&gt;

&lt;p&gt;The big guys recognize the benefit of exposing their data and most are providing OpenID and various levels of OAuth. How many are consuming it?&lt;/p&gt;

&lt;p&gt;Sure, the big players want to be the primary authority for your identity and your information. In some cases, it &lt;em&gt;is&lt;/em&gt; their business. But, rather than ranting against 'the man', I ask: have we - the rest of the web - given them a compelling reason to yet?&lt;/p&gt;

&lt;h3&gt;open source platforms for the open web ###&lt;/h3&gt;

&lt;p&gt;It's one thing for a major site (with hundreds of millions of users) to act like a silo, but on the rest of the web it amounts to isolation.&lt;/p&gt;

&lt;p&gt;Those of us working on open source web platforms have an enormous potential for influence here. Implementing the various open standards "from scratch", while possible, is not realistic or even necessary. Increasingly, individuals have &lt;a href="http://wordpress.org/"&gt;Wordpress&lt;/a&gt; blogs or perhaps their company, organization or club has a &lt;a href="http://drupal.org/"&gt;Drupal&lt;/a&gt; site. Web developers are increasingly turning to these platforms, or development frameworks such as &lt;a href="http://rubyonrails.org/"&gt;Rails&lt;/a&gt; and &lt;a href="http://www.djangoproject.com/"&gt;Django&lt;/a&gt;. These platforms all have a real opportunity to bake in implementations of these open standards. The &lt;a href="http://diso-project.org/"&gt;DiSo project&lt;/a&gt; offers a central place for co-ordination around these efforts.&lt;/p&gt;

&lt;p&gt;We have data - gobs of it. We also, collectively, have the users and, in most cases, have more authoritative information about them (we know ourselves, our employees and our members).&lt;/p&gt;

&lt;p&gt;We - the rest of the web - need to join the conversation: attend the events, participate in the mailing lists, and &lt;em&gt;build&lt;/em&gt; the code to power the open, social web.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/TQC5lv6RFvw" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/open-social-rest-web</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Why I Hate Drupal]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/xhLemYtX-Zk/why-i-hate-drupal" />
    <updated>2009-03-09T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/why-i-hate-drupal</id>
    <content type="html">&lt;p&gt;I'm back home from a truly spectacular &lt;a href="http://dc2009.drupalcon.org/"&gt;DrupalCon DC&lt;/a&gt; and have been reflecting this morning on some of the feedback from my talk: &lt;a href="http://dc2009.drupalcon.org/session/why-i-hate-drupal"&gt;Why I Hate Drupal&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;See &lt;a href="http://www.slideshare.net/walkah/why-i-hate-drupal"&gt;the slides&lt;/a&gt; and &lt;a href="http://www.archive.org/details/DrupalconDc2009-WhyIHateDrupal"&gt;watch the video&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I first got the idea for this talk several months ago watching the DjangoCon 2008 keynote &lt;a href="http://www.youtube.com/watch?v=i6Fr65PFqfk"&gt;Why I Hate Django&lt;/a&gt; by &lt;a href="http://www.iamcal.com/"&gt;Cal Henderson&lt;/a&gt;. I had several ideas for things to address, but aside from the session description I intentionally said very little about my talk publicly. This, of course, lead to some interesting &lt;a href="http://dc2009.drupalcon.org/news/100-hot-sessions-tentative-schedule#comment-1644"&gt;speculation&lt;/a&gt; and &lt;a href="http://dc2009.drupalcon.org/session/why-i-hate-drupal#comment-752"&gt;negative feedback&lt;/a&gt;. All part of the plan.&lt;/p&gt;

&lt;p&gt;As it turned out, I was not lynched and nothing rotten was thrown.&lt;/p&gt;

&lt;p&gt;What I was &lt;em&gt;not&lt;/em&gt; expecting (and what the video doesn't capture), though, was all of the interesting discussion that followed. I was overwhelmed by the positive response and the number of people who agreed with several of the points I tried to make:&lt;/p&gt;

&lt;p&gt;Drupal is not a product. To grow into a "movement", we should focus on becoming a better platform, adopt some better practices around development, be a better framework, and create more space for the creation of "products" (install profiles, etc) on top.&lt;/p&gt;

&lt;p&gt;What do you think? How to we "fix" this project?&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/xhLemYtX-Zk" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/why-i-hate-drupal</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[DrupalCon is Coming with lots of OpenID]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/9R6hQ1Rl9Ow/drupalcon-coming-lots-openid" />
    <updated>2009-02-27T00:00:00-05:00</updated>
    <id>http://walkah.net/blog/walkah/drupalcon-is-coming-with-lots-of-openid</id>
    <content type="html">&lt;p&gt;In just a few days, most of the &lt;a href="http://drupal.org/"&gt;drupal community&lt;/a&gt; will be headed to Washington, DC for &lt;a href="http://dc2009.drupalcon.org/"&gt;DrupalCon&lt;/a&gt;. As the conference draws closer, I always get excited to see friends I don't get to see and share exciting ideas, but this time there is a lot of growing interest and activity around &lt;a href="http://openid.net/"&gt;OpenID&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;As has become a bit of a tradition, I'll be giving my 4th &lt;a href="http://dc2009.drupalcon.org/session/openid-drupal-and-open-web"&gt;OpenID talk&lt;/a&gt;. This year, I'm hoping to focus a bit on the exciting new developments from the OpenID community and looking at some of the things being built on top of OpenID (like the &lt;a href="http://www.readwriteweb.com/archives/comcast_property_sees_92_success_rate_openid.php"&gt;OpenID/OAuth hybrid model&lt;/a&gt; and the &lt;a href="http://diso-project.org/"&gt;DiSo project&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Also, &lt;a href="http://factoryjoe.com/"&gt;Chris Messina&lt;/a&gt; will be one of the keynote presenters - also talking about &lt;a href="http://dc2009.drupalcon.org/node/4222"&gt;online identity&lt;/a&gt;. We had Chris on the &lt;a href="http://www.lullabot.com/audiocast/podcast-71-chris-messina-and-open-identity"&gt;lullabot podcast&lt;/a&gt; this week - be sure to check it out!&lt;/p&gt;

&lt;p&gt;Finally, for those of you coming to DC - I'm going to round up interested parties on Saturday for an &lt;a href="http://groups.drupal.org/node/19529"&gt;OpenID code sprint&lt;/a&gt;. Hope to see you there!&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/9R6hQ1Rl9Ow" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/drupalcon-coming-lots-openid</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[image module: end of an era]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/TdQhg5k91Jg/image-module-end-era" />
    <updated>2009-01-30T00:00:00-05:00</updated>
    <id>http://walkah.net/blog/walkah/image-module-end-of-an-era</id>
    <content type="html">&lt;p&gt;A few weeks ago, I very quietly made a (personally) significant move in my Drupal life. I "officially" transferred the project ownership of the &lt;a href="http://drupal.org/project/image"&gt;drupal image module&lt;/a&gt; to &lt;a href="http://drupal.org/user/54136"&gt;Daniel "sun" Kudwien&lt;/a&gt;. Truth be told, I haven't been the primary maintainer of the module for over a year. That job has been admirably handled by &lt;a href="http://drupal.org/user/34869"&gt;drewish&lt;/a&gt;. However, both drewish and I have a lot else on our plates and one of Drupal's &lt;a href="http://drupal.org/project/usage"&gt;most used&lt;/a&gt; modules has not gotten the focused attention it deserves.&lt;/p&gt;

&lt;p&gt;Now, as Angie will &lt;a href="http://webchick.net/contributor-spotlight/daniel-kudwien"&gt;tell you&lt;/a&gt;, Daniel is a fantastic Drupal contributor - worthy of the praise he receives. But, I'd like to give a personal shout out: he has helped to take the &lt;a href="http://drupal.org/project/issues/image"&gt;image issue queue&lt;/a&gt; from over 12 pages long down to 3.&lt;/p&gt;

&lt;p&gt;Nice work, sun. The community thanks you :-)&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/TdQhg5k91Jg" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/image-module-end-era</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[happy 8th birthday, drupal!]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/4cZF-PIAz68/happy-8th-birthday-drupal" />
    <updated>2009-01-15T00:00:00-05:00</updated>
    <id>http://walkah.net/blog/walkah/happy-8th-birthday-drupal</id>
    <content type="html">&lt;p&gt;Man, we're getting old!&lt;/p&gt;

&lt;p&gt;Today (January 15th) is the 8th anniversary of the day Drupal 1.0 was released. Although &lt;a href="http://buytaert.net/"&gt;Dries&lt;/a&gt; had no idea at the time - it was a move that would not only change his life, but mine too...&lt;/p&gt;

&lt;p&gt;January 2009 also marks the 5th anniversary of my starting to work on Drupal full time (after a few years of "hobby" involvement). My first project (at the time, actually a re-launch) still stands as one of my favourites: http://www.terminus1525.ca/ . Since then, Drupal has defined my career: from co-founding &lt;a href="http://www.bryght.com/"&gt;Bryght&lt;/a&gt; to my current life as a &lt;a href="http://www.lullabot.com/"&gt;Lullabot&lt;/a&gt;. The community is home to some of &lt;a href="http://www.lullabot.com/about/team"&gt;my best friends&lt;/a&gt; and people &lt;a href="http://www.lizakindred.com/"&gt;I love&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Five years - full-time. No wonder &lt;a href="http://dc2009.drupalcon.org/session/why-i-hate-drupal"&gt;I feel old&lt;/a&gt;.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/4cZF-PIAz68" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/happy-8th-birthday-drupal</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Using Drupal or Look, Ma, I'm on Amazon!]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/-UKJ4lzj0nk/using-drupal-or-look-ma-i039m-amazon" />
    <updated>2009-01-09T00:00:00-05:00</updated>
    <id>http://walkah.net/blog/walkah/using-drupal-or-look-ma-im-on-amazon</id>
    <content type="html">&lt;p&gt;&lt;a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.com%2Fo%2FASIN%2F0596515804&amp;amp;tag=drupal0a-20&amp;amp;link"&gt;&lt;img src="http://walkah.net/sites/walkah.net/files/using_drupal.png" alt="Using Drupal" /&gt;&lt;/a&gt;In my usual heard-it-hear-last style... I was out to dinner this week with my friend, &lt;a href="http://www.communitybandwidth.ca/"&gt;Phillip&lt;/a&gt;, who was apparently unaware that &lt;a href="http://www.lullabot.com/"&gt;Lullabot&lt;/a&gt; had written a book(?!?) and I was one of the authors.&lt;/p&gt;

&lt;p&gt;Well, for most of last year (plus) most of us over at lullabot spent sleepless nights putting together &lt;a href="http://www.usingdrupal.com/"&gt;Using Drupal&lt;/a&gt;. It went to press in early December, and is indeed &lt;a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;amp;location=http%3A%2F%2Fwww.amazon.com%2Fo%2FASIN%2F0596515804&amp;amp;tag=drupal0a-20&amp;amp;link"&gt;on amazon&lt;/a&gt; and even &lt;a href="http://flickr.com/photos/add1sun/3168949626/"&gt;on shelves&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I'm personally pretty proud of the book. It's the first Drupal book by &lt;a href="http://www.oreilly.com/"&gt;O'Reilly&lt;/a&gt; and the first to take a comprehensive look at building a "real" Drupal site with heavy emphasis on CCK, Views and the rest of drupal contrib.&lt;/p&gt;

&lt;p&gt;I have to say, too, that O'Reilly was a lot of fun to work with. There's a reason they have a reputation for having the top tech books. If you missed it, @eaton and I did a &lt;a href="http://www.youtube.com/watch?v=AZ04xTyx6yo"&gt;live webcast&lt;/a&gt; with O'Reilly which was their biggest ever. Kool-aid for everyone!&lt;/p&gt;

&lt;p&gt;If you don't have a copy yet, what's wrong with you? ;-)&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/-UKJ4lzj0nk" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/using-drupal-or-look-ma-i039m-amazon</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Done it With Drupal - Back to Life]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/CYKHtAwdZhM/done-it-drupal-back-life" />
    <updated>2008-12-15T00:00:00-05:00</updated>
    <id>http://walkah.net/blog/walkah/done-it-with-drupal-back-to-life</id>
    <content type="html">&lt;p&gt;My last several weeks (months?) have been pretty darn hectic preparing for &lt;a href="http://www.doitwithdrupal.com/"&gt;Do It With Drupal&lt;/a&gt;. Well, we've done it with Drupal - and it was awesome! It was really fun bringing the whole &lt;a href="http://www.lullabot.com/"&gt;Lullabot&lt;/a&gt; team to make it happen. The speakers were awesome, the venue was great and the people rocked.&lt;/p&gt;

&lt;p&gt;For those of you who missed it, the event was pretty well documented via &lt;a href="http://search.twitter.com/search?q=%23diwd"&gt;the twitter backchannel&lt;/a&gt; and &lt;a href="http://flickr.com/photos/tags/diwd"&gt;flickr photos&lt;/a&gt;. Thanks everyone!&lt;/p&gt;

&lt;p&gt;I'm back home now... oh - and I moved! I'm now living in a beautiful house at St. Clair and Dufferin.&lt;/p&gt;

&lt;p&gt;So it's time to settle in for the holiday season, finish getting unpacked and settled and enjoy a little breathing room. To kick it off, I'm heading to &lt;a href="http://hohoto.ca/"&gt;#hohoto&lt;/a&gt; tonight. Looking forward to partying with my local Toronto people!&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/CYKHtAwdZhM" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/done-it-drupal-back-life</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Drupal Theme Workshop in Toronto]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/-BJ9OCQ5Q6o/drupal-theme-workshop-toronto" />
    <updated>2008-11-11T00:00:00-05:00</updated>
    <id>http://walkah.net/blog/walkah/drupal-theme-workshop-in-toronto</id>
    <content type="html">&lt;p&gt;I'm excited to announce that members of the &lt;a href="http://groups.drupal.org/"&gt;Toronto Drupal User Group&lt;/a&gt; have put together an exciting one day, free workshop on &lt;a href="http://drupal.org/"&gt;Drupal&lt;/a&gt; theming.&lt;/p&gt;

&lt;p&gt;I will be there to present in the afternoon. Please come out and say "hi". Also, &lt;a href="http://www.lullabot.com/"&gt;Lullabot&lt;/a&gt; will be sponsoring lunch (thanks guys!).&lt;/p&gt;

&lt;p&gt;It seems like Toronto has gone Drupal crazy lately. I am &lt;em&gt;loving&lt;/em&gt; all the local events!&lt;/p&gt;

&lt;p&gt;The event takes place starting at 10am on &lt;strong&gt;November 22nd, 2008&lt;/strong&gt; at the &lt;a href="http://socialinnovation.ca"&gt;Centre for Social Innovation&lt;/a&gt;. Be sure to check &lt;a href="http://themeworkshop.avatarinteractive.ca/"&gt;the website&lt;/a&gt; for full details. See you there!&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/-BJ9OCQ5Q6o" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/drupal-theme-workshop-toronto</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[VectorLover Drupal theme]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/W-1OToRCxnU/vectorlover-drupal-theme" />
    <updated>2008-10-31T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/vectorlover-drupal-theme</id>
    <content type="html">&lt;p&gt;&lt;img src="http://walkah.net/sites/walkah.net/files/vectorlover-thumb.png" alt="vectorlover" /&gt;Earlier this week I gave a free workshop for &lt;a href="http://workshops.phug.ca/"&gt;PHUG&lt;/a&gt; here in Toronto. We had a lot of fun and our scheduled one hour turned into 3 or 4 (oops!). I had a lot of fun with the group and the night received &lt;a href="http://phug.ca/workshops/index.php/drupal/drupal-workshop-rocked"&gt;good reviews&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;During the evening, we took a pure HTML and CSS design and converted it into a Drupal theme. The design is called &lt;a href="http://www.styleshout.com/templates/preview/VectorLover1-0/index.html"&gt;VectorLover&lt;/a&gt; - freely available from &lt;a href="http://www.styleshout.com/"&gt;styleshout.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I took some time this week to clean up our work, and am making "VectorLover" available for download &lt;a href="http://walkah.net/sites/walkah.net/files/vectorlover.zip"&gt;here&lt;/a&gt;. Please &lt;a href="http://walkah.net/contact"&gt;contact me&lt;/a&gt; if you have any questions or comments. Enjoy!&lt;/p&gt;

&lt;p&gt;(Note: Due to the &lt;a href="http://www.styleshout.com/about.php#license"&gt;license&lt;/a&gt;, this theme will not appear in the Drupal repository. Sorry!)&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/W-1OToRCxnU" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/vectorlover-drupal-theme</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[PHUG Workshop: Drupal Theming in an Hour]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/-PfXhElKhm4/phug-workshop-drupal-theming-hour" />
    <updated>2008-10-22T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/phug-workshop-drupal-theming-in-an-hour</id>
    <content type="html">&lt;p&gt;October is a busy speaking month - but I'm excited to say I've been asked back to present another (free) &lt;a href="http://phug.ca/workshops/"&gt;PHUG Workshop&lt;/a&gt; on Drupal.&lt;/p&gt;




&lt;p&gt;&lt;a href="http://workshops.phug.ca/"&gt;&lt;img src="http://walkah.net/sites/walkah.net/files/phugworks_news.png" alt="PHUG Workshops" /&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Back in April, I did an &lt;a href="http://walkah.net/blog/walkah/phug-free-drupal-workshop"&gt;Intro Workshop&lt;/a&gt;. This time, I'll be showing off theming in Drupal 6:&lt;/p&gt;




&lt;blockquote&gt;In this workshop, we will show the process of taking an HTML &amp; CSS design and converting it into a fully working Drupal theme. Along the way, we’ll look at the 3 main aspects of Drupal theming, some best practices and a few tricks. Drupal 6 makes the whole process easier than ever, so get started making your Drupal site look not like a Drupal site!&lt;/blockquote&gt;




&lt;p&gt;The workshop is &lt;strong&gt;Tuesday Oct 28 2008 @ 630pm&lt;/strong&gt; at Seneca @ York Campus in room 2112. See the &lt;a href="http://phug.ca/workshops/index.php/freeworkshops"&gt;workshop announcement&lt;/a&gt; for full details.&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/-PfXhElKhm4" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/phug-workshop-drupal-theming-hour</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[FSOSS is back for 2008!]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/M-NHWyIbvcY/fsoss-back-2008" />
    <updated>2008-10-17T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/fsoss-is-back-for-2008</id>
    <content type="html">&lt;p&gt;&lt;a href="http://fsoss.senecac.on.ca/2008/"&gt;&lt;img src="http://walkah.net/sites/walkah.net/files/fsoss-logo.png" alt="FSOSS 2008" style="margin: 0pt 10px 5px 0pt; float: left;"/&gt;&lt;/a&gt;One of my favorite annual free software conferences is back again! The 7th annual &lt;a href="http://fsoss.senecac.on.ca/2008/"&gt;Free Software and Open Source Symposium&lt;/a&gt; is happening next week, &lt;strong&gt;October 23rd &amp;amp; 24th&lt;/strong&gt;. I've spoken at this event 3 years in a row - it's a great event and local in Toronto!&lt;/p&gt;




&lt;p&gt;I'll be running 2 sessions again this year:&lt;/p&gt;


&lt;ul&gt;
&lt;li&gt;&lt;a href="http://fsoss.senecac.on.ca/2008/?q=node/67"&gt;Drupal and Views 2: Powerful Websites in Zero Lines of Code&lt;/a&gt;: This workshop will cover some of the power available to Drupal site builders thanks to the awesome new &lt;a href="http://drupal.org/project/views"&gt;Views 2&lt;/a&gt; module. 2 hours, 1 site, 0 lines of code. Rock!&lt;/li&gt;
&lt;li&gt;&lt;a href="http://fsoss.senecac.on.ca/2008/?q=node/53"&gt;Using Drupal: Community Powered Code to Run Your Site&lt;/a&gt;: This year's presentation will focus on the secret weapon of Drupal: the community. Drupal's success comes down to the power of the people behind it!&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Check out the &lt;a href="http://fsoss.senecac.on.ca/2008/?q=node/39"&gt;full schedule&lt;/a&gt; and &lt;a href="https://matrix.senecac.on.ca:8443/fsoss/fsoss/register2008.php"&gt;register now!&lt;/a&gt;. Hope to see you there!&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/M-NHWyIbvcY" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/fsoss-back-2008</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Drupal Meetup in Waterloo]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/fVgpRxbo8xI/drupal-meetup-waterloo" />
    <updated>2008-10-02T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/drupal-meetup-in-waterloo</id>
    <content type="html">&lt;p&gt;As &lt;a href="http://baheyeldin.com/technology/drupal/waterloo-region-drupal-users-group-friday-october-3-james-walker-module-development.html"&gt;Khalid announced&lt;/a&gt;, I'll be heading out to Waterloo, ON tomorrow evening to give an introduction to module development with Drupal. Khalid has asked me to brush one of my old favourites: &lt;a href="http://drupal.org/node/86528"&gt;Pants module&lt;/a&gt;. It's a nice, fun way to get your feet wet with module development.&lt;/p&gt;

&lt;p&gt;It will be my first visit out to the (relatively) new &lt;a href="http://groups.drupal.org/waterloo-region"&gt;Waterloo Drupal Group&lt;/a&gt;. I'm looking forward to seeing everyone and hopefully meeting some new faces!&lt;/p&gt;

&lt;p&gt;For full details on the event, see &lt;a href="http://groups.drupal.org/node/14621"&gt;this post&lt;/a&gt; and sign up!&lt;/p&gt;

&lt;p&gt;For those of you here in Toronto who can't make the trip, I hope to see you at next week's &lt;a href="http://groups.drupal.org/node/15513"&gt;Toronto meeting&lt;/a&gt;.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/fVgpRxbo8xI" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/drupal-meetup-waterloo</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[drupal at sxsw]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/7Xz8yw1SADg/drupal-sxsw" />
    <updated>2008-08-15T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/drupal-at-sxsw</id>
    <content type="html">&lt;p&gt;&lt;img src="http://walkah.net/sites/walkah.net/files/sxsw2009ia.gif" alt="SXSW Interactive" /&gt;I'm certainly not &lt;a href="http://www.palantir.net/blog/vote-drupal-sxsw"&gt;the first&lt;/a&gt; &lt;a href="http://raincitystudios.com/blogs-and-pods/daveo/sxsw-interactive-panel-picker-open-vote-now"&gt;to post&lt;/a&gt; about this, but it looks like Drupal will have a strong showing at &lt;a href="http://sxsw.com/interactive"&gt;SXSW Interactive 2009&lt;/a&gt;. There's even a &lt;a href="http://drupal.org/node/294523"&gt;front page post&lt;/a&gt; on drupal.org to bring awareness. A group of us from &lt;a href="http://www.lullabot.com/"&gt;Lullabot&lt;/a&gt; went last year and we had an absolute blast. If you haven't been, sign up now!&lt;/p&gt;


&lt;p&gt;The &lt;a href="http://panelpicker.sxsw.com/"&gt;panel picker&lt;/a&gt; is live and I suggest you *all* vote for &lt;a href="http://panelpicker.sxsw.com/ideas/view/1726"&gt;Drupal with Its Pants Off&lt;/a&gt; (you know you wanna). What's really exciting, though, is the long list of &lt;a href="http://panelpicker.sxsw.com/ideas/index/3/q:drupal"&gt;other Drupal panels&lt;/a&gt; on the list.&lt;/p&gt;


&lt;p&gt;Looks like there'll be lots of Drupal in Austin next March... even http://sxsw.com/ is Drupal powered!&lt;/p&gt;


&lt;p&gt;My hotel is booked. See you there!&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/7Xz8yw1SADg" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/drupal-sxsw</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[DrupalCon Szeged is coming]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/BMXsw3aRHSw/drupalcon-szeged-coming" />
    <updated>2008-08-14T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/drupalcon-szeged-is-coming</id>
    <content type="html">&lt;p&gt;&lt;a href="http://szeged2008.drupalcon.org/"&gt;&lt;img src="http://walkah.net/sites/walkah.net/files/FCS8_030_Dcon_static_180x150_0.jpg" alt="DrupalCon Szeged 2008" /&gt;&lt;/a&gt;Sadly, I won't be there... but you should be!&lt;/p&gt;


&lt;p&gt;I have to sit this one out due to scheduling conflicts, but the &lt;a href="http://szeged2008.drupalcon.org/program/schedule"&gt;posted schedule&lt;/a&gt; looks really good. Of course, the &lt;a href="http://www.lullabot.com/"&gt;Lullabot&lt;/a&gt; team members going are all over the schedule. &lt;em&gt;Everyone&lt;/em&gt; should attend &lt;a href="http://webchick.net/"&gt;webchick's&lt;/a&gt; &lt;a href="http://szeged2008.drupalcon.org/program/sessions/testing-part-1-intro-testing"&gt;intro to testing&lt;/a&gt; and be sure to attend the &lt;a href="http://szeged2008.drupalcon.org/program/sessions/testing-part-2-awesome-testing-party"&gt;testing party&lt;/a&gt; - she has promised &lt;a href="http://webchick.net/awesome-testing-party"&gt;chocolate&lt;/a&gt;!&lt;/p&gt;


&lt;p&gt;Scanning through the schedule, it's nice to see that fellow &lt;a href="http://groups.drupal.org/toronto"&gt;Toronto Drupal Users Group&lt;/a&gt; member, &lt;a href="http://emmajane.net/"&gt;Emma Jane&lt;/a&gt;, will be giving a presentation on Drupal for &lt;a href="http://szeged2008.drupalcon.org/program/sessions/open-small-business"&gt;small business networks&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;So, while &lt;a href="http://www.flickr.com/photos/barrypretsell/1413417675/"&gt;my socks&lt;/a&gt; and I will only be there in spirit, you should be there in person. &lt;a href="http://szeged2008.drupalcon.org/register"&gt;Register now&lt;/a&gt;!&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/BMXsw3aRHSw" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/drupalcon-szeged-coming</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[Now running Drupal 6 and Views 2]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/BV7ZTKzJVCo/now-running-drupal-6-and-views-2" />
    <updated>2008-08-11T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/now-running-drupal-6-and-views-2</id>
    <content type="html">&lt;p&gt;I finally "re-launched" my blog last night, after tinkering for a few months. I'm now running (at the time of writing) &lt;a href="http://drupal.org/"&gt;Drupal 6.3&lt;/a&gt;. More interesting, however, is that my site is almost entirely powered now by &lt;a href="http://drupal.org/project/views"&gt;Views 2&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The biggest visible change is the home page. Inspired in part by &lt;a href="http://mezzoblue.com/"&gt;Dave Shea's&lt;/a&gt; lovely blog, I wanted to make my front page shorter. So now, I'm displaying the latest full post, with 9 previous titles only. This is all done with views (using the awesome new "attachment" display type).&lt;/p&gt;

&lt;p&gt;The other interesting bit is that I'm using the latest version of &lt;a href="http://drupal.org/project/twitter"&gt;twitter module&lt;/a&gt; so that the "twitter" block on the right is actually views2 powered as well (and gets cached).&lt;/p&gt;

&lt;p&gt;I'm sure I'll keep tweaking, but I dig it. How about you?&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/BV7ZTKzJVCo" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/now-running-drupal-6-and-views-2</feedburner:origLink></entry>
  
  <entry>
    <title type="html"><![CDATA[XRDS-Simple for Drupal]]></title>
    <link href="http://feedproxy.google.com/~r/walkah/drupal/~3/0Mf3DvDHZt8/xrdssimple-drupal" />
    <updated>2008-06-04T00:00:00-04:00</updated>
    <id>http://walkah.net/blog/walkah/xrds-simple-for-drupal</id>
    <content type="html">&lt;p&gt;Last night I put together a simple module for Drupal to implement the &lt;a href="http://xrds-simple.net/core/1.0/"&gt;XRDS-Simple&lt;/a&gt; spec. It is based loosely on the &lt;a href="http://singpolyma.net/plugins/xrds-simple/"&gt;xrds-simple wordpress plugin&lt;/a&gt;.&lt;/p&gt;




&lt;p&gt;XRDS-Simple is an important piece of the &lt;a href="http://diso-project.org/"&gt;DiSo project&lt;/a&gt;. From &lt;a href="http://xrds-simple.net/core/1.0/"&gt;the XRDS-Simple spec:&lt;/a&gt;:&lt;/p&gt;


&lt;blockquote&gt;XRDS-Simple provides a format and workflow for the discovery of resources metadata, and other linked resources. As web services continue to grow, applications utilize a wider range of web services and resources across multiple providers. XRDS-Simple allows providers to document their resources in a machine-readable way, which can be automatically discovered by consumer applications.&lt;/blockquote&gt;


&lt;p&gt;So, check it out: http://drupal.org/project/xrds_simple .&lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/walkah/drupal/~4/0Mf3DvDHZt8" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://walkah.net/blog/walkah/xrdssimple-drupal</feedburner:origLink></entry>
  
</feed>

