-- MySQL dump 10.11
--
-- Host: localhost    Database: duhagrou_wp1
-- ------------------------------------------------------
-- Server version	5.0.77

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL auto_increment,
  `comment_post_ID` int(11) NOT NULL default '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL default '',
  `comment_author_url` varchar(200) NOT NULL default '',
  `comment_author_IP` varchar(100) NOT NULL default '',
  `comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL default '0',
  `comment_approved` varchar(20) NOT NULL default '1',
  `comment_agent` varchar(255) NOT NULL default '',
  `comment_type` varchar(20) NOT NULL default '',
  `comment_parent` bigint(20) NOT NULL default '0',
  `user_id` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','http://wordpress.org/','','2008-09-29 16:29:22','2008-09-29 21:29:22','Hi, this is a comment.<br />To delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) NOT NULL auto_increment,
  `link_url` varchar(255) NOT NULL default '',
  `link_name` varchar(255) NOT NULL default '',
  `link_image` varchar(255) NOT NULL default '',
  `link_target` varchar(25) NOT NULL default '',
  `link_category` bigint(20) NOT NULL default '0',
  `link_description` varchar(255) NOT NULL default '',
  `link_visible` varchar(20) NOT NULL default 'Y',
  `link_owner` int(11) NOT NULL default '1',
  `link_rating` int(11) NOT NULL default '0',
  `link_updated` datetime NOT NULL default '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL default '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`link_id`),
  KEY `link_category` (`link_category`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) NOT NULL auto_increment,
  `blog_id` int(11) NOT NULL default '0',
  `option_name` varchar(64) NOT NULL default '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL default 'yes',
  PRIMARY KEY  (`option_id`,`blog_id`,`option_name`),
  KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=111 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,0,'siteurl','http://duha-group.net/demo','yes'),(2,0,'blogname','Duha Group','yes'),(3,0,'blogdescription','Creative Generation','yes'),(4,0,'users_can_register','','yes'),(5,0,'admin_email','duhagemilang.enterprise@gmail.com','yes'),(6,0,'start_of_week','1','yes'),(7,0,'use_balanceTags','0','yes'),(8,0,'use_smilies','1','yes'),(9,0,'require_name_email','1','yes'),(10,0,'comments_notify','1','yes'),(11,0,'posts_per_rss','10','yes'),(12,0,'rss_excerpt_length','50','yes'),(13,0,'rss_use_excerpt','0','yes'),(14,0,'mailserver_url','mail.example.com','yes'),(15,0,'mailserver_login','login@example.com','yes'),(16,0,'mailserver_pass','password','yes'),(17,0,'mailserver_port','110','yes'),(18,0,'default_category','1','yes'),(19,0,'default_comment_status','open','yes'),(20,0,'default_ping_status','open','yes'),(21,0,'default_pingback_flag','1','yes'),(22,0,'default_post_edit_rows','10','yes'),(23,0,'posts_per_page','10','yes'),(24,0,'what_to_show','posts','yes'),(25,0,'date_format','F j, Y','yes'),(26,0,'time_format','g:i a','yes'),(27,0,'links_updated_date_format','F j, Y g:i a','yes'),(28,0,'links_recently_updated_prepend','<em>','yes'),(29,0,'links_recently_updated_append','</em>','yes'),(30,0,'links_recently_updated_time','120','yes'),(31,0,'comment_moderation','0','yes'),(32,0,'moderation_notify','1','yes'),(33,0,'permalink_structure','','yes'),(34,0,'gzipcompression','0','yes'),(35,0,'hack_file','0','yes'),(36,0,'blog_charset','UTF-8','yes'),(37,0,'moderation_keys','','no'),(38,0,'active_plugins','a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}','yes'),(39,0,'home','http://duha-group.net/demo','yes'),(40,0,'category_base','','yes'),(41,0,'ping_sites','http://rpc.pingomatic.com/','yes'),(42,0,'advanced_edit','0','yes'),(43,0,'comment_max_links','2','yes'),(44,0,'gmt_offset','-5','yes'),(45,0,'default_email_category','1','yes'),(46,0,'recently_edited','a:2:{i:0;s:30:\"/themes/themza_wp_01/style.css\";i:1;s:0:\"\";}','no'),(47,0,'use_linksupdate','0','yes'),(48,0,'template','themza_wp_01','yes'),(49,0,'stylesheet','themza_wp_01','yes'),(50,0,'comment_whitelist','1','yes'),(51,0,'page_uris','','yes'),(52,0,'blacklist_keys','','no'),(53,0,'comment_registration','0','yes'),(54,0,'rss_language','en','yes'),(55,0,'html_type','text/html','yes'),(56,0,'use_trackback','0','yes'),(57,0,'default_role','subscriber','yes'),(58,0,'db_version','9872','yes'),(59,0,'uploads_use_yearmonth_folders','1','yes'),(60,0,'upload_path','wp-content/uploads','yes'),(61,0,'random_seed','93d1fbd74fd764f2bf4b3224e18c7659','yes'),(62,0,'secret','aaEp)E$5KtEXkScNJu1nZFcM)SLHmCE4or8$8zzm)iVQvh8P8IXrt^pKicPgWUB7','yes'),(63,0,'blog_public','1','yes'),(64,0,'default_link_category','2','yes'),(65,0,'show_on_front','posts','yes'),(66,0,'tag_base','','yes'),(67,0,'show_avatars','1','yes'),(68,0,'avatar_rating','G','yes'),(69,0,'upload_url_path','','yes'),(70,0,'thumbnail_size_w','150','yes'),(71,0,'thumbnail_size_h','150','yes'),(72,0,'thumbnail_crop','1','yes'),(73,0,'medium_size_w','300','yes'),(74,0,'medium_size_h','300','yes'),(75,0,'avatar_default','mystery','yes'),(76,0,'enable_app','0','yes'),(77,0,'enable_xmlrpc','0','yes'),(78,0,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:23:\"Administrator|User role\";s:12:\"capabilities\";a:51:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:16:\"Editor|User role\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:16:\"Author|User role\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:21:\"Contributor|User role\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:20:\"Subscriber|User role\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(79,0,'cron','a:3:{i:1268208106;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1268213398;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}s:7:\"version\";i:2;}','yes'),(80,0,'auth_salt','C$atq)WHbf&^','yes'),(81,0,'update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":5:{s:8:\"response\";s:7:\"upgrade\";s:3:\"url\";s:30:\"http://wordpress.org/download/\";s:7:\"package\";s:40:\"http://wordpress.org/wordpress-2.9.2.zip\";s:7:\"current\";s:5:\"2.9.2\";s:6:\"locale\";s:5:\"en_US\";}}s:12:\"last_checked\";i:1268190041;s:15:\"version_checked\";s:3:\"2.7\";}','yes'),(82,0,'doing_cron','0','yes'),(83,0,'update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":5:{s:8:\"response\";s:7:\"upgrade\";s:3:\"url\";s:30:\"http://wordpress.org/download/\";s:7:\"package\";s:40:\"http://wordpress.org/wordpress-2.9.2.zip\";s:7:\"current\";s:5:\"2.9.2\";s:6:\"locale\";s:5:\"en_US\";}}s:12:\"last_checked\";i:1268190041;s:15:\"version_checked\";s:3:\"2.7\";}','yes'),(84,0,'update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1268190043;s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:5:\"2.2.3\";s:9:\"hello.php\";s:3:\"1.5\";}s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:11:\"new_version\";s:5:\"2.2.7\";s:3:\"url\";s:44:\"http://wordpress.org/extend/plugins/akismet/\";s:7:\"package\";s:49:\"http://downloads.wordpress.org/plugin/akismet.zip\";}}}','yes'),(85,0,'sidebars_widgets','a:1:{s:13:\"array_version\";i:3;}','yes'),(87,0,'logged_in_salt','MecZEXO$nzA*','yes'),(88,0,'dashboard_widget_options','a:3:{s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:26:\"http://duha-group.net/demo\";s:4:\"link\";s:108:\"http://blogsearch.google.com/blogsearch?hl=en&scoring=d&partner=wordpress&q=link:http://duha-group.net/demo/\";s:3:\"url\";s:141:\"http://blogsearch.google.com/blogsearch_feeds?hl=en&scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://duha-group.net/demo/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:33:\"http://wordpress.org/development/\";s:3:\"url\";s:38:\"http://wordpress.org/development/feed/\";s:5:\"title\";s:26:\"WordPress Development Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:4:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;}}','yes'),(104,0,'current_theme','themza_wp_01','yes'),(90,0,'rss_2c54704981169c11d3a61f51e1af0fe4','O:9:\"magpierss\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:0:{}s:7:\"channel\";a:4:{s:5:\"title\";s:66:\"link:http://duha-group.net/demo/ - Google Blog Search\";s:4:\"link\";s:124:\"http://blogsearch.google.com/blogsearch?hl=en&scoring=d&ie=ISO-8859-1&num=10&q=link:http://duha-group.net/demo/\";s:11:\"description\";s:100:\"Your search - <b>link:http://duha-group.net/demo/</b> - did not match any documents.   \";s:7:\"tagline\";s:100:\"Your search - <b>link:http://duha-group.net/demo/</b> - did not match any documents.   \";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}','no'),(91,0,'rss_2c54704981169c11d3a61f51e1af0fe4_ts','1222724764','no'),(92,0,'rss_a5420c83891a9c88ad2a4f04584a5efc','O:9:\"MagpieRSS\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:15:{i:0;a:7:{s:5:\"title\";s:33:\"uberdose on \"All in One SEO Pack\"\";s:4:\"link\";s:65:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753\";s:7:\"pubdate\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:8:\"uberdose\";}s:4:\"guid\";s:40:\"753@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:92:\"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).\";s:7:\"summary\";s:92:\"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).\";}i:1;a:7:{s:5:\"title\";s:17:\"matt on \"Akismet\"\";s:4:\"link\";s:52:\"http://wordpress.org/extend/plugins/akismet/#post-15\";s:7:\"pubdate\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"matt\";}s:4:\"guid\";s:39:\"15@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"summary\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";}i:2;a:7:{s:5:\"title\";s:30:\"arnee on \"Google XML Sitemaps\"\";s:4:\"link\";s:70:\"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132\";s:7:\"pubdate\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:5:\"arnee\";}s:4:\"guid\";s:40:\"132@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:87:\"This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPress blog.\";s:7:\"summary\";s:87:\"This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPress blog.\";}i:3;a:7:{s:5:\"title\";s:32:\"takayukister on \"Contact Form 7\"\";s:4:\"link\";s:61:\"http://wordpress.org/extend/plugins/contact-form-7/#post-2141\";s:7:\"pubdate\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"takayukister\";}s:4:\"guid\";s:41:\"2141@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"summary\";s:54:\"Just another contact form plugin. Simple but flexible.\";}i:4;a:7:{s:5:\"title\";s:36:\"flipper on \"Page Flip Image Gallery\"\";s:4:\"link\";s:70:\"http://wordpress.org/extend/plugins/page-flip-image-gallery/#post-7590\";s:7:\"pubdate\";s:31:\"Fri, 07 Nov 2008 06:44:26 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"flipper\";}s:4:\"guid\";s:41:\"7590@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:108:\"FlippingBook Wordpress Gallery plugin helps you to create Image Gallery with Page Flip effects on your blog.\";s:7:\"summary\";s:108:\"FlippingBook Wordpress Gallery plugin helps you to create Image Gallery with Page Flip effects on your blog.\";}i:5;a:7:{s:5:\"title\";s:25:\"joostdevalk on \"Sociable\"\";s:4:\"link\";s:55:\"http://wordpress.org/extend/plugins/sociable/#post-2865\";s:7:\"pubdate\";s:31:\"Thu, 31 Jan 2008 11:36:17 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"joostdevalk\";}s:4:\"guid\";s:41:\"2865@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:133:\"Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites. WordPress 2.6 or above required!\";s:7:\"summary\";s:133:\"Automatically add links on your posts, pages and RSS feed to your favorite social bookmarking sites. WordPress 2.6 or above required!\";}i:6;a:7:{s:5:\"title\";s:29:\"alexrabe on \"NextGEN Gallery\"\";s:4:\"link\";s:62:\"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169\";s:7:\"pubdate\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:8:\"alexrabe\";}s:4:\"guid\";s:41:\"1169@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:102:\"NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with a Flash slideshow option.\";s:7:\"summary\";s:102:\"NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with a Flash slideshow option.\";}i:7;a:7:{s:5:\"title\";s:34:\"WebGeek on \"WP-SpamFree Anti-Spam\"\";s:4:\"link\";s:58:\"http://wordpress.org/extend/plugins/wp-spamfree/#post-2654\";s:7:\"pubdate\";s:31:\"Sat, 15 Dec 2007 12:10:04 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"WebGeek\";}s:4:\"guid\";s:41:\"2654@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:134:\"Powerful anti-spam plugin that eliminates blog comment spam. Finally, you can enjoy a spam-free WordPress blog! Includes contact form.\";s:7:\"summary\";s:134:\"Powerful anti-spam plugin that eliminates blog comment spam. Finally, you can enjoy a spam-free WordPress blog! Includes contact form.\";}i:8;a:7:{s:5:\"title\";s:47:\"joostdevalk on \"Google Analytics for WordPress\"\";s:4:\"link\";s:77:\"http://wordpress.org/extend/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"pubdate\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"joostdevalk\";}s:4:\"guid\";s:41:\"2316@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:150:\"The Google Analytics for WordPress plugin automatically tracks and segments all outbound links from within posts, comment author links, links within c\";s:7:\"summary\";s:150:\"The Google Analytics for WordPress plugin automatically tracks and segments all outbound links from within posts, comment author links, links within c\";}i:9;a:7:{s:5:\"title\";s:38:\"hallsofmontezuma on \"WP Security Scan\"\";s:4:\"link\";s:63:\"http://wordpress.org/extend/plugins/wp-security-scan/#post-4986\";s:7:\"pubdate\";s:31:\"Sat, 29 Mar 2008 20:05:44 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:16:\"hallsofmontezuma\";}s:4:\"guid\";s:41:\"4986@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:63:\"Scans your WordPress installation for security vulnerabilities.\";s:7:\"summary\";s:63:\"Scans your WordPress installation for security vulnerabilities.\";}i:10;a:7:{s:5:\"title\";s:35:\"Utkarsh Kukreti on \"Plugin Manager\"\";s:4:\"link\";s:61:\"http://wordpress.org/extend/plugins/plugin-manager/#post-6737\";s:7:\"pubdate\";s:31:\"Fri, 22 Aug 2008 16:11:19 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:15:\"Utkarsh Kukreti\";}s:4:\"guid\";s:41:\"6737@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:129:\"View, download and install plugins from WordPress.org Plugin Database from an AJAX\'ed interface with a single click of the mouse.\";s:7:\"summary\";s:129:\"View, download and install plugins from WordPress.org Plugin Database from an AJAX\'ed interface with a single click of the mouse.\";}i:11;a:7:{s:5:\"title\";s:29:\"andy on \"WordPress.com Stats\"\";s:4:\"link\";s:52:\"http://wordpress.org/extend/plugins/stats/#post-1355\";s:7:\"pubdate\";s:31:\"Sun, 06 May 2007 02:15:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"andy\";}s:4:\"guid\";s:41:\"1355@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:119:\"You can have simple, concise stats with no additional load on your server by plugging into WordPress.com\'s stat system.\";s:7:\"summary\";s:119:\"You can have simple, concise stats with no additional load on your server by plugging into WordPress.com\'s stat system.\";}i:12;a:7:{s:5:\"title\";s:53:\"micropat on \"Add to Any: Share/Bookmark/Email Button\"\";s:4:\"link\";s:56:\"http://wordpress.org/extend/plugins/add-to-any/#post-498\";s:7:\"pubdate\";s:31:\"Sat, 17 Mar 2007 23:08:16 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:8:\"micropat\";}s:4:\"guid\";s:40:\"498@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:147:\"Help readers share, save, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.\";s:7:\"summary\";s:147:\"Help readers share, save, bookmark, and email your posts and pages using any service, such as Facebook, Twitter, Digg, Delicious and over 100 more.\";}i:13;a:7:{s:5:\"title\";s:30:\"weefselkweekje on \"WP-Cumulus\"\";s:4:\"link\";s:57:\"http://wordpress.org/extend/plugins/wp-cumulus/#post-6499\";s:7:\"pubdate\";s:31:\"Thu, 31 Jul 2008 10:00:57 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"weefselkweekje\";}s:4:\"guid\";s:41:\"6499@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:91:\"WP-Cumulus displays your tags and/or categories in 3D by placing them on a rotating sphere.\";s:7:\"summary\";s:91:\"WP-Cumulus displays your tags and/or categories in 3D by placing them on a rotating sphere.\";}i:14;a:7:{s:5:\"title\";s:23:\"jixor on \"Advanced RSS\"\";s:4:\"link\";s:59:\"http://wordpress.org/extend/plugins/advanced-rss/#post-7314\";s:7:\"pubdate\";s:31:\"Mon, 13 Oct 2008 08:01:43 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:5:\"jixor\";}s:4:\"guid\";s:41:\"7314@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:150:\"Create advanced, fully customizable RSS feed widgets. You can use this to\nreplace the built in RSS widget or along side it. It is substantially more\np\";s:7:\"summary\";s:150:\"Create advanced, fully customizable RSS feed widgets. You can use this to\nreplace the built in RSS widget or along side it. It is substantially more\np\";}}s:7:\"channel\";a:6:{s:5:\"title\";s:12:\"Most Popular\";s:4:\"link\";s:36:\"http://wordpress.org/extend/plugins/\";s:11:\"description\";s:12:\"Most Popular\";s:8:\"language\";s:2:\"en\";s:7:\"pubdate\";s:31:\"Mon, 08 Jun 2009 08:21:06 +0000\";s:7:\"tagline\";s:12:\"Most Popular\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}','no'),(93,0,'rss_a5420c83891a9c88ad2a4f04584a5efc_ts','1244448164','no'),(94,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4','O:9:\"MagpieRSS\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:10:{i:0;a:13:{s:5:\"title\";s:33:\"WordPress 2.8 Release Candidate 1\";s:4:\"link\";s:75:\"http://wordpress.org/development/2009/06/wordpress-2-8-release-candidate-1/\";s:8:\"comments\";s:84:\"http://wordpress.org/development/2009/06/wordpress-2-8-release-candidate-1/#comments\";s:7:\"pubdate\";s:31:\"Sun, 07 Jun 2009 23:29:49 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Ryan Boren\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=783\";s:11:\"description\";s:295:\"With Release Candidate 1, we think WordPress 2.8 is ready and complete.  Download it, test it, and tell us what you think.  If you don&#8217;t uncover any bad bugs, 2.8 will be released on Wednesday the 10th.\nIf you&#8217;re interested in what has changed since beta 2, consult the changelog.\n\";s:7:\"content\";a:1:{s:7:\"encoded\";s:505:\"<p>With Release Candidate 1, we think WordPress 2.8 is ready and complete.  <a href=\"http://wordpress.org/wordpress-2.8-RC1.zip\">Download</a> it, test it, and tell us what you think.  If you don&#8217;t uncover any bad bugs, 2.8 will be released on Wednesday the 10th.</p>\n<p>If you&#8217;re interested in what has changed since beta 2, consult the <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=11532&amp;stop_rev=11441&amp;limit=100\">changelog</a>.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:80:\"http://wordpress.org/development/2009/06/wordpress-2-8-release-candidate-1/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"0\";}s:7:\"summary\";s:295:\"With Release Candidate 1, we think WordPress 2.8 is ready and complete.  Download it, test it, and tell us what you think.  If you don&#8217;t uncover any bad bugs, 2.8 will be released on Wednesday the 10th.\nIf you&#8217;re interested in what has changed since beta 2, consult the changelog.\n\";s:12:\"atom_content\";s:505:\"<p>With Release Candidate 1, we think WordPress 2.8 is ready and complete.  <a href=\"http://wordpress.org/wordpress-2.8-RC1.zip\">Download</a> it, test it, and tell us what you think.  If you don&#8217;t uncover any bad bugs, 2.8 will be released on Wednesday the 10th.</p>\n<p>If you&#8217;re interested in what has changed since beta 2, consult the <a href=\"https://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=11532&amp;stop_rev=11441&amp;limit=100\">changelog</a>.</p>\n\";}i:1;a:13:{s:5:\"title\";s:49:\"Summary of #wordpress-dev IRC meetup for 20090603\";s:4:\"link\";s:90:\"http://wordpress.org/development/2009/06/summary-of-wordpress-dev-irc-meetup-for-20090603/\";s:8:\"comments\";s:99:\"http://wordpress.org/development/2009/06/summary-of-wordpress-dev-irc-meetup-for-20090603/#comments\";s:7:\"pubdate\";s:31:\"Wed, 03 Jun 2009 22:30:51 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Ryan Boren\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=778\";s:11:\"description\";s:358:\"\nNext Wednesday, June 10th, is the target date for the release of\nWordPress 2.8.  Tickets against the 2.8 milestone that are not\nblockers will be postponed to another release.\nWP 2.9 will require MySQL 4.1.2 or greater.  This is raised from the current requirement of 4.0.\nChecks will be added to the automatic upgrader that will prevent upgrading to [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:848:\"<ul>\n<li>Next Wednesday, June 10th, is the target date for the release of<br />\nWordPress 2.8.  Tickets against the 2.8 milestone that are not<br />\nblockers will be postponed to another release.</li>\n<li>WP 2.9 will require MySQL 4.1.2 or greater.  This is raised from the current requirement of 4.0.</li>\n<li>Checks will be added to the automatic upgrader that will prevent upgrading to 2.9 if  MySQL &lt; 4.1.2 is being used.  The upgrader will also issue a notice that suggests asking the host to upgrade MySQL to meet the minimum requirement.</li>\n<li>In order to promote migration to PHP 5, the upgrader will suggest that those running<br />\nPHP 4 switch to PHP 5. A link to a Codex page describing how to switch for various hosts should be provided.</li>\n<li>The new weekly IRC meetup time will be every Wednesday at 9pm UTC.</li>\n</ul>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:95:\"http://wordpress.org/development/2009/06/summary-of-wordpress-dev-irc-meetup-for-20090603/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:2:\"48\";}s:7:\"summary\";s:358:\"\nNext Wednesday, June 10th, is the target date for the release of\nWordPress 2.8.  Tickets against the 2.8 milestone that are not\nblockers will be postponed to another release.\nWP 2.9 will require MySQL 4.1.2 or greater.  This is raised from the current requirement of 4.0.\nChecks will be added to the automatic upgrader that will prevent upgrading to [...]\";s:12:\"atom_content\";s:848:\"<ul>\n<li>Next Wednesday, June 10th, is the target date for the release of<br />\nWordPress 2.8.  Tickets against the 2.8 milestone that are not<br />\nblockers will be postponed to another release.</li>\n<li>WP 2.9 will require MySQL 4.1.2 or greater.  This is raised from the current requirement of 4.0.</li>\n<li>Checks will be added to the automatic upgrader that will prevent upgrading to 2.9 if  MySQL &lt; 4.1.2 is being used.  The upgrader will also issue a notice that suggests asking the host to upgrade MySQL to meet the minimum requirement.</li>\n<li>In order to promote migration to PHP 5, the upgrader will suggest that those running<br />\nPHP 4 switch to PHP 5. A link to a Codex page describing how to switch for various hosts should be provided.</li>\n<li>The new weekly IRC meetup time will be every Wednesday at 9pm UTC.</li>\n</ul>\n\";}i:2;a:13:{s:5:\"title\";s:20:\"WordPress 2.8 Beta 2\";s:4:\"link\";s:62:\"http://wordpress.org/development/2009/05/wordpress-2-8-beta-2/\";s:8:\"comments\";s:71:\"http://wordpress.org/development/2009/05/wordpress-2-8-beta-2/#comments\";s:7:\"pubdate\";s:31:\"Sat, 23 May 2009 17:33:36 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Ryan Boren\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=746\";s:11:\"description\";s:45:\"Download beta 2.  See changes since beta 1.\n\";s:7:\"content\";a:1:{s:7:\"encoded\";s:264:\"<p><a href=\"http://wordpress.org/wordpress-2.8-beta2.zip\">Download</a> beta 2.  See <a href=\"http://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=11440&amp;stop_rev=11366&amp;limit=100&amp;verbose=on\">changes</a> since beta 1.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:67:\"http://wordpress.org/development/2009/05/wordpress-2-8-beta-2/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:2:\"88\";}s:7:\"summary\";s:45:\"Download beta 2.  See changes since beta 1.\n\";s:12:\"atom_content\";s:264:\"<p><a href=\"http://wordpress.org/wordpress-2.8-beta2.zip\">Download</a> beta 2.  See <a href=\"http://core.trac.wordpress.org/log?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=11440&amp;stop_rev=11366&amp;limit=100&amp;verbose=on\">changes</a> since beta 1.</p>\n\";}i:3;a:13:{s:5:\"title\";s:20:\"WordPress 2.8 Beta 1\";s:4:\"link\";s:62:\"http://wordpress.org/development/2009/05/wordpress-2-8-beta-1/\";s:8:\"comments\";s:71:\"http://wordpress.org/development/2009/05/wordpress-2-8-beta-1/#comments\";s:7:\"pubdate\";s:31:\"Sat, 16 May 2009 19:59:48 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Ryan Boren\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=744\";s:11:\"description\";s:95:\"Download it, test it, file bugs.\nWhat&#8217;s new? All of this.\nGood hunting, all you testers.\n\";s:7:\"content\";a:1:{s:7:\"encoded\";s:333:\"<p><a href=\"http://wordpress.org/wordpress-2.8-beta1.zip\">Download</a> it, <a href=\"http://wordpress.org/download/beta/\">test</a> it, <a href=\"http://core.trac.wordpress.org/newticket\">file</a> bugs.</p>\n<p>What&#8217;s new? <a href=\"http://codex.wordpress.org/Version_2.8\">All of this</a>.</p>\n<p>Good hunting, all you testers.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:67:\"http://wordpress.org/development/2009/05/wordpress-2-8-beta-1/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:3:\"165\";}s:7:\"summary\";s:95:\"Download it, test it, file bugs.\nWhat&#8217;s new? All of this.\nGood hunting, all you testers.\n\";s:12:\"atom_content\";s:333:\"<p><a href=\"http://wordpress.org/wordpress-2.8-beta1.zip\">Download</a> it, <a href=\"http://wordpress.org/download/beta/\">test</a> it, <a href=\"http://core.trac.wordpress.org/newticket\">file</a> bugs.</p>\n<p>What&#8217;s new? <a href=\"http://codex.wordpress.org/Version_2.8\">All of this</a>.</p>\n<p>Good hunting, all you testers.</p>\n\";}i:4;a:13:{s:5:\"title\";s:61:\"Contributing to WordPress, Part IV: Ideas, Opinions, Feedback\";s:4:\"link\";s:47:\"http://wordpress.org/development/2009/05/ideas/\";s:8:\"comments\";s:56:\"http://wordpress.org/development/2009/05/ideas/#comments\";s:7:\"pubdate\";s:31:\"Sat, 09 May 2009 16:20:53 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:19:\"DevelopmentFeatures\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=731\";s:11:\"description\";s:396:\"&#8220;I wish they&#8217;d implement feature x.&#8221;\n&#8220;Why won&#8217;t they put feature y into core? It&#8217;s rated really high in the Ideas forum!&#8221;\n&#8220;It doesn&#8217;t matter what I think, all the decisions get made by an elite crime-fighting squad funded by an anonymous millionaire. Er, I mean the four core devs.&#8221;\nThese sentiments, and others like them, are the [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:7489:\"<p>&#8220;I wish they&#8217;d implement <em>feature x</em>.&#8221;</p>\n<p>&#8220;Why won&#8217;t they put <em>feature y</em> into core? It&#8217;s rated really high in the Ideas forum!&#8221;</p>\n<p>&#8220;It doesn&#8217;t matter what I think, all the decisions get made by an elite crime-fighting squad funded by an anonymous millionaire. Er, I mean the four core devs.&#8221;</p>\n<p>These sentiments, and others like them, are the focus of today&#8217;s post. Setting aside the similarities between Ryan, Andrew, Mark and Peter to Charlie&#8217;s Angels for a moment, the question of how decisions about features are made needs to be addressed. There are a number of mechanisms in place for communication between the community and the core team, but with so many different channels, it&#8217;s hard to keep up with them all and still focus on production. Here&#8217;s where we are now&#8230;</p>\n<p><strong>#wordpress-dev IRC channel</strong>: The IRC channel used to be more active. These days there&#8217;s rarely more than a dozen or two people online at any given time, and hours go by with no activity. When a question pops up, it&#8217;s often a tech question from a less experienced developer or site manager looking for help, as opposed to ongoing discussions about the best way to approach core code and features. When core-focused discussions do occur, they tend to fade out as time zone variances cause people to log off before a core dev enters the room.</p>\n<p><strong><a href=\"http://comox.textdrive.com/pipermail/wp-hackers/\">wp-hackers list</a>:</strong> The hackers mailing list reaches thousands of contributing developers, plugin developers, and lurking interested parties. Discussions range from how to use hooks to whether or not something in core should be changed to troubleshooting for other list members. Conversations on this list sometimes can get heated and occasionally stray into rudeness, which makes some people hesitate to utilize this communication channel.</p>\n<p><strong><a href=\"http://wordpress.org/development\">This dev blog</a>:</strong> This blog is used mostly for &#8220;official&#8221; announcements, and more recently, for surveys and polls intended to give the core devs an idea of community opinion on things being considered for future versions. Posting is irregular, sometimes with new content every other day, sometimes with nothing for a couple of weeks.</p>\n<p><strong><a href=\"http://wpdevel.wordpress.com/\">wpdevel.wordpress.com</a>:</strong> Another blog, also an &#8220;official&#8221; outlet, in which the core team posts about any big code changes they&#8217;re working on. This gives plugin authors and contributing developers a heads-up, and provides a place for community discussion around specific issues like the new widgets API.</p>\n<p><strong><a href=\"http://core.trac.wordpress.org\">Trac</a>: </strong>The ticket system used for active development has gotten out of control. Hundreds of tickets are already lined up for future versions because they were punted from current releases; many aren&#8217;t even relevant anymore. Trac has wound being a place where people report bugs, suggest code changes, request features and debate methodologies; some of these conversations are years old. This broad use of the system makes it harder to power through tickets and get bugs fixed.</p>\n<p><strong><a href=\"http://wordpress.org/extend/ideas/\">Ideas forum</a>:</strong> The Ideas forum is a place where anyone can suggest a new feature, rate features suggested by others, leave comments, and generally discuss the future of the WordPress application. However, like Trac, some of the items here are years old. Because of the way the rating system works, older items remain at the top of the list. Some threads are simply he said/she said preference arguments, as opposed to contructive discussions about the value of implementing certain features or changes. There&#8217;s no direct connection between the Ideas forum and Trac.</p>\n<p>WordPress is an open source project, successful because of the community that both develops and uses it. At the same time, some people find it difficult to become involved in the project, and are unsure of how to engage with the core team and community at large. The channels listed above can be overwhleming to someone just joining the community, and/or frustrating to longtime community members who feel like they used to have more influence. We need to fix this. The WordPress project needs to be welcoming, easy to navigate as a contributor, and provide useful feedback to help grow the expertise of its community members.</p>\n<p>I think we should figure this out together. You, members of this community, know how you feel about the communication channels available to you. You probably have ideas about how to make it better. Some of you may even have sketched out digrams of systems that you think would work better.  Link Ideas to Trac? Change the Ideas rating algorithm? Close Trac tickets that don&#8217;t get resolved within a certain period of time? Just do everything through Trac? What do you think? What would make it easier for you to keep up with development progress and get involved with the varius contribution opportunities? I *know* you have an opinion.</p>\n<p>Over the next few weeks, we&#8217;ll be gathering your input about how we can improve communication and participation, and then we&#8217;ll embark on a project to fix/create a system for collecting ideas, opinions and feedback that will allow WordPress to grow as an inclusive community. Here&#8217;s the plan: Gather ideas from people via IRC, forums, live chats, surveys, etc. Assemble a small group of interested parties to help figure out possible approaches, put suggested approaches to a community vote. If redesigning something (like the Ideas forum) is deemed necessary, utilize community designers to create layouts. Beta test it to see if it does work as hoped. Launch and make everyone happy with the new, improved communication/ideas/feedback system!</p>\n<p><strong>Up First</strong></p>\n<p>Use <a href=\"http://wordpress.org/support/topic/269201\">this forum thread</a> to post your suggestions about this. What do you think needs to be changed or improved? How would you structure it? How do the existing channels fit into your suggestion?</p>\n<p>On Tuesday, May 12 at 21:00 UTC (5pm New York time), hop into the #wordpress-dev IRC channel (irc.freenode.com) and talk about your suggestions for how to improve communication. I&#8217;ll be there, taking notes and answering questions, and asking follow-up questions when someone pitches a good idea. An hour later, I&#8217;ll be joining the <a href=\"http://wordcastpodcast.com/\">WordCast Podcast</a> to talk about this issue. <span style=\"text-decoration: line-through;\">They&#8217;re trying to set up a call-in format; if that pans out, we&#8217;ll post the call-in info in the dev channel. Otherwise, </span> A call-in number has been set up through TalkShoe.</p>\n<p>1-724-444-7444<br />\nMeeting ID: 50127<br />\nPin (if you don&#8217;t have a TalkShoe account): enter 1#</p>\n<p>We&#8217;ll also read off suggestions being made in the dev channel and discuss them.</p>\n<p>More opportunities to weigh in on this issue to come. Also, further investigation into the similarities between the core devs and Charlie&#8217;s Angels. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> </p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:52:\"http://wordpress.org/development/2009/05/ideas/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:1:\"5\";}s:7:\"summary\";s:396:\"&#8220;I wish they&#8217;d implement feature x.&#8221;\n&#8220;Why won&#8217;t they put feature y into core? It&#8217;s rated really high in the Ideas forum!&#8221;\n&#8220;It doesn&#8217;t matter what I think, all the decisions get made by an elite crime-fighting squad funded by an anonymous millionaire. Er, I mean the four core devs.&#8221;\nThese sentiments, and others like them, are the [...]\";s:12:\"atom_content\";s:7489:\"<p>&#8220;I wish they&#8217;d implement <em>feature x</em>.&#8221;</p>\n<p>&#8220;Why won&#8217;t they put <em>feature y</em> into core? It&#8217;s rated really high in the Ideas forum!&#8221;</p>\n<p>&#8220;It doesn&#8217;t matter what I think, all the decisions get made by an elite crime-fighting squad funded by an anonymous millionaire. Er, I mean the four core devs.&#8221;</p>\n<p>These sentiments, and others like them, are the focus of today&#8217;s post. Setting aside the similarities between Ryan, Andrew, Mark and Peter to Charlie&#8217;s Angels for a moment, the question of how decisions about features are made needs to be addressed. There are a number of mechanisms in place for communication between the community and the core team, but with so many different channels, it&#8217;s hard to keep up with them all and still focus on production. Here&#8217;s where we are now&#8230;</p>\n<p><strong>#wordpress-dev IRC channel</strong>: The IRC channel used to be more active. These days there&#8217;s rarely more than a dozen or two people online at any given time, and hours go by with no activity. When a question pops up, it&#8217;s often a tech question from a less experienced developer or site manager looking for help, as opposed to ongoing discussions about the best way to approach core code and features. When core-focused discussions do occur, they tend to fade out as time zone variances cause people to log off before a core dev enters the room.</p>\n<p><strong><a href=\"http://comox.textdrive.com/pipermail/wp-hackers/\">wp-hackers list</a>:</strong> The hackers mailing list reaches thousands of contributing developers, plugin developers, and lurking interested parties. Discussions range from how to use hooks to whether or not something in core should be changed to troubleshooting for other list members. Conversations on this list sometimes can get heated and occasionally stray into rudeness, which makes some people hesitate to utilize this communication channel.</p>\n<p><strong><a href=\"http://wordpress.org/development\">This dev blog</a>:</strong> This blog is used mostly for &#8220;official&#8221; announcements, and more recently, for surveys and polls intended to give the core devs an idea of community opinion on things being considered for future versions. Posting is irregular, sometimes with new content every other day, sometimes with nothing for a couple of weeks.</p>\n<p><strong><a href=\"http://wpdevel.wordpress.com/\">wpdevel.wordpress.com</a>:</strong> Another blog, also an &#8220;official&#8221; outlet, in which the core team posts about any big code changes they&#8217;re working on. This gives plugin authors and contributing developers a heads-up, and provides a place for community discussion around specific issues like the new widgets API.</p>\n<p><strong><a href=\"http://core.trac.wordpress.org\">Trac</a>: </strong>The ticket system used for active development has gotten out of control. Hundreds of tickets are already lined up for future versions because they were punted from current releases; many aren&#8217;t even relevant anymore. Trac has wound being a place where people report bugs, suggest code changes, request features and debate methodologies; some of these conversations are years old. This broad use of the system makes it harder to power through tickets and get bugs fixed.</p>\n<p><strong><a href=\"http://wordpress.org/extend/ideas/\">Ideas forum</a>:</strong> The Ideas forum is a place where anyone can suggest a new feature, rate features suggested by others, leave comments, and generally discuss the future of the WordPress application. However, like Trac, some of the items here are years old. Because of the way the rating system works, older items remain at the top of the list. Some threads are simply he said/she said preference arguments, as opposed to contructive discussions about the value of implementing certain features or changes. There&#8217;s no direct connection between the Ideas forum and Trac.</p>\n<p>WordPress is an open source project, successful because of the community that both develops and uses it. At the same time, some people find it difficult to become involved in the project, and are unsure of how to engage with the core team and community at large. The channels listed above can be overwhleming to someone just joining the community, and/or frustrating to longtime community members who feel like they used to have more influence. We need to fix this. The WordPress project needs to be welcoming, easy to navigate as a contributor, and provide useful feedback to help grow the expertise of its community members.</p>\n<p>I think we should figure this out together. You, members of this community, know how you feel about the communication channels available to you. You probably have ideas about how to make it better. Some of you may even have sketched out digrams of systems that you think would work better.  Link Ideas to Trac? Change the Ideas rating algorithm? Close Trac tickets that don&#8217;t get resolved within a certain period of time? Just do everything through Trac? What do you think? What would make it easier for you to keep up with development progress and get involved with the varius contribution opportunities? I *know* you have an opinion.</p>\n<p>Over the next few weeks, we&#8217;ll be gathering your input about how we can improve communication and participation, and then we&#8217;ll embark on a project to fix/create a system for collecting ideas, opinions and feedback that will allow WordPress to grow as an inclusive community. Here&#8217;s the plan: Gather ideas from people via IRC, forums, live chats, surveys, etc. Assemble a small group of interested parties to help figure out possible approaches, put suggested approaches to a community vote. If redesigning something (like the Ideas forum) is deemed necessary, utilize community designers to create layouts. Beta test it to see if it does work as hoped. Launch and make everyone happy with the new, improved communication/ideas/feedback system!</p>\n<p><strong>Up First</strong></p>\n<p>Use <a href=\"http://wordpress.org/support/topic/269201\">this forum thread</a> to post your suggestions about this. What do you think needs to be changed or improved? How would you structure it? How do the existing channels fit into your suggestion?</p>\n<p>On Tuesday, May 12 at 21:00 UTC (5pm New York time), hop into the #wordpress-dev IRC channel (irc.freenode.com) and talk about your suggestions for how to improve communication. I&#8217;ll be there, taking notes and answering questions, and asking follow-up questions when someone pitches a good idea. An hour later, I&#8217;ll be joining the <a href=\"http://wordcastpodcast.com/\">WordCast Podcast</a> to talk about this issue. <span style=\"text-decoration: line-through;\">They&#8217;re trying to set up a call-in format; if that pans out, we&#8217;ll post the call-in info in the dev channel. Otherwise, </span> A call-in number has been set up through TalkShoe.</p>\n<p>1-724-444-7444<br />\nMeeting ID: 50127<br />\nPin (if you don&#8217;t have a TalkShoe account): enter 1#</p>\n<p>We&#8217;ll also read off suggestions being made in the dev channel and discuss them.</p>\n<p>More opportunities to weigh in on this issue to come. Also, further investigation into the similarities between the core devs and Charlie&#8217;s Angels. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> </p>\n\";}i:5;a:13:{s:5:\"title\";s:54:\"Contributing to WordPress, Part III: Usability Testing\";s:4:\"link\";s:54:\"http://wordpress.org/development/2009/05/testing-opps/\";s:8:\"comments\";s:63:\"http://wordpress.org/development/2009/05/testing-opps/#comments\";s:7:\"pubdate\";s:31:\"Mon, 04 May 2009 13:57:13 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:25:\"DevelopmentUser Interface\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=724\";s:11:\"description\";s:336:\"One of the reasons WordPress 2.7 was such a success is the amount of usability testing that took place during the development cycle. Starting with testing 2.5 and the Crazyhorse prototype and following with the 2.7 beta, the testing program looked at almost every feature and function in the application. That kind of thing? Takes [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:6419:\"<p>One of the reasons WordPress 2.7 was such a success is the amount of usability testing that took place during the development cycle. Starting with <a href=\"http://wordpress.org/development/2008/10/usability-testing-report-25-and-crazyhorse/\">testing 2.5 and the Crazyhorse prototype</a> and following with the 2.7 beta, the testing program looked at almost every feature and function in the application. That kind of thing? Takes a lot of time. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> </p>\n<p>For readers who aren&#8217;t familiar with the process behind usability testing, here&#8217;s an overview. First, determine the scope of your test and create a test protocol/script. Determine the audience segments to be included in the test group(s), and begin recruiting. Recruiting may mean hiring an agency to find participants, but for testing WordPress, it makes more sense to recruit from within this community, so that means making a screening survey, reading all the responses, segmenting the respondents into categories and contacting people until you&#8217;ve filled your desired quotas (for whatever segments you&#8217;re seeking, such as newbie, experienced user, developer, CMS user, photoblogger, mobile user, etc. ). Then come the test sessions.</p>\n<p>Depending on what is being tested, these last anywhere from half an hour to an hour and half apiece. Sessions are generally recorded using screen capture and web cam, with a video camera for backup. The moderator(s) generally take notes during sessions and/or (depending on what software is being used for the session capture) set markers in the video to indicate task completion, comments of interest, etc.  In some cases, auxiliary test methods such as eye-tracking may be included. When the sessions are complete, the results are analyzed. All the notes and videos are reviewed, patterns are identified, and ultimately a report is written and the feedback informs the next round of revisions.</p>\n<p>Some people think it shouldn&#8217;t take much time to do all this. I&#8217;ve lost count of the number of people who cite <a href=\"http://www.useit.com/alertbox/20000319.html\">an old article by Jakob Nielsen</a> that says you don&#8217;t need to test with more than 5 users because usability issues become clear right away. While I&#8217;ve found that to be generally true, when your user base is as diverse in experience level, usage, platform  configuration, language (right to left languages have a pretty different experience) and demography as the WordPress community is, 5 users really isn&#8217;t enough to get a clear picture. We try to test with at least a dozen people each round, but then we are limited to a geographic region (test in NY, test in SF, or test wherever we can schedule enough people back to back to make it worthwhile), while WordPress users are located all over the globe.</p>\n<p>To address this, we&#8217;re introducing a set of new contribution opportunities to expand our usability testing program. As with development and graphic design, we&#8217;re going to create an infrastructure to allow community participation in usability testing on a regular basis and in a much broader capacity than existed before, when it was limited to announcements that we needed participants in <em>x</em> city on <em>y</em> date. We&#8217;ll be looking for volunteer moderators as well as participants, hopefully from all over the world.</p>\n<p><strong>Moderators.</strong> Observational usability testing isn&#8217;t rocket science, but neither is it a simple task to reduce bias. Because of this, at first we&#8217;ll choose only moderators who have professional experience conducting usability tests. People who conduct testing for design agencies, software companies, usability consulting firms and the like will be our first round draft picks. In the future, when we have a group of regular volunteers and have ironed out any kinks in the process, we&#8217;ll ideally match up experienced testers with aspiring ones, using a mentorship model to increase the number of people who can contribute in this fashion.</p>\n<p><strong>Participants.</strong> If you use WordPress, chances are you could participant in a usability test at some point. In some cases we&#8217;re looking for particular behaviors (people who upload large video files, people who blog from their iPhone, people who manage more than 5 blogs, etc.), while other times the behaviors we&#8217;re looking for are much more common (do you have widgets in your sidebar, have you changed themes in the last 6 months, is there more than one author on your blog, etc.).</p>\n<p><strong>So how will these opportunities come into play, and how will it make WordPress better?</strong></p>\n<p>We&#8217;ll start with the moderators, and try to get volunteers with a decent geographic spread. Then, we&#8217;ll start signing up potential test participants in those areas (though we&#8217;ll also allow at-large registrations, since traveling testing will still be happening). We&#8217;re working on a registration process for potential participants. You&#8217;ll enter your basic info (location, contact info) and answer some questions about your WordPress usage to be entered in the database, and when there&#8217;s a testing opportunity coming up that&#8217;s appropriate for you, a local moderator will get in touch to see if you&#8217;re interested. Further down the road we may experiment with remote testing and other methods, but for now, this approach will broaden the geographic scope of our testing.</p>\n<p>All moderators will follow the same test protocols and script, and their results/reports/video will be reviewed and collated, with a composite report (including the protocol/script that was used) published to the community. This will provide designers and developers with broader feedback during the dev cycle, and will allow the wider community to both understand and participate in the testing program.</p>\n<p>If you&#8217;re interested in being a moderator during this initial phase (meaning you do it professionally), <a href=\"http://jane.wordpress.com/contact-me/\">send me an email</a> and introduce yourself. If you&#8217;re interested in signing up as a potential test participant, watch this space. We&#8217;ll post a link to the registration survey once it&#8217;s ready.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:59:\"http://wordpress.org/development/2009/05/testing-opps/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:2:\"17\";}s:7:\"summary\";s:336:\"One of the reasons WordPress 2.7 was such a success is the amount of usability testing that took place during the development cycle. Starting with testing 2.5 and the Crazyhorse prototype and following with the 2.7 beta, the testing program looked at almost every feature and function in the application. That kind of thing? Takes [...]\";s:12:\"atom_content\";s:6419:\"<p>One of the reasons WordPress 2.7 was such a success is the amount of usability testing that took place during the development cycle. Starting with <a href=\"http://wordpress.org/development/2008/10/usability-testing-report-25-and-crazyhorse/\">testing 2.5 and the Crazyhorse prototype</a> and following with the 2.7 beta, the testing program looked at almost every feature and function in the application. That kind of thing? Takes a lot of time. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> </p>\n<p>For readers who aren&#8217;t familiar with the process behind usability testing, here&#8217;s an overview. First, determine the scope of your test and create a test protocol/script. Determine the audience segments to be included in the test group(s), and begin recruiting. Recruiting may mean hiring an agency to find participants, but for testing WordPress, it makes more sense to recruit from within this community, so that means making a screening survey, reading all the responses, segmenting the respondents into categories and contacting people until you&#8217;ve filled your desired quotas (for whatever segments you&#8217;re seeking, such as newbie, experienced user, developer, CMS user, photoblogger, mobile user, etc. ). Then come the test sessions.</p>\n<p>Depending on what is being tested, these last anywhere from half an hour to an hour and half apiece. Sessions are generally recorded using screen capture and web cam, with a video camera for backup. The moderator(s) generally take notes during sessions and/or (depending on what software is being used for the session capture) set markers in the video to indicate task completion, comments of interest, etc.  In some cases, auxiliary test methods such as eye-tracking may be included. When the sessions are complete, the results are analyzed. All the notes and videos are reviewed, patterns are identified, and ultimately a report is written and the feedback informs the next round of revisions.</p>\n<p>Some people think it shouldn&#8217;t take much time to do all this. I&#8217;ve lost count of the number of people who cite <a href=\"http://www.useit.com/alertbox/20000319.html\">an old article by Jakob Nielsen</a> that says you don&#8217;t need to test with more than 5 users because usability issues become clear right away. While I&#8217;ve found that to be generally true, when your user base is as diverse in experience level, usage, platform  configuration, language (right to left languages have a pretty different experience) and demography as the WordPress community is, 5 users really isn&#8217;t enough to get a clear picture. We try to test with at least a dozen people each round, but then we are limited to a geographic region (test in NY, test in SF, or test wherever we can schedule enough people back to back to make it worthwhile), while WordPress users are located all over the globe.</p>\n<p>To address this, we&#8217;re introducing a set of new contribution opportunities to expand our usability testing program. As with development and graphic design, we&#8217;re going to create an infrastructure to allow community participation in usability testing on a regular basis and in a much broader capacity than existed before, when it was limited to announcements that we needed participants in <em>x</em> city on <em>y</em> date. We&#8217;ll be looking for volunteer moderators as well as participants, hopefully from all over the world.</p>\n<p><strong>Moderators.</strong> Observational usability testing isn&#8217;t rocket science, but neither is it a simple task to reduce bias. Because of this, at first we&#8217;ll choose only moderators who have professional experience conducting usability tests. People who conduct testing for design agencies, software companies, usability consulting firms and the like will be our first round draft picks. In the future, when we have a group of regular volunteers and have ironed out any kinks in the process, we&#8217;ll ideally match up experienced testers with aspiring ones, using a mentorship model to increase the number of people who can contribute in this fashion.</p>\n<p><strong>Participants.</strong> If you use WordPress, chances are you could participant in a usability test at some point. In some cases we&#8217;re looking for particular behaviors (people who upload large video files, people who blog from their iPhone, people who manage more than 5 blogs, etc.), while other times the behaviors we&#8217;re looking for are much more common (do you have widgets in your sidebar, have you changed themes in the last 6 months, is there more than one author on your blog, etc.).</p>\n<p><strong>So how will these opportunities come into play, and how will it make WordPress better?</strong></p>\n<p>We&#8217;ll start with the moderators, and try to get volunteers with a decent geographic spread. Then, we&#8217;ll start signing up potential test participants in those areas (though we&#8217;ll also allow at-large registrations, since traveling testing will still be happening). We&#8217;re working on a registration process for potential participants. You&#8217;ll enter your basic info (location, contact info) and answer some questions about your WordPress usage to be entered in the database, and when there&#8217;s a testing opportunity coming up that&#8217;s appropriate for you, a local moderator will get in touch to see if you&#8217;re interested. Further down the road we may experiment with remote testing and other methods, but for now, this approach will broaden the geographic scope of our testing.</p>\n<p>All moderators will follow the same test protocols and script, and their results/reports/video will be reviewed and collated, with a composite report (including the protocol/script that was used) published to the community. This will provide designers and developers with broader feedback during the dev cycle, and will allow the wider community to both understand and participate in the testing program.</p>\n<p>If you&#8217;re interested in being a moderator during this initial phase (meaning you do it professionally), <a href=\"http://jane.wordpress.com/contact-me/\">send me an email</a> and introduce yourself. If you&#8217;re interested in signing up as a potential test participant, watch this space. We&#8217;ll post a link to the registration survey once it&#8217;s ready.</p>\n\";}i:6;a:13:{s:5:\"title\";s:28:\"Make Friends with BuddyPress\";s:4:\"link\";s:70:\"http://wordpress.org/development/2009/04/make-friends-with-buddypress/\";s:8:\"comments\";s:79:\"http://wordpress.org/development/2009/04/make-friends-with-buddypress/#comments\";s:7:\"pubdate\";s:31:\"Thu, 30 Apr 2009 20:24:44 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:17:\"Cousinsbuddypress\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=719\";s:11:\"description\";s:329:\"What if there was software with the elegance and extensibility of WordPress but all the features you&#8217;ve come to expect from social networks like Facebook? Now there is: check out BuddyPress.\nBuddyPress is an official sister project of WordPress. The idea behind it was to see what would happen to the web if it was as [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:2004:\"<p>What if there was software with the elegance and extensibility of WordPress but all the features you&#8217;ve come to expect from social networks like Facebook? Now there is: <a href=\"http://buddypress.org/\">check out BuddyPress</a>.</p>\n<p>BuddyPress is an official sister project of WordPress. The idea behind it was to see what would happen to the web if it was as easy for anyone to create a social network as it is to create a blog today. There&#8217;s been an explosion of social activity on the web, it&#8217;s probably the most important trend of the past few years, but there&#8217;s been a dearth of Open Source tools that enable the social web.</p>\n<p>In WordPress we have a robust and extensible base that can scale to many millions of users, and BuddyPress is essentially a set of plugins on top of WordPress that add private messaging, profiles, friends, groups, activity streams, and everything else you&#8217;ve come to expect from your favorite social network, like a Facebook-in-a-box.</p>\n<p>I don&#8217;t think BuddyPress will be something you use <em>instead of</em> your existing social networks, I mean all your friends are already on Myspace, but if you wanted to start something new maybe with more control, friendlier terms of service, or just something customized and tweaked to fit exactly into your existing site, then BuddyPress is a great framework to use. Maybe even someday you&#8217;ll be able to connect your BuddyPresses to each other and to the existing monolithic social networks.</p>\n<p>This is just a 1.0 release and it&#8217;s not for everybody yet, for example it currently requires using MU which is a bit trickier to get set up than regular WordPress, but regardless <a href=\"http://buddypress.org/\">I&#8217;d recommend diving into the community at BuddyPress.org</a>, which is great example of the software in action.</p>\n<p><a href=\"http://buddypress.org/blog/news/buddypress-10-has-arrived/\">Here&#8217;s Andy&#8217;s official announcement post</a>.</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:75:\"http://wordpress.org/development/2009/04/make-friends-with-buddypress/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:2:\"49\";}s:7:\"summary\";s:329:\"What if there was software with the elegance and extensibility of WordPress but all the features you&#8217;ve come to expect from social networks like Facebook? Now there is: check out BuddyPress.\nBuddyPress is an official sister project of WordPress. The idea behind it was to see what would happen to the web if it was as [...]\";s:12:\"atom_content\";s:2004:\"<p>What if there was software with the elegance and extensibility of WordPress but all the features you&#8217;ve come to expect from social networks like Facebook? Now there is: <a href=\"http://buddypress.org/\">check out BuddyPress</a>.</p>\n<p>BuddyPress is an official sister project of WordPress. The idea behind it was to see what would happen to the web if it was as easy for anyone to create a social network as it is to create a blog today. There&#8217;s been an explosion of social activity on the web, it&#8217;s probably the most important trend of the past few years, but there&#8217;s been a dearth of Open Source tools that enable the social web.</p>\n<p>In WordPress we have a robust and extensible base that can scale to many millions of users, and BuddyPress is essentially a set of plugins on top of WordPress that add private messaging, profiles, friends, groups, activity streams, and everything else you&#8217;ve come to expect from your favorite social network, like a Facebook-in-a-box.</p>\n<p>I don&#8217;t think BuddyPress will be something you use <em>instead of</em> your existing social networks, I mean all your friends are already on Myspace, but if you wanted to start something new maybe with more control, friendlier terms of service, or just something customized and tweaked to fit exactly into your existing site, then BuddyPress is a great framework to use. Maybe even someday you&#8217;ll be able to connect your BuddyPresses to each other and to the existing monolithic social networks.</p>\n<p>This is just a 1.0 release and it&#8217;s not for everybody yet, for example it currently requires using MU which is a bit trickier to get set up than regular WordPress, but regardless <a href=\"http://buddypress.org/\">I&#8217;d recommend diving into the community at BuddyPress.org</a>, which is great example of the software in action.</p>\n<p><a href=\"http://buddypress.org/blog/news/buddypress-10-has-arrived/\">Here&#8217;s Andy&#8217;s official announcement post</a>.</p>\n\";}i:7;a:13:{s:5:\"title\";s:26:\"Design Tweaks Poll Results\";s:4:\"link\";s:54:\"http://wordpress.org/development/2009/04/poll-results/\";s:8:\"comments\";s:63:\"http://wordpress.org/development/2009/04/poll-results/#comments\";s:7:\"pubdate\";s:31:\"Thu, 30 Apr 2009 15:19:02 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:14:\"User Interface\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=701\";s:11:\"description\";s:357:\"The poll is closed, the votes are counted, and the results are interesting. The table below shows the actual breakdown of the poll votes, of which there were 2,651. As you can see, there were four main contenders: Dean J. Robinson&#8217;s Fluency-based submissions (two variations), the existing 2.7 interface, and Matt Thomas&#8217;s comp (MT), which [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:3064:\"<p>The poll is closed, the votes are counted, and the results are interesting. The table below shows the actual breakdown of the poll votes, of which there were 2,651. As you can see, there were four main contenders: Dean J. Robinson&#8217;s Fluency-based submissions (two variations), the existing 2.7 interface, and Matt Thomas&#8217;s comp (MT), which exists somewhere between them in terms of style. Note: GB was a late entry, and was posted after over 900 votes had already been collected.</p>\n<p><a href=\"http://wpdotorg.wordpress.com/files/2009/04/tweaksvote.png\"><img src=\"http://wpdotorg.wordpress.com/files/2009/04/tweaksvote.png\" alt=\"The voting results\" /></a></p>\n<p><img class=\"alignleft\" title=\"Top image: Dean Robinson, Bottom image: Matt Thomas\" src=\"http://wpdotorg.wordpress.com/files/2009/04/tweaks_dr_mt.png\" alt=\"Top two submissions by Robinson and Thomas\" width=\"410\" height=\"517\" align=\"left\" /></p>\n<p>As several people have rightly pointed out, the Fluency-style designs not only took the top spot, but in combination added up to a higher percentage than any other. We&#8217;re not focusing solely on that statistic, though, because had other designers submitted multiple versions, the numbers might have looked different. What was most interesting for me was checking in on the votes over the course of the two days the poll was open. The top three (Fluency-dark, Current 2.7, MT) kept beating each other out for the #1 spot as they cycled back and forth through the top three slots, and had the poll closed on time (left it open a little longer in case anyone translated the time zone incorrectly), the order would have been a bit different.</p>\n<p>What&#8217;s more interesting to me is the overall style that seems to be preferred among voters, as Matt&#8217;s comp has some stylistic similarities to Dean&#8217;s (see image at left). It also would be interesting to know how many of the votes for the current 2.7 interface were based on thinking it looked the best vs. how many were votes against changing the interface at all so soon after the 2.7 redesign. If you want to comment on what you liked best and/or least about any of the designs, <a href=\"http://wordpress.org/support/topic/265261\">this thread</a> is a good place.</p>\n<p>So what happens now? However we look at it, the Fluency-style designs clearly have a lot of fans. Then again, so do the designs of Matt Thomas (he&#8217;s behind the current style of 2.7, remember, in addition to the comp labeled MT). To give the interface the attention it is due, and to take seriously some of the interface feedback around usability and accessibility, we&#8217;re going to leave the looks alone for 2.8. It&#8217;s our guess that a revised style will make into 2.9 early in the development cycle to allow us plenty of time for user testing and revision. How close it winds up being to the comps submitted in this design tweaks challenge will depend, but in the meantime:</p>\n<p>Congratulations, <a href=\"http://deanjrobinson.com/\">Dean J. Robinson</a>, on winning the vote!</p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:59:\"http://wordpress.org/development/2009/04/poll-results/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:2:\"14\";}s:7:\"summary\";s:357:\"The poll is closed, the votes are counted, and the results are interesting. The table below shows the actual breakdown of the poll votes, of which there were 2,651. As you can see, there were four main contenders: Dean J. Robinson&#8217;s Fluency-based submissions (two variations), the existing 2.7 interface, and Matt Thomas&#8217;s comp (MT), which [...]\";s:12:\"atom_content\";s:3064:\"<p>The poll is closed, the votes are counted, and the results are interesting. The table below shows the actual breakdown of the poll votes, of which there were 2,651. As you can see, there were four main contenders: Dean J. Robinson&#8217;s Fluency-based submissions (two variations), the existing 2.7 interface, and Matt Thomas&#8217;s comp (MT), which exists somewhere between them in terms of style. Note: GB was a late entry, and was posted after over 900 votes had already been collected.</p>\n<p><a href=\"http://wpdotorg.wordpress.com/files/2009/04/tweaksvote.png\"><img src=\"http://wpdotorg.wordpress.com/files/2009/04/tweaksvote.png\" alt=\"The voting results\" /></a></p>\n<p><img class=\"alignleft\" title=\"Top image: Dean Robinson, Bottom image: Matt Thomas\" src=\"http://wpdotorg.wordpress.com/files/2009/04/tweaks_dr_mt.png\" alt=\"Top two submissions by Robinson and Thomas\" width=\"410\" height=\"517\" align=\"left\" /></p>\n<p>As several people have rightly pointed out, the Fluency-style designs not only took the top spot, but in combination added up to a higher percentage than any other. We&#8217;re not focusing solely on that statistic, though, because had other designers submitted multiple versions, the numbers might have looked different. What was most interesting for me was checking in on the votes over the course of the two days the poll was open. The top three (Fluency-dark, Current 2.7, MT) kept beating each other out for the #1 spot as they cycled back and forth through the top three slots, and had the poll closed on time (left it open a little longer in case anyone translated the time zone incorrectly), the order would have been a bit different.</p>\n<p>What&#8217;s more interesting to me is the overall style that seems to be preferred among voters, as Matt&#8217;s comp has some stylistic similarities to Dean&#8217;s (see image at left). It also would be interesting to know how many of the votes for the current 2.7 interface were based on thinking it looked the best vs. how many were votes against changing the interface at all so soon after the 2.7 redesign. If you want to comment on what you liked best and/or least about any of the designs, <a href=\"http://wordpress.org/support/topic/265261\">this thread</a> is a good place.</p>\n<p>So what happens now? However we look at it, the Fluency-style designs clearly have a lot of fans. Then again, so do the designs of Matt Thomas (he&#8217;s behind the current style of 2.7, remember, in addition to the comp labeled MT). To give the interface the attention it is due, and to take seriously some of the interface feedback around usability and accessibility, we&#8217;re going to leave the looks alone for 2.8. It&#8217;s our guess that a revised style will make into 2.9 early in the development cycle to allow us plenty of time for user testing and revision. How close it winds up being to the comps submitted in this design tweaks challenge will depend, but in the meantime:</p>\n<p>Congratulations, <a href=\"http://deanjrobinson.com/\">Dean J. Robinson</a>, on winning the vote!</p>\n\";}i:8;a:13:{s:5:\"title\";s:18:\"Design Tweaks Vote\";s:4:\"link\";s:60:\"http://wordpress.org/development/2009/04/design-tweaks-vote/\";s:8:\"comments\";s:69:\"http://wordpress.org/development/2009/04/design-tweaks-vote/#comments\";s:7:\"pubdate\";s:31:\"Tue, 28 Apr 2009 12:09:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:14:\"User Interface\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=685\";s:11:\"description\";s:321:\"Comps for the header/nav design tweaks are in, and the results are mixed. Some people just moved a few things around, while others proposed a new style altogether. We won&#8217;t make any major changes to style in 2.8, but if the vote leans toward a submission that proposes it, we&#8217;ll do some user testing and [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:2893:\"<p>Comps for the header/nav design tweaks are in, and the results are mixed. Some people just moved a few things around, while others proposed a new style altogether. We won&#8217;t make any major changes to style in 2.8, but if the vote leans toward a submission that proposes it, we&#8217;ll do some user testing and make a decision for early 2.9 (which, now that we think of it, is probably the right thing to do anyway. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> )</p>\n<p>Below are the links to the screenshots that were submitted. Please review each one (I&#8217;d open them all in tabs so I could look back and forth while they are all large size, because the voting poll just uses thumbnails), then choose the one you think looks the best/is the most usable.</p>\n<p>This poll was supposed to close at 8pm NY time on Tuesday (today), but we&#8217;re going to leave it open for an extra day. The voting poll will now be closed at 8pm NY time on Wednesday (that&#8217;s 2am Thursday, UTC). If you want to discuss the entries&#8217; pros/cons, <a href=\"http://wordpress.org/support/topic/265261\">this thread</a> would be a good place.</p>\n<p><a href=\"http://wpdotorg.wordpress.com/files/2009/04/current.png\">Current: The existing interface, for reference</a></p>\n<p><a href=\"http://p51labs.com/projects/wordpress-2.8-navigation/screenshot.png\">KM: Current nav, header elements moved</a></p>\n<p><a href=\"http://andrerenaut.ovh.org/wp28.jpg\">AN: Current nav, file folder style header</a></p>\n<p><a href=\"http://konstruktors.com/blog/wp-content/uploads/2009/04/mt-db-kaspars-dambis.png\">KD: Current nav, modified header style</a></p>\n<p><a href=\"http://www.johnjamesjacoby.com/uploads/2009/04/jjj-wp-28.gif\">JJ: Swap blog title and favorites menu</a></p>\n<p><a href=\"http://deanjrobinson.com/wp-content/uploads/2009/04/mt-db-djr.png\">DR1: Fluency style, dark</a></p>\n<p><a href=\"http://deanjrobinson.com/wp-content/uploads/2009/04/mt-db-djr-2.png\">DR2: Fluency style, medium</a></p>\n<p><a href=\"http://deanjrobinson.com/wp-content/uploads/2009/04/mt-db-djr-3.png\">DR3: Fluency style, light</a></p>\n<p><a href=\"http://wpdotorg.wordpress.com/files/2009/04/ik.png\">IK: Nav layered over dark background</a></p>\n<p><a href=\"http://gordonbrander.com/wp/wp-content/uploads/2009/04/mt-db-up.png\">GB: Modified nav/header intersection</a></p>\n<p><a href=\"http://iammattthomas.com/28/dash.png\">MT: Modified nav and header</a></p>\n<p><script type=\"text/javascript\" language=\"javascript\" charset=\"utf-8\" src=\"http://static.polldaddy.com/p/1575922.js\"></script><noscript><br />\n<a href=\"http://answers.polldaddy.com/poll/1575922/\">Which style do you prefer?</a><span style=\"font-size:9px;\">(<a href=\"http://answers.polldaddy.com\">answers</a>)</span><br />\n</noscript></p>\n<p>Results will be posted the day after the polls close. </p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:65:\"http://wordpress.org/development/2009/04/design-tweaks-vote/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:2:\"18\";}s:7:\"summary\";s:321:\"Comps for the header/nav design tweaks are in, and the results are mixed. Some people just moved a few things around, while others proposed a new style altogether. We won&#8217;t make any major changes to style in 2.8, but if the vote leans toward a submission that proposes it, we&#8217;ll do some user testing and [...]\";s:12:\"atom_content\";s:2893:\"<p>Comps for the header/nav design tweaks are in, and the results are mixed. Some people just moved a few things around, while others proposed a new style altogether. We won&#8217;t make any major changes to style in 2.8, but if the vote leans toward a submission that proposes it, we&#8217;ll do some user testing and make a decision for early 2.9 (which, now that we think of it, is probably the right thing to do anyway. <img src=\'http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif\' alt=\':)\' class=\'wp-smiley\' /> )</p>\n<p>Below are the links to the screenshots that were submitted. Please review each one (I&#8217;d open them all in tabs so I could look back and forth while they are all large size, because the voting poll just uses thumbnails), then choose the one you think looks the best/is the most usable.</p>\n<p>This poll was supposed to close at 8pm NY time on Tuesday (today), but we&#8217;re going to leave it open for an extra day. The voting poll will now be closed at 8pm NY time on Wednesday (that&#8217;s 2am Thursday, UTC). If you want to discuss the entries&#8217; pros/cons, <a href=\"http://wordpress.org/support/topic/265261\">this thread</a> would be a good place.</p>\n<p><a href=\"http://wpdotorg.wordpress.com/files/2009/04/current.png\">Current: The existing interface, for reference</a></p>\n<p><a href=\"http://p51labs.com/projects/wordpress-2.8-navigation/screenshot.png\">KM: Current nav, header elements moved</a></p>\n<p><a href=\"http://andrerenaut.ovh.org/wp28.jpg\">AN: Current nav, file folder style header</a></p>\n<p><a href=\"http://konstruktors.com/blog/wp-content/uploads/2009/04/mt-db-kaspars-dambis.png\">KD: Current nav, modified header style</a></p>\n<p><a href=\"http://www.johnjamesjacoby.com/uploads/2009/04/jjj-wp-28.gif\">JJ: Swap blog title and favorites menu</a></p>\n<p><a href=\"http://deanjrobinson.com/wp-content/uploads/2009/04/mt-db-djr.png\">DR1: Fluency style, dark</a></p>\n<p><a href=\"http://deanjrobinson.com/wp-content/uploads/2009/04/mt-db-djr-2.png\">DR2: Fluency style, medium</a></p>\n<p><a href=\"http://deanjrobinson.com/wp-content/uploads/2009/04/mt-db-djr-3.png\">DR3: Fluency style, light</a></p>\n<p><a href=\"http://wpdotorg.wordpress.com/files/2009/04/ik.png\">IK: Nav layered over dark background</a></p>\n<p><a href=\"http://gordonbrander.com/wp/wp-content/uploads/2009/04/mt-db-up.png\">GB: Modified nav/header intersection</a></p>\n<p><a href=\"http://iammattthomas.com/28/dash.png\">MT: Modified nav and header</a></p>\n<p><script type=\"text/javascript\" language=\"javascript\" charset=\"utf-8\" src=\"http://static.polldaddy.com/p/1575922.js\"></script><noscript><br />\n<a href=\"http://answers.polldaddy.com/poll/1575922/\">Which style do you prefer?</a><span style=\"font-size:9px;\">(<a href=\"http://answers.polldaddy.com\">answers</a>)</span><br />\n</noscript></p>\n<p>Results will be posted the day after the polls close. </p>\n\";}i:9;a:13:{s:5:\"title\";s:50:\"Design Tweaks: Who’s In? (An idea in three acts)\";s:4:\"link\";s:85:\"http://wordpress.org/development/2009/04/design-tweaks-whos-in-an-idea-in-three-acts/\";s:8:\"comments\";s:94:\"http://wordpress.org/development/2009/04/design-tweaks-whos-in-an-idea-in-three-acts/#comments\";s:7:\"pubdate\";s:31:\"Sat, 25 Apr 2009 16:57:40 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Jane Wells\";}s:8:\"category\";s:14:\"User Interface\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=640\";s:11:\"description\";s:328:\"\nACT I\nJane: It is a thorn in my side that the blog name header is above the &#8220;dashboard&#8221; nav section in the admin, since in MU installations and with plugins (like stats), things in the Dashboard section span multiple blogs. Makes more sense for the header to head only the per-blog content area.\nMark: I agree [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:7119:\"<h4 style=\"text-align: left;\"></h4>\n<h4 style=\"text-align: left;\">ACT I</h4>\n<p style=\"text-align: left;\"><strong>Jane:</strong> It is a thorn in my side that the blog name header is above the &#8220;dashboard&#8221; nav section in the admin, since in MU installations and with plugins (like stats), things in the Dashboard section span multiple blogs. Makes more sense for the header to head only the per-blog content area.</p>\n<p style=\"text-align: left;\"><strong>Mark:</strong> I agree about the header. &#8220;This is the menu, this is the content.&#8221;</p>\n<p style=\"text-align: left;\"><strong>All: </strong>Yep.</p>\n<p style=\"text-align: left;\"><span style=\"color: #888888;\"><em>Five minutes later&#8230;</em></span></p>\n<p style=\"text-align: left;\"><strong>Mark: </strong>What do you guys this of this quick mockup I just did, playing with the admin header?<br />\n<img src=\"http://wpdotorg.wordpress.com/files/2009/04/mark-mockup.png\" alt=\"Mark Jaquith\'s mockup\" />\n</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>I like it that the nav is not under the header. Might need some styling help. I was also thinking maybe the favorites menu should drop down into the white h2 area by screen options/help tabs.</p>\n<p style=\"text-align: left;\"><strong>Ryan: </strong>Menu color to the top with blog title pushed over and favorites next to screen options sounds quite nice.</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>I&#8217;ll ask Matt Thomas if he could style it <em>[ed. note: Matt Thomas created the visual style for 2.7]</em>, and we can see what people think, maybe post on <a href=\"http://wpdevel.wordpress.com/\">wpdevel</a> for feedback.</p>\n<p style=\"text-align: left;\"><strong>Ryan: </strong>If it&#8217;s quick, maybe we could even get it into 2.8.</p>\n<h4>ACT II</h4>\n<p style=\"text-align: left;\"><strong>Matt T: </strong>Here are some comps based on what you told me.</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>Cool, but where are Screen Options and Help tabs?</p>\n<p style=\"text-align: left;\"><strong>Matt T: </strong>Still working on that.</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>Hm. Wonder if there&#8217;s time to open this up to community designers? I know we&#8217;re in freeze, and it&#8217;s no notice, but you didn&#8217;t get any notice either when we dropped this styling request on your lap a few hours ago. That&#8217;s the way open software development works: sometimes the best ideas come at the last minute!</p>\n<p style=\"text-align: left;\"><strong>Matt T:</strong> I&#8217;m all for letting the community take a stab at it. Especially if they come up with something brilliant to do with the Screen Options and Help tabs.</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>I&#8217;ll ask Ryan about release date and see if there&#8217;s time. I know they wanted your style recommendations today.</p>\n<h4>Act III</h4>\n<p><strong>Ryan: </strong>Tuesday is probably doable, no later than that for final delivery of style and any gradient graphics, etc.</p>\n<p><strong>Jane: </strong>Awesome! People will hate me for the short notice after the has-patch marathon, but since it&#8217;s a small project and over the weekend, and wasn&#8217;t even something anyone was planning until a few hours ago, I&#8217;m <strong>*really hoping*</strong> people will take this for what it is, an attempt to give more people input into an upcoming visual change in the interface, even if it&#8217;s not a huge one.</p>\n<p><strong>Ryan:</strong> Would have the benefit of warning people that header and menu will be changed a bit.</p>\n<p><strong>Jane:</strong> And we can have a vote. If I can get all the materials together and post in the morning, that would give 2 days of design time for submissions on Monday, and if we do a day of voting Tuesday, that&#8217;s 3 days notice for the vote. I&#8217;ll make sure to post to all the lists, etc.</p>\n<p><strong>Ryan: </strong>Will we announce with comps from Matt T as examples of what we&#8217;re thinking?</p>\n<p><strong>Jane:</strong> I&#8217;ll write up the UX reasons for considering the change, and Matt T can provide some style guidelines and his original comps so no one will have to waste time mocking up the basic screen layout.</p>\n<p><strong>Ryan:</strong> That would help set the scope. We just want tweaks here and there, given the timing.</p>\n<p><strong>Jane: </strong>Woot!</p>\n<p><strong>On Your Mark, Get Set&#8230;</strong><br />\nOkay, so here&#8217;s the deal. Modifying the nav/header to be a little nicer is was a last-minute design idea, and if it can&#8217;t be worked out in the time we have left before 2.8 (which is very little), we&#8217;ll just wait until 2.9 to work on it. But! If someone comes up with something the community really likes and it doesn&#8217;t break any of the design guidelines for the rest of WordPress, we could sneak it in.</p>\n<p><a href=\"http://wordpress.org/development/?page_id=661\">UX and design guidelines for this mini-project are posted here</a> (so as not to clog up anyone&#8217;s feed reader with big graphics). Read through the UX stuff, check out the comps Matt Thomas mocked up last night (with absolutely no notice, for the record). Use the .psd as your base, and when it&#8217;s time to submit your ideas, make a .jpg or .png and post a link to it in the comments on this post. (Note: Only comments containing a link to a design submission using this format will be approved. For general discussion about this design challenge or any of the submissions, please head into the #wordpress-dev IRC channel.)</p>\n<p>Submit the link to your comps by 1am Tuesday, April 28 UTC (7pm Monday, April 27, New York time). If you have questions or want early feedback, we&#8217;ll be in and out of the #wordpress-dev IRC channel between now and then.</p>\n<p>Once we&#8217;ve received the submissions, we&#8217;ll post a voting survey (much simpler than the icon survey; this one will be more of poll, just choose the one you like best) as soon as possible, and will post the link to it here as soon as it&#8217;s online. We&#8217;ll only keep voting open for one day because of the 2.8 deadline, so put it on your calendar if you think you&#8217;ll forget. Voting will close at 2am Wednesday, April 29 UTC (8pm Tuesday, April 28, New York time). Results will be announced the following day.</p>\n<p><strong><a href=\"http://wordpress.org/development/?page_id=661\">Go!</a></strong></p>\n<p><span style=\"color: #888888;\"><em>* Chats above are a conglomeration of actual chats. </em></span></p>\n<p><strong>Reminder: Only comments containing a link to a design submission will be published here. All other comments will be deleted. </strong> </p>\n<p>If you want to leave a public comment about this contest, the design, etc., I&#8217;ve created a thread in the forums that you can use. <a href=\"http://wordpress.org/support/topic/265261\">Please discuss these things there</a>. If you leave a regular comment here on this blog, no one will be able to reply to you, because only actual links to design submissions will be posted in the comments here. </p>\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:90:\"http://wordpress.org/development/2009/04/design-tweaks-whos-in-an-idea-in-three-acts/feed/\";}s:5:\"slash\";a:1:{s:8:\"comments\";s:2:\"17\";}s:7:\"summary\";s:328:\"\nACT I\nJane: It is a thorn in my side that the blog name header is above the &#8220;dashboard&#8221; nav section in the admin, since in MU installations and with plugins (like stats), things in the Dashboard section span multiple blogs. Makes more sense for the header to head only the per-blog content area.\nMark: I agree [...]\";s:12:\"atom_content\";s:7119:\"<h4 style=\"text-align: left;\"></h4>\n<h4 style=\"text-align: left;\">ACT I</h4>\n<p style=\"text-align: left;\"><strong>Jane:</strong> It is a thorn in my side that the blog name header is above the &#8220;dashboard&#8221; nav section in the admin, since in MU installations and with plugins (like stats), things in the Dashboard section span multiple blogs. Makes more sense for the header to head only the per-blog content area.</p>\n<p style=\"text-align: left;\"><strong>Mark:</strong> I agree about the header. &#8220;This is the menu, this is the content.&#8221;</p>\n<p style=\"text-align: left;\"><strong>All: </strong>Yep.</p>\n<p style=\"text-align: left;\"><span style=\"color: #888888;\"><em>Five minutes later&#8230;</em></span></p>\n<p style=\"text-align: left;\"><strong>Mark: </strong>What do you guys this of this quick mockup I just did, playing with the admin header?<br />\n<img src=\"http://wpdotorg.wordpress.com/files/2009/04/mark-mockup.png\" alt=\"Mark Jaquith\'s mockup\" />\n</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>I like it that the nav is not under the header. Might need some styling help. I was also thinking maybe the favorites menu should drop down into the white h2 area by screen options/help tabs.</p>\n<p style=\"text-align: left;\"><strong>Ryan: </strong>Menu color to the top with blog title pushed over and favorites next to screen options sounds quite nice.</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>I&#8217;ll ask Matt Thomas if he could style it <em>[ed. note: Matt Thomas created the visual style for 2.7]</em>, and we can see what people think, maybe post on <a href=\"http://wpdevel.wordpress.com/\">wpdevel</a> for feedback.</p>\n<p style=\"text-align: left;\"><strong>Ryan: </strong>If it&#8217;s quick, maybe we could even get it into 2.8.</p>\n<h4>ACT II</h4>\n<p style=\"text-align: left;\"><strong>Matt T: </strong>Here are some comps based on what you told me.</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>Cool, but where are Screen Options and Help tabs?</p>\n<p style=\"text-align: left;\"><strong>Matt T: </strong>Still working on that.</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>Hm. Wonder if there&#8217;s time to open this up to community designers? I know we&#8217;re in freeze, and it&#8217;s no notice, but you didn&#8217;t get any notice either when we dropped this styling request on your lap a few hours ago. That&#8217;s the way open software development works: sometimes the best ideas come at the last minute!</p>\n<p style=\"text-align: left;\"><strong>Matt T:</strong> I&#8217;m all for letting the community take a stab at it. Especially if they come up with something brilliant to do with the Screen Options and Help tabs.</p>\n<p style=\"text-align: left;\"><strong>Jane: </strong>I&#8217;ll ask Ryan about release date and see if there&#8217;s time. I know they wanted your style recommendations today.</p>\n<h4>Act III</h4>\n<p><strong>Ryan: </strong>Tuesday is probably doable, no later than that for final delivery of style and any gradient graphics, etc.</p>\n<p><strong>Jane: </strong>Awesome! People will hate me for the short notice after the has-patch marathon, but since it&#8217;s a small project and over the weekend, and wasn&#8217;t even something anyone was planning until a few hours ago, I&#8217;m <strong>*really hoping*</strong> people will take this for what it is, an attempt to give more people input into an upcoming visual change in the interface, even if it&#8217;s not a huge one.</p>\n<p><strong>Ryan:</strong> Would have the benefit of warning people that header and menu will be changed a bit.</p>\n<p><strong>Jane:</strong> And we can have a vote. If I can get all the materials together and post in the morning, that would give 2 days of design time for submissions on Monday, and if we do a day of voting Tuesday, that&#8217;s 3 days notice for the vote. I&#8217;ll make sure to post to all the lists, etc.</p>\n<p><strong>Ryan: </strong>Will we announce with comps from Matt T as examples of what we&#8217;re thinking?</p>\n<p><strong>Jane:</strong> I&#8217;ll write up the UX reasons for considering the change, and Matt T can provide some style guidelines and his original comps so no one will have to waste time mocking up the basic screen layout.</p>\n<p><strong>Ryan:</strong> That would help set the scope. We just want tweaks here and there, given the timing.</p>\n<p><strong>Jane: </strong>Woot!</p>\n<p><strong>On Your Mark, Get Set&#8230;</strong><br />\nOkay, so here&#8217;s the deal. Modifying the nav/header to be a little nicer is was a last-minute design idea, and if it can&#8217;t be worked out in the time we have left before 2.8 (which is very little), we&#8217;ll just wait until 2.9 to work on it. But! If someone comes up with something the community really likes and it doesn&#8217;t break any of the design guidelines for the rest of WordPress, we could sneak it in.</p>\n<p><a href=\"http://wordpress.org/development/?page_id=661\">UX and design guidelines for this mini-project are posted here</a> (so as not to clog up anyone&#8217;s feed reader with big graphics). Read through the UX stuff, check out the comps Matt Thomas mocked up last night (with absolutely no notice, for the record). Use the .psd as your base, and when it&#8217;s time to submit your ideas, make a .jpg or .png and post a link to it in the comments on this post. (Note: Only comments containing a link to a design submission using this format will be approved. For general discussion about this design challenge or any of the submissions, please head into the #wordpress-dev IRC channel.)</p>\n<p>Submit the link to your comps by 1am Tuesday, April 28 UTC (7pm Monday, April 27, New York time). If you have questions or want early feedback, we&#8217;ll be in and out of the #wordpress-dev IRC channel between now and then.</p>\n<p>Once we&#8217;ve received the submissions, we&#8217;ll post a voting survey (much simpler than the icon survey; this one will be more of poll, just choose the one you like best) as soon as possible, and will post the link to it here as soon as it&#8217;s online. We&#8217;ll only keep voting open for one day because of the 2.8 deadline, so put it on your calendar if you think you&#8217;ll forget. Voting will close at 2am Wednesday, April 29 UTC (8pm Tuesday, April 28, New York time). Results will be announced the following day.</p>\n<p><strong><a href=\"http://wordpress.org/development/?page_id=661\">Go!</a></strong></p>\n<p><span style=\"color: #888888;\"><em>* Chats above are a conglomeration of actual chats. </em></span></p>\n<p><strong>Reminder: Only comments containing a link to a design submission will be published here. All other comments will be deleted. </strong> </p>\n<p>If you want to leave a public comment about this contest, the design, etc., I&#8217;ve created a thread in the forums that you can use. <a href=\"http://wordpress.org/support/topic/265261\">Please discuss these things there</a>. If you leave a regular comment here on this blog, no one will be able to reply to you, because only actual links to design submissions will be posted in the comments here. </p>\n\";}}s:7:\"channel\";a:8:{s:5:\"title\";s:26:\"WordPress Development Blog\";s:4:\"link\";s:32:\"http://wordpress.org/development\";s:11:\"description\";s:33:\"WordPress development and updates\";s:13:\"lastbuilddate\";s:31:\"Sun, 07 Jun 2009 23:29:49 +0000\";s:9:\"generator\";s:39:\"http://wordpress.org/?v=2.8-beta2-11509\";s:8:\"language\";s:2:\"en\";s:2:\"sy\";a:2:{s:12:\"updateperiod\";s:6:\"hourly\";s:15:\"updatefrequency\";s:1:\"1\";}s:7:\"tagline\";s:33:\"WordPress development and updates\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}','no'),(95,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4_ts','1244448165','no'),(96,0,'rss_57bc725ad6568758915363af670fd8bc','O:9:\"MagpieRSS\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:15:{i:0;a:7:{s:5:\"title\";s:18:\"itex on \"iTwitter\"\";s:4:\"link\";s:56:\"http://wordpress.org/extend/plugins/itwitter/#post-11147\";s:7:\"pubdate\";s:31:\"Sun, 07 Jun 2009 11:20:52 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"itex\";}s:4:\"guid\";s:42:\"11147@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:8:\"Twitter.\";s:7:\"summary\";s:8:\"Twitter.\";}i:1;a:7:{s:5:\"title\";s:32:\"minimus on \"wp-copyrighted-post\"\";s:4:\"link\";s:67:\"http://wordpress.org/extend/plugins/wp-copyrighted-post/#post-11146\";s:7:\"pubdate\";s:31:\"Sun, 07 Jun 2009 11:17:33 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"minimus\";}s:4:\"guid\";s:42:\"11146@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:59:\"Adds copyright notice in the end of each post of your blog.\";s:7:\"summary\";s:59:\"Adds copyright notice in the end of each post of your blog.\";}i:2;a:7:{s:5:\"title\";s:41:\"pishmishy on \"WordPress Password Cracker\"\";s:4:\"link\";s:74:\"http://wordpress.org/extend/plugins/wordpress-password-cracker/#post-11145\";s:7:\"pubdate\";s:31:\"Sun, 07 Jun 2009 10:41:01 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:9:\"pishmishy\";}s:4:\"guid\";s:42:\"11145@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:57:\"Audit WordPress user passwords against a dictionary file.\";s:7:\"summary\";s:57:\"Audit WordPress user passwords against a dictionary file.\";}i:3;a:7:{s:5:\"title\";s:27:\"hacsat on \"User Post Count\"\";s:4:\"link\";s:63:\"http://wordpress.org/extend/plugins/user-post-count/#post-11144\";s:7:\"pubdate\";s:31:\"Sun, 07 Jun 2009 10:37:54 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"hacsat\";}s:4:\"guid\";s:42:\"11144@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:57:\"This plugin shows the post count of authors in dashboard.\";s:7:\"summary\";s:57:\"This plugin shows the post count of authors in dashboard.\";}i:4;a:7:{s:5:\"title\";s:34:\"Kau-Boy on \"Kau-Boys AutoComplete\"\";s:4:\"link\";s:70:\"http://wordpress.org/extend/plugins/kau-boys-autocompleter/#post-11141\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 23:44:48 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Kau-Boy\";}s:4:\"guid\";s:42:\"11141@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:132:\"Kau-Boys AutoCompleter uses the Ajax.Autocompleter function of script.aculo.us the search for post within the title and the content.\";s:7:\"summary\";s:132:\"Kau-Boys AutoCompleter uses the Ajax.Autocompleter function of script.aculo.us the search for post within the title and the content.\";}i:5;a:7:{s:5:\"title\";s:26:\"EmmanuelG on \"EG-Archives\"\";s:4:\"link\";s:59:\"http://wordpress.org/extend/plugins/eg-archives/#post-11140\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 22:13:26 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:9:\"EmmanuelG\";}s:4:\"guid\";s:42:\"11140@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:133:\"EG-Archives provides a widget (and a template tag) to display archives in yearly mode, AND monthly, according a specified pivot date.\";s:7:\"summary\";s:133:\"EG-Archives provides a widget (and a template tag) to display archives in yearly mode, AND monthly, according a specified pivot date.\";}i:6;a:7:{s:5:\"title\";s:27:\"zigon on \"wp-w3-validation\"\";s:4:\"link\";s:64:\"http://wordpress.org/extend/plugins/wp-w3-validation/#post-11138\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 21:10:54 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:5:\"zigon\";}s:4:\"guid\";s:42:\"11138@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:71:\"This plugin shows the xhtml and css validity of an entry, in the entry.\";s:7:\"summary\";s:71:\"This plugin shows the xhtml and css validity of an entry, in the entry.\";}i:7;a:7:{s:5:\"title\";s:33:\"titusbicknell on \"Recent Changes\"\";s:4:\"link\";s:62:\"http://wordpress.org/extend/plugins/recent-changes/#post-11137\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 20:34:47 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:13:\"titusbicknell\";}s:4:\"guid\";s:42:\"11137@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:121:\"Shows the most recently modified pages, posts or both allowing visitors to review recent changes as they would on a wiki.\";s:7:\"summary\";s:121:\"Shows the most recently modified pages, posts or both allowing visitors to review recent changes as they would on a wiki.\";}i:8;a:7:{s:5:\"title\";s:20:\"nsimon on \"SpotGrab\"\";s:4:\"link\";s:56:\"http://wordpress.org/extend/plugins/spotgrab/#post-11135\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 19:39:09 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"nsimon\";}s:4:\"guid\";s:42:\"11135@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:132:\"SpotGrab features videos of rental properties in your area with great maps to help you grab your new place. Find your spot. Grab it.\";s:7:\"summary\";s:132:\"SpotGrab features videos of rental properties in your area with great maps to help you grab your new place. Find your spot. Grab it.\";}i:9;a:7:{s:5:\"title\";s:32:\"samuelwilliams on \"microblogger\"\";s:4:\"link\";s:60:\"http://wordpress.org/extend/plugins/microblogger/#post-11134\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 19:29:18 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:14:\"samuelwilliams\";}s:4:\"guid\";s:42:\"11134@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:147:\"Microblogger allows you to post quick comments to your readers, without need for an account (like the twitter etc plugins) - even from your mobile!\";s:7:\"summary\";s:147:\"Microblogger allows you to post quick comments to your readers, without need for an account (like the twitter etc plugins) - even from your mobile!\";}i:10;a:7:{s:5:\"title\";s:27:\"impNERD on \"Featured Posts\"\";s:4:\"link\";s:62:\"http://wordpress.org/extend/plugins/featured-posts/#post-11133\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 18:37:36 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"impNERD\";}s:4:\"guid\";s:42:\"11133@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:60:\"Display a featured post on your index.php or category pages.\";s:7:\"summary\";s:60:\"Display a featured post on your index.php or category pages.\";}i:11;a:7:{s:5:\"title\";s:39:\"christopherross on \"Get Better Excerpt\"\";s:4:\"link\";s:66:\"http://wordpress.org/extend/plugins/get-better-excerpt/#post-11131\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 18:17:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:15:\"christopherross\";}s:4:\"guid\";s:42:\"11131@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:150:\"The Get Better Excerpt plugin works almost identical to the built in get_the_excerpt() and the_excerpt() functions except it returns whole words inste\";s:7:\"summary\";s:150:\"The Get Better Excerpt plugin works almost identical to the built in get_the_excerpt() and the_excerpt() functions except it returns whole words inste\";}i:12;a:7:{s:5:\"title\";s:40:\"christopherross on \"Get Image from Post\"\";s:4:\"link\";s:67:\"http://wordpress.org/extend/plugins/get-image-from-post/#post-11130\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 18:14:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:15:\"christopherross\";}s:4:\"guid\";s:42:\"11130@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:84:\"This is a simple plugin which allows users to return an image from the related post.\";s:7:\"summary\";s:84:\"This is a simple plugin which allows users to return an image from the related post.\";}i:13;a:7:{s:5:\"title\";s:29:\"solidhex on \"WPINC Prototype\"\";s:4:\"link\";s:63:\"http://wordpress.org/extend/plugins/wpinc-prototype/#post-11118\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 01:24:44 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:8:\"solidhex\";}s:4:\"guid\";s:42:\"11118@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:104:\"Tested on: 2.7.1\n\nInstalls the Prototype and Scriptaculous JavaScript libraries included with WordPress.\";s:7:\"summary\";s:104:\"Tested on: 2.7.1\n\nInstalls the Prototype and Scriptaculous JavaScript libraries included with WordPress.\";}i:14;a:7:{s:5:\"title\";s:32:\"OsExpert.net on \"WP Click Check\"\";s:4:\"link\";s:62:\"http://wordpress.org/extend/plugins/wp-click-check/#post-11094\";s:7:\"pubdate\";s:31:\"Fri, 05 Jun 2009 14:46:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"OsExpert.net\";}s:4:\"guid\";s:42:\"11094@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:65:\"Easy to use Click Counter And Link Click Analytics for Wordpress.\";s:7:\"summary\";s:65:\"Easy to use Click Counter And Link Click Analytics for Wordpress.\";}}s:7:\"channel\";a:6:{s:5:\"title\";s:6:\"Newest\";s:4:\"link\";s:36:\"http://wordpress.org/extend/plugins/\";s:11:\"description\";s:6:\"Newest\";s:8:\"language\";s:2:\"en\";s:7:\"pubdate\";s:31:\"Mon, 08 Jun 2009 08:21:07 +0000\";s:7:\"tagline\";s:6:\"Newest\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}','no'),(97,0,'rss_57bc725ad6568758915363af670fd8bc_ts','1244448165','no'),(98,0,'rss_1a5f760f2e2b48827d4974a60857e7c2','O:9:\"MagpieRSS\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:15:{i:0;a:7:{s:5:\"title\";s:43:\"Steffen.Kuegler on \"Q-Sensei Search Widget\"\";s:4:\"link\";s:70:\"http://wordpress.org/extend/plugins/q-sensei-search-widget/#post-10967\";s:7:\"pubdate\";s:31:\"Fri, 29 May 2009 11:28:54 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:15:\"Steffen.Kuegler\";}s:4:\"guid\";s:42:\"10967@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:87:\"This Plugin allows to start a search at Q-Sensei.com directly from your WordPress Blog.\";s:7:\"summary\";s:87:\"This Plugin allows to start a search at Q-Sensei.com directly from your WordPress Blog.\";}i:1;a:7:{s:5:\"title\";s:27:\"zigon on \"wp-w3-validation\"\";s:4:\"link\";s:64:\"http://wordpress.org/extend/plugins/wp-w3-validation/#post-11138\";s:7:\"pubdate\";s:31:\"Sat, 06 Jun 2009 21:10:54 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:5:\"zigon\";}s:4:\"guid\";s:42:\"11138@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:71:\"This plugin shows the xhtml and css validity of an entry, in the entry.\";s:7:\"summary\";s:71:\"This plugin shows the xhtml and css validity of an entry, in the entry.\";}i:2;a:7:{s:5:\"title\";s:28:\"AT_Internet on \"Analyzer II\"\";s:4:\"link\";s:71:\"http://wordpress.org/extend/plugins/at-internet-analyzer-ii/#post-11073\";s:7:\"pubdate\";s:31:\"Thu, 04 Jun 2009 12:56:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"AT_Internet\";}s:4:\"guid\";s:42:\"11073@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:73:\"Analyzer II allows the automatic tagging of pages generated by WordPress.\";s:7:\"summary\";s:73:\"Analyzer II allows the automatic tagging of pages generated by WordPress.\";}i:3;a:7:{s:5:\"title\";s:28:\"Stargazer on \"WP-BlackCheck\"\";s:4:\"link\";s:61:\"http://wordpress.org/extend/plugins/wp-blackcheck/#post-11090\";s:7:\"pubdate\";s:31:\"Fri, 05 Jun 2009 12:52:18 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:9:\"Stargazer\";}s:4:\"guid\";s:42:\"11090@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:89:\"WP-BlackCheck is a Blacklist Service for Wordpress blogs trying to block common spam IPs.\";s:7:\"summary\";s:89:\"WP-BlackCheck is a Blacklist Service for Wordpress blogs trying to block common spam IPs.\";}i:4;a:7:{s:5:\"title\";s:39:\"CostinTrifan on \"June-Comments-Cleaner\"\";s:4:\"link\";s:69:\"http://wordpress.org/extend/plugins/june-comments-cleaner/#post-10674\";s:7:\"pubdate\";s:31:\"Fri, 15 May 2009 22:56:17 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"CostinTrifan\";}s:4:\"guid\";s:42:\"10674@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:116:\"This plugin will strip out all html tags(except the allowed ones), css attributes and javascript code from comments.\";s:7:\"summary\";s:116:\"This plugin will strip out all html tags(except the allowed ones), css attributes and javascript code from comments.\";}i:5;a:7:{s:5:\"title\";s:34:\"ozh on \"Ozh\' Admin Drop Down Menu\"\";s:4:\"link\";s:71:\"http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/#post-2408\";s:7:\"pubdate\";s:31:\"Fri, 28 Sep 2007 08:10:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:3:\"ozh\";}s:4:\"guid\";s:41:\"2408@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:96:\"All admin links available in a neat horizontal drop down menu. Saves lots of screen real estate!\";s:7:\"summary\";s:96:\"All admin links available in a neat horizontal drop down menu. Saves lots of screen real estate!\";}i:6;a:7:{s:5:\"title\";s:27:\"DiamondSteel on \"WP DS FAQ\"\";s:4:\"link\";s:57:\"http://wordpress.org/extend/plugins/wp-ds-faq/#post-10964\";s:7:\"pubdate\";s:31:\"Fri, 29 May 2009 06:21:12 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"DiamondSteel\";}s:4:\"guid\";s:42:\"10964@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:78:\"WP DS FAQ plugin is just a simple FAQ pages management tool for your web site.\";s:7:\"summary\";s:78:\"WP DS FAQ plugin is just a simple FAQ pages management tool for your web site.\";}i:7;a:7:{s:5:\"title\";s:22:\"nsimon on \"iVolunteer\"\";s:4:\"link\";s:57:\"http://wordpress.org/extend/plugins/ivolunteer/#post-9171\";s:7:\"pubdate\";s:31:\"Tue, 17 Feb 2009 05:25:25 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"nsimon\";}s:4:\"guid\";s:41:\"9171@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:111:\"We make volunteering easy. The iVolunteer Plugin displays local volunteering opportunities in the blog sidebar.\";s:7:\"summary\";s:111:\"We make volunteering easy. The iVolunteer Plugin displays local volunteering opportunities in the blog sidebar.\";}i:8;a:7:{s:5:\"title\";s:31:\"johnbillion on \"User Switching\"\";s:4:\"link\";s:61:\"http://wordpress.org/extend/plugins/user-switching/#post-9428\";s:7:\"pubdate\";s:31:\"Tue, 03 Mar 2009 01:49:40 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"johnbillion\";}s:4:\"guid\";s:41:\"9428@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:70:\"Instant switching between user accounts in WordPress and WordPress MU.\";s:7:\"summary\";s:70:\"Instant switching between user accounts in WordPress and WordPress MU.\";}i:9;a:7:{s:5:\"title\";s:22:\"anukit on \"CycloPress\"\";s:4:\"link\";s:57:\"http://wordpress.org/extend/plugins/cyclopress/#post-6084\";s:7:\"pubdate\";s:31:\"Tue, 24 Jun 2008 19:39:09 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"anukit\";}s:4:\"guid\";s:41:\"6084@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:74:\"Track cycling stats from your bike\'s cyclocomputer and make pretty graphs.\";s:7:\"summary\";s:74:\"Track cycling stats from your bike\'s cyclocomputer and make pretty graphs.\";}i:10;a:7:{s:5:\"title\";s:31:\"bitinn on \"Faster Image Insert\"\";s:4:\"link\";s:66:\"http://wordpress.org/extend/plugins/faster-image-insert/#post-9196\";s:7:\"pubdate\";s:31:\"Thu, 19 Feb 2009 04:08:59 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"bitinn\";}s:4:\"guid\";s:41:\"9196@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:148:\"Fully integrates media manager into editing interface, avoid reloading thickbox pop-up, with enhanced features like multi-insert &amp; mass-editing.\";s:7:\"summary\";s:148:\"Fully integrates media manager into editing interface, avoid reloading thickbox pop-up, with enhanced features like multi-insert &amp; mass-editing.\";}i:11;a:7:{s:5:\"title\";s:46:\"misterbisson on \"Scriblio MARC File Connector\"\";s:4:\"link\";s:74:\"http://wordpress.org/extend/plugins/scriblio-connector-marcfile/#post-9588\";s:7:\"pubdate\";s:31:\"Tue, 10 Mar 2009 20:51:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"misterbisson\";}s:4:\"guid\";s:41:\"9588@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:79:\"Imports MARC records into Scriblio, provides functions used by other importers.\";s:7:\"summary\";s:79:\"Imports MARC records into Scriblio, provides functions used by other importers.\";}i:12;a:7:{s:5:\"title\";s:55:\"gesman on \"Wordpress Membership Site Plugin Memberwing\"\";s:4:\"link\";s:75:\"http://wordpress.org/extend/plugins/memberwing-membership-plugin/#post-7581\";s:7:\"pubdate\";s:31:\"Wed, 05 Nov 2008 22:04:49 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"gesman\";}s:4:\"guid\";s:41:\"7581@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:150:\"MemberWing converts any wordpress based blog/site into powerful membership site. Simplicity, Strong SEO (search engine optimization) features and 4 le\";s:7:\"summary\";s:150:\"MemberWing converts any wordpress based blog/site into powerful membership site. Simplicity, Strong SEO (search engine optimization) features and 4 le\";}i:13;a:7:{s:5:\"title\";s:55:\"gesman on \"Wordpress Membership Site Plugin Memberwing\"\";s:4:\"link\";s:73:\"http://wordpress.org/extend/plugins/membership-site-memberwing/#post-8302\";s:7:\"pubdate\";s:31:\"Tue, 30 Dec 2008 19:37:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"gesman\";}s:4:\"guid\";s:41:\"8302@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:150:\"MemberWing converts any wordpress based blog/site into powerful membership site. Simplicity, Strong SEO (search engine optimization) features and 4 le\";s:7:\"summary\";s:150:\"MemberWing converts any wordpress based blog/site into powerful membership site. Simplicity, Strong SEO (search engine optimization) features and 4 le\";}i:14;a:7:{s:5:\"title\";s:30:\"robfelty on \"Collapsing Pages\"\";s:4:\"link\";s:63:\"http://wordpress.org/extend/plugins/collapsing-pages/#post-5366\";s:7:\"pubdate\";s:31:\"Thu, 24 Apr 2008 01:20:52 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:8:\"robfelty\";}s:4:\"guid\";s:41:\"5366@http://wordpress.org/extend/plugins/\";s:11:\"description\";s:103:\"This plugin uses Javascript to dynamically expand or collapsable the set of\npages for each parent page.\";s:7:\"summary\";s:103:\"This plugin uses Javascript to dynamically expand or collapsable the set of\npages for each parent page.\";}}s:7:\"channel\";a:6:{s:5:\"title\";s:16:\"Recently Updated\";s:4:\"link\";s:36:\"http://wordpress.org/extend/plugins/\";s:11:\"description\";s:16:\"Recently Updated\";s:8:\"language\";s:2:\"en\";s:7:\"pubdate\";s:31:\"Mon, 08 Jun 2009 08:21:08 +0000\";s:7:\"tagline\";s:16:\"Recently Updated\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}','no'),(105,0,'ftp_credentials','a:3:{s:8:\"hostname\";s:14:\"duha-group.net\";s:8:\"username\";s:5:\"admin\";s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(108,0,'akismet_discard_month','false','yes'),(99,0,'rss_1a5f760f2e2b48827d4974a60857e7c2_ts','1244448166','no'),(100,0,'rss_867bd5c64f85878d03a060509cd2f92c','O:9:\"magpierss\":19:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:50:{i:0;a:7:{s:5:\"title\";s:86:\"Weblog Tools Collection: Matt Mullenweg #14 most influential on the web - BusinessWeek\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4246\";s:4:\"link\";s:112:\"http://weblogtoolscollection.com/archives/2008/09/29/matt-mullenweg-14-most-influential-on-the-web-businessweek/\";s:11:\"description\";s:1147:\"<p><a href=\"http://images.businessweek.com/ss/08/09/0929_most_influential/14.htm\">Matt Mullenweg #14 most influential on the web - BusinessWeek</a>.: According to BusinessWeek, Matt Mullenweg is one of the 25 most influential people on the web. He shares the accolade with the likes of Steve Ballmer, Steve jobs, Joi Ito and Jon Stewart. At first I thought that this was a ranking much like the <a href=\"http://www.pcworld.com/article/129301-2/the_50_most_important_people_on_the_web.html\">50 most important people of the web</a> from PC World but this appears to be more of a collection. Matt is labelled as &#8220;The Publisher&#8221; and WordPress as &#8220;the blogging service that most serious bloggers turn to&#8221;.</p>\n<p>The <a href=\"http://www.businessweek.com/technology/content/sep2008/tc20080928_412324.htm\">associated article</a> is more about how the web is magnifying the influence of jon Stewart and others like him and engaging the American Public in online discourse about the political campaigns. Be sure to <a href=\"http://images.businessweek.com/ss/08/09/0929_most_influential/1.htm\">check out the whole slide show</a>.</p>\";s:7:\"pubdate\";s:31:\"Mon, 29 Sep 2008 21:33:43 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:1147:\"<p><a href=\"http://images.businessweek.com/ss/08/09/0929_most_influential/14.htm\">Matt Mullenweg #14 most influential on the web - BusinessWeek</a>.: According to BusinessWeek, Matt Mullenweg is one of the 25 most influential people on the web. He shares the accolade with the likes of Steve Ballmer, Steve jobs, Joi Ito and Jon Stewart. At first I thought that this was a ranking much like the <a href=\"http://www.pcworld.com/article/129301-2/the_50_most_important_people_on_the_web.html\">50 most important people of the web</a> from PC World but this appears to be more of a collection. Matt is labelled as &#8220;The Publisher&#8221; and WordPress as &#8220;the blogging service that most serious bloggers turn to&#8221;.</p>\n<p>The <a href=\"http://www.businessweek.com/technology/content/sep2008/tc20080928_412324.htm\">associated article</a> is more about how the web is magnifying the influence of jon Stewart and others like him and engaging the American Public in online discourse about the political campaigns. Be sure to <a href=\"http://images.businessweek.com/ss/08/09/0929_most_influential/1.htm\">check out the whole slide show</a>.</p>\";}i:1;a:7:{s:5:\"title\";s:51:\"Weblog Tools Collection: WLTC Reader Survey Results\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4243\";s:4:\"link\";s:80:\"http://weblogtoolscollection.com/archives/2008/09/29/wltc-reader-survey-results/\";s:11:\"description\";s:3162:\"<p>We recently ran a reader survey to have you answer some basic questions that we had about Weblog Tools Collection and would like to thank all those who participated in the survey. We were not looking for specific answers but were trying to gauge some sentiments and help shape ourselves to serve you better. We are also looking for a better understanding of where we should spend our resources to provide the most value to our readers. In that spirit, most of the answers were helpful and some of the comments made us look a little closely at the mirror.</p>\n<p>Here are the results from the survey</p>\n<ol>\n<li>Where did you first hear about Weblog Tools Collection?\n<ol>\n<li>WordPress Dashboard 76.2%</li>\n<li>WordPress Planet 4.8%</li>\n<li><strong>Google Search 11.9%</strong></li>\n<li>Link from Another site 4.8%</li>\n<li>User Suggestions/Discussions 2.4%</li>\n<li>Other (please specify) 0.0%</li>\n</ol>\n</li>\n<li>Are you subscribed to Weblog Tools Collection to receive daily updates?\n<ol>\n<li>Subscribed via RSS 25.0%</li>\n<li>Subscribed via Email 0.0%</li>\n<li>Already on Dashboard 50.0%</li>\n<li><strong>Read it on the web 23.8%</strong></li>\n<li>Subscribed via other means 0.0%</li>\n<li>Other (please specify) 1.2%</li>\n</ol>\n</li>\n<li>Satisfaction ratings for Weblog Tools Collection\n<ol>\n<li><strong>Overall satisfaction: 60% voted satisfied, 26% very satisfied</strong></li>\n<li>Content: 50% voted satisfied, 35% very satisfied</li>\n<li><strong>Design: 35% voted somewhat satisfied, 28% satisfied</strong></li>\n<li>Format: 45% voted satisfied, 35% somewhat satisfied (leaning towards somewhat satisfied)</li>\n<li>Frequency of posts: 50% voted satisfied, 35% very satisfied</li>\n<li>Features of blog: 65% voted satisfied, 20% somewhat satisfied</li>\n</ol>\n</li>\n<li>Advertisements\n<ol>\n<li>Are they usable? 45% Undecided, 35% No</li>\n<li>Have you ever clicked on any of them? 65% No, 35% Yes</li>\n<li><strong>Are there too many ads? 45% No, 35% Undecided</strong></li>\n<li>Are you an advertiser? 95% No</li>\n</ol>\n</li>\n<li>Site Features\n<ol>\n<li>Did you know that we offer a news forum? 55% No, 40% Yes</li>\n<li>Did you know that we have a video site? 50% No, 40% Yes</li>\n<li>Did you know that we have offer translations in 9 languages? 50% Yes, 35% No</li>\n<li>Would you participate in future surveys to help us make the site better? 90% Yes</li>\n<li><strong>Did you know that registered users see far fewer ads? 80% No, 13% Not Important</strong></li>\n</ol>\n</li>\n</ol>\n<p>The final question asked how we could improve the user experience on Weblog Tools Collection and about a quarter of the respondents sent us comments. Many of the answers were critical of our design. One simile in particular to a web 0.1 site made me shiver. There were comments on removing some of the ads and suggestions on how to make our posts better with more plugin reviews and more articles on design, development and WordPress technology. The primary sentiments expressed in the polls were also reflected in the detailed comments. We appreciate your feedback. Your opinion matters to us and helps us make the right decisions.</p>\n<p>Now where is that designer?</p>\";s:7:\"pubdate\";s:31:\"Mon, 29 Sep 2008 21:06:55 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:3162:\"<p>We recently ran a reader survey to have you answer some basic questions that we had about Weblog Tools Collection and would like to thank all those who participated in the survey. We were not looking for specific answers but were trying to gauge some sentiments and help shape ourselves to serve you better. We are also looking for a better understanding of where we should spend our resources to provide the most value to our readers. In that spirit, most of the answers were helpful and some of the comments made us look a little closely at the mirror.</p>\n<p>Here are the results from the survey</p>\n<ol>\n<li>Where did you first hear about Weblog Tools Collection?\n<ol>\n<li>WordPress Dashboard 76.2%</li>\n<li>WordPress Planet 4.8%</li>\n<li><strong>Google Search 11.9%</strong></li>\n<li>Link from Another site 4.8%</li>\n<li>User Suggestions/Discussions 2.4%</li>\n<li>Other (please specify) 0.0%</li>\n</ol>\n</li>\n<li>Are you subscribed to Weblog Tools Collection to receive daily updates?\n<ol>\n<li>Subscribed via RSS 25.0%</li>\n<li>Subscribed via Email 0.0%</li>\n<li>Already on Dashboard 50.0%</li>\n<li><strong>Read it on the web 23.8%</strong></li>\n<li>Subscribed via other means 0.0%</li>\n<li>Other (please specify) 1.2%</li>\n</ol>\n</li>\n<li>Satisfaction ratings for Weblog Tools Collection\n<ol>\n<li><strong>Overall satisfaction: 60% voted satisfied, 26% very satisfied</strong></li>\n<li>Content: 50% voted satisfied, 35% very satisfied</li>\n<li><strong>Design: 35% voted somewhat satisfied, 28% satisfied</strong></li>\n<li>Format: 45% voted satisfied, 35% somewhat satisfied (leaning towards somewhat satisfied)</li>\n<li>Frequency of posts: 50% voted satisfied, 35% very satisfied</li>\n<li>Features of blog: 65% voted satisfied, 20% somewhat satisfied</li>\n</ol>\n</li>\n<li>Advertisements\n<ol>\n<li>Are they usable? 45% Undecided, 35% No</li>\n<li>Have you ever clicked on any of them? 65% No, 35% Yes</li>\n<li><strong>Are there too many ads? 45% No, 35% Undecided</strong></li>\n<li>Are you an advertiser? 95% No</li>\n</ol>\n</li>\n<li>Site Features\n<ol>\n<li>Did you know that we offer a news forum? 55% No, 40% Yes</li>\n<li>Did you know that we have a video site? 50% No, 40% Yes</li>\n<li>Did you know that we have offer translations in 9 languages? 50% Yes, 35% No</li>\n<li>Would you participate in future surveys to help us make the site better? 90% Yes</li>\n<li><strong>Did you know that registered users see far fewer ads? 80% No, 13% Not Important</strong></li>\n</ol>\n</li>\n</ol>\n<p>The final question asked how we could improve the user experience on Weblog Tools Collection and about a quarter of the respondents sent us comments. Many of the answers were critical of our design. One simile in particular to a web 0.1 site made me shiver. There were comments on removing some of the ads and suggestions on how to make our posts better with more plugin reviews and more articles on design, development and WordPress technology. The primary sentiments expressed in the polls were also reflected in the detailed comments. We appreciate your feedback. Your opinion matters to us and helps us make the right decisions.</p>\n<p>Now where is that designer?</p>\";}i:2;a:7:{s:5:\"title\";s:32:\"Matt: Startonomics This Thursday\";s:4:\"guid\";s:48:\"http://ma.tt/2008/09/startonomics-this-thursday/\";s:4:\"link\";s:48:\"http://ma.tt/2008/09/startonomics-this-thursday/\";s:11:\"description\";s:180:\"<p>The <a href=\"http://startonomics.com/\">Startonomics conference is happening this Thursday in San Francisco</a> and looks pretty interesting, I&#8217;m going to try to go by.</p>\";s:7:\"pubdate\";s:31:\"Mon, 29 Sep 2008 16:41:42 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:180:\"<p>The <a href=\"http://startonomics.com/\">Startonomics conference is happening this Thursday in San Francisco</a> and looks pretty interesting, I&#8217;m going to try to go by.</p>\";}i:3;a:7:{s:5:\"title\";s:95:\"Weblog Tools Collection: WordPress 2.7 UI Survey #2: Search box, Favorites menu, Future Publish\";s:4:\"guid\";s:119:\"http://weblogtoolscollection.com/archives/2008/09/29/wordpress-27-ui-survey-2-search-box-favorites-menu-future-publish/\";s:4:\"link\";s:119:\"http://weblogtoolscollection.com/archives/2008/09/29/wordpress-27-ui-survey-2-search-box-favorites-menu-future-publish/\";s:11:\"description\";s:402:\"<p><a href=\"http://wordpress.org/development/2008/09/wordpress-2-7-survey-no2/\">WordPress 2.7 UI Survey #2: Search box, Favorites menu, Future Publish</a>.: You wanted more surveys and you got them! This time the WordPress 2.7 UI survey is about the search box, the add new post button and the future publish button. The poll is set for 5000 responses and will close thereafter. Have you voted yet?</p>\";s:7:\"pubdate\";s:31:\"Mon, 29 Sep 2008 14:38:25 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:402:\"<p><a href=\"http://wordpress.org/development/2008/09/wordpress-2-7-survey-no2/\">WordPress 2.7 UI Survey #2: Search box, Favorites menu, Future Publish</a>.: You wanted more surveys and you got them! This time the WordPress 2.7 UI survey is about the search box, the add new post button and the future publish button. The poll is set for 5000 responses and will close thereafter. Have you voted yet?</p>\";}i:4;a:7:{s:5:\"title\";s:80:\"Dev Blog: WordPress 2.7 UI Survey #2: Search box, Favorites menu, Future Publish\";s:4:\"guid\";s:39:\"http://wordpress.org/development/?p=327\";s:4:\"link\";s:66:\"http://wordpress.org/development/2008/09/wordpress-2-7-survey-no2/\";s:11:\"description\";s:787:\"<p>Another round of mini-mockups and multiple choice questions awaits the first 5000 respondents. <a href=\"http://www.polldaddy.com/s/2605E99DE9C97667/\">WordPress 2.7 UI Survey #2</a> is now available to take your opinions regarding:</p>\n<ul>\n<li>Where to put the search box</li>\n<li>Where to put the Add New Post button/favorites menu</li>\n<li>How to label the Future Publish/Edit Timestamp function</li>\n</ul>\n<p>The survey (hosted by the good guys over at PollDaddy.com) will automatically close after receiving 5000 responses, which only took about two days for the navigation survey, so hurry over and <a href=\"http://www.polldaddy.com/s/2605E99DE9C97667/\">cast your votes</a>.</p>\n<p>Note: when the survey has closed, these links will be disabled and this post will be updated.</p>\";s:7:\"pubdate\";s:31:\"Sun, 28 Sep 2008 17:56:13 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"jane\";}s:7:\"summary\";s:787:\"<p>Another round of mini-mockups and multiple choice questions awaits the first 5000 respondents. <a href=\"http://www.polldaddy.com/s/2605E99DE9C97667/\">WordPress 2.7 UI Survey #2</a> is now available to take your opinions regarding:</p>\n<ul>\n<li>Where to put the search box</li>\n<li>Where to put the Add New Post button/favorites menu</li>\n<li>How to label the Future Publish/Edit Timestamp function</li>\n</ul>\n<p>The survey (hosted by the good guys over at PollDaddy.com) will automatically close after receiving 5000 responses, which only took about two days for the navigation survey, so hurry over and <a href=\"http://www.polldaddy.com/s/2605E99DE9C97667/\">cast your votes</a>.</p>\n<p>Note: when the survey has closed, these links will be disabled and this post will be updated.</p>\";}i:5;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/28\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4235\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2008/09/28/wordpress-plugin-releases-for-0928/\";s:11:\"description\";s:3095:\"<p><a href=\"http://geekforbrains.com/wordpress/g4b-photo-gallery-plugin-for-wordpress\"><strong>G4B Photo Gallery</strong></a></p>\n<p>G4B Photo Gallery is a free, flexible plugin for WordPress. It provides a simple and effective way to include a complete gallery anywhere on your site, just by typing in a keyword.</p>\n<p><a href=\"http://www.weinschenker.name/avatars-for-comment-feeds/\"><strong>Avatars for Comment Feeds</strong></a></p>\n<p>It will allow you to add avatars or gravatars of comment-authors to the comment-feeds of your WordPress-blog.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-mollom/\"><strong>WP Mollom</strong></a></p>\n<p>This is a plugin that brings the anti-spam power of <a href=\"http://mollom.com\">Mollom</a> to WordPress. WP-Mollom protects your website against comment and trackback spam. The difference with other spam services is that Mollom takes care of everything. The idea is to relieve you, the administrator, editor, maintainer,&#8230; of whatever moderation or clean up tasks you would normally need to perform in order to keep your blog spamfree.</p>\n<p><a href=\"http://www.dashboardzone.com/monitor-your-blog-goals-with-wordpress-plugin\"><strong>DashboardZone</strong></a></p>\n<p>This plugin will help you and your readers to keep you on track for reaching your targets. We created this wordpress plugin that monitors the various blog goals and in an effort tries to engage your readers more effectively.</p>\n<p><a href=\"http://www.thebrokersedge.com/menu-creator/\"><strong>WordPress Menu Creator</strong></a></p>\n<p>The Brokers Edge developed this free plugin to provide website owners with true easy to manage easy to configure menu solution for WordPress or WordPress CMS sites.</p>\n<p><a href=\"http://ozblog.mmow.biz/2008/08/20/29/\"><strong>WordPress Help Desk</strong></a></p>\n<p>WordPress Help Desk is a comprehensive integrated help desk and trouble ticketing system that helps site admin to support there users and resolve issues quickly. Users and support personnel can interact in real time to report, diagnose and resolve issues quickly and with as little pain as possible. [EDIT] This plugin is ONLY compatible with WordPress MU</p>\n<p><a href=\"http://ozblog.mmow.biz/2008/09/20/wordpress-terms-of-use-plugin/\"><strong>Terms of Use</strong></a></p>\n<p>Instead of making the user agree to the Terms of Use when they join the site this plugin makes them agree to the terms and conditions the first time they login.</p>\n<p><a href=\"http://www.deanlee.cn/wordpress/yaapc\"><strong>Yet another AJAX paged comments</strong></a></p>\n<p>When the user navigate through the comments via page selector,only the comments area will be send to the client,not the full page.This actually save your server load and bandwidth thus making your blog faster and more responsive.</p>\n<p><a href=\"http://striderweb.com/nerdaphernalia/features/wp-javascript-pull-quotes/\"><strong>Javascript Pull Quotes</strong></a></p>\n<p>The JavaScript Pull-Quotes plugin is an add-on for WordPress that allows you to easily insert pull-quotes into your posts and pages.</p>\";s:7:\"pubdate\";s:31:\"Sun, 28 Sep 2008 13:01:48 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:3095:\"<p><a href=\"http://geekforbrains.com/wordpress/g4b-photo-gallery-plugin-for-wordpress\"><strong>G4B Photo Gallery</strong></a></p>\n<p>G4B Photo Gallery is a free, flexible plugin for WordPress. It provides a simple and effective way to include a complete gallery anywhere on your site, just by typing in a keyword.</p>\n<p><a href=\"http://www.weinschenker.name/avatars-for-comment-feeds/\"><strong>Avatars for Comment Feeds</strong></a></p>\n<p>It will allow you to add avatars or gravatars of comment-authors to the comment-feeds of your WordPress-blog.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-mollom/\"><strong>WP Mollom</strong></a></p>\n<p>This is a plugin that brings the anti-spam power of <a href=\"http://mollom.com\">Mollom</a> to WordPress. WP-Mollom protects your website against comment and trackback spam. The difference with other spam services is that Mollom takes care of everything. The idea is to relieve you, the administrator, editor, maintainer,&#8230; of whatever moderation or clean up tasks you would normally need to perform in order to keep your blog spamfree.</p>\n<p><a href=\"http://www.dashboardzone.com/monitor-your-blog-goals-with-wordpress-plugin\"><strong>DashboardZone</strong></a></p>\n<p>This plugin will help you and your readers to keep you on track for reaching your targets. We created this wordpress plugin that monitors the various blog goals and in an effort tries to engage your readers more effectively.</p>\n<p><a href=\"http://www.thebrokersedge.com/menu-creator/\"><strong>WordPress Menu Creator</strong></a></p>\n<p>The Brokers Edge developed this free plugin to provide website owners with true easy to manage easy to configure menu solution for WordPress or WordPress CMS sites.</p>\n<p><a href=\"http://ozblog.mmow.biz/2008/08/20/29/\"><strong>WordPress Help Desk</strong></a></p>\n<p>WordPress Help Desk is a comprehensive integrated help desk and trouble ticketing system that helps site admin to support there users and resolve issues quickly. Users and support personnel can interact in real time to report, diagnose and resolve issues quickly and with as little pain as possible. [EDIT] This plugin is ONLY compatible with WordPress MU</p>\n<p><a href=\"http://ozblog.mmow.biz/2008/09/20/wordpress-terms-of-use-plugin/\"><strong>Terms of Use</strong></a></p>\n<p>Instead of making the user agree to the Terms of Use when they join the site this plugin makes them agree to the terms and conditions the first time they login.</p>\n<p><a href=\"http://www.deanlee.cn/wordpress/yaapc\"><strong>Yet another AJAX paged comments</strong></a></p>\n<p>When the user navigate through the comments via page selector,only the comments area will be send to the client,not the full page.This actually save your server load and bandwidth thus making your blog faster and more responsive.</p>\n<p><a href=\"http://striderweb.com/nerdaphernalia/features/wp-javascript-pull-quotes/\"><strong>Javascript Pull Quotes</strong></a></p>\n<p>The JavaScript Pull-Quotes plugin is an add-on for WordPress that allows you to easily insert pull-quotes into your posts and pages.</p>\";}i:6;a:7:{s:5:\"title\";s:47:\"Matt: Video - How WordPress Has Changed My Life\";s:4:\"guid\";s:61:\"http://ma.tt/2008/09/video-how-wordpress-has-changed-my-life/\";s:4:\"link\";s:61:\"http://ma.tt/2008/09/video-how-wordpress-has-changed-my-life/\";s:11:\"description\";s:103:\"<p></p>\n<p>Hat tip: <a href=\"http://twitter.com/moneycoach/statuses/937836802\">Nancy Zimmerman</a>.</p>\";s:7:\"pubdate\";s:31:\"Sun, 28 Sep 2008 06:36:21 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:103:\"<p></p>\n<p>Hat tip: <a href=\"http://twitter.com/moneycoach/statuses/937836802\">Nancy Zimmerman</a>.</p>\";}i:7;a:7:{s:5:\"title\";s:16:\"Matt: Carrington\";s:4:\"guid\";s:20:\"http://ma.tt/?p=7780\";s:4:\"link\";s:32:\"http://ma.tt/2008/09/carrington/\";s:11:\"description\";s:377:\"<p>Alex King is on stage at WordCamp Utah and just <a href=\"http://crowdfavorite.com/wordpress/\">announced and launched the Carrington theme</a>. It allows really advanced conditional template displays based on any number of variables and executed by naming conventions and its structure. I think this could be the base for a whole new generation of themes and development.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 23:25:25 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:377:\"<p>Alex King is on stage at WordCamp Utah and just <a href=\"http://crowdfavorite.com/wordpress/\">announced and launched the Carrington theme</a>. It allows really advanced conditional template displays based on any number of variables and executed by naming conventions and its structure. I think this could be the base for a whole new generation of themes and development.</p>\";}i:8;a:7:{s:5:\"title\";s:59:\"Matt: Mark Cuban, Jason Calacanis, Hackaday, and Royal Navy\";s:4:\"guid\";s:20:\"http://ma.tt/?p=7773\";s:4:\"link\";s:36:\"http://ma.tt/2008/09/more-switchers/\";s:11:\"description\";s:389:\"<p><a href=\"http://blogmaverick.com/\">Mark Cuban</a>, <a href=\"http://calacanis.com/\">Jason Calacanis</a>, <a href=\"http://hackaday.com/\">Hackaday</a>, and the <a href=\"http://jackspeak.royalnavy.mod.uk/\">Royal Navy</a> all now have WordPress-powered blogs. The first three switched from Blogsmith. Hat tip: <a href=\"http://publisherblog.automattic.com/\">Automattic Publisher Blog</a>.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 22:20:38 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:389:\"<p><a href=\"http://blogmaverick.com/\">Mark Cuban</a>, <a href=\"http://calacanis.com/\">Jason Calacanis</a>, <a href=\"http://hackaday.com/\">Hackaday</a>, and the <a href=\"http://jackspeak.royalnavy.mod.uk/\">Royal Navy</a> all now have WordPress-powered blogs. The first three switched from Blogsmith. Hat tip: <a href=\"http://publisherblog.automattic.com/\">Automattic Publisher Blog</a>.</p>\";}i:9;a:7:{s:5:\"title\";s:29:\"Matt: Revisiting Moral Hazard\";s:4:\"guid\";s:45:\"http://ma.tt/2008/09/revisiting-moral-hazard/\";s:4:\"link\";s:45:\"http://ma.tt/2008/09/revisiting-moral-hazard/\";s:11:\"description\";s:205:\"<p><a href=\"http://economix.blogs.nytimes.com/2008/09/24/revisiting-moral-hazard/\">Revisiting Moral Hazard</a>, by Bob McTeer. (<a href=\"http://ma.tt/photos/person/bob-mcteer\">Whom I&#8217;ve met</a>.)</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:205:\"<p><a href=\"http://economix.blogs.nytimes.com/2008/09/24/revisiting-moral-hazard/\">Revisiting Moral Hazard</a>, by Bob McTeer. (<a href=\"http://ma.tt/photos/person/bob-mcteer\">Whom I&#8217;ve met</a>.)</p>\";}i:10;a:7:{s:5:\"title\";s:22:\"Matt: WordCamp Weekend\";s:4:\"guid\";s:20:\"http://ma.tt/?p=7734\";s:4:\"link\";s:38:\"http://ma.tt/2008/09/wordcamp-weekend/\";s:11:\"description\";s:639:\"<p>There&#8217;s not one but <em><del datetime=\"2008-09-25T16:20:21+00:00\">three</del> four</em> WordCamps this weekend. I just got back from China, where both the <a href=\"http://china.wordcamp.org/\">Beijing and Shanghai events</a> were great. (More pictures coming soon.) This Saturday you can check out WordPress events in <a href=\"http://www.wordcampportland.org/\">Portland</a>, <a href=\"http://utah.wordcamp.org/\">Salt Lake City</a> (I&#8217;ll be attending this one, they asked me first), <a href=\"http://barcamp.org/BarCampVancouver2008WordCamp\">Vancouver</a>, and <a href=\"http://barcamp.org/WordCampBirmingham\">Birmingham</a>.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:639:\"<p>There&#8217;s not one but <em><del datetime=\"2008-09-25T16:20:21+00:00\">three</del> four</em> WordCamps this weekend. I just got back from China, where both the <a href=\"http://china.wordcamp.org/\">Beijing and Shanghai events</a> were great. (More pictures coming soon.) This Saturday you can check out WordPress events in <a href=\"http://www.wordcampportland.org/\">Portland</a>, <a href=\"http://utah.wordcamp.org/\">Salt Lake City</a> (I&#8217;ll be attending this one, they asked me first), <a href=\"http://barcamp.org/BarCampVancouver2008WordCamp\">Vancouver</a>, and <a href=\"http://barcamp.org/WordCampBirmingham\">Birmingham</a>.</p>\";}i:11;a:7:{s:5:\"title\";s:36:\"Matt: Intense Debate Goes Automattic\";s:4:\"guid\";s:20:\"http://ma.tt/?p=7727\";s:4:\"link\";s:52:\"http://ma.tt/2008/09/intense-debate-goes-automattic/\";s:11:\"description\";s:2410:\"<p>Some cool news today &#8212; <a href=\"http://automattic.com/\">Automattic</a> is acquiring <a href=\"http://intensedebate.com/\">Intense Debate</a>. You can read more on<a href=\"http://www.intensedebate.com/blog/2008/09/23/automattic-acquires-intensedebate/\"> Jon&#8217;s blog on Intense Debate</a>, or <a href=\"http://toni.org/2008/09/23/automattic-acquires-intensedebate/\">on Toni&#8217;s blog</a>, or <a href=\"http://vcmike.wordpress.com/2008/09/23/automattic-acquires-intense-debate/\">on VC Mike&#8217;s blog</a>.</p>\n<p>For those of you who aren&#8217;t familiar with the product, Intense Debate supercharges the comment section of WordPress blogs and other sites with cool features like threading, reply by email, voting, reputation, and global profiles. There are a few companies tackling this space right now, but I was impressed with how much ID (Intense Debate) has been able to do with a small team, and happy to find that their common platform (PHP and MySQL) would make integration a lot easier.</p>\n<p>Going forward, the plan is to keep Intense Debate available as a platform-agnostic independent service, much like <a href=\"http://akismet.com/\">Akismet</a>. We&#8217;ll start to integrate its features into WordPress core, WordPress.com, and Gravatar as appropriate. For example, comment threading is going to be in WordPress 2.7, but reply by email is a lot easier to implement on a hosted service like WordPress.com. We&#8217;re also going to be able to lend our expertise in scaling to the ID team to make sure their users enjoy the same hassle-free speed and bulletproof availability as users of other Automattic services.</p>\n<p>Long-term, I think that comments are the most crucial interaction point for blogs, and an area that deserves a lot of investment and innovation. Comments really haven&#8217;t changed in a decade, and it&#8217;s time to spice things up a little.</p>\n<p>We were early in the space with investing in Akismet to solve the spam problem, but now I think the real growth opportunities are in the user interaction and social features across comments. There is a huge opportunity to increase the traffic and engagement of blogs significantly. WordPress.com alone already gets about three legitimate comments every second &#8212; more than a quarter of a million every day. I&#8217;m excited to see what the Intense Debate team can do to make things more interesting.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:2410:\"<p>Some cool news today &#8212; <a href=\"http://automattic.com/\">Automattic</a> is acquiring <a href=\"http://intensedebate.com/\">Intense Debate</a>. You can read more on<a href=\"http://www.intensedebate.com/blog/2008/09/23/automattic-acquires-intensedebate/\"> Jon&#8217;s blog on Intense Debate</a>, or <a href=\"http://toni.org/2008/09/23/automattic-acquires-intensedebate/\">on Toni&#8217;s blog</a>, or <a href=\"http://vcmike.wordpress.com/2008/09/23/automattic-acquires-intense-debate/\">on VC Mike&#8217;s blog</a>.</p>\n<p>For those of you who aren&#8217;t familiar with the product, Intense Debate supercharges the comment section of WordPress blogs and other sites with cool features like threading, reply by email, voting, reputation, and global profiles. There are a few companies tackling this space right now, but I was impressed with how much ID (Intense Debate) has been able to do with a small team, and happy to find that their common platform (PHP and MySQL) would make integration a lot easier.</p>\n<p>Going forward, the plan is to keep Intense Debate available as a platform-agnostic independent service, much like <a href=\"http://akismet.com/\">Akismet</a>. We&#8217;ll start to integrate its features into WordPress core, WordPress.com, and Gravatar as appropriate. For example, comment threading is going to be in WordPress 2.7, but reply by email is a lot easier to implement on a hosted service like WordPress.com. We&#8217;re also going to be able to lend our expertise in scaling to the ID team to make sure their users enjoy the same hassle-free speed and bulletproof availability as users of other Automattic services.</p>\n<p>Long-term, I think that comments are the most crucial interaction point for blogs, and an area that deserves a lot of investment and innovation. Comments really haven&#8217;t changed in a decade, and it&#8217;s time to spice things up a little.</p>\n<p>We were early in the space with investing in Akismet to solve the spam problem, but now I think the real growth opportunities are in the user interaction and social features across comments. There is a huge opportunity to increase the traffic and engagement of blogs significantly. WordPress.com alone already gets about three legitimate comments every second &#8212; more than a quarter of a million every day. I&#8217;m excited to see what the Intense Debate team can do to make things more interesting.</p>\";}i:12;a:7:{s:5:\"title\";s:23:\"Matt: 18 on 30 Under 30\";s:4:\"guid\";s:20:\"http://ma.tt/?p=7725\";s:4:\"link\";s:39:\"http://ma.tt/2008/09/18-on-30-under-30/\";s:11:\"description\";s:212:\"<p>Inc. just announced <a href=\"http://www.inc.com/30under30/2008/\">their Top 30 Entrepreneurs Under 30 and I came in at #18</a>. Cool! Some really young ones on the list though &#8212; I&#8217;m getting old.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:212:\"<p>Inc. just announced <a href=\"http://www.inc.com/30under30/2008/\">their Top 30 Entrepreneurs Under 30 and I came in at #18</a>. Cool! Some really young ones on the list though &#8212; I&#8217;m getting old.</p>\";}i:13;a:7:{s:5:\"title\";s:26:\"Matt: First day in Beijing\";s:4:\"guid\";s:20:\"http://ma.tt/?p=7661\";s:4:\"link\";s:42:\"http://ma.tt/2008/09/first-day-in-beijing/\";s:11:\"description\";s:12849:\"<p>Flying to Beijing, dinner, walking around Tienanmen Square.</p>\n<p><span id=\"more-7661\"></span></p>\n\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0078-2/\" title=\"mcm_0078\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0078-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0079/\" title=\"mcm_0079\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0079-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0080-2/\" title=\"mcm_0080\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0080-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0081-2/\" title=\"mcm_0081\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0081-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0082/\" title=\"mcm_0082\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0082-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0083/\" title=\"mcm_0083\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0083-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0084-2/\" title=\"mcm_0084\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0084-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0086-2/\" title=\"mcm_0086\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0086-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0087/\" title=\"mcm_0087\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0087-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0089-2/\" title=\"mcm_0089\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0089-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0090-2/\" title=\"mcm_0090\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0090-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0091/\" title=\"mcm_0091\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0091-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0092-2/\" title=\"mcm_0092\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0092-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0093-2/\" title=\"mcm_0093\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0093-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0094-2/\" title=\"mcm_0094\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0094-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0095/\" title=\"mcm_0095\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0095-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0096/\" title=\"mcm_0096\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0096-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0097-2/\" title=\"mcm_0097\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0097-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0099-2/\" title=\"mcm_0099\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0099-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0100-2/\" title=\"mcm_0100\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0100-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0101-2/\" title=\"mcm_0101\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0101-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0102-2/\" title=\"mcm_0102\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0102-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0104/\" title=\"mcm_0104\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0104-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0105-2/\" title=\"mcm_0105\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0105-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0108/\" title=\"mcm_0108\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0108-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0110-2/\" title=\"mcm_0110\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0110-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0111-2/\" title=\"mcm_0111\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0111-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0112/\" title=\"mcm_0112\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0112-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0115/\" title=\"mcm_0115\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0115-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0116/\" title=\"mcm_0116\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0116-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0117/\" title=\"mcm_0117\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0117-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0118/\" title=\"mcm_0118\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0118-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0120-2/\" title=\"mcm_0120\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0120-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0122-2/\" title=\"mcm_0122\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0122-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0123/\" title=\"mcm_0123\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0123-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0124-2/\" title=\"mcm_0124\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0124-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0125/\" title=\"mcm_0125\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0125-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0126/\" title=\"mcm_0126\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0126-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0127/\" title=\"mcm_0127\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0127-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0128/\" title=\"mcm_0128\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0128-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0129/\" title=\"mcm_0129\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0129-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0130-2/\" title=\"mcm_0130\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0130-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0131-2/\" title=\"mcm_0131\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0131-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0132/\" title=\"mcm_0132\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0132-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0133-2/\" title=\"mcm_0133\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0133-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0134/\" title=\"mcm_0134\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0134-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0135/\" title=\"mcm_0135\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0135-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0137-2/\" title=\"mcm_0137\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0137-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0141/\" title=\"mcm_0141\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0141-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0144/\" title=\"mcm_0144\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0144-140x210.jpg\" width=\"140\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0145/\" title=\"mcm_0145\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0145-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0148-2/\" title=\"mcm_0148\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0148-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0149/\" title=\"mcm_0149\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0149-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0150/\" title=\"mcm_0150\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0150-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0159/\" title=\"mcm_0159\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0159-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0160/\" title=\"mcm_0160\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0160-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0162-2/\" title=\"mcm_0162\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0162-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0164-2/\" title=\"mcm_0164\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0164-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0166/\" title=\"mcm_0166\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0166-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0167/\" title=\"mcm_0167\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0167-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0168-2/\" title=\"mcm_0168\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0168-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:12849:\"<p>Flying to Beijing, dinner, walking around Tienanmen Square.</p>\n<p><span id=\"more-7661\"></span></p>\n\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0078-2/\" title=\"mcm_0078\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0078-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0079/\" title=\"mcm_0079\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0079-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0080-2/\" title=\"mcm_0080\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0080-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0081-2/\" title=\"mcm_0081\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0081-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0082/\" title=\"mcm_0082\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0082-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0083/\" title=\"mcm_0083\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0083-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0084-2/\" title=\"mcm_0084\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0084-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0086-2/\" title=\"mcm_0086\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0086-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0087/\" title=\"mcm_0087\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0087-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0089-2/\" title=\"mcm_0089\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0089-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0090-2/\" title=\"mcm_0090\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0090-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0091/\" title=\"mcm_0091\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0091-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0092-2/\" title=\"mcm_0092\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0092-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0093-2/\" title=\"mcm_0093\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0093-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0094-2/\" title=\"mcm_0094\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0094-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0095/\" title=\"mcm_0095\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0095-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0096/\" title=\"mcm_0096\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0096-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0097-2/\" title=\"mcm_0097\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0097-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0099-2/\" title=\"mcm_0099\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0099-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0100-2/\" title=\"mcm_0100\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0100-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0101-2/\" title=\"mcm_0101\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0101-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0102-2/\" title=\"mcm_0102\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0102-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0104/\" title=\"mcm_0104\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0104-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0105-2/\" title=\"mcm_0105\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0105-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0108/\" title=\"mcm_0108\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0108-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0110-2/\" title=\"mcm_0110\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0110-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0111-2/\" title=\"mcm_0111\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0111-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0112/\" title=\"mcm_0112\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0112-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0115/\" title=\"mcm_0115\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0115-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0116/\" title=\"mcm_0116\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0116-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0117/\" title=\"mcm_0117\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0117-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0118/\" title=\"mcm_0118\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0118-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0120-2/\" title=\"mcm_0120\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0120-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0122-2/\" title=\"mcm_0122\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0122-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0123/\" title=\"mcm_0123\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0123-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0124-2/\" title=\"mcm_0124\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0124-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0125/\" title=\"mcm_0125\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0125-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0126/\" title=\"mcm_0126\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0126-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0127/\" title=\"mcm_0127\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0127-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0128/\" title=\"mcm_0128\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0128-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0129/\" title=\"mcm_0129\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0129-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0130-2/\" title=\"mcm_0130\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0130-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0131-2/\" title=\"mcm_0131\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0131-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0132/\" title=\"mcm_0132\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0132-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0133-2/\" title=\"mcm_0133\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0133-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0134/\" title=\"mcm_0134\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0134-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0135/\" title=\"mcm_0135\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0135-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0137-2/\" title=\"mcm_0137\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0137-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0141/\" title=\"mcm_0141\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0141-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0144/\" title=\"mcm_0144\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0144-140x210.jpg\" width=\"140\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0145/\" title=\"mcm_0145\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0145-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0148-2/\" title=\"mcm_0148\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0148-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0149/\" title=\"mcm_0149\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0149-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0150/\" title=\"mcm_0150\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0150-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0159/\" title=\"mcm_0159\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0159-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0160/\" title=\"mcm_0160\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0160-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0162-2/\" title=\"mcm_0162\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0162-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0164-2/\" title=\"mcm_0164\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0164-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0166/\" title=\"mcm_0166\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0166-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0167/\" title=\"mcm_0167\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0167-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/first-day-in-beijing/mcm_0168-2/\" title=\"mcm_0168\"><img src=\"http://s.ma.tt/files/2008/09/mcm_0168-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\";}i:14;a:7:{s:5:\"title\";s:20:\"Matt: Going to China\";s:4:\"guid\";s:20:\"http://ma.tt/?p=7659\";s:4:\"link\";s:36:\"http://ma.tt/2008/09/going-to-china/\";s:11:\"description\";s:194:\"<p>I&#8217;m going to be in China later this week for <a href=\"http://china.wordcamp.org/\">WordCamp Shanghai and Beijing</a>. Really looking forward to meeting all the WordPress users there.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:194:\"<p>I&#8217;m going to be in China later this week for <a href=\"http://china.wordcamp.org/\">WordCamp Shanghai and Beijing</a>. Really looking forward to meeting all the WordPress users there.</p>\";}i:15;a:7:{s:5:\"title\";s:13:\"Matt: Dropbox\";s:4:\"guid\";s:29:\"http://ma.tt/2008/09/dropbox/\";s:4:\"link\";s:29:\"http://ma.tt/2008/09/dropbox/\";s:11:\"description\";s:160:\"<p><a href=\"http://www.getdropbox.com/\">Dropbox is open to the public now</a>. I&#8217;d love something like this I could use with my own Subversion server.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:160:\"<p><a href=\"http://www.getdropbox.com/\">Dropbox is open to the public now</a>. I&#8217;d love something like this I could use with my own Subversion server.</p>\";}i:16;a:7:{s:5:\"title\";s:26:\"Matt: CMS Critic Interview\";s:4:\"guid\";s:42:\"http://ma.tt/2008/09/cms-critic-interview/\";s:4:\"link\";s:42:\"http://ma.tt/2008/09/cms-critic-interview/\";s:11:\"description\";s:133:\"<p><a href=\"http://cmscritic.com/wordpress-founder-matt-mullenweg-interview/\">There&#8217;s a new interview up at CMS Critic</a>.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:133:\"<p><a href=\"http://cmscritic.com/wordpress-founder-matt-mullenweg-interview/\">There&#8217;s a new interview up at CMS Critic</a>.</p>\";}i:17;a:7:{s:5:\"title\";s:20:\"Matt: Yahoo Hack Day\";s:4:\"guid\";s:36:\"http://ma.tt/2008/09/yahoo-hack-day/\";s:4:\"link\";s:36:\"http://ma.tt/2008/09/yahoo-hack-day/\";s:11:\"description\";s:257:\"<p><a href=\"http://hackday.org/\">Yahoo&#8217;s Hack Day is coming up this Friday and Saturday</a>. I&#8217;m going to be a judge at the event. The other judges are David Filo, Ash Patel, Cheryl Ainoa, Jeff Clavier, Rashmi Sinha, and Om Malik. Fun group!</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:257:\"<p><a href=\"http://hackday.org/\">Yahoo&#8217;s Hack Day is coming up this Friday and Saturday</a>. I&#8217;m going to be a judge at the event. The other judges are David Filo, Ash Patel, Cheryl Ainoa, Jeff Clavier, Rashmi Sinha, and Om Malik. Fun group!</p>\";}i:18;a:7:{s:5:\"title\";s:24:\"Matt: SEO Book Interview\";s:4:\"guid\";s:40:\"http://ma.tt/2008/09/seo-book-interview/\";s:4:\"link\";s:40:\"http://ma.tt/2008/09/seo-book-interview/\";s:11:\"description\";s:261:\"<p><a href=\"http://www.seobook.com/interview-matt-mullenweg-wordpress-and-automattic-fame\">A new interview with Aaron Wall of SEO Book up</a>. Also did a <a href=\"http://www.blueverse.com/2008/09/09/matt-mullenweg-interviewed/\">short one with Blueverse</a>.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:261:\"<p><a href=\"http://www.seobook.com/interview-matt-mullenweg-wordpress-and-automattic-fame\">A new interview with Aaron Wall of SEO Book up</a>. Also did a <a href=\"http://www.blueverse.com/2008/09/09/matt-mullenweg-interviewed/\">short one with Blueverse</a>.</p>\";}i:19;a:7:{s:5:\"title\";s:23:\"Matt: 10 PHP Principles\";s:4:\"guid\";s:39:\"http://ma.tt/2008/09/10-php-principles/\";s:4:\"link\";s:39:\"http://ma.tt/2008/09/10-php-principles/\";s:11:\"description\";s:116:\"<p><a href=\"http://nettuts.com/articles/10-principles-of-the-php-masters/\">10 Principles of the PHP Masters</a>.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:116:\"<p><a href=\"http://nettuts.com/articles/10-principles-of-the-php-masters/\">10 Principles of the PHP Masters</a>.</p>\";}i:20;a:7:{s:5:\"title\";s:22:\"Matt: NFL on WordPress\";s:4:\"guid\";s:38:\"http://ma.tt/2008/09/nfl-on-wordpress/\";s:4:\"link\";s:38:\"http://ma.tt/2008/09/nfl-on-wordpress/\";s:11:\"description\";s:227:\"<p>The <a href=\"http://blogs.nfl.com/\">new NFL blogs</a> are on WordPress and hosted on VIP. <a href=\"http://publisherblog.automattic.com/2008/09/04/nfl-selects-wordpresscom-vip/\">Check out this info and video about it</a>.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:227:\"<p>The <a href=\"http://blogs.nfl.com/\">new NFL blogs</a> are on WordPress and hosted on VIP. <a href=\"http://publisherblog.automattic.com/2008/09/04/nfl-selects-wordpresscom-vip/\">Check out this info and video about it</a>.</p>\";}i:21;a:7:{s:5:\"title\";s:26:\"Matt: Martha Stewart on WP\";s:4:\"guid\";s:42:\"http://ma.tt/2008/09/martha-stewart-on-wp/\";s:4:\"link\";s:42:\"http://ma.tt/2008/09/martha-stewart-on-wp/\";s:11:\"description\";s:504:\"<p>&#8220;As my blog has grown in popularity, we realized we were ready to switch to a platform offering more programming options.  After careful research, that new platform will be Wordpress, which we hope to launch tomorrow with an exciting photo gallery from my most recent trip to Mexico.&#8221; &#8212; <a href=\"http://www.themarthablog.com/2008/09/blog-upgrade-news.html\">Martha Stewart</a>. <em>Ms. Stewart was previously on Typepad.</em> Hat tip: <a href=\"http://joeclark.org/\">Joe Clark</a>.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:504:\"<p>&#8220;As my blog has grown in popularity, we realized we were ready to switch to a platform offering more programming options.  After careful research, that new platform will be Wordpress, which we hope to launch tomorrow with an exciting photo gallery from my most recent trip to Mexico.&#8221; &#8212; <a href=\"http://www.themarthablog.com/2008/09/blog-upgrade-news.html\">Martha Stewart</a>. <em>Ms. Stewart was previously on Typepad.</em> Hat tip: <a href=\"http://joeclark.org/\">Joe Clark</a>.</p>\";}i:22;a:7:{s:5:\"title\";s:18:\"Matt: Day in Davao\";s:4:\"guid\";s:20:\"http://ma.tt/?p=7553\";s:4:\"link\";s:34:\"http://ma.tt/2008/09/day-in-davao/\";s:11:\"description\";s:15294:\"<p>Arriving in Davao from Manila, dinner, and drinks.</p>\n<p><span id=\"more-7553\"></span></p>\n\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8841/\" title=\"mcm_8841\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8841-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8842/\" title=\"mcm_8842\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8842-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8843/\" title=\"mcm_8843\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8843-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8844/\" title=\"mcm_8844\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8844-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8845/\" title=\"mcm_8845\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8845-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8847/\" title=\"mcm_8847\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8847-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8849/\" title=\"mcm_8849\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8849-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8850/\" title=\"mcm_8850\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8850-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8851/\" title=\"mcm_8851\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8851-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8852/\" title=\"mcm_8852\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8852-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8853/\" title=\"mcm_8853\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8853-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8854/\" title=\"mcm_8854\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8854-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8855/\" title=\"mcm_8855\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8855-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8857/\" title=\"mcm_8857\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8857-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8859/\" title=\"mcm_8859\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8859-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8860/\" title=\"mcm_8860\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8860-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8861/\" title=\"mcm_8861\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8861-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8863/\" title=\"mcm_8863\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8863-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8864/\" title=\"mcm_8864\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8864-195x130.jpg\" width=\"195\" height=\"130\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8865/\" title=\"mcm_8865\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8865-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8866/\" title=\"mcm_8866\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8866-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8868/\" title=\"mcm_8868\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8868-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8856/\" title=\"mcm_8856\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8856-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8870/\" title=\"mcm_8870\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8870-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8871/\" title=\"mcm_8871\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8871-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8872/\" title=\"mcm_8872\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8872-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8873/\" title=\"mcm_8873\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8873-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8874/\" title=\"mcm_8874\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8874-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8875/\" title=\"mcm_8875\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8875-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8876/\" title=\"mcm_8876\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8876-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8877/\" title=\"mcm_8877\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8877-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8878/\" title=\"mcm_8878\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8878-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8879/\" title=\"mcm_8879\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8879-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8880/\" title=\"mcm_8880\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8880-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8881/\" title=\"mcm_8881\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8881-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8884/\" title=\"mcm_8884\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8884-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8886/\" title=\"mcm_8886\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8886-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8888/\" title=\"mcm_8888\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8888-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8890/\" title=\"mcm_8890\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8890-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8891/\" title=\"mcm_8891\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8891-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8892/\" title=\"mcm_8892\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8892-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8895/\" title=\"mcm_8895\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8895-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8896/\" title=\"mcm_8896\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8896-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8897/\" title=\"mcm_8897\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8897-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8899/\" title=\"mcm_8899\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8899-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8900/\" title=\"mcm_8900\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8900-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8903/\" title=\"mcm_8903\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8903-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8904/\" title=\"mcm_8904\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8904-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8905/\" title=\"mcm_8905\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8905-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8908/\" title=\"mcm_8908\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8908-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8909/\" title=\"mcm_8909\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8909-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8910/\" title=\"mcm_8910\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8910-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8911/\" title=\"mcm_8911\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8911-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8914/\" title=\"mcm_8914\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8914-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8915/\" title=\"mcm_8915\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8915-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8916/\" title=\"mcm_8916\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8916-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8917/\" title=\"mcm_8917\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8917-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8919/\" title=\"mcm_8919\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8919-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8920/\" title=\"mcm_8920\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8920-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8922/\" title=\"mcm_8922\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8922-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8924/\" title=\"mcm_8924\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8924-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8925/\" title=\"mcm_8925\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8925-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8928/\" title=\"mcm_8928\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8928-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8930/\" title=\"mcm_8930\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8930-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8931/\" title=\"mcm_8931\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8931-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8934/\" title=\"mcm_8934\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8934-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8935/\" title=\"mcm_8935\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8935-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8936/\" title=\"mcm_8936\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8936-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8937/\" title=\"mcm_8937\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8937-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8938/\" title=\"mcm_8938\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8938-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8943/\" title=\"mcm_8943\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8943-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8946/\" title=\"mcm_8946\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8946-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8947/\" title=\"mcm_8947\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8947-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8948/\" title=\"mcm_8948\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8948-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8950/\" title=\"mcm_8950\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8950-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8952/\" title=\"mcm_8952\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8952-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:15294:\"<p>Arriving in Davao from Manila, dinner, and drinks.</p>\n<p><span id=\"more-7553\"></span></p>\n\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8841/\" title=\"mcm_8841\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8841-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8842/\" title=\"mcm_8842\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8842-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8843/\" title=\"mcm_8843\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8843-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8844/\" title=\"mcm_8844\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8844-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8845/\" title=\"mcm_8845\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8845-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8847/\" title=\"mcm_8847\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8847-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8849/\" title=\"mcm_8849\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8849-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8850/\" title=\"mcm_8850\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8850-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8851/\" title=\"mcm_8851\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8851-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8852/\" title=\"mcm_8852\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8852-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8853/\" title=\"mcm_8853\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8853-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8854/\" title=\"mcm_8854\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8854-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8855/\" title=\"mcm_8855\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8855-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8857/\" title=\"mcm_8857\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8857-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8859/\" title=\"mcm_8859\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8859-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8860/\" title=\"mcm_8860\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8860-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8861/\" title=\"mcm_8861\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8861-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8863/\" title=\"mcm_8863\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8863-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8864/\" title=\"mcm_8864\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8864-195x130.jpg\" width=\"195\" height=\"130\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8865/\" title=\"mcm_8865\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8865-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8866/\" title=\"mcm_8866\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8866-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8868/\" title=\"mcm_8868\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8868-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8856/\" title=\"mcm_8856\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8856-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8870/\" title=\"mcm_8870\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8870-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8871/\" title=\"mcm_8871\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8871-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8872/\" title=\"mcm_8872\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8872-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8873/\" title=\"mcm_8873\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8873-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8874/\" title=\"mcm_8874\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8874-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8875/\" title=\"mcm_8875\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8875-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8876/\" title=\"mcm_8876\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8876-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8877/\" title=\"mcm_8877\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8877-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8878/\" title=\"mcm_8878\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8878-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8879/\" title=\"mcm_8879\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8879-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8880/\" title=\"mcm_8880\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8880-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8881/\" title=\"mcm_8881\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8881-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8884/\" title=\"mcm_8884\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8884-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8886/\" title=\"mcm_8886\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8886-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8888/\" title=\"mcm_8888\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8888-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8890/\" title=\"mcm_8890\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8890-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8891/\" title=\"mcm_8891\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8891-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8892/\" title=\"mcm_8892\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8892-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8895/\" title=\"mcm_8895\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8895-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8896/\" title=\"mcm_8896\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8896-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8897/\" title=\"mcm_8897\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8897-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8899/\" title=\"mcm_8899\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8899-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8900/\" title=\"mcm_8900\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8900-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8903/\" title=\"mcm_8903\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8903-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8904/\" title=\"mcm_8904\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8904-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8905/\" title=\"mcm_8905\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8905-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8908/\" title=\"mcm_8908\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8908-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8909/\" title=\"mcm_8909\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8909-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8910/\" title=\"mcm_8910\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8910-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8911/\" title=\"mcm_8911\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8911-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8914/\" title=\"mcm_8914\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8914-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8915/\" title=\"mcm_8915\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8915-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8916/\" title=\"mcm_8916\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8916-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8917/\" title=\"mcm_8917\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8917-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8919/\" title=\"mcm_8919\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8919-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8920/\" title=\"mcm_8920\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8920-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8922/\" title=\"mcm_8922\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8922-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8924/\" title=\"mcm_8924\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8924-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8925/\" title=\"mcm_8925\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8925-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8928/\" title=\"mcm_8928\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8928-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8930/\" title=\"mcm_8930\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8930-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8931/\" title=\"mcm_8931\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8931-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8934/\" title=\"mcm_8934\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8934-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8935/\" title=\"mcm_8935\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8935-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8936/\" title=\"mcm_8936\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8936-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8937/\" title=\"mcm_8937\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8937-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8938/\" title=\"mcm_8938\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8938-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8943/\" title=\"mcm_8943\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8943-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8946/\" title=\"mcm_8946\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8946-139x210.jpg\" width=\"139\" height=\"210\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8947/\" title=\"mcm_8947\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8947-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8948/\" title=\"mcm_8948\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8948-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8950/\" title=\"mcm_8950\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8950-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\n<a href=\"http://ma.tt/2008/09/day-in-davao/mcm_8952/\" title=\"mcm_8952\"><img src=\"http://s.ma.tt/files/2008/09/mcm_8952-195x129.jpg\" width=\"195\" height=\"129\" class=\"attachment-thumbnail\" alt=\"\" /></a>\";}i:23;a:7:{s:5:\"title\";s:32:\"Matt: Social Media Bible Podcast\";s:4:\"guid\";s:48:\"http://ma.tt/2008/09/social-media-bible-podcast/\";s:4:\"link\";s:48:\"http://ma.tt/2008/09/social-media-bible-podcast/\";s:11:\"description\";s:145:\"<p><a href=\"http://thesocialmediabible.com/2008/08/29/matt-mullenweg-founder-ceo-of-wordpress/\">The Social Media Bible Podcast interview</a>.</p>\";s:7:\"pubdate\";s:31:\"Sat, 27 Sep 2008 20:15:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:145:\"<p><a href=\"http://thesocialmediabible.com/2008/08/29/matt-mullenweg-founder-ceo-of-wordpress/\">The Social Media Bible Podcast interview</a>.</p>\";}i:24;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/26\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4233\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2008/09/26/wordpress-plugin-releases-for-0926/\";s:11:\"description\";s:2224:\"<p><a href=\"http://wordpress.org/extend/plugins/amazon-widgets-shortcodes/\"><strong>WordPress Amazon Widget Shortcodes</strong></a></p>\n<p>This plugin is made for you if you use Amazon Affiliate links (aka Amazon Associates, Amazon Partenaires etc.).</p>\n<p><a href=\"http://code.google.com/p/vlabs/wiki/comment2tweet\"><strong>comment2tweet</strong></a></p>\n<p>comment2tweet is a WordPress plugin which will automatically post new comments from a WordPress blog to a twitter account. The comment posted to twitter will be an excerpt 140 characters long, and includes a short url link back to the comment.</p>\n<p><a href=\"http://playground.ebiene.de/263/wpaffi-wordpress-plugin-fuer-affiliate-links/\"><strong>wpAFFI</strong></a></p>\n<p>Simple and rapid technique to hide your affiliate links.</p>\n<p><a href=\"http://michael.tyson.id.au/smart-404\"><strong>Smart 404</strong></a></p>\n<p>Instead of quickly giving up when a visitor reaches a page that doesn&#8217;t exist, make an effort to guess what they were<br />\nafter in the first place. This plugin will perform a search of your posts, tags and categories, using keywords from the requested<br />\nURL. If there&#8217;s a match, redirect to that page instead of showing the error. If there&#8217;s more than one match, the<br />\n404 template can use some template tags to provide a list of suggestions to the visitor.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/snooth-widget/\"><strong>Snooth Widget</strong></a></p>\n<p>Grabs Snooth.com Wine Ratings and adds them to a sidebar on your WordPress Blog using the Widget engine.</p>\n<p><a href=\"http://sivel.net/2008/09/possibly-related-recent-posts/\"><strong>Possibly Related Recent Posts</strong></a></p>\n<p>Automatically displays possibly related posts at the end of each post.</p>\n<p><a href=\"http://sivel.net/2008/09/easy-disable-visual-editor/\"><strong>Easy Disable Visual Editor</strong></a></p>\n<p>Easily disables the visual editor globally.</p>\n<p><a href=\"http://tantannoodles.com/toolkit/wordpress-s3/\"><strong>WordPress S3</strong></a></p>\n<p>This WordPress plugin allows you to use <a href=\"http://amazon.com/s3\">Amazon’s Simple Storage Service</a> to host your media for your WordPress powered blog.</p>\";s:7:\"pubdate\";s:31:\"Fri, 26 Sep 2008 18:11:34 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:2224:\"<p><a href=\"http://wordpress.org/extend/plugins/amazon-widgets-shortcodes/\"><strong>WordPress Amazon Widget Shortcodes</strong></a></p>\n<p>This plugin is made for you if you use Amazon Affiliate links (aka Amazon Associates, Amazon Partenaires etc.).</p>\n<p><a href=\"http://code.google.com/p/vlabs/wiki/comment2tweet\"><strong>comment2tweet</strong></a></p>\n<p>comment2tweet is a WordPress plugin which will automatically post new comments from a WordPress blog to a twitter account. The comment posted to twitter will be an excerpt 140 characters long, and includes a short url link back to the comment.</p>\n<p><a href=\"http://playground.ebiene.de/263/wpaffi-wordpress-plugin-fuer-affiliate-links/\"><strong>wpAFFI</strong></a></p>\n<p>Simple and rapid technique to hide your affiliate links.</p>\n<p><a href=\"http://michael.tyson.id.au/smart-404\"><strong>Smart 404</strong></a></p>\n<p>Instead of quickly giving up when a visitor reaches a page that doesn&#8217;t exist, make an effort to guess what they were<br />\nafter in the first place. This plugin will perform a search of your posts, tags and categories, using keywords from the requested<br />\nURL. If there&#8217;s a match, redirect to that page instead of showing the error. If there&#8217;s more than one match, the<br />\n404 template can use some template tags to provide a list of suggestions to the visitor.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/snooth-widget/\"><strong>Snooth Widget</strong></a></p>\n<p>Grabs Snooth.com Wine Ratings and adds them to a sidebar on your WordPress Blog using the Widget engine.</p>\n<p><a href=\"http://sivel.net/2008/09/possibly-related-recent-posts/\"><strong>Possibly Related Recent Posts</strong></a></p>\n<p>Automatically displays possibly related posts at the end of each post.</p>\n<p><a href=\"http://sivel.net/2008/09/easy-disable-visual-editor/\"><strong>Easy Disable Visual Editor</strong></a></p>\n<p>Easily disables the visual editor globally.</p>\n<p><a href=\"http://tantannoodles.com/toolkit/wordpress-s3/\"><strong>WordPress S3</strong></a></p>\n<p>This WordPress plugin allows you to use <a href=\"http://amazon.com/s3\">Amazon’s Simple Storage Service</a> to host your media for your WordPress powered blog.</p>\";}i:25;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 09/25\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4231\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2008/09/25/wordpress-theme-releases-for-0925/\";s:11:\"description\";s:1903:\"<p><a href=\"http://stylizedweb.com/2008/09/22/aqueous-free-wordpress-theme/\"><strong>Aqueous</strong></a></p>\n<p><img title=\"aqueous\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/aqueous.jpg\" border=\"0\" alt=\"aqueous\" width=\"199\" height=\"114\" /></p>\n<p>Three column, blue and white theme with a fluid later, designed for higher resolutions.</p>\n<p><a href=\"http://www.va4business.com/business/112/talian-reloaded/\"><strong>Talian Reloaded</strong></a></p>\n<p><a href=\"http://va4business.com/talian/index.php?wptheme=Talian%20reloaded%20green.\"><img title=\"talian-screenshot-banner\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/talianscreenshotbanner.jpg\" border=\"0\" alt=\"talian-screenshot-banner\" width=\"112\" height=\"114\" /></a></p>\n<p>Talian is a 3 colomn premium theme with several new features (Post styling options, mini social bookmakers) and option pages e.g. custom sitemap, custom archives and custom link pages</p>\n<p><a href=\"http://www.myokyawhtun.com/themes-templates/wp-foto-theme.html/\"><strong>WP Foto</strong></a></p>\n<p><a href=\"http://photo.myokyawhtun.com/\"><img title=\"wpfoto\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/wpfoto.jpg\" border=\"0\" alt=\"wpfoto\" width=\"105\" height=\"114\" /></a></p>\n<p>Wp Foto theme is single layout theme designed for photo blogger. It uses custom fields for displaying thumbnail in home page, archive page, category and tag page.</p>\n<p><a href=\"http://www.thematology.com/2008/09/24/free-wordpress-theme-mediterranean/\"><strong>Mediterranean</strong></a></p>\n<p><a href=\"http://demo.thematology.com/?wptheme=mediterranean\"><img title=\"mediterranean\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/mediterranean.jpg\" border=\"0\" alt=\"mediterranean\" width=\"137\" height=\"114\" /></a></p>\n<p>Mediterranean is a two column, widget ready WordPress theme, with right-hand sidebar, from an original XHTML template by DemusDesign.</p>\";s:7:\"pubdate\";s:31:\"Thu, 25 Sep 2008 17:54:44 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:1903:\"<p><a href=\"http://stylizedweb.com/2008/09/22/aqueous-free-wordpress-theme/\"><strong>Aqueous</strong></a></p>\n<p><img title=\"aqueous\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/aqueous.jpg\" border=\"0\" alt=\"aqueous\" width=\"199\" height=\"114\" /></p>\n<p>Three column, blue and white theme with a fluid later, designed for higher resolutions.</p>\n<p><a href=\"http://www.va4business.com/business/112/talian-reloaded/\"><strong>Talian Reloaded</strong></a></p>\n<p><a href=\"http://va4business.com/talian/index.php?wptheme=Talian%20reloaded%20green.\"><img title=\"talian-screenshot-banner\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/talianscreenshotbanner.jpg\" border=\"0\" alt=\"talian-screenshot-banner\" width=\"112\" height=\"114\" /></a></p>\n<p>Talian is a 3 colomn premium theme with several new features (Post styling options, mini social bookmakers) and option pages e.g. custom sitemap, custom archives and custom link pages</p>\n<p><a href=\"http://www.myokyawhtun.com/themes-templates/wp-foto-theme.html/\"><strong>WP Foto</strong></a></p>\n<p><a href=\"http://photo.myokyawhtun.com/\"><img title=\"wpfoto\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/wpfoto.jpg\" border=\"0\" alt=\"wpfoto\" width=\"105\" height=\"114\" /></a></p>\n<p>Wp Foto theme is single layout theme designed for photo blogger. It uses custom fields for displaying thumbnail in home page, archive page, category and tag page.</p>\n<p><a href=\"http://www.thematology.com/2008/09/24/free-wordpress-theme-mediterranean/\"><strong>Mediterranean</strong></a></p>\n<p><a href=\"http://demo.thematology.com/?wptheme=mediterranean\"><img title=\"mediterranean\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/mediterranean.jpg\" border=\"0\" alt=\"mediterranean\" width=\"137\" height=\"114\" /></a></p>\n<p>Mediterranean is a two column, widget ready WordPress theme, with right-hand sidebar, from an original XHTML template by DemusDesign.</p>\";}i:26;a:7:{s:5:\"title\";s:24:\"Alex King: WordCamp Utah\";s:4:\"guid\";s:49:\"http://alexking.org/blog/2008/09/24/wordcamp-utah\";s:4:\"link\";s:49:\"http://alexking.org/blog/2008/09/24/wordcamp-utah\";s:11:\"description\";s:1833:\"<p>The <a href=\"http://crowdfavorite.com\" rel=\"external\">team</a> and I have been hard at work getting some pretty interesting goodies ready for launch at <a href=\"http://utah.wordcamp.org\" rel=\"external\">WordCamp Utah</a> this weekend.</p>\n<p class=\"center\"><a href=\"http://utah.wordcamp.org/\" title=\"WordCamp Utah logo by alexkingorg, on Flickr\"><img src=\"http://farm4.static.flickr.com/3182/2768045330_a1f6ae4503_o.png\" width=\"214\" height=\"221\" alt=\"WordCamp Utah logo\" /></a></p>\n<p>I&#8217;m also giving a <a href=\"http://utah.wordcamp.org/schedule/\" rel=\"external\">presentation</a> on plugin development - so if there is anything you&#8217;d like to hear about specifically please let me know and I&#8217;ll try to get it in there.</p>\n<p><a href=\"http://sharethis.com/item?&wp=2.2.3&amp;publisher=a1583af8-28eb-4210-97bd-2bb5c02bc265&amp;title=WordCamp+Utah&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2008%2F09%2F24%2Fwordcamp-utah\">ShareThis</a></p>\n	<!--\n	<rdf:RDF xmlns=\"http://web.resource.org/cc/\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n	<Work rdf:about=\"\">\n		<license rdf:resource=\"http://creativecommons.org/licenses/by-nc-sa/2.5/\" />\n	<dc:type rdf:resource=\"http://purl.org/dc/dcmitype/Text\" />\n	</Work>\n	<License rdf:about=\"http://creativecommons.org/licenses/by-nc-sa/2.5/\"><permits rdf:resource=\"http://web.resource.org/cc/Reproduction\"/><permits rdf:resource=\"http://web.resource.org/cc/Distribution\"/><requires rdf:resource=\"http://web.resource.org/cc/Notice\"/><requires rdf:resource=\"http://web.resource.org/cc/Attribution\"/><prohibits rdf:resource=\"http://web.resource.org/cc/CommercialUse\"/><permits rdf:resource=\"http://web.resource.org/cc/DerivativeWorks\"/><requires rdf:resource=\"http://web.resource.org/cc/ShareAlike\"/></License></rdf:RDF>\n	-->\";s:7:\"pubdate\";s:31:\"Thu, 25 Sep 2008 00:36:47 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:1833:\"<p>The <a href=\"http://crowdfavorite.com\" rel=\"external\">team</a> and I have been hard at work getting some pretty interesting goodies ready for launch at <a href=\"http://utah.wordcamp.org\" rel=\"external\">WordCamp Utah</a> this weekend.</p>\n<p class=\"center\"><a href=\"http://utah.wordcamp.org/\" title=\"WordCamp Utah logo by alexkingorg, on Flickr\"><img src=\"http://farm4.static.flickr.com/3182/2768045330_a1f6ae4503_o.png\" width=\"214\" height=\"221\" alt=\"WordCamp Utah logo\" /></a></p>\n<p>I&#8217;m also giving a <a href=\"http://utah.wordcamp.org/schedule/\" rel=\"external\">presentation</a> on plugin development - so if there is anything you&#8217;d like to hear about specifically please let me know and I&#8217;ll try to get it in there.</p>\n<p><a href=\"http://sharethis.com/item?&wp=2.2.3&amp;publisher=a1583af8-28eb-4210-97bd-2bb5c02bc265&amp;title=WordCamp+Utah&amp;url=http%3A%2F%2Falexking.org%2Fblog%2F2008%2F09%2F24%2Fwordcamp-utah\">ShareThis</a></p>\n	<!--\n	<rdf:RDF xmlns=\"http://web.resource.org/cc/\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n	<Work rdf:about=\"\">\n		<license rdf:resource=\"http://creativecommons.org/licenses/by-nc-sa/2.5/\" />\n	<dc:type rdf:resource=\"http://purl.org/dc/dcmitype/Text\" />\n	</Work>\n	<License rdf:about=\"http://creativecommons.org/licenses/by-nc-sa/2.5/\"><permits rdf:resource=\"http://web.resource.org/cc/Reproduction\"/><permits rdf:resource=\"http://web.resource.org/cc/Distribution\"/><requires rdf:resource=\"http://web.resource.org/cc/Notice\"/><requires rdf:resource=\"http://web.resource.org/cc/Attribution\"/><prohibits rdf:resource=\"http://web.resource.org/cc/CommercialUse\"/><permits rdf:resource=\"http://web.resource.org/cc/DerivativeWorks\"/><requires rdf:resource=\"http://web.resource.org/cc/ShareAlike\"/></License></rdf:RDF>\n	-->\";}i:27;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/24\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4225\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2008/09/24/wordpress-plugin-releases-for-0924/\";s:11:\"description\";s:2743:\"<p><a href=\"http://www.whoismanu.com/category/blog/wordpress/photoq/\"><strong>PhotoQ</strong></a></p>\n<p>PhotoQ is a WordPress plugin that turns your blog into a photoblog. If you have a lot of pictures to post, PhotoQ is your ideal companion. With PhotoQ you can mass upload several photos at the same time thanks to its batch upload functionality.</p>\n<p><a href=\"http://www.studiograsshopper.ch/wordpress-plugins/admin-drop-down-menus-plugin/\"><strong>Admin Drop Down Menus</strong></a></p>\n<p>Admin Drop Down Menus rearranges the existing default Dashboard/Admin menus into javascript driven dropdowns, making navigation around your Wordpress Admin quicker, easier and considerably more efficient.</p>\n<p><a href=\"http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/\"><strong>Viper&#8217;s Video Quicktags</strong></a></p>\n<p>Just simply click one of the new buttons that this plugin adds to the write screen (rich editor included) and then paste the URL that the video is located at into the prompt box.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/tabbed-widgets/\"><strong>Tabbed Widgets</strong></a></p>\n<p>Tabbed interfaces are the most common on newspaper type website where they can save a lot of vertical space and make it look less cluttered. This plugin allows you to create them.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/hatena-star/\"><strong>Hatena Star</strong></a></p>\n<p>Hatena Star is a recommendation service for webpages, popular in Japan.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/blinko-broadcaster/\"><strong>Blinko Broadcaster for WordPress</strong></a></p>\n<p>The Blinko Broadcaster Plugin gives any WordPress user the opportunity to create their own broadcasting page, by signing up to an evaluation account to Blinko just by filling in an email address, all through a user-friendly interface in the Admin Panel.</p>\n<p><a href=\"http://www.stefanoverna.com/projects/wp_markitup\"><strong>WP MarkitUp</strong></a></p>\n<p>WP MarkItUp! is the Wordpress plugin that replaces the old “quicktags” toolbar with <a href=\"http://markitup.jaysalvat.com/home/\">MarkItUp!</a>, a jQuery plugin written by <a href=\"http://www.jaysalvat.com/\">Jay Salvat</a> that allows to turn any textarea into an highly customizable markup editor.</p>\n<p><a href=\"http://www.wesg.ca/2008/08/wordpress-plugin-find-and-replacer/\"><strong>Find and Replacer</strong></a></p>\n<p>Find and replacer is a powerful search plugin for replacing tags and text throughout your blog installation.</p>\n<p><a href=\"http://blog.gekimoe.org/chating/wp-easy-digg\"><strong>WP Easy Digg</strong></a></p>\n<p>The plugin will add a digg button to every post, so your readers could digg the post if they really like it.</p>\";s:7:\"pubdate\";s:31:\"Wed, 24 Sep 2008 17:58:24 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:2743:\"<p><a href=\"http://www.whoismanu.com/category/blog/wordpress/photoq/\"><strong>PhotoQ</strong></a></p>\n<p>PhotoQ is a WordPress plugin that turns your blog into a photoblog. If you have a lot of pictures to post, PhotoQ is your ideal companion. With PhotoQ you can mass upload several photos at the same time thanks to its batch upload functionality.</p>\n<p><a href=\"http://www.studiograsshopper.ch/wordpress-plugins/admin-drop-down-menus-plugin/\"><strong>Admin Drop Down Menus</strong></a></p>\n<p>Admin Drop Down Menus rearranges the existing default Dashboard/Admin menus into javascript driven dropdowns, making navigation around your Wordpress Admin quicker, easier and considerably more efficient.</p>\n<p><a href=\"http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/\"><strong>Viper&#8217;s Video Quicktags</strong></a></p>\n<p>Just simply click one of the new buttons that this plugin adds to the write screen (rich editor included) and then paste the URL that the video is located at into the prompt box.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/tabbed-widgets/\"><strong>Tabbed Widgets</strong></a></p>\n<p>Tabbed interfaces are the most common on newspaper type website where they can save a lot of vertical space and make it look less cluttered. This plugin allows you to create them.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/hatena-star/\"><strong>Hatena Star</strong></a></p>\n<p>Hatena Star is a recommendation service for webpages, popular in Japan.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/blinko-broadcaster/\"><strong>Blinko Broadcaster for WordPress</strong></a></p>\n<p>The Blinko Broadcaster Plugin gives any WordPress user the opportunity to create their own broadcasting page, by signing up to an evaluation account to Blinko just by filling in an email address, all through a user-friendly interface in the Admin Panel.</p>\n<p><a href=\"http://www.stefanoverna.com/projects/wp_markitup\"><strong>WP MarkitUp</strong></a></p>\n<p>WP MarkItUp! is the Wordpress plugin that replaces the old “quicktags” toolbar with <a href=\"http://markitup.jaysalvat.com/home/\">MarkItUp!</a>, a jQuery plugin written by <a href=\"http://www.jaysalvat.com/\">Jay Salvat</a> that allows to turn any textarea into an highly customizable markup editor.</p>\n<p><a href=\"http://www.wesg.ca/2008/08/wordpress-plugin-find-and-replacer/\"><strong>Find and Replacer</strong></a></p>\n<p>Find and replacer is a powerful search plugin for replacing tags and text throughout your blog installation.</p>\n<p><a href=\"http://blog.gekimoe.org/chating/wp-easy-digg\"><strong>WP Easy Digg</strong></a></p>\n<p>The plugin will add a digg button to every post, so your readers could digg the post if they really like it.</p>\";}i:28;a:7:{s:5:\"title\";s:62:\"Weblog Tools Collection: Automattic Has Acquired IntenseDebate\";s:4:\"guid\";s:91:\"http://weblogtoolscollection.com/archives/2008/09/23/automattic-has-acquired-intensedebate/\";s:4:\"link\";s:91:\"http://weblogtoolscollection.com/archives/2008/09/23/automattic-has-acquired-intensedebate/\";s:11:\"description\";s:1063:\"<p><a href=\"http://www.techcrunch.com/2008/09/23/automattic-has-acquired-intensedebates-enhanced-comment-system/\">Automattic Has Acquired IntenseDebate’s Enhanced Comment System</a>: Automattic has acquired IntenseDebate for an undisclosed amount according to TechCrunch and <a href=\"http://www.intensedebate.com/blog/2008/09/23/automattic-acquires-intensedebate/\">this post on the IntenseDate blog</a>. They are planning to delve into a closed beta once again while they ramp up their hardware for an onslaught of new users from Automattic. Plans include a tight integeration with WordPress (I am assuming with WordPress.com initially and maybe as a plugin for WordPress.org, thus the need for ramping up resources) but will continue to exist as a separate service and will be available for other platforms beside WordPress. Expect more news on this front very soon. <a href=\"http://ma.tt/2008/09/intense-debate-goes-automattic/\">Matt</a> and <a href=\"http://toni.org/2008/09/23/automattic-acquires-intensedebate/\">Toni</a> also talk about the acquisition.</p>\";s:7:\"pubdate\";s:31:\"Tue, 23 Sep 2008 19:24:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:1063:\"<p><a href=\"http://www.techcrunch.com/2008/09/23/automattic-has-acquired-intensedebates-enhanced-comment-system/\">Automattic Has Acquired IntenseDebate’s Enhanced Comment System</a>: Automattic has acquired IntenseDebate for an undisclosed amount according to TechCrunch and <a href=\"http://www.intensedebate.com/blog/2008/09/23/automattic-acquires-intensedebate/\">this post on the IntenseDate blog</a>. They are planning to delve into a closed beta once again while they ramp up their hardware for an onslaught of new users from Automattic. Plans include a tight integeration with WordPress (I am assuming with WordPress.com initially and maybe as a plugin for WordPress.org, thus the need for ramping up resources) but will continue to exist as a separate service and will be available for other platforms beside WordPress. Expect more news on this front very soon. <a href=\"http://ma.tt/2008/09/intense-debate-goes-automattic/\">Matt</a> and <a href=\"http://toni.org/2008/09/23/automattic-acquires-intensedebate/\">Toni</a> also talk about the acquisition.</p>\";}i:29;a:7:{s:5:\"title\";s:56:\"Weblog Tools Collection: Comment Spam with more Kung Fu?\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4216\";s:4:\"link\";s:84:\"http://weblogtoolscollection.com/archives/2008/09/23/comment-spam-with-more-kung-fu/\";s:11:\"description\";s:3256:\"<p>It is no secret that <a href=\"http://blog.akismet.com/2006/05/15/second-most-spammed-man-in-the-world/\">Weblog Tools Collection is a magnet for comment spam</a>. I am not sure if this is something to brag about but Akismet has caught over 3,588,568 spam comments as of writing this article. We spend a considerable amount of time moderating comments on this blog and lately the time spent has increased many fold. Let me explain.</p>\n<p>Since automattic spamming of blogs has mostly been reduced to a trickle due to the likes of Akismet, spammers are now individually targeting blog posts with highly relevant, and in many cases highly convincing comments. I moderated and subsequently spammed a comment today that was over a hundred words long, on the pros and cons of one of the themes on our daily theme posts. I thought the comment was a very well written review of theme until I looked closely. The URI of the poster was a refinancing Made For AdSense page. One click of my itchy index finger and it was gone. Take that sucka!</p>\n<p>This sort of relevant comment spam is not new but the time and effort spent on writing them seems to have increased quite a bit, where legit comments are harder to distinguish from spam. They now come with more Kung Fu and we need to spend more time and effort in identifying them. We use a <a href=\"http://alexking.org/projects/wordpress\">plugin written by Alex King on this blog that can delink the comment authors</a>. However there is lurking danger in just delinking a comment author since if the author was really a spammer, authorizing a comment is akin to authorizing them to post comments on your blog without moderation (they still have to go through Akismet even if the author was previously authorized). So if the comment looks really legit but has a lurking spam link in the URI, and Akismet thinks it is ham then you as the blogger never see it because it never gets put into the moderation queue and the spammer is successful.</p>\n<p>In addition to much better comments from spammers, trackback spam have gotten clever as well. Spammy trackbacks from Russian and Chinese sites have increased considerably. They are much harder to identify as spam because of the language barrier and we have resorted to deleting them if they look anywhere close to being suspicious or add nothing to the conversation. We also delete any and all trackbacks from scraper sites. As a matter of fact, we use the blacklist feature to remove them from contention completely but scapers are another story for another day.</p>\n<p>So we are spending more time moderating comments and often feel guilty that we might be spamming or deleting legitimate comments from folks whose site/blog look spammy to us (there was a poker blog that looked spammy but was written by a legitimate poker fan). Sadly, one persons&#8217; spam might look to another person like ham and vice versa. It is getting harder to determine the spamminess of a comment because the distinguishing features that separate ham from spam continue to get more and more blurry. Please be (more) careful when approving a comment because you might be letting a spammer in.</p>\n<p><span class=\"sqq\">“Named must your fear be before banish it you can.”</span></p>\";s:7:\"pubdate\";s:31:\"Tue, 23 Sep 2008 15:45:26 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:3256:\"<p>It is no secret that <a href=\"http://blog.akismet.com/2006/05/15/second-most-spammed-man-in-the-world/\">Weblog Tools Collection is a magnet for comment spam</a>. I am not sure if this is something to brag about but Akismet has caught over 3,588,568 spam comments as of writing this article. We spend a considerable amount of time moderating comments on this blog and lately the time spent has increased many fold. Let me explain.</p>\n<p>Since automattic spamming of blogs has mostly been reduced to a trickle due to the likes of Akismet, spammers are now individually targeting blog posts with highly relevant, and in many cases highly convincing comments. I moderated and subsequently spammed a comment today that was over a hundred words long, on the pros and cons of one of the themes on our daily theme posts. I thought the comment was a very well written review of theme until I looked closely. The URI of the poster was a refinancing Made For AdSense page. One click of my itchy index finger and it was gone. Take that sucka!</p>\n<p>This sort of relevant comment spam is not new but the time and effort spent on writing them seems to have increased quite a bit, where legit comments are harder to distinguish from spam. They now come with more Kung Fu and we need to spend more time and effort in identifying them. We use a <a href=\"http://alexking.org/projects/wordpress\">plugin written by Alex King on this blog that can delink the comment authors</a>. However there is lurking danger in just delinking a comment author since if the author was really a spammer, authorizing a comment is akin to authorizing them to post comments on your blog without moderation (they still have to go through Akismet even if the author was previously authorized). So if the comment looks really legit but has a lurking spam link in the URI, and Akismet thinks it is ham then you as the blogger never see it because it never gets put into the moderation queue and the spammer is successful.</p>\n<p>In addition to much better comments from spammers, trackback spam have gotten clever as well. Spammy trackbacks from Russian and Chinese sites have increased considerably. They are much harder to identify as spam because of the language barrier and we have resorted to deleting them if they look anywhere close to being suspicious or add nothing to the conversation. We also delete any and all trackbacks from scraper sites. As a matter of fact, we use the blacklist feature to remove them from contention completely but scapers are another story for another day.</p>\n<p>So we are spending more time moderating comments and often feel guilty that we might be spamming or deleting legitimate comments from folks whose site/blog look spammy to us (there was a poker blog that looked spammy but was written by a legitimate poker fan). Sadly, one persons&#8217; spam might look to another person like ham and vice versa. It is getting harder to determine the spamminess of a comment because the distinguishing features that separate ham from spam continue to get more and more blurry. Please be (more) careful when approving a comment because you might be letting a spammer in.</p>\n<p><span class=\"sqq\">“Named must your fear be before banish it you can.”</span></p>\";}i:30;a:7:{s:5:\"title\";s:27:\"Donncha: WP Super Cache 0.8\";s:4:\"guid\";s:29:\"http://ocaoimh.ie/?p=89494030\";s:4:\"link\";s:47:\"http://ocaoimh.ie/2008/09/23/wp-super-cache-08/\";s:11:\"description\";s:3387:\"<p><a href=\"http://ocaoimh.ie/wp-super-cache/\">WP Super Cache</a> is a page caching plugin for WordPress that will significantly speed up your website.</p>\n<p>If you&#8217;re not interested in the changes, simply grab the <a href=\"http://downloads.wordpress.org/plugin/wp-super-cache.0.8.1.zip\">latest version</a> of the plugin and copy the files into your plugin folder. It&#8217;ll work, but if you&#8217;re upgrading, you should read on.</p>\n<p>Major changes in this release:\n<ol>\n<li> Generate a semaphore id based on hostname and cache path to avoid problems on shared hosts, props <a href=\"http://blog.tigertech.net/\">Tigertech</a>.</li>\n<li> If you run WordPress from a different directory to where it&#8217;s installed, supercached files weren&#8217;t deleted when a post was made or updated. That is now fixed. Thanks <a href=\"http://www.viper007bond.com/\">Viper007Bond</a> for all your help on that.</li>\n<li> Paged archives, category pages, and tag pages are now cleared when a post is edited or comment approved. This replicates what WP Cache did all along so you should hopefully see supercached static files updating more often.</li>\n<li> If your .htaccess is read-only, the mod_rewrite rules are displayed on the admin page. Thanks <a href=\"http://mattsblog.ca/\">Matt</a> for the patch.</li>\n<li> Updated mod_rewrite rules won&#8217;t serve static html files if there&#8217;s a &#8220;=&#8221; in the url. Should catch all sorts of problems with plugins and attachments. You&#8217;ll have to manually edit your root .htaccess to match the new rules.</li>\n<li> Set cache control and expiry headers of supercached files. They are cached for 5 minutes, but with a &#8220;must-revalidate&#8221; header. Delete wp-content/cache/.htaccess for the new rules to be updated.</li>\n<li> Check for WordPress MU because it can&#8217;t update the .htaccess file.</li>\n<li> Write supercache html to temporary files and rename. The old way opened the correct file for writing, did some work and wrote the file. In the fraction of a second it took to write the file, someone <em>might</em> request it and get an incomplete page.</li>\n<li> The Supercache expiry time has been removed. <a href=\"http://www.youtube.com/watch?v=RnrXiaPVeHY\">There can be only one.</a></li>\n</ol>\n<p>Edit: 0.8.1 has just been released. This addresses the following:\n<ul>\n<li> The &#8220;forbidden files&#8221; problems some users had is fixed.</li>\n<li> Supercache files were being removed needlessly when a moderated comment was made.</li>\n<li> I added a &#8220;Clear cached files when post is edited&#8221; checkbox.</li>\n<li> I added a &#8220;Delete Cache&#8221; link next to the Dashboard link on the dashboard.</li>\n<li> Tigertech found that when a file is renamed and the new filename is already used, the old remains.</li>\n<li> Updated readme.txt.</li>\n</ul>\n<p><img src=\"http://ocaoimh.ie/?voyeur=1\" /></p><p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/2008/03/13/wp-super-cache-06/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.6\">WP Super Cache 0.6</a></li><li><a href=\"http://ocaoimh.ie/2008/08/20/wp-super-cache-067/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.6.7\">WP Super Cache 0.6.7</a></li><li><a href=\"http://ocaoimh.ie/2008/04/12/wp-super-cache-062/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.6.2\">WP Super Cache 0.6.2</a></li></ul></p>\";s:7:\"pubdate\";s:31:\"Tue, 23 Sep 2008 14:46:50 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Donncha\";}s:7:\"summary\";s:3387:\"<p><a href=\"http://ocaoimh.ie/wp-super-cache/\">WP Super Cache</a> is a page caching plugin for WordPress that will significantly speed up your website.</p>\n<p>If you&#8217;re not interested in the changes, simply grab the <a href=\"http://downloads.wordpress.org/plugin/wp-super-cache.0.8.1.zip\">latest version</a> of the plugin and copy the files into your plugin folder. It&#8217;ll work, but if you&#8217;re upgrading, you should read on.</p>\n<p>Major changes in this release:\n<ol>\n<li> Generate a semaphore id based on hostname and cache path to avoid problems on shared hosts, props <a href=\"http://blog.tigertech.net/\">Tigertech</a>.</li>\n<li> If you run WordPress from a different directory to where it&#8217;s installed, supercached files weren&#8217;t deleted when a post was made or updated. That is now fixed. Thanks <a href=\"http://www.viper007bond.com/\">Viper007Bond</a> for all your help on that.</li>\n<li> Paged archives, category pages, and tag pages are now cleared when a post is edited or comment approved. This replicates what WP Cache did all along so you should hopefully see supercached static files updating more often.</li>\n<li> If your .htaccess is read-only, the mod_rewrite rules are displayed on the admin page. Thanks <a href=\"http://mattsblog.ca/\">Matt</a> for the patch.</li>\n<li> Updated mod_rewrite rules won&#8217;t serve static html files if there&#8217;s a &#8220;=&#8221; in the url. Should catch all sorts of problems with plugins and attachments. You&#8217;ll have to manually edit your root .htaccess to match the new rules.</li>\n<li> Set cache control and expiry headers of supercached files. They are cached for 5 minutes, but with a &#8220;must-revalidate&#8221; header. Delete wp-content/cache/.htaccess for the new rules to be updated.</li>\n<li> Check for WordPress MU because it can&#8217;t update the .htaccess file.</li>\n<li> Write supercache html to temporary files and rename. The old way opened the correct file for writing, did some work and wrote the file. In the fraction of a second it took to write the file, someone <em>might</em> request it and get an incomplete page.</li>\n<li> The Supercache expiry time has been removed. <a href=\"http://www.youtube.com/watch?v=RnrXiaPVeHY\">There can be only one.</a></li>\n</ol>\n<p>Edit: 0.8.1 has just been released. This addresses the following:\n<ul>\n<li> The &#8220;forbidden files&#8221; problems some users had is fixed.</li>\n<li> Supercache files were being removed needlessly when a moderated comment was made.</li>\n<li> I added a &#8220;Clear cached files when post is edited&#8221; checkbox.</li>\n<li> I added a &#8220;Delete Cache&#8221; link next to the Dashboard link on the dashboard.</li>\n<li> Tigertech found that when a file is renamed and the new filename is already used, the old remains.</li>\n<li> Updated readme.txt.</li>\n</ul>\n<p><img src=\"http://ocaoimh.ie/?voyeur=1\" /></p><p><strong>Related Posts</strong><ul><li><a href=\"http://ocaoimh.ie/2008/03/13/wp-super-cache-06/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.6\">WP Super Cache 0.6</a></li><li><a href=\"http://ocaoimh.ie/2008/08/20/wp-super-cache-067/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.6.7\">WP Super Cache 0.6.7</a></li><li><a href=\"http://ocaoimh.ie/2008/04/12/wp-super-cache-062/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.6.2\">WP Super Cache 0.6.2</a></li></ul></p>\";}i:31;a:7:{s:5:\"title\";s:43:\"Lloyd: Official WordPress Logos and Fan Art\";s:4:\"guid\";s:30:\"http://foolswisdom.com/?p=1577\";s:4:\"link\";s:60:\"http://foolswisdom.com/official-wordpress-logos-and-fan-art/\";s:11:\"description\";s:4102:\"<p>I know that <a href=\"http://ma.tt/\">Matt Mullenweg</a> and <a href=\"http://iammattthomas.com/\">Matt Thomas</a> die a little each time they see WordPress fan art that uses a faux logo. I only notice the chubby W because I&#8217;ve been edumacated.</p>\n<p>MT (the real) <a href=\"http://iammattthomas.com/journal/bling\">has updated</a> <a href=\"http://wordpress.org/about/buttons/\">WordPress.org/about/buttons</a> with official WordPress logos in pngs and vector image formats.</p>\n<div class=\"wp-caption aligncenter\"><a href=\"http://wordpress.org/about/buttons/\"><img title=\"WordPress › About » Logos and Graphics\" src=\"http://farm4.static.flickr.com/3159/2845483965_9e92fd4305.jpg\" alt=\"WordPress Logos and WordPress Buttons\" width=\"500\" height=\"409\" /></a><p class=\"wp-caption-text\">WordPress Logos and WordPress Buttons</p></div>\n<p>There are also WordPress desktop wall paper in various official colors and sizes. The official WordPress colors are given in a variety of code systems. Pantone 7468 anyone?</p>\n<p><strong>Fan Art</strong></p>\n<p>The <a href=\"http://wordpress.org/about/fanart/\">fan art</a> page could use some fresh contributions.</p>\n<p>These <strong>naturalized WordPress logos</strong> would be nice additions:</p>\n<div class=\"wp-caption alignnone\"><a href=\"http://photoallan.wordpress.com/2007/08/15/wordpress-india-logo-celebrating-60-years-of-independence/\"><img title=\"WordPress India Independence Logo\" src=\"http://farm4.static.flickr.com/3292/2880228178_9943eee2e1_m.jpg\" alt=\"WordPress India Independence Logo by Allan Fernandes\" width=\"160\" height=\"152\" /></a><p class=\"wp-caption-text\">WordPress India Independence Logo by Allan Fernandes</p></div>\n<p>One or more of the <a href=\"http://www.enveluv.com/blog/2007/08/30/happy-merdeka/\">WordPress Malaysia Independence Logos</a> by Avijit Paul. My favorite are the one&#8217;s with the flower for the O:</p>\n<div class=\"wp-caption alignnone\"><a href=\"http://www.enveluv.com/blog/2007/08/30/happy-merdeka/\"><img title=\"WordPress Malaysia Independence Logos \" src=\"http://farm2.static.flickr.com/1231/1254183619_bb57290e17_o.jpg\" alt=\"\" width=\"413\" height=\"125\" /></a><p class=\"wp-caption-text\">WordPress Malaysia Independence Logos by Avijit Paul</p></div>\n<p>I love the <a href=\"http://philippines.wordcamp.org/\">WordCamp Philippines</a> logo:</p>\n<div class=\"wp-caption alignnone\"><a href=\"http://www.alleba.com/blog/2008/09/10/wordcamp-philippines-2008-wicked/\"><img title=\"WordCamp Philippines Logo\" src=\"http://farm4.static.flickr.com/3247/2880228246_acdc907c18_o.jpg\" alt=\"WordCamp Philippines Logo by Andrew Dela Serna\" width=\"250\" height=\"250\" /></a><p class=\"wp-caption-text\">WordCamp Philippines Logo by Andrew Dela Serna</p></div>\n<p>What is your <strong>favorite WordPress art</strong>?</p>\n<p>Lorelle&#8217;s category icons are brilliant. For example, she uses this image for WordPress News:</p>\n<p><a href=\"http://lorelle.wordpress.com/\"><img class=\"alignnone\" src=\"http://lorelle.files.wordpress.com/2007/01/wpnews1.png\" alt=\"\" width=\"150\" height=\"159\" /></a></p>\n<p>Anyone know the creator of this popular images?</p>\n<p><a title=\"WordPress Halo Logo\" href=\"http://www.flickr.com/photos/lloyds-screenies/2879519763/\"><img src=\"http://farm4.static.flickr.com/3247/2879519763_d2190c21b5_m.jpg\" alt=\"Halo WordPress Logo\" width=\"240\" height=\"186\" /></a></p>\n<p>Same day correction: previously the article suggested the font is Dante, but both Matts have come to my rescue. It <em>used to be</em> the WordPress logo font. When <a href=\"http://www.jasonsantamaria.com/\">Jason Santa Maria</a> designed the new logo a few years ago, he chose the lovely <a rel=\"nofollow\" href=\"http://en.wikipedia.org/wiki/Mrs_Eaves\">Mrs. Eaves</a>.</p>\n<p><a href=\"http://archgfx.net/\">Adam Freetly</a> identified the creator of the “lens flare” logo as being <a href=\"http://danphilibin.com/\">Dan Philibin</a>.</p>\n<div class=\"wp-caption alignnone\"><a title=\"WordPress Bright Logo\" href=\"http://danphilibin.com/\"><img title=\"WordPress \" /></a><p class=\"wp-caption-text\">WordPress \"Lens Flare\" Logo by Dan Philibin</p></div>\";s:7:\"pubdate\";s:31:\"Mon, 22 Sep 2008 21:30:14 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:5:\"Lloyd\";}s:7:\"summary\";s:4102:\"<p>I know that <a href=\"http://ma.tt/\">Matt Mullenweg</a> and <a href=\"http://iammattthomas.com/\">Matt Thomas</a> die a little each time they see WordPress fan art that uses a faux logo. I only notice the chubby W because I&#8217;ve been edumacated.</p>\n<p>MT (the real) <a href=\"http://iammattthomas.com/journal/bling\">has updated</a> <a href=\"http://wordpress.org/about/buttons/\">WordPress.org/about/buttons</a> with official WordPress logos in pngs and vector image formats.</p>\n<div class=\"wp-caption aligncenter\"><a href=\"http://wordpress.org/about/buttons/\"><img title=\"WordPress › About » Logos and Graphics\" src=\"http://farm4.static.flickr.com/3159/2845483965_9e92fd4305.jpg\" alt=\"WordPress Logos and WordPress Buttons\" width=\"500\" height=\"409\" /></a><p class=\"wp-caption-text\">WordPress Logos and WordPress Buttons</p></div>\n<p>There are also WordPress desktop wall paper in various official colors and sizes. The official WordPress colors are given in a variety of code systems. Pantone 7468 anyone?</p>\n<p><strong>Fan Art</strong></p>\n<p>The <a href=\"http://wordpress.org/about/fanart/\">fan art</a> page could use some fresh contributions.</p>\n<p>These <strong>naturalized WordPress logos</strong> would be nice additions:</p>\n<div class=\"wp-caption alignnone\"><a href=\"http://photoallan.wordpress.com/2007/08/15/wordpress-india-logo-celebrating-60-years-of-independence/\"><img title=\"WordPress India Independence Logo\" src=\"http://farm4.static.flickr.com/3292/2880228178_9943eee2e1_m.jpg\" alt=\"WordPress India Independence Logo by Allan Fernandes\" width=\"160\" height=\"152\" /></a><p class=\"wp-caption-text\">WordPress India Independence Logo by Allan Fernandes</p></div>\n<p>One or more of the <a href=\"http://www.enveluv.com/blog/2007/08/30/happy-merdeka/\">WordPress Malaysia Independence Logos</a> by Avijit Paul. My favorite are the one&#8217;s with the flower for the O:</p>\n<div class=\"wp-caption alignnone\"><a href=\"http://www.enveluv.com/blog/2007/08/30/happy-merdeka/\"><img title=\"WordPress Malaysia Independence Logos \" src=\"http://farm2.static.flickr.com/1231/1254183619_bb57290e17_o.jpg\" alt=\"\" width=\"413\" height=\"125\" /></a><p class=\"wp-caption-text\">WordPress Malaysia Independence Logos by Avijit Paul</p></div>\n<p>I love the <a href=\"http://philippines.wordcamp.org/\">WordCamp Philippines</a> logo:</p>\n<div class=\"wp-caption alignnone\"><a href=\"http://www.alleba.com/blog/2008/09/10/wordcamp-philippines-2008-wicked/\"><img title=\"WordCamp Philippines Logo\" src=\"http://farm4.static.flickr.com/3247/2880228246_acdc907c18_o.jpg\" alt=\"WordCamp Philippines Logo by Andrew Dela Serna\" width=\"250\" height=\"250\" /></a><p class=\"wp-caption-text\">WordCamp Philippines Logo by Andrew Dela Serna</p></div>\n<p>What is your <strong>favorite WordPress art</strong>?</p>\n<p>Lorelle&#8217;s category icons are brilliant. For example, she uses this image for WordPress News:</p>\n<p><a href=\"http://lorelle.wordpress.com/\"><img class=\"alignnone\" src=\"http://lorelle.files.wordpress.com/2007/01/wpnews1.png\" alt=\"\" width=\"150\" height=\"159\" /></a></p>\n<p>Anyone know the creator of this popular images?</p>\n<p><a title=\"WordPress Halo Logo\" href=\"http://www.flickr.com/photos/lloyds-screenies/2879519763/\"><img src=\"http://farm4.static.flickr.com/3247/2879519763_d2190c21b5_m.jpg\" alt=\"Halo WordPress Logo\" width=\"240\" height=\"186\" /></a></p>\n<p>Same day correction: previously the article suggested the font is Dante, but both Matts have come to my rescue. It <em>used to be</em> the WordPress logo font. When <a href=\"http://www.jasonsantamaria.com/\">Jason Santa Maria</a> designed the new logo a few years ago, he chose the lovely <a rel=\"nofollow\" href=\"http://en.wikipedia.org/wiki/Mrs_Eaves\">Mrs. Eaves</a>.</p>\n<p><a href=\"http://archgfx.net/\">Adam Freetly</a> identified the creator of the “lens flare” logo as being <a href=\"http://danphilibin.com/\">Dan Philibin</a>.</p>\n<div class=\"wp-caption alignnone\"><a title=\"WordPress Bright Logo\" href=\"http://danphilibin.com/\"><img title=\"WordPress \" /></a><p class=\"wp-caption-text\">WordPress \"Lens Flare\" Logo by Dan Philibin</p></div>\";}i:32;a:7:{s:5:\"title\";s:70:\"Dougal Campbell: WordCamp Birmingham Registration Deadline Approaching\";s:4:\"guid\";s:33:\"http://dougal.gunters.org/?p=1101\";s:4:\"link\";s:95:\"http://dougal.gunters.org/blog/2008/09/22/wordcamp-birmingham-registration-deadline-approaching\";s:11:\"description\";s:582:\"<p><a href=\"http://flickr.com/photos/51184724@N00/97800018\"><img class=\"alignright\" title=\"Vulcan\" src=\"http://farm1.static.flickr.com/40/97800018_cc84632d71_m_d.jpg\" alt=\"\" width=\"160\" height=\"240\" /></a>If you have been thinking about attending <a href=\"http://birmingham.wordcamp.org/\">WordCamp Birmingham 2008</a>, but haven&#8217;t committed yet, now is the time. There are only a couple of hours left to sign up. <a href=\"http://wordcampbham.eventbrite.com/\">Registration is only $25</a>, and that includes lunch and a tee shirt &#8212; talk about a bargain! Register now!</p>\";s:7:\"pubdate\";s:31:\"Mon, 22 Sep 2008 17:28:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"Dougal\";}s:7:\"summary\";s:582:\"<p><a href=\"http://flickr.com/photos/51184724@N00/97800018\"><img class=\"alignright\" title=\"Vulcan\" src=\"http://farm1.static.flickr.com/40/97800018_cc84632d71_m_d.jpg\" alt=\"\" width=\"160\" height=\"240\" /></a>If you have been thinking about attending <a href=\"http://birmingham.wordcamp.org/\">WordCamp Birmingham 2008</a>, but haven&#8217;t committed yet, now is the time. There are only a couple of hours left to sign up. <a href=\"http://wordcampbham.eventbrite.com/\">Registration is only $25</a>, and that includes lunch and a tee shirt &#8212; talk about a bargain! Register now!</p>\";}i:33;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 09/22\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4212\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2008/09/22/wordpress-theme-releases-for-0922/\";s:11:\"description\";s:1850:\"<p><a href=\"http://www.provehicles.co.uk/free-wordpress-theme\"><strong>Pro Vehicles</strong></a></p>\n<p><img title=\"pro-vehicles-theme\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/provehiclestheme.jpg\" border=\"0\" alt=\"pro-vehicles-theme\" width=\"147\" height=\"114\" /></p>\n<p>Simple two column WordPress theme</p>\n<p><a href=\"http://www.codescheme.net/2008/09/22/free-wordpress-theme-alpen-3column/\"><strong>Alpen 3column</strong></a></p>\n<p><a href=\"http://demo.codescheme.net/?wptheme=alpen3col\"><img title=\"alpen\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/alpen.jpg\" border=\"0\" alt=\"alpen\" width=\"188\" height=\"114\" /></a></p>\n<p>Three column, gravatar ready theme with two right sidebars</p>\n<p><a href=\"http://www.paggu.com/free-wordpress-themes/p-clean-2-column-minimalist-wordpress-theme\"><strong>PClean</strong></a></p>\n<p><a href=\"http://demo.paggu.com/index.php?wptheme=P+Clean\"><img title=\"pclean\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/pclean.jpg\" border=\"0\" alt=\"pclean\" width=\"200\" height=\"108\" /></a></p>\n<p>Two Column widget enabled minimalist wordpres theme</p>\n<p><a href=\"http://wcs.ofimdavarzea.com/free-wordpress-theme-clean-news/\"><strong>Clean News</strong></a></p>\n<p><a href=\"http://themes.ofimdavarzea.com/index.php?wptheme=clean-news\"><img title=\"clean-news\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/cleannews.jpg\" border=\"0\" alt=\"clean-news\" width=\"155\" height=\"114\" /></a></p>\n<p>Inspired on Wired Magazine look, Clean News is a theme with a large content area, but it also has a wide sidebar that allows to display even a 300px width ad. Home and single sidebars are independent, both widgetized, so you can easily choose what and where to display. A lot of white space to make your content stand out, low weight and no plugins required. It will load in the blink of an eye.</p>\";s:7:\"pubdate\";s:31:\"Mon, 22 Sep 2008 14:24:14 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:1850:\"<p><a href=\"http://www.provehicles.co.uk/free-wordpress-theme\"><strong>Pro Vehicles</strong></a></p>\n<p><img title=\"pro-vehicles-theme\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/provehiclestheme.jpg\" border=\"0\" alt=\"pro-vehicles-theme\" width=\"147\" height=\"114\" /></p>\n<p>Simple two column WordPress theme</p>\n<p><a href=\"http://www.codescheme.net/2008/09/22/free-wordpress-theme-alpen-3column/\"><strong>Alpen 3column</strong></a></p>\n<p><a href=\"http://demo.codescheme.net/?wptheme=alpen3col\"><img title=\"alpen\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/alpen.jpg\" border=\"0\" alt=\"alpen\" width=\"188\" height=\"114\" /></a></p>\n<p>Three column, gravatar ready theme with two right sidebars</p>\n<p><a href=\"http://www.paggu.com/free-wordpress-themes/p-clean-2-column-minimalist-wordpress-theme\"><strong>PClean</strong></a></p>\n<p><a href=\"http://demo.paggu.com/index.php?wptheme=P+Clean\"><img title=\"pclean\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/pclean.jpg\" border=\"0\" alt=\"pclean\" width=\"200\" height=\"108\" /></a></p>\n<p>Two Column widget enabled minimalist wordpres theme</p>\n<p><a href=\"http://wcs.ofimdavarzea.com/free-wordpress-theme-clean-news/\"><strong>Clean News</strong></a></p>\n<p><a href=\"http://themes.ofimdavarzea.com/index.php?wptheme=clean-news\"><img title=\"clean-news\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/cleannews.jpg\" border=\"0\" alt=\"clean-news\" width=\"155\" height=\"114\" /></a></p>\n<p>Inspired on Wired Magazine look, Clean News is a theme with a large content area, but it also has a wide sidebar that allows to display even a 300px width ad. Home and single sidebars are independent, both widgetized, so you can easily choose what and where to display. A lot of white space to make your content stand out, low weight and no plugins required. It will load in the blink of an eye.</p>\";}i:34;a:7:{s:5:\"title\";s:49:\"Weblog Tools Collection: WordPress Weekly Is Back\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4197\";s:4:\"link\";s:78:\"http://weblogtoolscollection.com/archives/2008/09/21/wordpress-weekly-is-back/\";s:11:\"description\";s:10824:\"<p>Many of you may or may not remember a WordPress podcast that was hosted and produced by yours truly called <a href=\"http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=34224&amp;cmd=tc\">WordPress Weekly</a>. The show made it through 22 episodes. Some of those included staple interviews with Matt Mullenweg, Lorelle Van Fossen, and Alex King. Because I took on more work, it became increasingly difficult to produce the show on a weekly basis for no pay. Don&#8217;t get me wrong, I had a blast doing it but I have to pay the bills. Therefor, I opted to concentrate on the work that would pay me versus doing the show for nothing. After I stopped producing the show, comments, emails and feedback through instant messaging started coming in, letting me know how much you enjoyed the show. Many people who had just discovered the show let me know that they were disappointed there would be no more episodes after 22.</p>\n<p>I&#8217;ve taken all of your feedback to heart and have decided to bring the show back. Mark and I have decided to produce the show for WeblogToolsCollection as part of our content on this blog.</p>\n<h2>Little Bit Of History:</h2>\n<p>WordPress Weekly was a weekly podcast that discussed what happened within the past week within the world of WordPress. Generally every show was an open round table discussion. I had a number of people who would call in and chime in on stories I discussed during the show. Sometimes, this would be anywhere between 3-7 people on the phone at once, talking over each other but generally, having a good time. This time around, I plan on changing things up a bit. For starters, the show will now have a co-host. If there is anything I&#8217;ve learned while doing WordPress Weekly for 22 episodes, it is that having someone to talk to, to bounce stories off of is much better than facing the possibility of talking to myself, or a room of empty people. Two people engaging in a conversation is much better than what I can do single handedly. Also, I don&#8217;t have to worry if whether or not people will call in to the show to be part of the round table.</p>\n<h2>Introducing My Co Host:</h2>\n<p>My co host is more than qualified for the job. His name is <a href=\"http://kdmurray.net/\">Keith Murrary</a> and resides in Canada. He has been working with WordPress for a little while now. He is the author of the <a href=\"http://wordpress.org/extend/plugins/admin-links-sidebar-widget/\">Admin Links Sidebar Widget plugin</a>. He works as a systems administrator at his place of employment and his role on the podcast will be to discuss the development side of WordPress. I take things from an end users perspective, so we should match up pretty well in discussions.</p>\n<h2>WordPress Weekly Information:</h2>\n<p>WordPress Weekly is a weekly oriented podcast that takes place every <strong>Friday evening at 8PM EST starting on October 3rd, 2008</strong> on Talkshoe.com. The format of the show will remain close to what it has been in the past. The co-host and I will discuss the WordPress news of the week. This could be plugin updates, releases, themes, version releases, development updates, a tutorial written by someone in the community, could be anything as long as it relates to WordPress. At the end of each show, Keith and I will give out our plugin of the week. This plugin is picked individually by us and is tested prior to the show.</p>\n<p>I am aiming for a relaxing atmosphere where WordPress Users can gather around for 1 hour every Friday evening and discuss the latest happenings with everything WordPress. You could almost consider the show a virtual WordCamp.</p>\n<h2>Listener Participation:</h2>\n<p>So how can you be a part of the show? The easiest way is to create an account on Talkshoe.com. Then, download and install their client software (<strong><a href=\"http://www.talkshoe.com/talkshoe/web/Downloads.jsp?pushNav=1&amp;cmd=download\">Talkshoe Pro</a></strong>). The Talkshoe software serves as a bridge of communication between the host, and his/her listeners. The software contains a chat room as well as phone number information to call into the show.</p>\n<p>However, you do not need to install the software in order to listen to the show live. <strong>Friday October 3rd, at 8PM EST</strong>, look on the front page of Talkshoe.com or click on the <strong>LIVE NOW</strong> button and look for the Wordpress Weekly show. Instead of clicking on the <strong>JOIN IN</strong> button, click underneath where it says <strong>LISTEN ONLY</strong>. This will tune you into the live stream.</p>\n<p>If you want to call in to the show via telephone, Skype, payphone landline, etc, dial <strong>724-444-7444</strong> and follow the audio instructions. <strong>*Note*</strong> In one of the recent updates to Talkshoe, anonymous calling is now supported. This means you can call in and participate without the need to create a Talkshoe account. However, if you have a Talkshoe account, your registered name will show up within the Talkshoe client letting others know who is speaking. I also want to let you know that Talkshoe has had problems with people calling in anonymously, trying to crash peoples shows or prank call hosts. Having a registered user account will give you a better chance of being on the air. When you dial into the show and you want to speak on the air, press <strong>*8</strong> on your dial pad. This is the request to talk feature and will let me know you want to chime in on the discussion.</p>\n<p>You can also use SIP clients such as <a href=\"http://gizmo5.com/pc/download/\">ProjectGizmo</a> or <a href=\"http://www.counterpath.com/x-lite.html&amp;active=4\">X-Lite</a>. For example, when I use X-Lite to dial in, I type in <strong>123@66.212.134.192</strong> and then follow the audio directions. If you would like to use X-Lite but are unsure in how to configure the software, I highly advise you to check out my in depth tutorial (<a href=\"http://www.jeffro2pt0.com/installing-and-configuring-x-lite\">Installing And Configuring X-Lite</a>)which explains everything you need to know.</p>\n<p>Remember this information as it will be required when you want to dial into the show.</p>\n<p><strong>Talkcast Name: WordPress Weekly</strong></p>\n<p><strong> </strong></p>\n<p>Talkcast ID: 34224</p>\n<p> </p>\n<p><strong>Phone Number: 724-444-7444</strong></p>\n<p>This would also be a good time to remind you that Talkshoe now has a web client that you can access without the need to download or install any software. The web client makes it as easy as pie to participate in the show.</p>\n<h2>Subscribing To WordPress Weekly:</h2>\n<p>The <strong>first</strong> is by listening to the live stream. Every Friday at 8PM EST starting on October 3rd, a live stream of the show is enabled, allowing you to listen to the show LIVE as it is being recorded. You can listen to the live stream via the web application which allows you to chat, or you can listen to the stream only. It’s your choice.</p>\n<p>The <strong>second</strong> option is to wait until the final show notes are published on WeblogToolsCollection. When the show notes for WordPress Weekly are finalized, I always embed a talkshoe player at the end of the post which allows you to listen to the show on the website.</p>\n<p>The <strong>third</strong> option is to subscribe to the Talkcast RSS feed. Each Talkshoe player that is displayed on the website has a small RSS icon near the top right corner of the player. Clicking this icon will allow you to subscribe to the feed, and will download the latest episodes into your Feed Reader.</p>\n<p>The <strong>fourth</strong> option is to subscribe to the show via Itunes. Talkshoe provides a link you can use to subscribe to a Talkshoe show through Itunes. If you want to subscribe via Itunes or RSS, the best thing to do is to visit <a href=\"http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=34224&amp;cmd=tc\">THIS PAGE</a> and click on the Itunes button or the RSS button.</p>\n<p>The <strong>fifth</strong> option is to manually browse to the talkcast homepage and manually download each episode as an mp3 file. When you visit the homepage, click on the <strong>DOWNLOAD</strong> button and that will download the appropriate episode in an mp3 format that has no DRM attached to it.</p>\n<p>Last but not least, if you would like to be reminded of the show via email, please create an account on Talkshoe.com and then visit my <a href=\"http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=34224&amp;cmd=tc\">Talkcast page</a>. After you create an account, you’ll be able to click on the <strong>FOLLOW THIS</strong> button, which will add your email automatically to the mailing list. Each time I send out a reminder of when the show will air, an email will be sent to the email address you configured when you created your Talkshoe account.</p>\n<h2>Things To Consider:</h2>\n<p>Unlike the other WordPress centric podcasts that are available, this one is not pre recorded and thus, the audio is not studio grade quality. With that said, my audio has always sounded great with my X-Lite/Talkshoe combination. But, I can only control the audio quality for myself and no one else. So while Keith and I may sound great, someone who calls into the show with a crappy cell phone may sound terrible and there will be nothing I can do about it. The show is produced as is. If you partake in the discussions, I prefer that you please refrain from using expletives during the show. I believe points can be made without using these types of words. I&#8217;d also like to keep the clean rating for the show on iTunes.</p>\n<h2>Do You Have Ideas:</h2>\n<p>I have a renewed sense as to how I want the show to be from here on out but I am open to ideas and suggestions to improve the show. At this point, I&#8217;d like to know from you, what are you looking for out of a WordPress centric podcast? Do you want more interviews rather than commentary on news? Do you want to know about themes and plugins more than anything else? Would you like us to do a roundtable show once a month or more? Would you like us to cover WordPress only or should we sometimes branch out and discuss topics that are related to blogging and not just WordPress?</p>\n<p>If you can&#8217;t answer those, simply tell me in the comments what your expectations are for an excellent podcast centered on WordPress that you would listen to every week.</p>\n<p>Thank you for taking the time to read this mile long manual. Keith and I will see you on Friday, October 3rd at 8PM EST.</p>\n<h2>Listen To Past Episodes:</h2>\n<p>By the way, if you would like a sample of WordPress Weekly before our relaunch, listen to some of my past episodes via the Talkshoe player. Pressing the play button will initiate episode 22 where I interviewed Alex King.</p>\n<p></p>\";s:7:\"pubdate\";s:31:\"Sun, 21 Sep 2008 14:32:23 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:13:\"Jeff Chandler\";}s:7:\"summary\";s:10824:\"<p>Many of you may or may not remember a WordPress podcast that was hosted and produced by yours truly called <a href=\"http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=34224&amp;cmd=tc\">WordPress Weekly</a>. The show made it through 22 episodes. Some of those included staple interviews with Matt Mullenweg, Lorelle Van Fossen, and Alex King. Because I took on more work, it became increasingly difficult to produce the show on a weekly basis for no pay. Don&#8217;t get me wrong, I had a blast doing it but I have to pay the bills. Therefor, I opted to concentrate on the work that would pay me versus doing the show for nothing. After I stopped producing the show, comments, emails and feedback through instant messaging started coming in, letting me know how much you enjoyed the show. Many people who had just discovered the show let me know that they were disappointed there would be no more episodes after 22.</p>\n<p>I&#8217;ve taken all of your feedback to heart and have decided to bring the show back. Mark and I have decided to produce the show for WeblogToolsCollection as part of our content on this blog.</p>\n<h2>Little Bit Of History:</h2>\n<p>WordPress Weekly was a weekly podcast that discussed what happened within the past week within the world of WordPress. Generally every show was an open round table discussion. I had a number of people who would call in and chime in on stories I discussed during the show. Sometimes, this would be anywhere between 3-7 people on the phone at once, talking over each other but generally, having a good time. This time around, I plan on changing things up a bit. For starters, the show will now have a co-host. If there is anything I&#8217;ve learned while doing WordPress Weekly for 22 episodes, it is that having someone to talk to, to bounce stories off of is much better than facing the possibility of talking to myself, or a room of empty people. Two people engaging in a conversation is much better than what I can do single handedly. Also, I don&#8217;t have to worry if whether or not people will call in to the show to be part of the round table.</p>\n<h2>Introducing My Co Host:</h2>\n<p>My co host is more than qualified for the job. His name is <a href=\"http://kdmurray.net/\">Keith Murrary</a> and resides in Canada. He has been working with WordPress for a little while now. He is the author of the <a href=\"http://wordpress.org/extend/plugins/admin-links-sidebar-widget/\">Admin Links Sidebar Widget plugin</a>. He works as a systems administrator at his place of employment and his role on the podcast will be to discuss the development side of WordPress. I take things from an end users perspective, so we should match up pretty well in discussions.</p>\n<h2>WordPress Weekly Information:</h2>\n<p>WordPress Weekly is a weekly oriented podcast that takes place every <strong>Friday evening at 8PM EST starting on October 3rd, 2008</strong> on Talkshoe.com. The format of the show will remain close to what it has been in the past. The co-host and I will discuss the WordPress news of the week. This could be plugin updates, releases, themes, version releases, development updates, a tutorial written by someone in the community, could be anything as long as it relates to WordPress. At the end of each show, Keith and I will give out our plugin of the week. This plugin is picked individually by us and is tested prior to the show.</p>\n<p>I am aiming for a relaxing atmosphere where WordPress Users can gather around for 1 hour every Friday evening and discuss the latest happenings with everything WordPress. You could almost consider the show a virtual WordCamp.</p>\n<h2>Listener Participation:</h2>\n<p>So how can you be a part of the show? The easiest way is to create an account on Talkshoe.com. Then, download and install their client software (<strong><a href=\"http://www.talkshoe.com/talkshoe/web/Downloads.jsp?pushNav=1&amp;cmd=download\">Talkshoe Pro</a></strong>). The Talkshoe software serves as a bridge of communication between the host, and his/her listeners. The software contains a chat room as well as phone number information to call into the show.</p>\n<p>However, you do not need to install the software in order to listen to the show live. <strong>Friday October 3rd, at 8PM EST</strong>, look on the front page of Talkshoe.com or click on the <strong>LIVE NOW</strong> button and look for the Wordpress Weekly show. Instead of clicking on the <strong>JOIN IN</strong> button, click underneath where it says <strong>LISTEN ONLY</strong>. This will tune you into the live stream.</p>\n<p>If you want to call in to the show via telephone, Skype, payphone landline, etc, dial <strong>724-444-7444</strong> and follow the audio instructions. <strong>*Note*</strong> In one of the recent updates to Talkshoe, anonymous calling is now supported. This means you can call in and participate without the need to create a Talkshoe account. However, if you have a Talkshoe account, your registered name will show up within the Talkshoe client letting others know who is speaking. I also want to let you know that Talkshoe has had problems with people calling in anonymously, trying to crash peoples shows or prank call hosts. Having a registered user account will give you a better chance of being on the air. When you dial into the show and you want to speak on the air, press <strong>*8</strong> on your dial pad. This is the request to talk feature and will let me know you want to chime in on the discussion.</p>\n<p>You can also use SIP clients such as <a href=\"http://gizmo5.com/pc/download/\">ProjectGizmo</a> or <a href=\"http://www.counterpath.com/x-lite.html&amp;active=4\">X-Lite</a>. For example, when I use X-Lite to dial in, I type in <strong>123@66.212.134.192</strong> and then follow the audio directions. If you would like to use X-Lite but are unsure in how to configure the software, I highly advise you to check out my in depth tutorial (<a href=\"http://www.jeffro2pt0.com/installing-and-configuring-x-lite\">Installing And Configuring X-Lite</a>)which explains everything you need to know.</p>\n<p>Remember this information as it will be required when you want to dial into the show.</p>\n<p><strong>Talkcast Name: WordPress Weekly</strong></p>\n<p><strong> </strong></p>\n<p>Talkcast ID: 34224</p>\n<p> </p>\n<p><strong>Phone Number: 724-444-7444</strong></p>\n<p>This would also be a good time to remind you that Talkshoe now has a web client that you can access without the need to download or install any software. The web client makes it as easy as pie to participate in the show.</p>\n<h2>Subscribing To WordPress Weekly:</h2>\n<p>The <strong>first</strong> is by listening to the live stream. Every Friday at 8PM EST starting on October 3rd, a live stream of the show is enabled, allowing you to listen to the show LIVE as it is being recorded. You can listen to the live stream via the web application which allows you to chat, or you can listen to the stream only. It’s your choice.</p>\n<p>The <strong>second</strong> option is to wait until the final show notes are published on WeblogToolsCollection. When the show notes for WordPress Weekly are finalized, I always embed a talkshoe player at the end of the post which allows you to listen to the show on the website.</p>\n<p>The <strong>third</strong> option is to subscribe to the Talkcast RSS feed. Each Talkshoe player that is displayed on the website has a small RSS icon near the top right corner of the player. Clicking this icon will allow you to subscribe to the feed, and will download the latest episodes into your Feed Reader.</p>\n<p>The <strong>fourth</strong> option is to subscribe to the show via Itunes. Talkshoe provides a link you can use to subscribe to a Talkshoe show through Itunes. If you want to subscribe via Itunes or RSS, the best thing to do is to visit <a href=\"http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=34224&amp;cmd=tc\">THIS PAGE</a> and click on the Itunes button or the RSS button.</p>\n<p>The <strong>fifth</strong> option is to manually browse to the talkcast homepage and manually download each episode as an mp3 file. When you visit the homepage, click on the <strong>DOWNLOAD</strong> button and that will download the appropriate episode in an mp3 format that has no DRM attached to it.</p>\n<p>Last but not least, if you would like to be reminded of the show via email, please create an account on Talkshoe.com and then visit my <a href=\"http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=34224&amp;cmd=tc\">Talkcast page</a>. After you create an account, you’ll be able to click on the <strong>FOLLOW THIS</strong> button, which will add your email automatically to the mailing list. Each time I send out a reminder of when the show will air, an email will be sent to the email address you configured when you created your Talkshoe account.</p>\n<h2>Things To Consider:</h2>\n<p>Unlike the other WordPress centric podcasts that are available, this one is not pre recorded and thus, the audio is not studio grade quality. With that said, my audio has always sounded great with my X-Lite/Talkshoe combination. But, I can only control the audio quality for myself and no one else. So while Keith and I may sound great, someone who calls into the show with a crappy cell phone may sound terrible and there will be nothing I can do about it. The show is produced as is. If you partake in the discussions, I prefer that you please refrain from using expletives during the show. I believe points can be made without using these types of words. I&#8217;d also like to keep the clean rating for the show on iTunes.</p>\n<h2>Do You Have Ideas:</h2>\n<p>I have a renewed sense as to how I want the show to be from here on out but I am open to ideas and suggestions to improve the show. At this point, I&#8217;d like to know from you, what are you looking for out of a WordPress centric podcast? Do you want more interviews rather than commentary on news? Do you want to know about themes and plugins more than anything else? Would you like us to do a roundtable show once a month or more? Would you like us to cover WordPress only or should we sometimes branch out and discuss topics that are related to blogging and not just WordPress?</p>\n<p>If you can&#8217;t answer those, simply tell me in the comments what your expectations are for an excellent podcast centered on WordPress that you would listen to every week.</p>\n<p>Thank you for taking the time to read this mile long manual. Keith and I will see you on Friday, October 3rd at 8PM EST.</p>\n<h2>Listen To Past Episodes:</h2>\n<p>By the way, if you would like a sample of WordPress Weekly before our relaunch, listen to some of my past episodes via the Talkshoe player. Pressing the play button will initiate episode 22 where I interviewed Alex King.</p>\n<p></p>\";}i:35;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/21\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4201\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2008/09/21/wordpress-plugin-releases-for-0921/\";s:11:\"description\";s:1747:\"<p><a href=\"http://scorerender.abelcheung.org/\"><strong>Score Render</strong></a></p>\n<p>This plugin renders inline sheet music fragments inside posts and comments into images. It supports ABC, GUIDO, Lilypond and Mup music notations</p>\n<p><a href=\"http://code4fun.org/c4f-textarea-toolbar/\"><strong>C4F Textarea Toolbar</strong></a></p>\n<p>C4F Textarea Toolbar is a plugin for WordPress aimed at providing a simple yet very useful and precise tool to insert emoticons and markup in the comments&#8217; textarea.</p>\n<p><a href=\"http://blog-well.com/downloads/wordpress-image-link-plugin/\"><strong>BlogWell&#8217;s Simple Image Link Widget</strong></a></p>\n<p>Simple Image Link lets you easily add images to your sidebar, be they advertisements, buttons of support or buttons of protest without the need for any HTML.</p>\n<p><a href=\"http://www.mashget.com/2008/09/10/wp-more-feeds-for-wordpress/\"><strong>WP More Feeds</strong></a></p>\n<p>Generate RSS feeds for category and tag archive pages.</p>\n<p><a href=\"http://www.firesidemedia.net/dev/software/wordpress/disable-password-protection/\"><strong>Disable Password Protection</strong></a></p>\n<p>Disable the ability for users to password protect certain posts.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wpnamedusers/\"><strong>wpNamed Users</strong></a></p>\n<p>Intranet / Extranet plugin for Wordpress that allows users to specify which users can access specific posts or pages.</p>\n<p><a href=\"http://mtr-design.com/en/projects/mtr-podcast-recorder/\"><strong>MTR Podcast Recorder</strong></a></p>\n<p>MTR Podcast Recorder offers real-time recording that is saved on the same server where WordPress is installed. All recordings will be saved into the MP3 format using LAME encoder.</p>\";s:7:\"pubdate\";s:31:\"Sun, 21 Sep 2008 07:08:27 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:1747:\"<p><a href=\"http://scorerender.abelcheung.org/\"><strong>Score Render</strong></a></p>\n<p>This plugin renders inline sheet music fragments inside posts and comments into images. It supports ABC, GUIDO, Lilypond and Mup music notations</p>\n<p><a href=\"http://code4fun.org/c4f-textarea-toolbar/\"><strong>C4F Textarea Toolbar</strong></a></p>\n<p>C4F Textarea Toolbar is a plugin for WordPress aimed at providing a simple yet very useful and precise tool to insert emoticons and markup in the comments&#8217; textarea.</p>\n<p><a href=\"http://blog-well.com/downloads/wordpress-image-link-plugin/\"><strong>BlogWell&#8217;s Simple Image Link Widget</strong></a></p>\n<p>Simple Image Link lets you easily add images to your sidebar, be they advertisements, buttons of support or buttons of protest without the need for any HTML.</p>\n<p><a href=\"http://www.mashget.com/2008/09/10/wp-more-feeds-for-wordpress/\"><strong>WP More Feeds</strong></a></p>\n<p>Generate RSS feeds for category and tag archive pages.</p>\n<p><a href=\"http://www.firesidemedia.net/dev/software/wordpress/disable-password-protection/\"><strong>Disable Password Protection</strong></a></p>\n<p>Disable the ability for users to password protect certain posts.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wpnamedusers/\"><strong>wpNamed Users</strong></a></p>\n<p>Intranet / Extranet plugin for Wordpress that allows users to specify which users can access specific posts or pages.</p>\n<p><a href=\"http://mtr-design.com/en/projects/mtr-podcast-recorder/\"><strong>MTR Podcast Recorder</strong></a></p>\n<p>MTR Podcast Recorder offers real-time recording that is saved on the same server where WordPress is installed. All recordings will be saved into the MP3 format using LAME encoder.</p>\";}i:36;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 09/19\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4195\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2008/09/19/wordpress-theme-releases-for-0919/\";s:11:\"description\";s:2731:\"<p><a href=\"http://www.wpcosmos.com/2008/09/02/free-wordpress-theme-8some/\"><strong>8some</strong></a></p>\n<p><a href=\"http://demo.wpcosmos.com/?wptheme=8some\"><img title=\"8some\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/8some.jpg\" border=\"0\" alt=\"8some\" width=\"191\" height=\"114\" /></a></p>\n<p>Two column fixed-width WordPress theme, with lefthand sidebar, enabled for widgets…</p>\n<p><a href=\"http://www.wp-magazine.se/free-theme-wp-strict/\"><strong>WP Strict</strong></a></p>\n<p><a href=\"http://strict.wpstudio.se/\"><img title=\"WPStrict\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/wpstrict.png\" border=\"0\" alt=\"WPStrict\" width=\"152\" height=\"114\" /></a></p>\n<p>WP Strict is a real Magazine/Blog/Webfolio hybrid with two different page templates, custom fields and four different widgetized areas.</p>\n<p><a href=\"http://www.seodesignsolutions.com/blog/wordpress-seo/introducing-the-seo-basics-optimized-wordpress-theme/\"><strong>SEO Basics</strong></a></p>\n<p><a href=\"http://wp-themes.com/seo-basics\"><img title=\"seo-basics\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/seobasics.png\" border=\"0\" alt=\"seo-basics\" width=\"167\" height=\"114\" /></a></p>\n<p>Orange, black, and gray combined to create a clean, great-looking theme. Supports rotating 125&#215;125 sidebar ads, widgets, gravatars, and microformats.</p>\n<p><strong><a href=\"http://www.onewaylinks.co.uk/its-a-boy-free-wp-themes/\">It&#8217;s a Boy</a></strong></p>\n<p><a href=\"http://www.onewaylinks.co.uk/Free-WP-Themes/index.php?wptheme=Its-a-boy\"><img title=\"its-a-boy-header-screenshot\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/itsaboyheaderscreenshot.png\" border=\"0\" alt=\"its-a-boy-header-screenshot\" width=\"184\" height=\"114\" /></a></p>\n<p>Two column, fixed width, widget ready green, black and white theme.</p>\n<p><a href=\"http://wpfuel.com/red-lite-a-simple-grey-and-red-wordpress-theme/\"><strong>Red Lite</strong></a></p>\n<p><a href=\"http://wpfuel.com/demo/index.php?wptheme=RedLite\"><img title=\"redlit\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/redlit.png\" border=\"0\" alt=\"redlit\" width=\"200\" height=\"88\" /></a></p>\n<p>Red Lite is a simple 2 column red and grey WordPress theme.</p>\n<p><a href=\"http://www.tothepc.com/archives/portfolio-press-free-2-column-dark-wordpress-theme/\"><strong>Portfolio Press</strong></a></p>\n<p><a href=\"http://wpthemes.blogohblog.net/index.php?wptheme=Portfolio+Press\"><img title=\"portfolio-wordpress-theme-0918\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/portfoliowordpresstheme0918.jpg\" border=\"0\" alt=\"portfolio-wordpress-theme-0918\" width=\"200\" height=\"96\" /></a></p>\n<p>Two column, black and grey theme with gravatar functionality with an exteremely small size.</p>\";s:7:\"pubdate\";s:31:\"Fri, 19 Sep 2008 18:47:40 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:2731:\"<p><a href=\"http://www.wpcosmos.com/2008/09/02/free-wordpress-theme-8some/\"><strong>8some</strong></a></p>\n<p><a href=\"http://demo.wpcosmos.com/?wptheme=8some\"><img title=\"8some\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/8some.jpg\" border=\"0\" alt=\"8some\" width=\"191\" height=\"114\" /></a></p>\n<p>Two column fixed-width WordPress theme, with lefthand sidebar, enabled for widgets…</p>\n<p><a href=\"http://www.wp-magazine.se/free-theme-wp-strict/\"><strong>WP Strict</strong></a></p>\n<p><a href=\"http://strict.wpstudio.se/\"><img title=\"WPStrict\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/wpstrict.png\" border=\"0\" alt=\"WPStrict\" width=\"152\" height=\"114\" /></a></p>\n<p>WP Strict is a real Magazine/Blog/Webfolio hybrid with two different page templates, custom fields and four different widgetized areas.</p>\n<p><a href=\"http://www.seodesignsolutions.com/blog/wordpress-seo/introducing-the-seo-basics-optimized-wordpress-theme/\"><strong>SEO Basics</strong></a></p>\n<p><a href=\"http://wp-themes.com/seo-basics\"><img title=\"seo-basics\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/seobasics.png\" border=\"0\" alt=\"seo-basics\" width=\"167\" height=\"114\" /></a></p>\n<p>Orange, black, and gray combined to create a clean, great-looking theme. Supports rotating 125&#215;125 sidebar ads, widgets, gravatars, and microformats.</p>\n<p><strong><a href=\"http://www.onewaylinks.co.uk/its-a-boy-free-wp-themes/\">It&#8217;s a Boy</a></strong></p>\n<p><a href=\"http://www.onewaylinks.co.uk/Free-WP-Themes/index.php?wptheme=Its-a-boy\"><img title=\"its-a-boy-header-screenshot\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/itsaboyheaderscreenshot.png\" border=\"0\" alt=\"its-a-boy-header-screenshot\" width=\"184\" height=\"114\" /></a></p>\n<p>Two column, fixed width, widget ready green, black and white theme.</p>\n<p><a href=\"http://wpfuel.com/red-lite-a-simple-grey-and-red-wordpress-theme/\"><strong>Red Lite</strong></a></p>\n<p><a href=\"http://wpfuel.com/demo/index.php?wptheme=RedLite\"><img title=\"redlit\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/redlit.png\" border=\"0\" alt=\"redlit\" width=\"200\" height=\"88\" /></a></p>\n<p>Red Lite is a simple 2 column red and grey WordPress theme.</p>\n<p><a href=\"http://www.tothepc.com/archives/portfolio-press-free-2-column-dark-wordpress-theme/\"><strong>Portfolio Press</strong></a></p>\n<p><a href=\"http://wpthemes.blogohblog.net/index.php?wptheme=Portfolio+Press\"><img title=\"portfolio-wordpress-theme-0918\" src=\"http://weblogtoolscollection.com/b2-img/2008/09/portfoliowordpresstheme0918.jpg\" border=\"0\" alt=\"portfolio-wordpress-theme-0918\" width=\"200\" height=\"96\" /></a></p>\n<p>Two column, black and grey theme with gravatar functionality with an exteremely small size.</p>\";}i:37;a:7:{s:5:\"title\";s:77:\"Weblog Tools Collection: News: WordPress.com Ad-Free and WordPress for iPhone\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4187\";s:4:\"link\";s:104:\"http://weblogtoolscollection.com/archives/2008/09/19/news-wordpresscom-ad-free-and-wordpress-for-iphone/\";s:11:\"description\";s:1193:\"<p>For those that are on WordPress.com, <a href=\"http://en.blog.wordpress.com/2008/09/18/go-ad-free/\">Matt and the Automattic team introduced their new Ad-Free version of WordPress.com</a> for a modest fee of 30 credits per year or $0.08 per day. Matt explains the reasoning behind the existence of the ads on WordPress.com and <a href=\"http://lorelle.wordpress.com/2008/09/18/how-to-remove-wordpresscom-ads-from-your-wordpresscom-blog/\">Lorelle writes up us a nice tutorial</a> on how to activate this feature and some information on the ads themselves.</p>\n<p>In other cool WordPress news, <a href=\"http://iphone.wordpress.org/2008/09/16/100000-and-counting/\">the WordPress for iPhone app has been downloaded over 100,000 times</a>! Ranaan, who I met for the first time in SF this year and is BBQ averse :), provides a breakdown of the downloads across countries and then runs down a list of new features that are being worked on for version 1.2 including  <a href=\"http://iphone.trac.wordpress.org/ticket/7\">landscape mode</a>, <a href=\"http://iphone.trac.wordpress.org/ticket/6\">comment moderation</a> and <a href=\"http://iphone.trac.wordpress.org/ticket/8\">enhanced image options</a>.</p>\";s:7:\"pubdate\";s:31:\"Fri, 19 Sep 2008 13:53:43 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:1193:\"<p>For those that are on WordPress.com, <a href=\"http://en.blog.wordpress.com/2008/09/18/go-ad-free/\">Matt and the Automattic team introduced their new Ad-Free version of WordPress.com</a> for a modest fee of 30 credits per year or $0.08 per day. Matt explains the reasoning behind the existence of the ads on WordPress.com and <a href=\"http://lorelle.wordpress.com/2008/09/18/how-to-remove-wordpresscom-ads-from-your-wordpresscom-blog/\">Lorelle writes up us a nice tutorial</a> on how to activate this feature and some information on the ads themselves.</p>\n<p>In other cool WordPress news, <a href=\"http://iphone.wordpress.org/2008/09/16/100000-and-counting/\">the WordPress for iPhone app has been downloaded over 100,000 times</a>! Ranaan, who I met for the first time in SF this year and is BBQ averse :), provides a breakdown of the downloads across countries and then runs down a list of new features that are being worked on for version 1.2 including  <a href=\"http://iphone.trac.wordpress.org/ticket/7\">landscape mode</a>, <a href=\"http://iphone.trac.wordpress.org/ticket/6\">comment moderation</a> and <a href=\"http://iphone.trac.wordpress.org/ticket/8\">enhanced image options</a>.</p>\";}i:38;a:7:{s:5:\"title\";s:54:\"Dougal Campbell: Yarrr! It’s Talk Like a Pirate Day!\";s:4:\"guid\";s:33:\"http://dougal.gunters.org/?p=1085\";s:4:\"link\";s:74:\"http://dougal.gunters.org/blog/2008/09/19/yarrr-its-talk-like-a-pirate-day\";s:11:\"description\";s:1032:\"<p><a title=\"YARRRR!\" href=\"http://flickr.com/photos/73935252@N00/158426810\"><img class=\"alignright\" title=\"Hoist the Jolly Roger!\" src=\"http://farm1.static.flickr.com/52/158426810_eac7b405ce_m.jpg\" alt=\"\" width=\"240\" height=\"75\" /></a>Once again, we have arrived on <a href=\"http://talklikeapirate.com/\">Talk Like a Pirate Day</a>. I had been hoping that I would be able to find time to upgrade my <a href=\"http://dougal.gunters.org/blog/2004/08/30/text-filter-suite\">Text Filter Suite plugin</a> for WordPress (which includes my Pirate filter for posts and comments), but I&#8217;ve just been too busy. Maybe I can get it re-worked for next year. I already know what I want to do with it: Consolidate all of the filter code, maybe re-do things in an <acronym title=\"Object Oriented Programming\"><span class=\"caps\">OOP</span></acronym> style, add the concept of &#8216;registering&#8217; a filter with the system, and add a back-end user interface to make it easier to use.</p>\n<p>Anyways, enjoy all the piratey goodness today!</p>\";s:7:\"pubdate\";s:31:\"Fri, 19 Sep 2008 11:30:03 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:6:\"Dougal\";}s:7:\"summary\";s:1032:\"<p><a title=\"YARRRR!\" href=\"http://flickr.com/photos/73935252@N00/158426810\"><img class=\"alignright\" title=\"Hoist the Jolly Roger!\" src=\"http://farm1.static.flickr.com/52/158426810_eac7b405ce_m.jpg\" alt=\"\" width=\"240\" height=\"75\" /></a>Once again, we have arrived on <a href=\"http://talklikeapirate.com/\">Talk Like a Pirate Day</a>. I had been hoping that I would be able to find time to upgrade my <a href=\"http://dougal.gunters.org/blog/2004/08/30/text-filter-suite\">Text Filter Suite plugin</a> for WordPress (which includes my Pirate filter for posts and comments), but I&#8217;ve just been too busy. Maybe I can get it re-worked for next year. I already know what I want to do with it: Consolidate all of the filter code, maybe re-do things in an <acronym title=\"Object Oriented Programming\"><span class=\"caps\">OOP</span></acronym> style, add the concept of &#8216;registering&#8217; a filter with the system, and add a back-end user interface to make it easier to use.</p>\n<p>Anyways, enjoy all the piratey goodness today!</p>\";}i:39;a:7:{s:5:\"title\";s:75:\"Lorelle on WP: How to Remove WordPress.com Ads From Your WordPress.com Blog\";s:4:\"guid\";s:36:\"http://lorelle.wordpress.com/?p=3030\";s:4:\"link\";s:99:\"http://lorelle.wordpress.com/2008/09/18/how-to-remove-wordpresscom-ads-from-your-wordpresscom-blog/\";s:11:\"description\";s:11983:\"<div class=\"snap_preview\"><br /><p><a href=\"http://lorelle.wordpress.com/tag/wordpress-news/\" title=\"WordPressdotcom news and tips\"><img src=\"http://lorelle.files.wordpress.com/2007/04/wordpressdotcomnews.gif\" alt=\"WordPress.com News\" align=\"right\" /></a><a href=\"http://en.blog.wordpress.com/2008/09/18/go-ad-free/\" title=\"Go Ad Free on WordPress.com\">Matt Mullenweg has just announced that you can go &#8220;ad-free&#8221;</a> on your <a href=\"http://www.wordpress.com/\" title=\"WordPress.com free blogs\" rel=\"tag\">WordPress.com</a> blog.</p>\n<p>While you may have never noticed, those who are not logged into WordPress.com will see ads on blogs across the WordPress.com network. <a href=\"http://en.blog.wordpress.com/2006/09/06/on-ads/\" title=\"WordPress.com announced experimental Google ads\">two years ago, WordPress.com started experimenting with Google ads</a> to help support the cost of the experimental and state-of-the-art multiple user free blog service. The intent was not to cover your blogs with ads, like many free blogging services do, but to show an occasional ad discretely within your WordPress Theme. </p>\n<p>Since few complained or noticed, the experiment continued, helping to keep WordPress.com free and add a lot of free features that might have been paid upgrades. </p>\n<p>These ads were so rare, I never saw them. So I forgot about them. I&#8217;ve written a lot about the <a href=\"http://wordpress.com/tos/\" title=\"WordPress.com ToS\">WordPress.com Terms of Service</a> policy that prohibits adding ads to your WordPress.com blogs, so I was dismayed a few months ago when I got a few emails accusing me of special favors from WordPress.com because I had ads on my blog. They were seeing the WordPress.com experimental ads. Unfortunately, one of the ads was - shall we say - inappropriate, a problem many have with Google&#8217;s ad program.<br />\n<span id=\"more-3030\"></span><br />\nStill, this bothered me. I talked to the WordPress team about this and they agreed that users should have the right to determine whether or not to have WordPress.com ads on their blogs. As Matt explains:</p>\n<blockquote><p>At the same time it’s easy to imagine blogs that would never want ads on them: businesses, startups, non-profits, political activist sites, the list goes on. Google Adsense analyzes the content to show contextually relevant ads, but that might mean a link to a competitor. Because of this we’ve introduced a premium option that gives you control: the No-ads upgrade.</p></blockquote>\n<p>They&#8217;ve been working on this new feature for a while, trying to come up with a secure and affordable way for users to continue to support WordPress.com by permitting ads on their blogs, while allowing those with sensitive or special interests to not host ads. They&#8217;ve finally done it, and I applaud their foresight and integrity.</p>\n<h3>Removing Ads from Your WordPress.com Blog</h3>\n<p>Before you start jumping to remove ads from your WordPress.com blog, remember that those ads, most of which you will rarely ever see, help bring in income to keep WordPress.com going. If they don&#8217;t bother you or your readers, leave them alone. Why not? </p>\n<p>You are using one of the most powerful, state-of-the-art blogging platforms, a service that will survive the Digg-effect and high traffic surges without charging you; a service that keeps bringing you options and features without charge; a service that gives you a platform upon which to express yourself proudly - and is incredibly SEO friendly. Why not help them continue to keep this service free for everyone?</p>\n<p>If you do feel a compelling need to remove ads from your <a href=\"http://www.wordpress.com/\" title=\"WordPress.com free blogs\" rel=\"tag\">WordPress.com</a> blog, go to <strong>Upgrades</strong>. </p>\n<p><img src=\"http://lorelle.files.wordpress.com/2008/09/wordpresscom-upgrades.png\" alt=\"WordPress.com Upgrades Panel\" title=\"WordPress.com Upgrades panel\" width=\"435\" height=\"168\" class=\"size-full wp-image-3031\" /></p>\n<p>Scroll down to <strong>No-ads</strong> and select the option.</p>\n<p><img src=\"http://lorelle.files.wordpress.com/2008/09/wordpresscom-noads.png\" alt=\"Select no-ads to turn off ads on your WordPress.com blog\" title=\"WordPress.com No-ads - no advertising on WordPress.com blogs\" width=\"398\" height=\"105\" class=\"size-full wp-image-3032\" /></p>\n<p>The cost to remove ads from your WordPress.com blog is 30 credits annually (USD $30 if you haven&#8217;t earned any credits) which comes to eight cents a day. </p>\n<p>Whether you keep or remove ads from your WordPress.com blog, why not take a little time to give back to WordPress.com and other WordPress.com users by browsing the <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a> blog network and get to know your fellow WordPress.com members. You can use the <strong>Random Post</strong> feature in the gray dashboard bar at the top of your WordPress.com blog when you are logged in, or visit the <a href=\"http://botd.wordpress.com/\" title=\"WordPress.com Blogs of the Day\">WordPress.com Blogs of the Day</a> which lists the most popular blogs by language, or the <a href=\"http://wordpress.com/tags/\" title=\"WordPress.com tags list\">WordPress.com Tags list</a>.</p>\n<p>If you are familiar with how WordPress.com works, then why not <a href=\"http://www.blogherald.com/2008/09/15/helping-in-the-wordpress-forums-is-an-education/\" title=\"Helping in the WordPress Forums is an Education\">help out in the WordPress.com forums</a> and get to know the volunteers and staff there as well as your other fellow WordPress.com members. It&#8217;s a simple way to say thank you for this powerful free blog service.</p>\n<h3>I Want to Put Ads on My WordPress.com Blog</h3>\n<p>A lot of WordPress.com bloggers want to put ads on their blogs to make money for themselves. While some free blog hosts permit that, don&#8217;t forget that WordPress.com is also a testing site for many of the latest features of <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a> development.</p>\n<p>While the world has to wait for the <a href=\"http://lorelle.wordpress.com/2008/09/17/wordpress-news-and-announcements-on-wordpress-27-and-more/\" title=\"WordPress News and Announcements on WordPress 2.7 and More\">release of WordPress 2.7</a>, WordPress.com users are already using the new <a href=\"http://en.blog.wordpress.com/2008/09/08/sticky-posts/\" title=\"Sticky Posts!\">sticky post feature</a> and will soon be playing with other new features as part of the new WordPress Administration interface redesign, a continuation of user interface improvements from the previous version of WordPress - long before anyone else.</p>\n<p>This means that WordPress.com has to stay clean of code that will screw up not just one blog but all the blogs on the WordPress.com network powered by <a href=\"http://mu.wordpress.org/\" title=\"WordPressMU\" rel=\"tag\">WordPressMU</a>. While most ad code is harmless, opening up WordPress.com to Javascript and other code languages opens the door up to malicious code, too. It&#8217;s a security risk WordPress.com isn&#8217;t willing to take, and I support that policy.</p>\n<p>If you want to monetize your blog, get the free version of <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a> and pay for cheap hosting. Some hosts are offering web hosting for under USD $10 a month. With the full version of WordPress, you can not only add ads, but customize the whole look, add all kinds of cool <a href=\"http://wordpress.org/extend/plugins/\" title=\"WordPress Plugins Extends\">WordPress Plugins</a>, and really tweak your whole site to maximize its revenue potential. </p>\n<p>WordPress.com has always been about <em>blogging</em>, about freedom of expression and creativity. It&#8217;s not about the code. It&#8217;s about the words. WordPress.com is working overtime to make sure we have a place to share our words with others around the world - no holds barred.</p>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpressdotcom\" rel=\"tag\">wordpressdotcom</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress.com\" rel=\"tag\">wordpress.com</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpresscom\" rel=\"tag\">wordpresscom</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=ads\" rel=\"tag\">ads</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=ads+on+blogs\" rel=\"tag\">ads on blogs</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+ads\" rel=\"tag\">blog ads</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=advertising\" rel=\"tag\">advertising</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+advertising\" rel=\"tag\">blog advertising</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=monetization\" rel=\"tag\">monetization</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=advertising+on+WordPress.com\" rel=\"tag\">advertising on WordPress.com</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=WordPress.com+ads\" rel=\"tag\">WordPress.com ads</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=make+money\" rel=\"tag\">make money</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=make+money+with+blogging\" rel=\"tag\">make money with blogging</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a>  <a href=\"http://feeds.feedburner.com/LorelleOnWordPress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a>  <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\nPosted in WordPress News, Wordpressdotcom&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/3030/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/3030/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/3030/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/3030/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/3030/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=3030&subd=lorelle&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Thu, 18 Sep 2008 22:13:56 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Lorelle VanFossen\";}s:7:\"summary\";s:11983:\"<div class=\"snap_preview\"><br /><p><a href=\"http://lorelle.wordpress.com/tag/wordpress-news/\" title=\"WordPressdotcom news and tips\"><img src=\"http://lorelle.files.wordpress.com/2007/04/wordpressdotcomnews.gif\" alt=\"WordPress.com News\" align=\"right\" /></a><a href=\"http://en.blog.wordpress.com/2008/09/18/go-ad-free/\" title=\"Go Ad Free on WordPress.com\">Matt Mullenweg has just announced that you can go &#8220;ad-free&#8221;</a> on your <a href=\"http://www.wordpress.com/\" title=\"WordPress.com free blogs\" rel=\"tag\">WordPress.com</a> blog.</p>\n<p>While you may have never noticed, those who are not logged into WordPress.com will see ads on blogs across the WordPress.com network. <a href=\"http://en.blog.wordpress.com/2006/09/06/on-ads/\" title=\"WordPress.com announced experimental Google ads\">two years ago, WordPress.com started experimenting with Google ads</a> to help support the cost of the experimental and state-of-the-art multiple user free blog service. The intent was not to cover your blogs with ads, like many free blogging services do, but to show an occasional ad discretely within your WordPress Theme. </p>\n<p>Since few complained or noticed, the experiment continued, helping to keep WordPress.com free and add a lot of free features that might have been paid upgrades. </p>\n<p>These ads were so rare, I never saw them. So I forgot about them. I&#8217;ve written a lot about the <a href=\"http://wordpress.com/tos/\" title=\"WordPress.com ToS\">WordPress.com Terms of Service</a> policy that prohibits adding ads to your WordPress.com blogs, so I was dismayed a few months ago when I got a few emails accusing me of special favors from WordPress.com because I had ads on my blog. They were seeing the WordPress.com experimental ads. Unfortunately, one of the ads was - shall we say - inappropriate, a problem many have with Google&#8217;s ad program.<br />\n<span id=\"more-3030\"></span><br />\nStill, this bothered me. I talked to the WordPress team about this and they agreed that users should have the right to determine whether or not to have WordPress.com ads on their blogs. As Matt explains:</p>\n<blockquote><p>At the same time it’s easy to imagine blogs that would never want ads on them: businesses, startups, non-profits, political activist sites, the list goes on. Google Adsense analyzes the content to show contextually relevant ads, but that might mean a link to a competitor. Because of this we’ve introduced a premium option that gives you control: the No-ads upgrade.</p></blockquote>\n<p>They&#8217;ve been working on this new feature for a while, trying to come up with a secure and affordable way for users to continue to support WordPress.com by permitting ads on their blogs, while allowing those with sensitive or special interests to not host ads. They&#8217;ve finally done it, and I applaud their foresight and integrity.</p>\n<h3>Removing Ads from Your WordPress.com Blog</h3>\n<p>Before you start jumping to remove ads from your WordPress.com blog, remember that those ads, most of which you will rarely ever see, help bring in income to keep WordPress.com going. If they don&#8217;t bother you or your readers, leave them alone. Why not? </p>\n<p>You are using one of the most powerful, state-of-the-art blogging platforms, a service that will survive the Digg-effect and high traffic surges without charging you; a service that keeps bringing you options and features without charge; a service that gives you a platform upon which to express yourself proudly - and is incredibly SEO friendly. Why not help them continue to keep this service free for everyone?</p>\n<p>If you do feel a compelling need to remove ads from your <a href=\"http://www.wordpress.com/\" title=\"WordPress.com free blogs\" rel=\"tag\">WordPress.com</a> blog, go to <strong>Upgrades</strong>. </p>\n<p><img src=\"http://lorelle.files.wordpress.com/2008/09/wordpresscom-upgrades.png\" alt=\"WordPress.com Upgrades Panel\" title=\"WordPress.com Upgrades panel\" width=\"435\" height=\"168\" class=\"size-full wp-image-3031\" /></p>\n<p>Scroll down to <strong>No-ads</strong> and select the option.</p>\n<p><img src=\"http://lorelle.files.wordpress.com/2008/09/wordpresscom-noads.png\" alt=\"Select no-ads to turn off ads on your WordPress.com blog\" title=\"WordPress.com No-ads - no advertising on WordPress.com blogs\" width=\"398\" height=\"105\" class=\"size-full wp-image-3032\" /></p>\n<p>The cost to remove ads from your WordPress.com blog is 30 credits annually (USD $30 if you haven&#8217;t earned any credits) which comes to eight cents a day. </p>\n<p>Whether you keep or remove ads from your WordPress.com blog, why not take a little time to give back to WordPress.com and other WordPress.com users by browsing the <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a> blog network and get to know your fellow WordPress.com members. You can use the <strong>Random Post</strong> feature in the gray dashboard bar at the top of your WordPress.com blog when you are logged in, or visit the <a href=\"http://botd.wordpress.com/\" title=\"WordPress.com Blogs of the Day\">WordPress.com Blogs of the Day</a> which lists the most popular blogs by language, or the <a href=\"http://wordpress.com/tags/\" title=\"WordPress.com tags list\">WordPress.com Tags list</a>.</p>\n<p>If you are familiar with how WordPress.com works, then why not <a href=\"http://www.blogherald.com/2008/09/15/helping-in-the-wordpress-forums-is-an-education/\" title=\"Helping in the WordPress Forums is an Education\">help out in the WordPress.com forums</a> and get to know the volunteers and staff there as well as your other fellow WordPress.com members. It&#8217;s a simple way to say thank you for this powerful free blog service.</p>\n<h3>I Want to Put Ads on My WordPress.com Blog</h3>\n<p>A lot of WordPress.com bloggers want to put ads on their blogs to make money for themselves. While some free blog hosts permit that, don&#8217;t forget that WordPress.com is also a testing site for many of the latest features of <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a> development.</p>\n<p>While the world has to wait for the <a href=\"http://lorelle.wordpress.com/2008/09/17/wordpress-news-and-announcements-on-wordpress-27-and-more/\" title=\"WordPress News and Announcements on WordPress 2.7 and More\">release of WordPress 2.7</a>, WordPress.com users are already using the new <a href=\"http://en.blog.wordpress.com/2008/09/08/sticky-posts/\" title=\"Sticky Posts!\">sticky post feature</a> and will soon be playing with other new features as part of the new WordPress Administration interface redesign, a continuation of user interface improvements from the previous version of WordPress - long before anyone else.</p>\n<p>This means that WordPress.com has to stay clean of code that will screw up not just one blog but all the blogs on the WordPress.com network powered by <a href=\"http://mu.wordpress.org/\" title=\"WordPressMU\" rel=\"tag\">WordPressMU</a>. While most ad code is harmless, opening up WordPress.com to Javascript and other code languages opens the door up to malicious code, too. It&#8217;s a security risk WordPress.com isn&#8217;t willing to take, and I support that policy.</p>\n<p>If you want to monetize your blog, get the free version of <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a> and pay for cheap hosting. Some hosts are offering web hosting for under USD $10 a month. With the full version of WordPress, you can not only add ads, but customize the whole look, add all kinds of cool <a href=\"http://wordpress.org/extend/plugins/\" title=\"WordPress Plugins Extends\">WordPress Plugins</a>, and really tweak your whole site to maximize its revenue potential. </p>\n<p>WordPress.com has always been about <em>blogging</em>, about freedom of expression and creativity. It&#8217;s not about the code. It&#8217;s about the words. WordPress.com is working overtime to make sure we have a place to share our words with others around the world - no holds barred.</p>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpressdotcom\" rel=\"tag\">wordpressdotcom</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress.com\" rel=\"tag\">wordpress.com</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpresscom\" rel=\"tag\">wordpresscom</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=ads\" rel=\"tag\">ads</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=ads+on+blogs\" rel=\"tag\">ads on blogs</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+ads\" rel=\"tag\">blog ads</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=advertising\" rel=\"tag\">advertising</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+advertising\" rel=\"tag\">blog advertising</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=monetization\" rel=\"tag\">monetization</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=advertising+on+WordPress.com\" rel=\"tag\">advertising on WordPress.com</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=WordPress.com+ads\" rel=\"tag\">WordPress.com ads</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=make+money\" rel=\"tag\">make money</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=make+money+with+blogging\" rel=\"tag\">make money with blogging</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a>  <a href=\"http://feeds.feedburner.com/LorelleOnWordPress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a>  <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\nPosted in WordPress News, Wordpressdotcom&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/3030/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/3030/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/3030/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/3030/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/3030/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/3030/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=3030&subd=lorelle&ref=&feed=1\" /></div>\";}i:40;a:7:{s:5:\"title\";s:60:\"Lloyd: Interested in Freeing Yourself from the TypePad Trap?\";s:4:\"guid\";s:30:\"http://foolswisdom.com/?p=1587\";s:4:\"link\";s:76:\"http://foolswisdom.com/interested-in-freeing-yourself-from-the-typepad-trap/\";s:11:\"description\";s:1760:\"<p>My co-worker <a href=\"http://jcksn.com/\">Noel Jackson</a>, tired of hearing me whine about the Six Apart <a href=\"http://foolswisdom.com/the-typepad-trap/\">TypePad Trap</a>, has created a WordPress importer mashing together the MT formatted export file (missing permalinks) and the broken TypePad AtomPub (missing comments and trackbacks). We are currently testing this on WordPress.com before polishing the code up and sharing it. We are looking for some TypePad customers to help us test it &#8212; it&#8217;s completely harmless, read-only.</p>\n<p>If you are interested, let me know and we can set up a private blog on WordPress.com for you to import into. Bonus is that you will have a backup of your blog ready to go live if anything ever befalls TypePad.</p>\n<p><span id=\"more-1587\"></span>This importer wouldn&#8217;t be possible without the heroic effort <a href=\"http://cavemonkey50.com/\">Ronald Heft Jr</a> put into creating a TypePad AtomPub importer for WordPress &#8212; it&#8217;s not his fault TypePad still doesn&#8217;t have a way to export your full blog.</p>\n<p>What&#8217;s an <a href=\"http://www.atompub.org/\">AtomPub</a>? While working on this importer Noel contacted TypePad support only to have them tell him they don&#8217;t know what AtomPub is, and that they don&#8217;t support it.</p>\n<p><a title=\"TypePad Support to Noel, \"><img title=\"Noel twitter to David Recordon\" src=\"http://farm4.static.flickr.com/3244/2868612084_0bc580f06b_o.jpg\" alt=\"TypePad Support to Noel, \" /></a></p>\n<p>Anyway, as I said, if you are a TypePad customer, and want to participate in open source development by testing this exporter,  or would just like a backup of your blog ready to launch on WordPress.com, leave a comment or send me an email.</p>\";s:7:\"pubdate\";s:31:\"Thu, 18 Sep 2008 18:49:37 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:5:\"Lloyd\";}s:7:\"summary\";s:1760:\"<p>My co-worker <a href=\"http://jcksn.com/\">Noel Jackson</a>, tired of hearing me whine about the Six Apart <a href=\"http://foolswisdom.com/the-typepad-trap/\">TypePad Trap</a>, has created a WordPress importer mashing together the MT formatted export file (missing permalinks) and the broken TypePad AtomPub (missing comments and trackbacks). We are currently testing this on WordPress.com before polishing the code up and sharing it. We are looking for some TypePad customers to help us test it &#8212; it&#8217;s completely harmless, read-only.</p>\n<p>If you are interested, let me know and we can set up a private blog on WordPress.com for you to import into. Bonus is that you will have a backup of your blog ready to go live if anything ever befalls TypePad.</p>\n<p><span id=\"more-1587\"></span>This importer wouldn&#8217;t be possible without the heroic effort <a href=\"http://cavemonkey50.com/\">Ronald Heft Jr</a> put into creating a TypePad AtomPub importer for WordPress &#8212; it&#8217;s not his fault TypePad still doesn&#8217;t have a way to export your full blog.</p>\n<p>What&#8217;s an <a href=\"http://www.atompub.org/\">AtomPub</a>? While working on this importer Noel contacted TypePad support only to have them tell him they don&#8217;t know what AtomPub is, and that they don&#8217;t support it.</p>\n<p><a title=\"TypePad Support to Noel, \"><img title=\"Noel twitter to David Recordon\" src=\"http://farm4.static.flickr.com/3244/2868612084_0bc580f06b_o.jpg\" alt=\"TypePad Support to Noel, \" /></a></p>\n<p>Anyway, as I said, if you are a TypePad customer, and want to participate in open source development by testing this exporter,  or would just like a backup of your blog ready to launch on WordPress.com, leave a comment or send me an email.</p>\";}i:41;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/18\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4185\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2008/09/18/wordpress-plugin-releases-for-0918/\";s:11:\"description\";s:2542:\"<p><a href=\"http://techie-buzz.com/wordpress-plugins/feed-pauser-wordpress-plugin-release.html\"><strong>Feed Pauser</strong></a></p>\n<p>Feed Pauser is a plugin I wrote to address a issue I have been facing for a long time, the option to delay publishing a post to a feed. Feed pauser, pauses a post from being made available through RSS.</p>\n<p><a href=\"http://ajaydsouza.com/wordpress/plugins/autoclose/\"><strong>Auto-Close Comments, Pingbacks and Trackbacks</strong></a></p>\n<p>Automatically close comments, pingbacks and trackbacks on your blog. This helps reduce the amount of spam aimed at old posts. Now you can keep comments / pingbacks / trackbacks on certain posts open.</p>\n<p><a href=\"http://www.techgremlin.com/servage-referral-widget/\"><strong>Servage Referral Widget</strong></a></p>\n<p>The web host Servage allows it&#8217;s users through a link to their website/coupon code to refer it&#8217;s users to their services.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/notifixious-plugin/\"><strong>Notifixious</strong></a></p>\n<p>This plugin allows you to notify your readers on their Instant Messaging (AIM, MSN, GTalk, ICQ&#8230;), Email or SMS when you publish new posts! It also adds a widget to your blog to allow your users to choose on which channel they want to be notified!</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-google-apps/\"><strong>WP Google Apps</strong></a></p>\n<p>This plugin allows you to manage WordPress users via Google Apps accounts. The Authentication use Google Apps Gmail.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/world-clock-widget/\"><strong>World Clock Widget</strong></a></p>\n<p>The world clock widget is a javascript clock. It can be easily set to display date and time of different timezone.</p>\n<p><a href=\"http://www.saevar.is/blog/wordpress-k2/facebook-sharer-plugin/\"><strong>Facebook Sharer</strong></a></p>\n<p>Adds a little javascript and css to the header, and then a “Send to Facebook” link at the bottom of the blog post.</p>\n<p><a href=\"http://skullbit.com/wordpress-plugin/list-pages-plus/\"><strong>List Pages Plus</strong></a></p>\n<p>Alter the output of the wp_list_pages() function’s HTML.  Add in your own classes, insert text into link title, add additional tags surrounding title.  Parents and Children are set seperately for greater flexibility.</p>\n<p><a href=\"http://blueberryware.net/2008/09/14/email-spam-protection/\"><strong>Email Spam Protection</strong></a></p>\n<p>Obfuscates your email. You need to enter the shortcode in your post.</p>\";s:7:\"pubdate\";s:31:\"Thu, 18 Sep 2008 18:20:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:2542:\"<p><a href=\"http://techie-buzz.com/wordpress-plugins/feed-pauser-wordpress-plugin-release.html\"><strong>Feed Pauser</strong></a></p>\n<p>Feed Pauser is a plugin I wrote to address a issue I have been facing for a long time, the option to delay publishing a post to a feed. Feed pauser, pauses a post from being made available through RSS.</p>\n<p><a href=\"http://ajaydsouza.com/wordpress/plugins/autoclose/\"><strong>Auto-Close Comments, Pingbacks and Trackbacks</strong></a></p>\n<p>Automatically close comments, pingbacks and trackbacks on your blog. This helps reduce the amount of spam aimed at old posts. Now you can keep comments / pingbacks / trackbacks on certain posts open.</p>\n<p><a href=\"http://www.techgremlin.com/servage-referral-widget/\"><strong>Servage Referral Widget</strong></a></p>\n<p>The web host Servage allows it&#8217;s users through a link to their website/coupon code to refer it&#8217;s users to their services.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/notifixious-plugin/\"><strong>Notifixious</strong></a></p>\n<p>This plugin allows you to notify your readers on their Instant Messaging (AIM, MSN, GTalk, ICQ&#8230;), Email or SMS when you publish new posts! It also adds a widget to your blog to allow your users to choose on which channel they want to be notified!</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-google-apps/\"><strong>WP Google Apps</strong></a></p>\n<p>This plugin allows you to manage WordPress users via Google Apps accounts. The Authentication use Google Apps Gmail.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/world-clock-widget/\"><strong>World Clock Widget</strong></a></p>\n<p>The world clock widget is a javascript clock. It can be easily set to display date and time of different timezone.</p>\n<p><a href=\"http://www.saevar.is/blog/wordpress-k2/facebook-sharer-plugin/\"><strong>Facebook Sharer</strong></a></p>\n<p>Adds a little javascript and css to the header, and then a “Send to Facebook” link at the bottom of the blog post.</p>\n<p><a href=\"http://skullbit.com/wordpress-plugin/list-pages-plus/\"><strong>List Pages Plus</strong></a></p>\n<p>Alter the output of the wp_list_pages() function’s HTML.  Add in your own classes, insert text into link title, add additional tags surrounding title.  Parents and Children are set seperately for greater flexibility.</p>\n<p><a href=\"http://blueberryware.net/2008/09/14/email-spam-protection/\"><strong>Email Spam Protection</strong></a></p>\n<p>Obfuscates your email. You need to enter the shortcode in your post.</p>\";}i:42;a:7:{s:5:\"title\";s:73:\"Lorelle on WP: WordPress News and Announcements on WordPress 2.7 and More\";s:4:\"guid\";s:36:\"http://lorelle.wordpress.com/?p=3027\";s:4:\"link\";s:98:\"http://lorelle.wordpress.com/2008/09/17/wordpress-news-and-announcements-on-wordpress-27-and-more/\";s:11:\"description\";s:14295:\"<div class=\"snap_preview\"><br /><p><a href=\"http://lorelle.wordpress.com/tag/wordpress-news/\" title=\"WordPress News\"><img src=\"http://lorelle.files.wordpress.com/2007/01/wpnews1.png\" alt=\"WordPress News\" align=\"right\" /></a>I&#8217;ve just released the latest <a href=\"http://www.blogherald.com/tag/wordpress-wednesday-news/\" title=\"Articles on WordPress Wednesday\" rel=\"tag\">Blog Herald WordPress Wednesday News</a> on <a href=\"http://www.blogherald.com/2008/09/17/wordpress-wednesday-news-wordpress-27-final-features-wtc-plugin-contest-winners-wordcamps-surveys-and-more/\" title=\"WordPress 2.7 Final Features, WTC Plugin Contest Winners, WordCamps, Surveys, and More\">WordPress Wednesday News: WordPress 2.7 Final Features, WTC Plugin Contest Winners, WordCamps, Surveys, and More</a>, and there are some WordPress news tidbits I&#8217;d like to call your attention to.</p>\n<h4>WordPress 2.7 Feature List Set</h4>\n<p><a href=\"http://boren.nu/archives/2008/09/04/stalking-the-wild-27/\" title=\"posted a list of confirmed features\">Ryan Boren has announced the final WordPress 2.7 features</a> to prepare us all for the upcoming release. </p>\n<p>They include the new &#8220;crazyhorse&#8221; WordPress Administration Panels interface, a new Write Post Panel that allows dragging and dropping of meta boxes so you can rearrange your writing surface, the ability to hide columns on the content index pages, inline editing of posts and Pages on the new content index pages, comments XMLRPC API, sticky posts, automatic WordPress Plugin installation and integrated Plugin browser, HTTPOnly auth cookies, and much more. </p>\n<p>After all the <a href=\"http://lorelle.wordpress.com/2006/12/16/the-number-one-flaw-in-wordpress-comments/\" title=\"Comments\">kvetching I&#8217;ve done about the Comments Panel</a> in the WordPress Administration Panels (okay, I&#8217;m not the only one), they have finally overhauled it and have added the ability to automatically upgrade WordPress and the total revamping of the Comments Panel to include replying to comments, keyboard shortcuts (hot keys) for managing comments, and threaded comments to help you keep track of the conversation. </p>\n<p>I&#8217;m waiting to try it out as it may soon be added to <a href=\"http://www.wordpress.com/\" title=\"WordPress.com free blogs\" rel=\"tag\">WordPress.com</a> as part of the testing. I do hope it will be as user-friendly as <a href=\"http://internetducttape.com/tools/wordpress/wordpress-comment-ninja/\" title=\"WordPress Comment Ninja Greasemonkey Script\">WordPress Comment Ninja Greasemonkey Script</a> by Engtech of Internet Duct Tape. I&#8217;ll hate to part with my favorite non-WordPress Plugin toy.</p>\n<h4>Tell WordPress How You Want the WordPress 2.7 Administration Panels to Look and Work</h4>\n<p>In announcements on the <a href=\"http://wordpress.org/development/2008/09/wordpress-27-navigation-options-survey/\" title=\"WordPress 2.7 Navigation Options Survey\">WordPress Development Blog</a> and on <a href=\"http://en.blog.wordpress.com/2008/09/15/wordpress-27-navigation-options-survey/\" title=\"WordPress 2.7 Navigation Options Survey\">WordPress.com</a>, WordPress users are invited to <a href=\"http://www.polldaddy.com/s/A02A1308A9F8D944\" title=\"take the survey on WordPress 2.7 interface\">participate in a survey</a> to have your say on how the navigation options on the WordPress 2.7 Administration Panels interface (UI) should look and work.</p>\n<p>At <a href=\"http://2008.sf.wordcamp.org/\" title=\"WordCamp San Francisco\">WordCamp 2008</a>, <a href=\"http://www.bobulate.com/\" title=\"Liz Danzico\">Liz Danzico</a> and <a href=\"http://jane.wordpress.com\" title=\"Jane Wells\">Jane Wells</a> presented <a href=\"http://www.slideshare.net/edanzico/riding-the-crazyhorse-future-generation-wordpress-presentation\" title=\"Future Generation WordPress\">Riding The Crazyhorse: Future Generation WordPress</a>, an inside look at how the new interface was developed and the amazing technology they use to test the results and make improvements. </p>\n<p>If you want your say in how it looks, you better speak up and take the survey.</p>\n<h4>Weblog Tools Collection Plugin Winners Announced</h4>\n<p>While WordPress 2.7 is rewiring the whole Comments Panel, it is telling that the grand prize winner of the <a href=\"http://weblogtoolscollection.com/archives/2008/09/13/wordpress-plugin-competition-25-winners/\" title=\"WordPress Plugin Competition 2.5 Winners!\">Weblog Tools Collection WordPress Plugin Competition</a> was <a href=\"http://pressography.com/plugins/wp-comment-remix/\" title=\"WP Comment Remix\">WP Comment Remix WordPress Plugin</a> by Pressography. It will be interesting how this incredible WordPress Plugin survives the next release of WordPress. I&#8217;m sure the creative Plugin author will come up with something even more interesting.</p>\n<p>Second prize went to the author of the <a href=\"http://www.aaronharp.com/dev/wp-manageable/\" title=\"Manageable\">Manageable WordPress Plugin</a>, followed by third prize, <a href=\"http://blog.realthemes.com/wp-easy-uploader/\" title=\"WP Easy Uploader\">WP Easy Uploader</a>. Consolation prize goes to <a href=\"http://www.prelovac.com/vladimir/\" title=\"Prelovac\">Prelovac</a> for his amazing work on WordPress Plugins recently. </p>\n<p>All the Plugins in the contest are amazing. Check them out and see how creative the WordPress Community continues to be.</p>\n<h4>Smashing Overload of WordPress Development Resources</h4>\n<p><a href=\"http://www.smashingmagazine.com/2008/09/15/wordpress-developers-toolbox/\" title=\"WordPress Developers’ Toolbox\">Smashing Magazine published the WordPress Developers’ Toolbox</a>, a huge collection of tips, tricks, resources, WordPress Themes, WordPress Theme design help, documentation, and tutorials for WordPress users. It&#8217;s overwhelming but there is a ton of great information in there. </p>\n<p>Please make sure that the article you are reading covers the version of WordPress you are using as some of the information is version-specific.</p>\n<h4>A Ton of WordCamp Information</h4>\n<p>I continue to report on the many WordCamps and WordPress Meetups that are popping up everywhere. If you want your event covered, make sure to <a href=\"http://lorelle.wordpress.com/category/wordpress-news/feed/&#108;&#111;&#114;&#101;&#108;&#108;&#101;&#111;&#110;&#119;&#111;&#114;&#100;&#112;&#114;&#101;&#115;&#115;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;\" title=\"Email Lorelle\">email me</a> so I can cover it on the <a href=\"http://www.blogherald.com/tag/wordpress-wednesday-news/\" title=\"Articles on WordPress Wednesday\" rel=\"tag\">Blog Herald WordPress Wednesday News</a> and <a href=\"http://wordcamp.info/\" title=\"The WordCamp Report\">The WordCamp Report</a>.</p>\n<p>In case you didn&#8217;t hear, <a href=\"http://wordcamp.info/2008/09/11/would-you-like-to-report-on-a-wordcamp-event/\" title=\"Would You Like to Report on a WordCamp Event?\">The WordCamp Report is looking for volunteers to live blog or report on WordCamp and WordPress</a> events around the world. The site is covering WordCamp news, events, and WordPress events, and includes tips for those who want to bring a WordCamp to their area. </p>\n<p>If you have been a part of a WordCamp event and would like to submit an article on your experience and lessons learned, just let me know. </p>\n<h4>And More WordPress and WordPress.com News</h4>\n<p>I also <a href=\"http://www.blogherald.com/2008/09/17/wordpress-wednesday-news-wordpress-27-final-features-wtc-plugin-contest-winners-wordcamps-surveys-and-more/\" title=\"WordPress 2.7 Final Features, WTC Plugin Contest Winners, WordCamps, Surveys, and More\">covered a lot of other WordPress news</a> including these recent announcements on WordPress.com:</p>\n<p><strong>SSL Now Available for WordPress.com Bloggers:</strong> <a href=\"http://en.blog.wordpress.com/2008/09/16/protect-your-blog-with-ssl/\" title=\"Protect Your Blog with SSL\">WordPress.com announced the ability for their bloggers to protect blogs</a> with <a href=\"http://en.wikipedia.org/wiki/Secure_Sockets_Layer\" title=\"SSL\">SSL</a>. If you are blogging on a public access point, &#8220;blogjackers&#8221; can prey on security vulnerabilities and possibly collect sensitive information. By adding SSL protection, you will automatically be logged onto your blog with an HTTPS connection (secure). You&#8217;ve always had the option, but few WordPress.com bloggers understood how it worked. </p>\n<p>To activate this new feature, go to <strong>My Account &gt; Edit Profile</strong> in the WordPress Administration Panels and check of &#8220;Always use HTTPS when visiting Administration pages&#8221; under Browser Connection. </p>\n<p><strong>WordPress.com FAQ Gets Screencasts:</strong> The <a href=\"http://faq.wordpress.com/\" title=\"WordPress.com FAQ\">WordPress.com FAQ</a> now has <a href=\"http://en.blog.wordpress.com/2008/09/10/wordpresscom-faq-screencasts/\" title=\"WordPress.com FAQ Screencasts\">screencasts on their guide posts</a> helping WordPress.com users learn more about how to use specific WordPress.com features. </p>\n<p><strong>WordPress.com August 2008 Stats:</strong> The <a href=\"http://en.blog.wordpress.com/2008/09/05/august-wrap-up-3/\" title=\"August Wrap-Up\">August Wrap-Up</a> for statistics on <a href=\"http://www.wordpress.com/\" title=\"WordPress.com free blogs\" rel=\"tag\">WordPress.com</a> included 286,860 blogs created, 298,655 new users, 3,442,638 file uploads, 439 terabytes of content transferred from our datacenters, 6,750,960 comments, and 1,196,661 active blogs and 14,056,683 active posts. WordPress.com also crossed four million blogs this past week. </p>\n<p><strong>New Themes for WordPress.com Members:</strong> WordPress.com announced two new WordPress Themes recently. The <a href=\"http://en.blog.wordpress.com/2008/09/03/albeo-theme-launch/\" title=\"Albeo Theme Launch\">Albeo Theme</a> for WordPress.com bloggers is designed by <a href=\"http://designdisease.com/\" title=\"Elena at Design Disease\">Elena at Design Disease</a>. The <a href=\"http://en.blog.wordpress.com/2008/09/12/depo-masthead-theme-launch/\" title=\"DePo Masthead Theme Launch\">DePo Masthead WordPress Theme</a> by <a href=\"http://powazek.com/\" title=\"Derek Powazek\">Derek Powazek</a> features a minimalist magazine design with dynamic features such as header font size changes depending upon the length of the blog title, column heights for front page articles will always be equal, interesting navigation options, and hidden, unfolding comments.</p>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcamp\" rel=\"tag\">wordcamp</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+events\" rel=\"tag\">wordpress events</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+2.7\" rel=\"tag\">wordpress 2.7</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=weblog+tools+collection+wordpress+plugin\" rel=\"tag\">weblog tools collection wordpress plugin</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugins\" rel=\"tag\">wordpress plugins</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugin+news\" rel=\"tag\">wordpress plugin news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+announcements\" rel=\"tag\">wordpress announcements</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+help\" rel=\"tag\">wordpress help</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+tips\" rel=\"tag\">wordpress tips</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a>  <a href=\"http://feeds.feedburner.com/LorelleOnWordPress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a>  <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/3027/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/3027/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/3027/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/3027/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/3027/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/3027/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/3027/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=3027&subd=lorelle&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Thu, 18 Sep 2008 02:51:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Lorelle VanFossen\";}s:7:\"summary\";s:14295:\"<div class=\"snap_preview\"><br /><p><a href=\"http://lorelle.wordpress.com/tag/wordpress-news/\" title=\"WordPress News\"><img src=\"http://lorelle.files.wordpress.com/2007/01/wpnews1.png\" alt=\"WordPress News\" align=\"right\" /></a>I&#8217;ve just released the latest <a href=\"http://www.blogherald.com/tag/wordpress-wednesday-news/\" title=\"Articles on WordPress Wednesday\" rel=\"tag\">Blog Herald WordPress Wednesday News</a> on <a href=\"http://www.blogherald.com/2008/09/17/wordpress-wednesday-news-wordpress-27-final-features-wtc-plugin-contest-winners-wordcamps-surveys-and-more/\" title=\"WordPress 2.7 Final Features, WTC Plugin Contest Winners, WordCamps, Surveys, and More\">WordPress Wednesday News: WordPress 2.7 Final Features, WTC Plugin Contest Winners, WordCamps, Surveys, and More</a>, and there are some WordPress news tidbits I&#8217;d like to call your attention to.</p>\n<h4>WordPress 2.7 Feature List Set</h4>\n<p><a href=\"http://boren.nu/archives/2008/09/04/stalking-the-wild-27/\" title=\"posted a list of confirmed features\">Ryan Boren has announced the final WordPress 2.7 features</a> to prepare us all for the upcoming release. </p>\n<p>They include the new &#8220;crazyhorse&#8221; WordPress Administration Panels interface, a new Write Post Panel that allows dragging and dropping of meta boxes so you can rearrange your writing surface, the ability to hide columns on the content index pages, inline editing of posts and Pages on the new content index pages, comments XMLRPC API, sticky posts, automatic WordPress Plugin installation and integrated Plugin browser, HTTPOnly auth cookies, and much more. </p>\n<p>After all the <a href=\"http://lorelle.wordpress.com/2006/12/16/the-number-one-flaw-in-wordpress-comments/\" title=\"Comments\">kvetching I&#8217;ve done about the Comments Panel</a> in the WordPress Administration Panels (okay, I&#8217;m not the only one), they have finally overhauled it and have added the ability to automatically upgrade WordPress and the total revamping of the Comments Panel to include replying to comments, keyboard shortcuts (hot keys) for managing comments, and threaded comments to help you keep track of the conversation. </p>\n<p>I&#8217;m waiting to try it out as it may soon be added to <a href=\"http://www.wordpress.com/\" title=\"WordPress.com free blogs\" rel=\"tag\">WordPress.com</a> as part of the testing. I do hope it will be as user-friendly as <a href=\"http://internetducttape.com/tools/wordpress/wordpress-comment-ninja/\" title=\"WordPress Comment Ninja Greasemonkey Script\">WordPress Comment Ninja Greasemonkey Script</a> by Engtech of Internet Duct Tape. I&#8217;ll hate to part with my favorite non-WordPress Plugin toy.</p>\n<h4>Tell WordPress How You Want the WordPress 2.7 Administration Panels to Look and Work</h4>\n<p>In announcements on the <a href=\"http://wordpress.org/development/2008/09/wordpress-27-navigation-options-survey/\" title=\"WordPress 2.7 Navigation Options Survey\">WordPress Development Blog</a> and on <a href=\"http://en.blog.wordpress.com/2008/09/15/wordpress-27-navigation-options-survey/\" title=\"WordPress 2.7 Navigation Options Survey\">WordPress.com</a>, WordPress users are invited to <a href=\"http://www.polldaddy.com/s/A02A1308A9F8D944\" title=\"take the survey on WordPress 2.7 interface\">participate in a survey</a> to have your say on how the navigation options on the WordPress 2.7 Administration Panels interface (UI) should look and work.</p>\n<p>At <a href=\"http://2008.sf.wordcamp.org/\" title=\"WordCamp San Francisco\">WordCamp 2008</a>, <a href=\"http://www.bobulate.com/\" title=\"Liz Danzico\">Liz Danzico</a> and <a href=\"http://jane.wordpress.com\" title=\"Jane Wells\">Jane Wells</a> presented <a href=\"http://www.slideshare.net/edanzico/riding-the-crazyhorse-future-generation-wordpress-presentation\" title=\"Future Generation WordPress\">Riding The Crazyhorse: Future Generation WordPress</a>, an inside look at how the new interface was developed and the amazing technology they use to test the results and make improvements. </p>\n<p>If you want your say in how it looks, you better speak up and take the survey.</p>\n<h4>Weblog Tools Collection Plugin Winners Announced</h4>\n<p>While WordPress 2.7 is rewiring the whole Comments Panel, it is telling that the grand prize winner of the <a href=\"http://weblogtoolscollection.com/archives/2008/09/13/wordpress-plugin-competition-25-winners/\" title=\"WordPress Plugin Competition 2.5 Winners!\">Weblog Tools Collection WordPress Plugin Competition</a> was <a href=\"http://pressography.com/plugins/wp-comment-remix/\" title=\"WP Comment Remix\">WP Comment Remix WordPress Plugin</a> by Pressography. It will be interesting how this incredible WordPress Plugin survives the next release of WordPress. I&#8217;m sure the creative Plugin author will come up with something even more interesting.</p>\n<p>Second prize went to the author of the <a href=\"http://www.aaronharp.com/dev/wp-manageable/\" title=\"Manageable\">Manageable WordPress Plugin</a>, followed by third prize, <a href=\"http://blog.realthemes.com/wp-easy-uploader/\" title=\"WP Easy Uploader\">WP Easy Uploader</a>. Consolation prize goes to <a href=\"http://www.prelovac.com/vladimir/\" title=\"Prelovac\">Prelovac</a> for his amazing work on WordPress Plugins recently. </p>\n<p>All the Plugins in the contest are amazing. Check them out and see how creative the WordPress Community continues to be.</p>\n<h4>Smashing Overload of WordPress Development Resources</h4>\n<p><a href=\"http://www.smashingmagazine.com/2008/09/15/wordpress-developers-toolbox/\" title=\"WordPress Developers’ Toolbox\">Smashing Magazine published the WordPress Developers’ Toolbox</a>, a huge collection of tips, tricks, resources, WordPress Themes, WordPress Theme design help, documentation, and tutorials for WordPress users. It&#8217;s overwhelming but there is a ton of great information in there. </p>\n<p>Please make sure that the article you are reading covers the version of WordPress you are using as some of the information is version-specific.</p>\n<h4>A Ton of WordCamp Information</h4>\n<p>I continue to report on the many WordCamps and WordPress Meetups that are popping up everywhere. If you want your event covered, make sure to <a href=\"http://lorelle.wordpress.com/category/wordpress-news/feed/&#108;&#111;&#114;&#101;&#108;&#108;&#101;&#111;&#110;&#119;&#111;&#114;&#100;&#112;&#114;&#101;&#115;&#115;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;\" title=\"Email Lorelle\">email me</a> so I can cover it on the <a href=\"http://www.blogherald.com/tag/wordpress-wednesday-news/\" title=\"Articles on WordPress Wednesday\" rel=\"tag\">Blog Herald WordPress Wednesday News</a> and <a href=\"http://wordcamp.info/\" title=\"The WordCamp Report\">The WordCamp Report</a>.</p>\n<p>In case you didn&#8217;t hear, <a href=\"http://wordcamp.info/2008/09/11/would-you-like-to-report-on-a-wordcamp-event/\" title=\"Would You Like to Report on a WordCamp Event?\">The WordCamp Report is looking for volunteers to live blog or report on WordCamp and WordPress</a> events around the world. The site is covering WordCamp news, events, and WordPress events, and includes tips for those who want to bring a WordCamp to their area. </p>\n<p>If you have been a part of a WordCamp event and would like to submit an article on your experience and lessons learned, just let me know. </p>\n<h4>And More WordPress and WordPress.com News</h4>\n<p>I also <a href=\"http://www.blogherald.com/2008/09/17/wordpress-wednesday-news-wordpress-27-final-features-wtc-plugin-contest-winners-wordcamps-surveys-and-more/\" title=\"WordPress 2.7 Final Features, WTC Plugin Contest Winners, WordCamps, Surveys, and More\">covered a lot of other WordPress news</a> including these recent announcements on WordPress.com:</p>\n<p><strong>SSL Now Available for WordPress.com Bloggers:</strong> <a href=\"http://en.blog.wordpress.com/2008/09/16/protect-your-blog-with-ssl/\" title=\"Protect Your Blog with SSL\">WordPress.com announced the ability for their bloggers to protect blogs</a> with <a href=\"http://en.wikipedia.org/wiki/Secure_Sockets_Layer\" title=\"SSL\">SSL</a>. If you are blogging on a public access point, &#8220;blogjackers&#8221; can prey on security vulnerabilities and possibly collect sensitive information. By adding SSL protection, you will automatically be logged onto your blog with an HTTPS connection (secure). You&#8217;ve always had the option, but few WordPress.com bloggers understood how it worked. </p>\n<p>To activate this new feature, go to <strong>My Account &gt; Edit Profile</strong> in the WordPress Administration Panels and check of &#8220;Always use HTTPS when visiting Administration pages&#8221; under Browser Connection. </p>\n<p><strong>WordPress.com FAQ Gets Screencasts:</strong> The <a href=\"http://faq.wordpress.com/\" title=\"WordPress.com FAQ\">WordPress.com FAQ</a> now has <a href=\"http://en.blog.wordpress.com/2008/09/10/wordpresscom-faq-screencasts/\" title=\"WordPress.com FAQ Screencasts\">screencasts on their guide posts</a> helping WordPress.com users learn more about how to use specific WordPress.com features. </p>\n<p><strong>WordPress.com August 2008 Stats:</strong> The <a href=\"http://en.blog.wordpress.com/2008/09/05/august-wrap-up-3/\" title=\"August Wrap-Up\">August Wrap-Up</a> for statistics on <a href=\"http://www.wordpress.com/\" title=\"WordPress.com free blogs\" rel=\"tag\">WordPress.com</a> included 286,860 blogs created, 298,655 new users, 3,442,638 file uploads, 439 terabytes of content transferred from our datacenters, 6,750,960 comments, and 1,196,661 active blogs and 14,056,683 active posts. WordPress.com also crossed four million blogs this past week. </p>\n<p><strong>New Themes for WordPress.com Members:</strong> WordPress.com announced two new WordPress Themes recently. The <a href=\"http://en.blog.wordpress.com/2008/09/03/albeo-theme-launch/\" title=\"Albeo Theme Launch\">Albeo Theme</a> for WordPress.com bloggers is designed by <a href=\"http://designdisease.com/\" title=\"Elena at Design Disease\">Elena at Design Disease</a>. The <a href=\"http://en.blog.wordpress.com/2008/09/12/depo-masthead-theme-launch/\" title=\"DePo Masthead Theme Launch\">DePo Masthead WordPress Theme</a> by <a href=\"http://powazek.com/\" title=\"Derek Powazek\">Derek Powazek</a> features a minimalist magazine design with dynamic features such as header font size changes depending upon the length of the blog title, column heights for front page articles will always be equal, interesting navigation options, and hidden, unfolding comments.</p>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+news\" rel=\"tag\">wordpress news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcamp\" rel=\"tag\">wordcamp</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+events\" rel=\"tag\">wordpress events</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+2.7\" rel=\"tag\">wordpress 2.7</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=weblog+tools+collection+wordpress+plugin\" rel=\"tag\">weblog tools collection wordpress plugin</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugins\" rel=\"tag\">wordpress plugins</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+plugin+news\" rel=\"tag\">wordpress plugin news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+announcements\" rel=\"tag\">wordpress announcements</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+help\" rel=\"tag\">wordpress help</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordpress+tips\" rel=\"tag\">wordpress tips</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a>  <a href=\"http://feeds.feedburner.com/LorelleOnWordPress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a>  <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/3027/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/3027/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/3027/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/3027/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/3027/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/3027/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/3027/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/3027/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=3027&subd=lorelle&ref=&feed=1\" /></div>\";}i:43;a:7:{s:5:\"title\";s:54:\"Lorelle on WP: See You in Las Vegas at Blog World Expo\";s:4:\"guid\";s:36:\"http://lorelle.wordpress.com/?p=3017\";s:4:\"link\";s:80:\"http://lorelle.wordpress.com/2008/09/17/see-you-in-las-vegas-at-blog-world-expo/\";s:11:\"description\";s:8870:\"<div class=\"snap_preview\"><br /><p><img src=\"http://lorelle.files.wordpress.com/2008/08/blogworldexpo2008.png?w=286&#038;h=124\" alt=\"\" title=\"Blog World Expo 2008\" width=\"286\" height=\"124\" class=\"alignright size-full wp-image-2892\" />I&#8217;m going to be joining everyone in the blogosphere at <a href=\"http://www.blogworldexpo.com/\" title=\"Blog World Expo\">Blog World Expo</a> in Las Vegas this weekend, September 20-21, 2008. Not going to be there? You are missing out on what could be a record breaking event.</p>\n<p>I will be there with <a href=\"http://www.woopra.com/\" title=\"Woopra - blog statistics package\" rel=\"tag\">Woopra</a>, <a href=\"http://www.layeredtech.com/\" title=\"Layered Tech\">Layered Tech</a>, and <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a>. </p>\n<p>I&#8217;ve peeked at the <a href=\"http://www.blogworldexpo.com/Conference-Schedule.html\" title=\"Conference Schedule\">Conference Schedule</a> and there is so much going on, I don&#8217;t even know where to begin. </p>\n<p>In addition to the Blog World Expo <a href=\"http://www.blogworldexpo.com/Exhibitors/Exhibitors.html\" title=\"Blog World Expo Exhibitors\">Exhibitors</a> in the Exhibition Hall at the Las Vegas Convention Center, the incredible collection of <a href=\"http://www.blogworldexpo.com/Speakers.html\" title=\"Blog World Expo Speakers\">speakers and workshops</a>, and the crème de la crème of the blogosphers <a href=\"http://www.blogworldexpo.com/Attendee-Info/Attendees.html\" title=\"Attendees\">attending</a>, there are also events within the main event, including: </p>\n<ul>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/EXECUTIVE&amp;ENTREPRENEURCONFERENCE/\" title=\"Sep 19, 2008 - EXECUTIVE &amp; ENTREPRENEUR CONFERENCE\">Executive &amp; Entrepreneur Conference</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/CITIZENJOURNALISMWORKSHOP/\" title=\"Sep 19, 2008 - CITIZEN JOURNALISM WORKSHOP\">Citizen Journalism Workshop</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/BLOGWORLDCONFERENCE/\" title=\"BLOGWORLD CONFERENCE\">Blogworld Conference</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/REALESTATEBLOGWORLD/\" title=\"REAL ESTATE BLOGWORLD\">Real Estate Blogworld</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/B5MEDIABLOGGERSUMMIT/\" title=\"B5MEDIA BLOGGER SUMMIT\">b5media Blogger Summit</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/GODBLOGCON/\" title=\"GODBLOGCON\">GODBLOGCON</a></li>\n</ul>\n<p>These specialty meetings and workshops cover niche areas and specific issues that confront bloggers within those specific areas. So much of it crosses borders, though, I&#8217;m having a tough time deciding which to attend. </p>\n<p>I do know where I will be Sunday, September 21, from 3:00PM - 4:00PM. I will be on a panel with my buddies, <a href=\"http://eventcosm.com/person/John-Pozadzides/\" title=\"John Pozadzides\">John Pozadzides</a> and <a href=\"http://eventcosm.com/person/Liz-Strauss/\" title=\"Liz Strauss\">Liz Strauss</a>, covering <a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/U407/\" title=\"The Stats of High Performance Content &amp; Marketing\">The Stats of High Performance Content and Marketing</a>.</p>\n<p>I will also be occasionally found in the Exhibition Hall in booth 220 with <a href=\"http://www.layeredtech.com/\" title=\"Layered Tech\">Layered Tech</a>, <a href=\"http://www.woopra.com/\" title=\"Woopra - blog statistics package\" rel=\"tag\">Woopra</a>, and <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a>. If you want to talk about servers, web hosting, and the grid, I&#8217;ll let you talk to the other guys there, but if you want to talk WordPress or Woopra, I&#8217;m ready!</p>\n<p>I hope to see you there!</p>\n<p><strong>NEXT:</strong> Next weekend, September 27, 2008, is <a href=\"http://www.wordcampportland.org/\" title=\"WordCamp Portland\">WordCamp Portland, Oregon - September 27, 2008</a>, where I will also be making noise. The event is sold out and there is a waiting list. It&#8217;s going to be great! </p>\n<p>Other upcoming events where I will be speaking and attending include:</p>\n<ul>\n<li><a href=\"http://www.hmaus.com/index.php/events-calendar/mactoberfest-2008/\" title=\"30 am)\">Mactoberfest 2008 - Hawaii - October 18, 2008</a></li>\n<li><a href=\"http://ocet.wcc.hawaii.edu/techtalk/\" title=\"Windward Community College Tech Talk\">Windward Community College Tech Talk - Hawaii - October 24, 2008</a></li>\n<li><a href=\"http://2008.podcamphawaii.com/\" title=\"Podcamp + Wordcamp Hawaii at Hawaii Convention Center\">Podcamp and WordCamp Hawaii - Oct 24, 2008</a></li>\n</ul>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=lorelle\" rel=\"tag\">lorelle</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=lorelle+speaks\" rel=\"tag\">lorelle speaks</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=converences\" rel=\"tag\">converences</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=events\" rel=\"tag\">events</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=woopra\" rel=\"tag\">woopra</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+world+expo\" rel=\"tag\">blog world expo</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcamp+portland\" rel=\"tag\">wordcamp portland</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blogworldexpo\" rel=\"tag\">blogworldexpo</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blogworldexpo2008\" rel=\"tag\">blogworldexpo2008</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcampportlland\" rel=\"tag\">wordcampportlland</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=hawaii\" rel=\"tag\">hawaii</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+events\" rel=\"tag\">blog events</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+conferences\" rel=\"tag\">blog conferences</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+news\" rel=\"tag\">blog news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=conference+news\" rel=\"tag\">conference news</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a>  <a href=\"http://feeds.feedburner.com/LorelleOnWordPress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a>  <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/3017/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/3017/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/3017/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/3017/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/3017/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/3017/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/3017/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=3017&subd=lorelle&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Wed, 17 Sep 2008 23:14:11 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:17:\"Lorelle VanFossen\";}s:7:\"summary\";s:8870:\"<div class=\"snap_preview\"><br /><p><img src=\"http://lorelle.files.wordpress.com/2008/08/blogworldexpo2008.png?w=286&#038;h=124\" alt=\"\" title=\"Blog World Expo 2008\" width=\"286\" height=\"124\" class=\"alignright size-full wp-image-2892\" />I&#8217;m going to be joining everyone in the blogosphere at <a href=\"http://www.blogworldexpo.com/\" title=\"Blog World Expo\">Blog World Expo</a> in Las Vegas this weekend, September 20-21, 2008. Not going to be there? You are missing out on what could be a record breaking event.</p>\n<p>I will be there with <a href=\"http://www.woopra.com/\" title=\"Woopra - blog statistics package\" rel=\"tag\">Woopra</a>, <a href=\"http://www.layeredtech.com/\" title=\"Layered Tech\">Layered Tech</a>, and <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a>. </p>\n<p>I&#8217;ve peeked at the <a href=\"http://www.blogworldexpo.com/Conference-Schedule.html\" title=\"Conference Schedule\">Conference Schedule</a> and there is so much going on, I don&#8217;t even know where to begin. </p>\n<p>In addition to the Blog World Expo <a href=\"http://www.blogworldexpo.com/Exhibitors/Exhibitors.html\" title=\"Blog World Expo Exhibitors\">Exhibitors</a> in the Exhibition Hall at the Las Vegas Convention Center, the incredible collection of <a href=\"http://www.blogworldexpo.com/Speakers.html\" title=\"Blog World Expo Speakers\">speakers and workshops</a>, and the crème de la crème of the blogosphers <a href=\"http://www.blogworldexpo.com/Attendee-Info/Attendees.html\" title=\"Attendees\">attending</a>, there are also events within the main event, including: </p>\n<ul>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/EXECUTIVE&amp;ENTREPRENEURCONFERENCE/\" title=\"Sep 19, 2008 - EXECUTIVE &amp; ENTREPRENEUR CONFERENCE\">Executive &amp; Entrepreneur Conference</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/CITIZENJOURNALISMWORKSHOP/\" title=\"Sep 19, 2008 - CITIZEN JOURNALISM WORKSHOP\">Citizen Journalism Workshop</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/BLOGWORLDCONFERENCE/\" title=\"BLOGWORLD CONFERENCE\">Blogworld Conference</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/REALESTATEBLOGWORLD/\" title=\"REAL ESTATE BLOGWORLD\">Real Estate Blogworld</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/B5MEDIABLOGGERSUMMIT/\" title=\"B5MEDIA BLOGGER SUMMIT\">b5media Blogger Summit</a></li>\n<li><a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/#2008-09-19/GODBLOGCON/\" title=\"GODBLOGCON\">GODBLOGCON</a></li>\n</ul>\n<p>These specialty meetings and workshops cover niche areas and specific issues that confront bloggers within those specific areas. So much of it crosses borders, though, I&#8217;m having a tough time deciding which to attend. </p>\n<p>I do know where I will be Sunday, September 21, from 3:00PM - 4:00PM. I will be on a panel with my buddies, <a href=\"http://eventcosm.com/person/John-Pozadzides/\" title=\"John Pozadzides\">John Pozadzides</a> and <a href=\"http://eventcosm.com/person/Liz-Strauss/\" title=\"Liz Strauss\">Liz Strauss</a>, covering <a href=\"http://eventcosm.com/event/BlogWorldExpo-2008/U407/\" title=\"The Stats of High Performance Content &amp; Marketing\">The Stats of High Performance Content and Marketing</a>.</p>\n<p>I will also be occasionally found in the Exhibition Hall in booth 220 with <a href=\"http://www.layeredtech.com/\" title=\"Layered Tech\">Layered Tech</a>, <a href=\"http://www.woopra.com/\" title=\"Woopra - blog statistics package\" rel=\"tag\">Woopra</a>, and <a href=\"http://www.wordpress.org/\" title=\"WordPress\" rel=\"tag\">WordPress</a>. If you want to talk about servers, web hosting, and the grid, I&#8217;ll let you talk to the other guys there, but if you want to talk WordPress or Woopra, I&#8217;m ready!</p>\n<p>I hope to see you there!</p>\n<p><strong>NEXT:</strong> Next weekend, September 27, 2008, is <a href=\"http://www.wordcampportland.org/\" title=\"WordCamp Portland\">WordCamp Portland, Oregon - September 27, 2008</a>, where I will also be making noise. The event is sold out and there is a waiting list. It&#8217;s going to be great! </p>\n<p>Other upcoming events where I will be speaking and attending include:</p>\n<ul>\n<li><a href=\"http://www.hmaus.com/index.php/events-calendar/mactoberfest-2008/\" title=\"30 am)\">Mactoberfest 2008 - Hawaii - October 18, 2008</a></li>\n<li><a href=\"http://ocet.wcc.hawaii.edu/techtalk/\" title=\"Windward Community College Tech Talk\">Windward Community College Tech Talk - Hawaii - October 24, 2008</a></li>\n<li><a href=\"http://2008.podcamphawaii.com/\" title=\"Podcamp + Wordcamp Hawaii at Hawaii Convention Center\">Podcamp and WordCamp Hawaii - Oct 24, 2008</a></li>\n</ul>\n<p><img src=\"http://lorelle.files.wordpress.com/2006/08/sig.gif\" alt=\"\" /><br />\n<hr />\n<p><font size=\"-1\"><b>Site Search Tags:</b> <a href=\"http://lorelle.wordpress.com/index.php?s=lorelle\" rel=\"tag\">lorelle</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=lorelle+speaks\" rel=\"tag\">lorelle speaks</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=converences\" rel=\"tag\">converences</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=events\" rel=\"tag\">events</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=woopra\" rel=\"tag\">woopra</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+world+expo\" rel=\"tag\">blog world expo</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcamp+portland\" rel=\"tag\">wordcamp portland</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blogworldexpo\" rel=\"tag\">blogworldexpo</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blogworldexpo2008\" rel=\"tag\">blogworldexpo2008</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=wordcampportlland\" rel=\"tag\">wordcampportlland</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=hawaii\" rel=\"tag\">hawaii</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+events\" rel=\"tag\">blog events</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+conferences\" rel=\"tag\">blog conferences</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=blog+news\" rel=\"tag\">blog news</a>, <a href=\"http://lorelle.wordpress.com/index.php?s=conference+news\" rel=\"tag\">conference news</a> </p>\n<p><a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/02/rss.png\" alt=\"Feed on Lorelle on WordPress\" /></a> <a href=\"http://lorelle.wordpress.com/feed/\" title=\"Feed on Lorelle on WordPress\">Subscribe</a>  <a href=\"http://feeds.feedburner.com/LorelleOnWordPress\" title=\"Feedburner Lorelle on WordPress Feed\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/04/feedburnericon.gif\" alt=\"Feedburner icon\" />Via Feedburner</a>  <a href=\"http://www.feedblitz.com/f/?Sub=182399\" title=\"Lorelle on WordPress - full site feed email subscription\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2007/03/email.gif\" alt=\"\" />Subscribe by Email</a> <a href=\"http://lorelle.wordpress.com/\" title=\"Visit Lorelle on WordPress\"><img class=\"wp-smiley\" src=\"http://lorelle.files.wordpress.com/2008/03/pointer.gif\" alt=\"\" />Visit</a><br /><a href=\"http://lorelle.wordpress.com/about/\" title=\"Copyright Protected by Brent and Lorelle VanFossen\">Copyright Lorelle VanFossen</a>, the author of <a href=\"http://lorelle.wordpress.com/books/blogging-tips/\" title=\"Blogging Tips Book By Lorelle VanFossen\"><em>Blogging Tips, What Bloggers Won\'t Tell You About Blogging</em></a>.</font></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/lorelle.wordpress.com/3017/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/lorelle.wordpress.com/3017/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/lorelle.wordpress.com/3017/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/lorelle.wordpress.com/3017/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/lorelle.wordpress.com/3017/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/lorelle.wordpress.com/3017/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/lorelle.wordpress.com/3017/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/lorelle.wordpress.com/3017/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=3017&subd=lorelle&ref=&feed=1\" /></div>\";}i:44;a:7:{s:5:\"title\";s:59:\"Weblog Tools Collection: WordPress Theme Releases for 09/17\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4181\";s:4:\"link\";s:87:\"http://weblogtoolscollection.com/archives/2008/09/17/wordpress-theme-releases-for-0918/\";s:11:\"description\";s:1382:\"<p><a href=\"http://www.otomot.net/2008/09/16/wordpress-theme-otomot-garaj-v02/\"><strong>Otomot Garaj</strong></a></p>\n<p><img src=\"http://weblogtoolscollection.com/b2-img/2008/09/garaj-theme.jpg\" border=\"0\" alt=\"garaj_theme\" width=\"120\" height=\"114\" /></p>\n<p>Otomot Garaj Theme is a simple video theme. You can watch own videos in your website.</p>\n<p><a href=\"http://www.7879designs.com/downloads/free-wordpress-theme-threecolumnsblue/\"><strong>Three Columns Blue</strong></a></p>\n<p><a href=\"http://7879designs.com/demo/3cb/\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/09/threecolumnsblue.gif\" border=\"0\" alt=\"threecolumnsblue\" width=\"168\" height=\"114\" /></a></p>\n<p>It&#8217;s a 3 column, fixed width, widget ready theme.</p>\n<p><a href=\"http://www.azmoney.co.uk/wordpress-themes/mini\"><strong>Mini</strong></a></p>\n<p><img src=\"http://weblogtoolscollection.com/b2-img/2008/09/mini.png\" border=\"0\" alt=\"mini\" width=\"152\" height=\"114\" /></p>\n<p>Simple, three column, white, widget and gravatar ready theme</p>\n<p><a href=\"http://blog.pdfcast.org/2008/09/15/darkblue-wordpress-theme/\"><strong>Dark Blue</strong></a></p>\n<p><a href=\"http://blog.pdfcast.org/\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/09/darkblue.jpg\" border=\"0\" alt=\"darkblue\" width=\"144\" height=\"114\" /></a></p>\n<p>Widget ready, 2 columns, fixed width, clean theme with right sidebar.</p>\";s:7:\"pubdate\";s:31:\"Wed, 17 Sep 2008 19:19:53 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:1382:\"<p><a href=\"http://www.otomot.net/2008/09/16/wordpress-theme-otomot-garaj-v02/\"><strong>Otomot Garaj</strong></a></p>\n<p><img src=\"http://weblogtoolscollection.com/b2-img/2008/09/garaj-theme.jpg\" border=\"0\" alt=\"garaj_theme\" width=\"120\" height=\"114\" /></p>\n<p>Otomot Garaj Theme is a simple video theme. You can watch own videos in your website.</p>\n<p><a href=\"http://www.7879designs.com/downloads/free-wordpress-theme-threecolumnsblue/\"><strong>Three Columns Blue</strong></a></p>\n<p><a href=\"http://7879designs.com/demo/3cb/\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/09/threecolumnsblue.gif\" border=\"0\" alt=\"threecolumnsblue\" width=\"168\" height=\"114\" /></a></p>\n<p>It&#8217;s a 3 column, fixed width, widget ready theme.</p>\n<p><a href=\"http://www.azmoney.co.uk/wordpress-themes/mini\"><strong>Mini</strong></a></p>\n<p><img src=\"http://weblogtoolscollection.com/b2-img/2008/09/mini.png\" border=\"0\" alt=\"mini\" width=\"152\" height=\"114\" /></p>\n<p>Simple, three column, white, widget and gravatar ready theme</p>\n<p><a href=\"http://blog.pdfcast.org/2008/09/15/darkblue-wordpress-theme/\"><strong>Dark Blue</strong></a></p>\n<p><a href=\"http://blog.pdfcast.org/\"><img src=\"http://weblogtoolscollection.com/b2-img/2008/09/darkblue.jpg\" border=\"0\" alt=\"darkblue\" width=\"144\" height=\"114\" /></a></p>\n<p>Widget ready, 2 columns, fixed width, clean theme with right sidebar.</p>\";}i:45;a:7:{s:5:\"title\";s:56:\"Weblog Tools Collection: WordPress Developers’ Toolbox\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4171\";s:4:\"link\";s:82:\"http://weblogtoolscollection.com/archives/2008/09/17/wordpress-developers-toolbox/\";s:11:\"description\";s:652:\"<p><a href=\"http://www.smashingmagazine.com/2008/09/15/wordpress-developers-toolbox/\">WordPress Developers&#8217; Toolbox</a>: Smashing Magazine has put together a quite large list of various tips, tricks, tutorials, documentation, resources, themes, design help and everything else in between for WordPress. As a matter of fact, I am surprised that it was not released as an &#8220;eBook&#8221;. I do wish that the data was organized better, with better linking within the article, better headings, smaller and fewer pictures and a better way to navigate. But the collection is quite large and there is lots of information there to browse through.</p>\";s:7:\"pubdate\";s:31:\"Wed, 17 Sep 2008 17:53:31 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:652:\"<p><a href=\"http://www.smashingmagazine.com/2008/09/15/wordpress-developers-toolbox/\">WordPress Developers&#8217; Toolbox</a>: Smashing Magazine has put together a quite large list of various tips, tricks, tutorials, documentation, resources, themes, design help and everything else in between for WordPress. As a matter of fact, I am surprised that it was not released as an &#8220;eBook&#8221;. I do wish that the data was organized better, with better linking within the article, better headings, smaller and fewer pictures and a better way to navigate. But the collection is quite large and there is lots of information there to browse through.</p>\";}i:46;a:7:{s:5:\"title\";s:60:\"Weblog Tools Collection: WordPress Plugin Releases for 09/16\";s:4:\"guid\";s:40:\"http://weblogtoolscollection.com/?p=4173\";s:4:\"link\";s:88:\"http://weblogtoolscollection.com/archives/2008/09/16/wordpress-plugin-releases-for-0916/\";s:11:\"description\";s:1335:\"<p><a href=\"http://www.wpseo.de/\"><strong>wpSEO</strong></a></p>\n<p>The wpSEO plugin helps you optimize your blog for SEO purposes by eliminating issues with duplicate content and specifying meta tags and page titles for the different pages of your blog. <em>Page in German</em></p>\n<p><a href=\"http://www.thisrand.com/scripts/winex\"><strong>WineX</strong></a></p>\n<p>WineX is a lightweight script that will import the listing contents of your CellarTracker wine cellar into your WordPress website.</p>\n<p><a href=\"http://www.kieranoshea.com/projects/calendar\"><strong>WP Calendar</strong></a></p>\n<p>Calendar is an events calendar for WordPress that allows you to publish a monthly breakdown of your appointments and important dates for your blog readers to view.</p>\n<p><a href=\"http://scribu.net/projects/filter-email-notifications.html\"><strong>Filter Email Notifications</strong></a></p>\n<p>Filter Email Notifications is a simple plugin that stops WordPress from sending email notifications for comments that have been manually approved.</p>\n<p><a href=\"http://blueprintds.com/2008/09/16/wordpress-flash-photo-carousel-plugin/\"><strong>Flash Photo Carousel</strong></a></p>\n<p>This plugin is built to manage the excellent <a href=\"http://www.flshow.net/\">flShow Photo Carousel</a> within the comfort of the WordPress dashboard</p>\";s:7:\"pubdate\";s:31:\"Tue, 16 Sep 2008 18:54:20 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ajay\";}s:7:\"summary\";s:1335:\"<p><a href=\"http://www.wpseo.de/\"><strong>wpSEO</strong></a></p>\n<p>The wpSEO plugin helps you optimize your blog for SEO purposes by eliminating issues with duplicate content and specifying meta tags and page titles for the different pages of your blog. <em>Page in German</em></p>\n<p><a href=\"http://www.thisrand.com/scripts/winex\"><strong>WineX</strong></a></p>\n<p>WineX is a lightweight script that will import the listing contents of your CellarTracker wine cellar into your WordPress website.</p>\n<p><a href=\"http://www.kieranoshea.com/projects/calendar\"><strong>WP Calendar</strong></a></p>\n<p>Calendar is an events calendar for WordPress that allows you to publish a monthly breakdown of your appointments and important dates for your blog readers to view.</p>\n<p><a href=\"http://scribu.net/projects/filter-email-notifications.html\"><strong>Filter Email Notifications</strong></a></p>\n<p>Filter Email Notifications is a simple plugin that stops WordPress from sending email notifications for comments that have been manually approved.</p>\n<p><a href=\"http://blueprintds.com/2008/09/16/wordpress-flash-photo-carousel-plugin/\"><strong>Flash Photo Carousel</strong></a></p>\n<p>This plugin is built to manage the excellent <a href=\"http://www.flshow.net/\">flShow Photo Carousel</a> within the comfort of the WordPress dashboard</p>\";}i:47;a:7:{s:5:\"title\";s:40:\"bbPress: bbPress 1.0 alpha series update\";s:4:\"guid\";s:24:\"http://bbpress.org/?p=97\";s:4:\"link\";s:63:\"http://bbpress.org/blog/2008/09/bbpress-10-alpha-series-update/\";s:11:\"description\";s:1889:\"<p>It&#8217;s about time everyone was let in on the progress we have made towards version 1.0 of bbPress.</p>\n<p>I expect the next alpha release to be made sometime in the next two weeks. This release will include our first implementation of Pingbacks both to and from your bbPress installation. The first draft implementation of this is now in trunk.</p>\n<p>Also to be included in the next release is an implementation of the pseudo cron feature from WordPress. This will allow plugin developers to schedule jobs in the future or on a regular basis. It is 100% compatible with the WordPress implementation, so the <a href=\"http://codex.wordpress.org/Category:WP-Cron_Functions\">existing documentation</a> is all you need to get started with using it.</p>\n<p>To enable cron I&#8217;ve included the very new WP_Http class in BackPress. This new class is a robust HTTP fetcher which is meant to replace the Snoopy class in WordPress. This will allow all sorts of RESTFUL services to be utilised within bbPress plugins, like fetching data from other pages, embedding search APIs and even pulling data from WordPress via RSS or XML-RPC.</p>\n<p>On the drawing board is the beginnings of an XML-RPC publishing interface. This will make it easier to use bbPress as a data store for more exotic clients like custom flash applications and XML-RPC desktop clients. It also opens the door to creating an iPhone app for bbPress much like the existing <a href=\"http://iphone.wordpress.org/\">WordPress iPhone app</a>.</p>\n<p>An alpha version of bbPress&#8217; new export/import format and tools has also landed in trunk thanks to our Google Summer of Code student <a href=\"http://www.stealyourcarbon.net/\">Dan Larkin</a>. You can read a little more about that at the <a href=\"http://bbxf.org/\">BBXF website</a>.</p>\n<p>There will also be several fixes for bugs found by our courageous alpha testers.</p>\";s:7:\"pubdate\";s:31:\"Tue, 16 Sep 2008 13:56:26 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Sam Bauers\";}s:7:\"summary\";s:1889:\"<p>It&#8217;s about time everyone was let in on the progress we have made towards version 1.0 of bbPress.</p>\n<p>I expect the next alpha release to be made sometime in the next two weeks. This release will include our first implementation of Pingbacks both to and from your bbPress installation. The first draft implementation of this is now in trunk.</p>\n<p>Also to be included in the next release is an implementation of the pseudo cron feature from WordPress. This will allow plugin developers to schedule jobs in the future or on a regular basis. It is 100% compatible with the WordPress implementation, so the <a href=\"http://codex.wordpress.org/Category:WP-Cron_Functions\">existing documentation</a> is all you need to get started with using it.</p>\n<p>To enable cron I&#8217;ve included the very new WP_Http class in BackPress. This new class is a robust HTTP fetcher which is meant to replace the Snoopy class in WordPress. This will allow all sorts of RESTFUL services to be utilised within bbPress plugins, like fetching data from other pages, embedding search APIs and even pulling data from WordPress via RSS or XML-RPC.</p>\n<p>On the drawing board is the beginnings of an XML-RPC publishing interface. This will make it easier to use bbPress as a data store for more exotic clients like custom flash applications and XML-RPC desktop clients. It also opens the door to creating an iPhone app for bbPress much like the existing <a href=\"http://iphone.wordpress.org/\">WordPress iPhone app</a>.</p>\n<p>An alpha version of bbPress&#8217; new export/import format and tools has also landed in trunk thanks to our Google Summer of Code student <a href=\"http://www.stealyourcarbon.net/\">Dan Larkin</a>. You can read a little more about that at the <a href=\"http://bbxf.org/\">BBXF website</a>.</p>\n<p>There will also be several fixes for bugs found by our courageous alpha testers.</p>\";}i:48;a:7:{s:5:\"title\";s:64:\"Weblog Tools Collection: WordPress 2.7 Navigation Options Survey\";s:4:\"guid\";s:92:\"http://weblogtoolscollection.com/archives/2008/09/15/wordpress-27-navigation-options-survey/\";s:4:\"link\";s:92:\"http://weblogtoolscollection.com/archives/2008/09/15/wordpress-27-navigation-options-survey/\";s:11:\"description\";s:413:\"<p><a href=\"http://wordpress.org/development/2008/09/wordpress-27-navigation-options-survey/\">WordPress 2.7 Navigation Options Survey</a>: As design decisions are being made for the new WordPress 2.7 admin interface, the WordPress team would like your input in deciding how the navigation options should be grouped and labeled. Please <a href=\"http://www.polldaddy.com/s/A02A1308A9F8D944\">take the survey</a>.</p>\";s:7:\"pubdate\";s:31:\"Tue, 16 Sep 2008 00:15:11 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:10:\"Mark Ghosh\";}s:7:\"summary\";s:413:\"<p><a href=\"http://wordpress.org/development/2008/09/wordpress-27-navigation-options-survey/\">WordPress 2.7 Navigation Options Survey</a>: As design decisions are being made for the new WordPress 2.7 admin interface, the WordPress team would like your input in deciding how the navigation options should be grouped and labeled. Please <a href=\"http://www.polldaddy.com/s/A02A1308A9F8D944\">take the survey</a>.</p>\";}i:49;a:7:{s:5:\"title\";s:27:\"Akismet: Akismet for Django\";s:4:\"guid\";s:34:\"http://akismet.wordpress.com/?p=98\";s:4:\"link\";s:54:\"http://blog.akismet.com/2008/09/15/akismet-for-django/\";s:11:\"description\";s:1760:\"<div class=\"snap_preview\"><br /><p>Aydin Mirzaee, an undergraduate student at McGill University, has <a href=\"http://sciyoshi.com/blog/2008/aug/27/using-akismet-djangos-new-comments-framework/\">whipped up some handy code</a> to incorporate Akismet with <a href=\"http://www.djangoproject.com/\">Django&#8217;s</a> new comments framework. Python geeks, enjoy <img src=\"http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/akismet.wordpress.com/98/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/akismet.wordpress.com/98/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/98/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/akismet.wordpress.com/98/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/akismet.wordpress.com/98/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/akismet.wordpress.com/98/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/akismet.wordpress.com/98/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=98&subd=akismet&ref=&feed=1\" /></div>\";s:7:\"pubdate\";s:31:\"Mon, 15 Sep 2008 23:09:10 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:1760:\"<div class=\"snap_preview\"><br /><p>Aydin Mirzaee, an undergraduate student at McGill University, has <a href=\"http://sciyoshi.com/blog/2008/aug/27/using-akismet-djangos-new-comments-framework/\">whipped up some handy code</a> to incorporate Akismet with <a href=\"http://www.djangoproject.com/\">Django&#8217;s</a> new comments framework. Python geeks, enjoy <img src=\"http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /></p>\n<img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/akismet.wordpress.com/98/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/akismet.wordpress.com/98/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/98/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/akismet.wordpress.com/98/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/akismet.wordpress.com/98/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/akismet.wordpress.com/98/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/akismet.wordpress.com/98/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/akismet.wordpress.com/98/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=98&subd=akismet&ref=&feed=1\" /></div>\";}}s:7:\"channel\";a:5:{s:5:\"title\";s:16:\"WordPress Planet\";s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:8:\"language\";s:2:\"en\";s:11:\"description\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"tagline\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:4:\"etag\";s:25:\"\"2c204-48e14c70-c10597\"\r\n\";s:13:\"last_modified\";s:31:\"Mon, 29 Sep 2008 21:45:20 GMT\r\n\";}','no'),(101,0,'rss_867bd5c64f85878d03a060509cd2f92c_ts','1222724765','no'),(102,0,'update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1268190041;}','yes'),(103,0,'nonce_salt','dhJqT5tNVI8#','yes'),(109,0,'category_children','a:0:{}','yes'),(110,0,'disable_fsockopen','1259264970','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) NOT NULL auto_increment,
  `post_id` bigint(20) NOT NULL default '0',
  `meta_key` varchar(255) default NULL,
  `meta_value` longtext,
  PRIMARY KEY  (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,3,'_edit_lock','1244460071'),(2,3,'_edit_last','1'),(3,2,'_edit_lock','1244460116'),(4,2,'_edit_last','1'),(5,1,'_edit_lock','1244460642'),(6,1,'_edit_last','1');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL auto_increment,
  `post_author` bigint(20) NOT NULL default '0',
  `post_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_category` int(4) NOT NULL default '0',
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL default 'publish',
  `comment_status` varchar(20) NOT NULL default 'open',
  `ping_status` varchar(20) NOT NULL default 'open',
  `post_password` varchar(20) NOT NULL default '',
  `post_name` varchar(200) NOT NULL default '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_content_filtered` text NOT NULL,
  `post_parent` bigint(20) NOT NULL default '0',
  `guid` varchar(255) NOT NULL default '',
  `menu_order` int(11) NOT NULL default '0',
  `post_type` varchar(20) NOT NULL default 'post',
  `post_mime_type` varchar(100) NOT NULL default '',
  `comment_count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2008-09-29 16:29:22','2008-09-29 21:29:22','Selamat datang ke laman rasmi Duha Group. Melalui laman ini, pelanggan dan sesiapa sahaja kini mampu melihat aktiviti serta hasil kerja Duha Group.','Laman rasmi Duha Group',0,'','publish','open','open','','hello-world','','','2009-06-08 06:30:41','2009-06-08 11:30:41','',0,'http://duha-group.net/demo/?p=1',0,'post','',1),(2,1,'2008-09-29 16:29:22','2008-09-29 21:29:22','This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.','Jabatan',0,'','publish','open','open','','about','','','2009-06-08 06:21:56','2009-06-08 11:21:56','',0,'http://duha-group.net/demo/?page_id=2',0,'page','',0),(3,1,'2009-06-08 06:21:11','2009-06-08 11:21:11','','Perkhidmatan',0,'','publish','open','open','','perkhidmatan','','','2009-06-08 06:21:11','2009-06-08 11:21:11','',0,'http://duha-group.net/demo/?page_id=3',0,'page','',0),(4,1,'2009-06-08 06:21:11','2009-06-08 11:21:11','','Perkhidmatan',0,'','inherit','open','open','','3-revision','','','2009-06-08 06:21:11','2009-06-08 11:21:11','',3,'http://duha-group.net/demo/?p=4',0,'revision','',0),(5,1,'2008-09-29 16:29:22','2008-09-29 21:29:22','This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.','About',0,'','inherit','open','open','','2-revision','','','2008-09-29 16:29:22','2008-09-29 21:29:22','',2,'http://duha-group.net/demo/?p=5',0,'revision','',0),(6,1,'2009-06-08 06:30:30','2009-06-08 11:30:30','Selamat datang ke laman rasmi Duha Group. Melalui laman ini, pelanggan dan sesiapa sahaja kini mampu melihat aktiviti serta hasil kerja Duha Group','Laman rasmi Duha roup',0,'','inherit','open','open','','1-autosave','','','2009-06-08 06:30:30','2009-06-08 11:30:30','',1,'http://duha-group.net/demo/?p=6',0,'revision','',0),(7,1,'2008-09-29 16:29:22','2008-09-29 21:29:22','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!',0,'','inherit','open','open','','1-revision','','','2008-09-29 16:29:22','2008-09-29 21:29:22','',1,'http://duha-group.net/demo/?p=7',0,'revision','',0),(8,1,'2009-06-08 06:30:34','2009-06-08 11:30:34','Selamat datang ke laman rasmi Duha Group. Melalui laman ini, pelanggan dan sesiapa sahaja kini mampu melihat aktiviti serta hasil kerja Duha Group.','Laman rasmi Duha roup',0,'','inherit','open','open','','1-revision-2','','','2009-06-08 06:30:34','2009-06-08 11:30:34','',1,'http://duha-group.net/demo/?p=8',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) NOT NULL default '0',
  `term_taxonomy_id` bigint(20) NOT NULL default '0',
  `term_order` int(11) NOT NULL default '0',
  PRIMARY KEY  (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(3,1,0),(4,1,0),(5,1,0),(2,1,0),(6,1,0),(7,1,0),(8,1,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) NOT NULL auto_increment,
  `term_id` bigint(20) NOT NULL default '0',
  `taxonomy` varchar(32) NOT NULL default '',
  `description` longtext NOT NULL,
  `parent` bigint(20) NOT NULL default '0',
  `count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'link_category','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) NOT NULL auto_increment,
  `name` varchar(200) NOT NULL default '',
  `slug` varchar(200) NOT NULL default '',
  `term_group` bigint(10) NOT NULL default '0',
  PRIMARY KEY  (`term_id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) NOT NULL auto_increment,
  `user_id` bigint(20) NOT NULL default '0',
  `meta_key` varchar(255) default NULL,
  `meta_value` longtext,
  PRIMARY KEY  (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'rich_editing','true'),(3,1,'admin_color','fresh'),(4,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(5,1,'wp_autosave_draft_ids','a:1:{i:-1244460021;i:3;}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL auto_increment,
  `user_login` varchar(60) NOT NULL default '',
  `user_pass` varchar(64) NOT NULL default '',
  `user_nicename` varchar(50) NOT NULL default '',
  `user_email` varchar(100) NOT NULL default '',
  `user_url` varchar(100) NOT NULL default '',
  `user_registered` datetime NOT NULL default '0000-00-00 00:00:00',
  `user_activation_key` varchar(60) NOT NULL default '',
  `user_status` int(11) NOT NULL default '0',
  `display_name` varchar(250) NOT NULL default '',
  PRIMARY KEY  (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BRpnKuY/un/HHX1TkZl4Gtsu8JvSwe1','admin','duhagemilang.enterprise@gmail.com','','2009-06-08 08:01:41','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2012-01-20  8:58:18

