DROP TABLE snsf_subscribe;

CREATE TABLE `snsf_subscribe` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `subscriber` varchar(50) DEFAULT NULL,
  `email` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;




DROP TABLE snsf_subscribe_options;

CREATE TABLE `snsf_subscribe_options` (
  `option_name` varchar(50) NOT NULL DEFAULT '',
  `option_value` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`option_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

INSERT INTO snsf_subscribe_options VALUES("snsf-custom-style","false");
INSERT INTO snsf_subscribe_options VALUES("snsf-style","default.css");



DROP TABLE wp_commentmeta;

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO wp_commentmeta VALUES("1","1","_wp_trash_meta_status","0");
INSERT INTO wp_commentmeta VALUES("2","1","_wp_trash_meta_time","1362627699");



DROP TABLE wp_comments;

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned 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) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned 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`),
  KEY `comment_parent` (`comment_parent`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO wp_comments VALUES("1","36","Eula","Deloria722@yahoo.com","http://bag.sh/16M","46.227.70.159","2013-03-05 23:18:02","2013-03-06 03:18:02","I came to your \"Where Has Adam Been? - Adam D. Kubizna\" page and noticed you could have a lot more traffic. I have found that the key to running a website is making sure the visitors you are getting are interested in your subject matter. There is a company that you can get traffic from and they let you try it for free. I managed to get over 300 targetted visitors to day to my website. Check it out here: http://bag.sh/16M","0","trash","Mozilla/5.0 (X11; U; Linux i686; it-IT; rv:1.9.0.2) Gecko/2008092313 Ubuntu/9.25 (jaunty) Firefox/3.8","","0","0");



DROP TABLE wp_links;

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned 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_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned 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_visible` (`link_visible`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;

INSERT INTO wp_links VALUES("10","http://ramsburg4congress.com","Karen Ramsburg for Congress","","","","Y","1","0","0000-00-00 00:00:00","","","");
INSERT INTO wp_links VALUES("11","http://votepa.us","VotePA","","","","Y","1","0","0000-00-00 00:00:00","","","");
INSERT INTO wp_links VALUES("12","http://vote4marybeth.com","Marybeth Kuznik for State Representative","","","","Y","1","0","0000-00-00 00:00:00","","","");



DROP TABLE wp_options;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned 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`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=7504 DEFAULT CHARSET=utf8;

INSERT INTO wp_options VALUES("3","0","siteurl","http://adamkubizna.com/wordpress","yes");
INSERT INTO wp_options VALUES("4","0","blogname","Adam D. Kubizna","yes");
INSERT INTO wp_options VALUES("5","0","blogdescription","","yes");
INSERT INTO wp_options VALUES("6","0","users_can_register","0","yes");
INSERT INTO wp_options VALUES("7","0","admin_email","adam@adamkubizna.com","yes");
INSERT INTO wp_options VALUES("8","0","start_of_week","0","yes");
INSERT INTO wp_options VALUES("9","0","use_balanceTags","","yes");
INSERT INTO wp_options VALUES("10","0","use_smilies","1","yes");
INSERT INTO wp_options VALUES("11","0","require_name_email","1","yes");
INSERT INTO wp_options VALUES("12","0","comments_notify","1","yes");
INSERT INTO wp_options VALUES("13","0","posts_per_rss","10","yes");
INSERT INTO wp_options VALUES("14","0","rss_use_excerpt","0","yes");
INSERT INTO wp_options VALUES("15","0","mailserver_url","mail.example.com","yes");
INSERT INTO wp_options VALUES("16","0","mailserver_login","login@example.com","yes");
INSERT INTO wp_options VALUES("17","0","mailserver_pass","password","yes");
INSERT INTO wp_options VALUES("18","0","mailserver_port","110","yes");
INSERT INTO wp_options VALUES("19","0","default_category","1","yes");
INSERT INTO wp_options VALUES("20","0","default_comment_status","closed","yes");
INSERT INTO wp_options VALUES("21","0","default_ping_status","open","yes");
INSERT INTO wp_options VALUES("22","0","default_pingback_flag","1","yes");
INSERT INTO wp_options VALUES("23","0","default_post_edit_rows","20","yes");
INSERT INTO wp_options VALUES("24","0","posts_per_page","10","yes");
INSERT INTO wp_options VALUES("25","0","date_format","F j, Y","yes");
INSERT INTO wp_options VALUES("26","0","time_format","H:i","yes");
INSERT INTO wp_options VALUES("27","0","links_updated_date_format","F j, Y g:i a","yes");
INSERT INTO wp_options VALUES("28","0","links_recently_updated_prepend","<em>","yes");
INSERT INTO wp_options VALUES("29","0","links_recently_updated_append","</em>","yes");
INSERT INTO wp_options VALUES("30","0","links_recently_updated_time","120","yes");
INSERT INTO wp_options VALUES("31","0","comment_moderation","","yes");
INSERT INTO wp_options VALUES("32","0","moderation_notify","1","yes");
INSERT INTO wp_options VALUES("33","0","permalink_structure","","yes");
INSERT INTO wp_options VALUES("34","0","gzipcompression","0","yes");
INSERT INTO wp_options VALUES("35","0","hack_file","0","yes");
INSERT INTO wp_options VALUES("36","0","blog_charset","UTF-8","yes");
INSERT INTO wp_options VALUES("37","0","moderation_keys","","no");
INSERT INTO wp_options VALUES("38","0","active_plugins","a:9:{i:0;s:69:\"contact-form-with-a-meeting-scheduler-by-vcita/vcita-contact-form.php\";i:1;s:21:\"facebook/facebook.php\";i:2;s:9:\"hello.php\";i:3;s:19:\"jetpack/jetpack.php\";i:4;s:45:\"limit-login-attempts/limit-login-attempts.php\";i:5;s:23:\"mailchimp/mailchimp.php\";i:6;s:31:\"spotify-embed/spotify-embed.php\";i:7;s:25:\"vm-backups/vm-backups.php\";i:8;s:24:\"wordpress-seo/wp-seo.php\";}","yes");
INSERT INTO wp_options VALUES("39","0","home","http://adamkubizna.com/wordpress","yes");
INSERT INTO wp_options VALUES("40","0","category_base","","yes");
INSERT INTO wp_options VALUES("41","0","ping_sites","http://rpc.pingomatic.com/","yes");
INSERT INTO wp_options VALUES("42","0","advanced_edit","0","yes");
INSERT INTO wp_options VALUES("43","0","comment_max_links","2","yes");
INSERT INTO wp_options VALUES("44","0","gmt_offset","-4","yes");
INSERT INTO wp_options VALUES("45","0","default_email_category","1","yes");
INSERT INTO wp_options VALUES("46","0","recently_edited","a:4:{i:0;s:83:\"/home/jazzpony/www/adamkubizna.com/wordpress/wp-content/plugins/akismet/akismet.php\";i:2;s:80:\"/home/jazzpony/www/adamkubizna.com/wordpress/wp-content/themes/iribbon/style.css\";i:3;s:80:\"/home/jazzpony/www/adamkubizna.com/wordpress/wp-content/themes/edegree/style.css\";i:4;s:0:\"\";}","no");
INSERT INTO wp_options VALUES("47","0","template","iribbon","yes");
INSERT INTO wp_options VALUES("48","0","stylesheet","iribbon","yes");
INSERT INTO wp_options VALUES("49","0","comment_whitelist","1","yes");
INSERT INTO wp_options VALUES("50","0","blacklist_keys","","no");
INSERT INTO wp_options VALUES("51","0","comment_registration","","yes");
INSERT INTO wp_options VALUES("52","0","rss_language","en","yes");
INSERT INTO wp_options VALUES("53","0","html_type","text/html","yes");
INSERT INTO wp_options VALUES("54","0","use_trackback","0","yes");
INSERT INTO wp_options VALUES("55","0","default_role","subscriber","yes");
INSERT INTO wp_options VALUES("56","0","db_version","19470","yes");
INSERT INTO wp_options VALUES("57","0","uploads_use_yearmonth_folders","1","yes");
INSERT INTO wp_options VALUES("58","0","upload_path","","yes");
INSERT INTO wp_options VALUES("59","0","blog_public","1","yes");
INSERT INTO wp_options VALUES("60","0","default_link_category","2","yes");
INSERT INTO wp_options VALUES("61","0","show_on_front","page","yes");
INSERT INTO wp_options VALUES("62","0","tag_base","","yes");
INSERT INTO wp_options VALUES("63","0","show_avatars","1","yes");
INSERT INTO wp_options VALUES("64","0","avatar_rating","G","yes");
INSERT INTO wp_options VALUES("65","0","upload_url_path","","yes");
INSERT INTO wp_options VALUES("66","0","thumbnail_size_w","150","yes");
INSERT INTO wp_options VALUES("67","0","thumbnail_size_h","150","yes");
INSERT INTO wp_options VALUES("68","0","thumbnail_crop","1","yes");
INSERT INTO wp_options VALUES("69","0","medium_size_w","300","yes");
INSERT INTO wp_options VALUES("70","0","medium_size_h","300","yes");
INSERT INTO wp_options VALUES("71","0","avatar_default","mystery","yes");
INSERT INTO wp_options VALUES("72","0","enable_app","","yes");
INSERT INTO wp_options VALUES("73","0","enable_xmlrpc","1","yes");
INSERT INTO wp_options VALUES("74","0","large_size_w","1024","yes");
INSERT INTO wp_options VALUES("75","0","large_size_h","1024","yes");
INSERT INTO wp_options VALUES("76","0","image_default_link_type","file","yes");
INSERT INTO wp_options VALUES("77","0","image_default_size","","yes");
INSERT INTO wp_options VALUES("78","0","image_default_align","","yes");
INSERT INTO wp_options VALUES("79","0","close_comments_for_old_posts","","yes");
INSERT INTO wp_options VALUES("80","0","close_comments_days_old","14","yes");
INSERT INTO wp_options VALUES("81","0","thread_comments","1","yes");
INSERT INTO wp_options VALUES("82","0","thread_comments_depth","5","yes");
INSERT INTO wp_options VALUES("83","0","page_comments","","yes");
INSERT INTO wp_options VALUES("84","0","comments_per_page","50","yes");
INSERT INTO wp_options VALUES("85","0","default_comments_page","newest","yes");
INSERT INTO wp_options VALUES("86","0","comment_order","asc","yes");
INSERT INTO wp_options VALUES("87","0","sticky_posts","a:0:{}","yes");
INSERT INTO wp_options VALUES("88","0","widget_categories","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("89","0","widget_text","a:5:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:361:\"<!-- Site Meter -->\n<script type=\"text/javascript\" src=\"http://s21.sitemeter.com/js/counter.js?site=s52AdamKU\">\n</script>\n<noscript>\n<a href=\"http://s21.sitemeter.com/stats.asp?site=s52AdamKU\" target=\"_top\">\n<img src=\"http://s21.sitemeter.com/meter.asp?site=s52AdamKU\" alt=\"Site Meter\" border=\"0\"/></a>\n</noscript>\n<!-- Copyright (c)2009 Site Meter -->\n\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:376:\"<a class=\"twitter-timeline\" href=\"https://twitter.com/Kubiznach\" data-widget-id=\"249687753783123970\">Tweets by @Kubiznach</a>\n<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=\"//platform.twitter.com/widgets.js\";fjs.parentNode.insertBefore(js,fjs);}}(document,\"script\",\"twitter-wjs\");</script>\n\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:160:\"<iframe src=\"https://embed.spotify.com/?uri=spotify:track:4DrZFVfcuHxFYc6drP41qc\" width=\"300\" height=\"80\" frameborder=\"0\" allowtransparency=\"true\"></iframe>\n\n\";s:6:\"filter\";b:0;}i:6;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:251:\"<a href=\'http://gentlemint.com/users/akubizna/\' title=\'Follow akubizna on Gentlemint\' target=\'_blank\'><img src=\'http://gentlemint.com/media/static/images/buttons/follow.png\' width=\'150\' height=\'48\' border=\'0\' alt=\'Follow akubizna on Gentlemint\' /></a>\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("90","0","widget_rss","a:0:{}","yes");
INSERT INTO wp_options VALUES("91","0","timezone_string","","yes");
INSERT INTO wp_options VALUES("92","0","embed_autourls","1","yes");
INSERT INTO wp_options VALUES("93","0","embed_size_w","","yes");
INSERT INTO wp_options VALUES("94","0","embed_size_h","600","yes");
INSERT INTO wp_options VALUES("95","0","page_for_posts","0","yes");
INSERT INTO wp_options VALUES("96","0","page_on_front","47","yes");
INSERT INTO wp_options VALUES("97","0","default_post_format","0","yes");
INSERT INTO wp_options VALUES("98","0","initial_db_version","19470","yes");
INSERT INTO wp_options VALUES("99","0","wp_user_roles","a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";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:6:\"Author\";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:11:\"Contributor\";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:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}","yes");
INSERT INTO wp_options VALUES("100","0","widget_search","a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("101","0","widget_recent-posts","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("102","0","widget_recent-comments","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("103","0","widget_archives","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("104","0","widget_meta","a:2:{i:2;a:1:{s:5:\"title\";s:5:\"Admin\";}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("105","0","sidebars_widgets","a:6:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:6:\"meta-2\";}s:15:\"sidebar-widgets\";a:5:{i:0;s:8:\"search-2\";i:1;s:6:\"text-3\";i:2;s:15:\"vcita_widget_id\";i:3;s:7:\"links-2\";i:4;s:6:\"text-4\";}s:12:\"sidebar-left\";a:0:{}s:13:\"sidebar-right\";a:0:{}s:14:\"footer-widgets\";a:2:{i:0;s:6:\"text-2\";i:1;s:6:\"text-6\";}s:13:\"array_version\";i:3;}","yes");
INSERT INTO wp_options VALUES("106","0","cron","a:6:{i:1364845719;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1364852243;a:1:{s:14:\"yoast_tracking\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1364869517;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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: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:1364869530;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1364882791;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}","yes");
INSERT INTO wp_options VALUES("108","0","_site_transient_update_core","O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":9:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:40:\"http://wordpress.org/wordpress-3.5.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":4:{s:4:\"full\";s:40:\"http://wordpress.org/wordpress-3.5.1.zip\";s:10:\"no_content\";s:51:\"http://wordpress.org/wordpress-3.5.1-no-content.zip\";s:11:\"new_bundled\";s:52:\"http://wordpress.org/wordpress-3.5.1-new-bundled.zip\";s:7:\"partial\";b:0;}s:7:\"current\";s:5:\"3.5.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.5\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1364834778;s:15:\"version_checked\";s:3:\"3.3\";}","yes");
INSERT INTO wp_options VALUES("111","0","_transient_random_seed","59c37410d62ea8165eda976623d85ea0","yes");
INSERT INTO wp_options VALUES("112","0","auth_salt","bo>1ULME4&3QidN%|<|sJh,r&:[e7PlzinJIsVn3=RHvB;u ZAT:.68eZ+b62D+t","yes");
INSERT INTO wp_options VALUES("113","0","logged_in_salt","r6Pr5V#LhgOZ[|aNz@,5<8/=uxxU!kS)5B-]A#]=G{a2_@UvoJ%p2eCL#GgXgdW5","yes");
INSERT INTO wp_options VALUES("114","0","_site_transient_timeout_browser_c8abce9ca233d7b42203a3e5cb7510a1","1348885530","yes");
INSERT INTO wp_options VALUES("115","0","_site_transient_browser_c8abce9ca233d7b42203a3e5cb7510a1","a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"21.0.1180.89\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("116","0","dashboard_widget_options","a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:32:\"http://adamkubizna.com/wordpress\";s:4:\"link\";s:108:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://adamkubizna.com/wordpress/\";s:3:\"url\";s:141:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://adamkubizna.com/wordpress/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress 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:7:{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;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}","yes");
INSERT INTO wp_options VALUES("117","0","nonce_salt","C<c}9:h v&[:&poNp.vF!hyTtG,ROyBy[/m3*U8iN)P}._]cL;M@{ud,HHlGy{9%","yes");
INSERT INTO wp_options VALUES("129","0","can_compress_scripts","1","yes");
INSERT INTO wp_options VALUES("135","0","_site_transient_timeout_browser_d97e2914731d2402f8035fa954990297","1348885629","yes");
INSERT INTO wp_options VALUES("136","0","_site_transient_browser_d97e2914731d2402f8035fa954990297","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"5.1.7\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:3:\"5.1\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("168","0","ftp_credentials","a:3:{s:8:\"hostname\";s:24:\"jazzpony.securesites.net\";s:8:\"username\";s:8:\"jazzpony\";s:15:\"connection_type\";s:3:\"ftp\";}","yes");
INSERT INTO wp_options VALUES("170","0","theme_mods_twentyeleven","a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1348281682;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}","yes");
INSERT INTO wp_options VALUES("172","0","theme_mods_desk-mess-mirrored","a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:8:\"top-menu\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1348282454;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:7:{i:0;s:7:\"links-2\";i:1;s:8:\"search-2\";i:2;s:14:\"recent-posts-2\";i:3;s:17:\"recent-comments-2\";i:4;s:10:\"archives-2\";i:5;s:12:\"categories-2\";i:6;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}","yes");
INSERT INTO wp_options VALUES("173","0","theme_switched","","yes");
INSERT INTO wp_options VALUES("176","0","nav_menu_options","a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}","yes");
INSERT INTO wp_options VALUES("177","0","widget_links","a:2:{i:2;a:5:{s:6:\"images\";i:1;s:4:\"name\";i:1;s:11:\"description\";i:0;s:6:\"rating\";i:0;s:8:\"category\";i:0;}s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("181","0","theme_mods_edegree","a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1348283289;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:7:{i:0;s:8:\"search-2\";i:1;s:7:\"links-2\";i:2;s:14:\"recent-posts-2\";i:3;s:17:\"recent-comments-2\";i:4;s:10:\"archives-2\";i:5;s:6:\"meta-2\";i:6;s:12:\"categories-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}}}}","yes");
INSERT INTO wp_options VALUES("182","0","tbf2_skin_color","silver","yes");
INSERT INTO wp_options VALUES("183","0","tbf2_font_color","#575757","yes");
INSERT INTO wp_options VALUES("184","0","tbf2_logo_header","no","yes");
INSERT INTO wp_options VALUES("185","0","tbf2_logo_location","left","yes");
INSERT INTO wp_options VALUES("186","0","tbf2_font_size","12px","yes");
INSERT INTO wp_options VALUES("187","0","tbf2_search_header","yes","yes");
INSERT INTO wp_options VALUES("188","0","tbf2_user_login","no","yes");
INSERT INTO wp_options VALUES("189","0","tbf2_icon_twitter","","yes");
INSERT INTO wp_options VALUES("190","0","tbf2_icon_facebook","","yes");
INSERT INTO wp_options VALUES("191","0","tbf2_icon_youtube","","yes");
INSERT INTO wp_options VALUES("192","0","tbf2_icon_rss","","yes");
INSERT INTO wp_options VALUES("193","0","tbf2_copy_year","","yes");
INSERT INTO wp_options VALUES("194","0","tbf2_exclude_pages","","yes");
INSERT INTO wp_options VALUES("195","0","tbf2_nav_hide_home","no","yes");
INSERT INTO wp_options VALUES("196","0","tbf2_number_posts","","yes");
INSERT INTO wp_options VALUES("197","0","tbf2_custom_slidespot","no","yes");
INSERT INTO wp_options VALUES("198","0","tbf2_custom_html_slidespot","","yes");
INSERT INTO wp_options VALUES("199","0","tbf2_custom_html_0","","yes");
INSERT INTO wp_options VALUES("200","0","tbf2_custom_html_1","","yes");
INSERT INTO wp_options VALUES("201","0","tbf2_custom_html_2","","yes");
INSERT INTO wp_options VALUES("202","0","tbf2_custom_html_3","","yes");
INSERT INTO wp_options VALUES("203","0","tbf2_custom_html_4","","yes");
INSERT INTO wp_options VALUES("204","0","tbf2_custom_html_5","","yes");
INSERT INTO wp_options VALUES("205","0","tbf2_custom_html_6","","yes");
INSERT INTO wp_options VALUES("206","0","tbf2_custom_html_7","","yes");
INSERT INTO wp_options VALUES("207","0","tbf2_custom_html_8","","yes");
INSERT INTO wp_options VALUES("208","0","tbf2_custom_html_9","","yes");
INSERT INTO wp_options VALUES("209","0","tbf2_custom_html_10","","yes");
INSERT INTO wp_options VALUES("210","0","tbf2_header_image_file","","yes");
INSERT INTO wp_options VALUES("211","0","tbf2_footer_image_file","","yes");
INSERT INTO wp_options VALUES("212","0","tbf2_background_image_file","","yes");
INSERT INTO wp_options VALUES("213","0","tbf2_background_color","","yes");
INSERT INTO wp_options VALUES("214","0","tbf2_background_repeat","","yes");
INSERT INTO wp_options VALUES("215","0","recently_activated","a:0:{}","yes");
INSERT INTO wp_options VALUES("221","0","current_theme","iRibbon","yes");
INSERT INTO wp_options VALUES("222","0","theme_mods_iribbon","a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:4:{s:11:\"header-menu\";i:0;s:11:\"footer-menu\";i:0;s:8:\"sub-menu\";i:0;s:11:\"mobile-menu\";i:0;}}","yes");
INSERT INTO wp_options VALUES("223","0","iribbon","a:70:{s:13:\"ir_skin_color\";s:7:\"default\";s:7:\"ir_font\";s:6:\"Tahoma\";s:14:\"ir_css_options\";s:0:\"\";s:20:\"header_section_order\";s:39:\"response_logo_icons,response_navigation\";s:24:\"ir_custom_header_element\";s:0:\"\";s:9:\"ir_banner\";N;s:13:\"ir_banner_url\";s:32:\"http://adamkubizna.com/wordpress\";s:14:\"ir_custom_logo\";s:1:\"1\";s:7:\"ir_logo\";a:1:{s:3:\"url\";s:78:\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/AdamLogoLarger.jpg\";}s:10:\"ir_favicon\";N;s:14:\"ir_apple_touch\";a:1:{s:3:\"url\";s:80:\"http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/apple-icon.png\";}s:13:\"ir_icon_style\";s:6:\"legacy\";s:10:\"ir_twitter\";s:28:\"http://twitter.com/kubiznach\";s:20:\"ir_hide_twitter_icon\";s:1:\"1\";s:11:\"ir_facebook\";s:28:\"http://facebook.com/akubizna\";s:21:\"ir_hide_facebook_icon\";s:1:\"1\";s:8:\"ir_gplus\";s:55:\"https://plus.google.com/u/0/101085042368947679376/posts\";s:18:\"ir_hide_gplus_icon\";s:1:\"1\";s:9:\"ir_flickr\";s:16:\"http://flikr.com\";s:14:\"ir_hide_flickr\";s:1:\"0\";s:11:\"ir_linkedin\";s:31:\"http://linkedin.com/in/akubizna\";s:16:\"ir_hide_linkedin\";s:1:\"1\";s:12:\"ir_pinterest\";s:20:\"http://pinterest.com\";s:17:\"ir_hide_pinterest\";s:1:\"0\";s:10:\"ir_youtube\";s:18:\"http://youtube.com\";s:15:\"ir_hide_youtube\";s:1:\"0\";s:13:\"ir_googlemaps\";s:22:\"http://maps.google.com\";s:18:\"ir_hide_googlemaps\";s:1:\"0\";s:8:\"ir_email\";s:20:\"adam@adamkubizna.com\";s:13:\"ir_hide_email\";s:1:\"1\";s:10:\"ir_rsslink\";s:0:\"\";s:16:\"ir_hide_rss_icon\";s:1:\"0\";s:10:\"ir_ga_code\";s:0:\"\";s:24:\"ir_custom_header_scripts\";s:0:\"\";s:21:\"ir_blog_section_order\";s:39:\"response_index,response_callout_section\";s:15:\"ir_blog_sidebar\";s:5:\"right\";s:15:\"ir_post_formats\";s:1:\"1\";s:16:\"ir_show_excerpts\";s:1:\"0\";s:20:\"ir_excerpt_link_text\";s:9:\"(More)…\";s:17:\"ir_excerpt_length\";s:2:\"55\";s:23:\"ir_show_featured_images\";s:1:\"0\";s:23:\"ir_featured_image_align\";s:4:\"key1\";s:24:\"ir_featured_image_height\";s:3:\"100\";s:23:\"ir_featured_image_width\";s:3:\"100\";s:22:\"ir_featured_image_crop\";s:1:\"1\";s:14:\"ir_hide_byline\";a:5:{s:14:\"ir_hide_author\";s:1:\"1\";s:18:\"ir_hide_categories\";s:1:\"1\";s:12:\"ir_hide_date\";s:1:\"1\";s:16:\"ir_hide_comments\";s:1:\"1\";s:12:\"ir_hide_tags\";s:1:\"1\";}s:23:\"ir_blog_slide_one_image\";a:1:{s:3:\"url\";s:101:\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/385406_10150975943612727_1356835336_n.jpg\";}s:21:\"ir_blog_slide_one_url\";s:0:\"\";s:23:\"ir_blog_slide_two_image\";a:1:{s:3:\"url\";s:84:\"http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg\";}s:21:\"ir_blog_slide_two_url\";s:22:\"http://cyberchimps.com\";s:25:\"ir_blog_slide_three_image\";a:1:{s:3:\"url\";s:84:\"http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg\";}s:23:\"ir_blog_slide_three_url\";s:22:\"http://cyberchimps.com\";s:20:\"ir_blog_callout_text\";s:0:\"\";s:17:\"ir_single_sidebar\";s:5:\"right\";s:21:\"ir_single_breadcrumbs\";s:1:\"1\";s:30:\"ir_single_show_featured_images\";s:1:\"0\";s:22:\"ir_single_post_formats\";s:1:\"1\";s:21:\"ir_single_hide_byline\";a:5:{s:14:\"ir_hide_author\";s:1:\"1\";s:18:\"ir_hide_categories\";s:1:\"1\";s:12:\"ir_hide_date\";s:1:\"1\";s:16:\"ir_hide_comments\";s:1:\"1\";s:12:\"ir_hide_tags\";s:1:\"1\";}s:18:\"ir_post_pagination\";s:1:\"1\";s:18:\"ir_archive_sidebar\";s:5:\"right\";s:22:\"ir_archive_breadcrumbs\";s:1:\"1\";s:24:\"ir_archive_show_excerpts\";s:1:\"1\";s:31:\"ir_archive_show_featured_images\";s:1:\"0\";s:23:\"ir_archive_post_formats\";s:1:\"1\";s:22:\"ir_archive_hide_byline\";a:5:{s:14:\"ir_hide_author\";s:1:\"1\";s:18:\"ir_hide_categories\";s:1:\"1\";s:12:\"ir_hide_date\";s:1:\"1\";s:16:\"ir_hide_comments\";s:1:\"1\";s:12:\"ir_hide_tags\";s:1:\"1\";}s:17:\"ir_search_sidebar\";s:5:\"right\";s:23:\"ir_search_show_excerpts\";s:1:\"1\";s:14:\"ir_404_sidebar\";s:5:\"right\";s:13:\"ir_custom_404\";s:111:\"I\'m sorry you have reached a page that does not exist...\n\nPlease report this to Adam @:\nadam@adamkubizna.com\";s:14:\"ir_footer_text\";s:57:\"Copyright © 2013 - Adam D. Kubizna- All rights reserved.\";}","yes");
INSERT INTO wp_options VALUES("268","0","akismet_available_servers","a:4:{s:12:\"66.135.58.61\";b:1;s:12:\"66.135.58.62\";b:1;s:12:\"72.233.69.88\";b:1;s:12:\"72.233.69.89\";b:1;}","yes");
INSERT INTO wp_options VALUES("269","0","akismet_connectivity_time","1348287188","yes");
INSERT INTO wp_options VALUES("325","0","limit_login_retries","a:1:{s:14:\"207.255.110.43\";i:1;}","no");
INSERT INTO wp_options VALUES("326","0","limit_login_retries_valid","a:1:{s:14:\"207.255.110.43\";i:1362721745;}","no");
INSERT INTO wp_options VALUES("365","0","category_children","a:0:{}","yes");
INSERT INTO wp_options VALUES("453","0","wpseo","a:14:{s:26:\"ignore_blog_public_warning\";s:0:\"\";s:11:\"ignore_tour\";s:6:\"ignore\";s:20:\"ignore_page_comments\";s:0:\"\";s:16:\"ignore_permalink\";s:6:\"ignore\";s:15:\"ms_defaults_set\";s:0:\"\";s:7:\"version\";s:5:\"1.4.4\";s:14:\"tracking_popup\";s:4:\"done\";s:14:\"yoast_tracking\";s:2:\"on\";s:20:\"disableadvanced_meta\";s:2:\"on\";s:12:\"googleverify\";s:53:\"google-site-verification: googled34a9eddfef34dca.html\";s:8:\"msverify\";s:0:\"\";s:11:\"alexaverify\";s:0:\"\";s:11:\"theme_check\";a:1:{s:11:\"description\";b:1;}s:4:\"hash\";s:32:\"bd374cffad91278a7b24d1971ccb5490\";}","yes");
INSERT INTO wp_options VALUES("454","0","wpseo_titles","a:13:{s:10:\"title-home\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:12:\"title-author\";s:42:\"%%name%%, Author at %%sitename%% %%page%% \";s:13:\"title-archive\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:12:\"title-search\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:9:\"title-404\";s:35:\"Page Not Found %%sep%% %%sitename%%\";s:15:\"noindex-archive\";s:2:\"on\";s:19:\"noindex-post_format\";s:2:\"on\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:14:\"title-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:14:\"title-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:17:\"title-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";}","yes");
INSERT INTO wp_options VALUES("455","0","wpseo_xml","a:2:{s:16:\"enablexmlsitemap\";s:2:\"on\";s:36:\"post_types-attachment-not_in_sitemap\";b:1;}","yes");
INSERT INTO wp_options VALUES("456","0","wpseo_social","a:2:{s:9:\"opengraph\";s:2:\"on\";s:12:\"fbconnectkey\";s:32:\"ba1d0634a325884dc2718281b9409564\";}","yes");
INSERT INTO wp_options VALUES("457","0","wpseo_rss","a:1:{s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}","yes");
INSERT INTO wp_options VALUES("458","0","_transient_timeout_feed_895a6fef0cc57461ead214388fd67e81","1348550963","no");
INSERT INTO wp_options VALUES("459","0","_transient_feed_895a6fef0cc57461ead214388fd67e81","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:1:\" \";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:29:\"                             \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"http://yoast.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Tweaking Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Sep 2012 09:31:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://wordpress.org/?v=3.4.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:5:\"     \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://yoast.com/wp-content/themes/yoast-v4/images/yoast-rss-logo.png\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"http://yoast.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"103\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Tweaking Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:20:{i:0;a:6:{s:4:\"data\";s:11:\"           \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Video SEO just became a lot easier!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/j--NgCN8Fr4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://yoast.com/video-seo-release/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Sep 2012 20:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=46687\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:756:\"<p>The Video SEO plugin I have been talking about for far too long has finally been finished and released. The short version is, it&#8217;s for sale for $89, find out more here. Keep on reading for a bit of backstory. Video SEO is probably one of the most technically challenging aspects of SEO. There are&#8230;</p><p><a\nhref=\"http://yoast.com/video-seo-release/\">Video SEO just became a lot easier!</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3780:\"<p>The <a\nhref=\"http://yoast.com/wordpress/video-seo/\">Video SEO plugin</a> I have been talking about for far too long has finally been finished and released. The short version is, it&#8217;s for sale for $89, find out more <a\nhref=\"http://yoast.com/wordpress/video-seo/\">here</a>. Keep on reading for a bit of backstory.</p><p>Video SEO is probably one of the most technically challenging aspects of SEO. There are several ways to make it known to Google that a certain page contains a video, ranging from Facebook share markup, Schema.org videoObject markup, MediaRSS enhancements to feeds to XML Video sitemaps. This plugin supports all four of those methods.</p><p>It&#8217;s a <em>lot</em> of work to get all this working seamlessly, but I think I&#8217;ve nailed it all. I wanted to make it as simple as putting a video in a post and then having the plugin do <em>all</em> the needed work. I succeeded. If you now use oEmbed to embed a video from say, Vimeo, into your blog, just by copy/pasting the URL onto a single line in your editor, and hit update, you&#8217;ll see that the Video SEO plugin grabs all the needed metadata from the Vimeo API and does all the legwork needed to make your video&#8217;s rank.</p><p>How you&#8217;ll know that it&#8217;s recognized the video? Because it will update the snippet into a video snippet:</p><p><img\nclass=\"alignnone\" title=\"Video Snippet Preview\" src=\"http://cdn.yoast.com/wp-content/uploads/2010/10/video-snippet-590x156.png\" alt=\"Video Snippet Preview\" width=\"590\" height=\"156\" /></p><p>It doesn&#8217;t just do that for Vimeo video&#8217;s, it works with a lot of platforms, including YouTube. How it does the YouTube thing is a question some of the more experienced SEO&#8217;s will ask. I leave that as an exercise to the reader. Check my <a\nhref=\"http://yoast.com/video-sitemap.xml\">video-sitemap.xml</a> and see if you can find it. Whether that&#8217;ll keep working? I don&#8217;t know.</p><p>Of course the video SEO plugin is based on and uses large parts of my <a\nhref=\"http://yoast.com/wordpress/seo/\">WordPress SEO plugin</a>, and therefor needs that to run. This will really allow you to take any site with video to the next level though. I&#8217;m very proud of it and hope that those of you running video sites will see the benefits and buy it.</p><p>Now I know some people will start to complain that it&#8217;s a paid plugin. I can even understand that to a certain extent. Please just realize that it&#8217;s impossible to build a plugin like this and support it, without being paid for those efforts. It takes a <em>lot</em> of work, almost 1.5 years of thinking and learning has gone into making this plugin as good as it is, and it&#8217;ll probably require very regular updates to keep in line with all the supported video platforms. To be able to do that, I have to charge for the plugin. It&#8217;s called a business model. Be glad that I found one, as it will also support the continued development of the core SEO plugin.</p><p>I hope, and fully expect it to work out well for everyone involved. I&#8217;d love to hear your thoughts and, I&#8217;ll be honest, I&#8217;d love even more to see you <a\nhref=\"http://yoast.com/wordpress/video-seo/\">buy the plugin</a>!</p><p><a\nhref=\"http://yoast.com/video-seo-release/\">Video SEO just became a lot easier!</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/j--NgCN8Fr4\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://yoast.com/video-seo-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"68\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:73:\"http://cdn.yoast.com/wp-content/uploads/2010/10/video-snippet-590x156.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:2:\"  \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:73:\"http://cdn.yoast.com/wp-content/uploads/2010/10/video-snippet-590x156.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Video Snippet Preview\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://yoast.com/video-seo-release/#utm_source=rss&utm_medium=rss&utm_campaign=video-seo-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:16:\"                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Google Analytics Dashboard for WordPress Blogs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/WkB5HaRNB0I/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://yoast.com/google-analytics-dashboard/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Sep 2012 09:11:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Analytics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45996\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:808:\"<p>One of the great new features of the ‘new Google Analytics’ are the custom dashboards. If you do not use them yet, you most definitely should. I’m using custom dashboards to measure SEO, PPC, ROI, conversions and more. I also made a custom dashboard for WordPress blogs using Yoast’s Google Analytics for WordPress plugin. I&#8230;</p><p><a\nhref=\"http://yoast.com/google-analytics-dashboard/\">Google Analytics Dashboard for WordPress Blogs</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/jeroen/\">Jeroen van Eck</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Jeroen van Eck\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6513:\"<p><img\nclass=\"alignright size-full wp-image-46002\" title=\"Google Analytics Dashboard for WordPress blogs\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/09/FI_GAforWP.png\" alt=\"Google Analytics Dashboard for WordPress blogs\" width=\"203\" height=\"137\" />One of the great new features of the ‘new Google Analytics’ are the custom dashboards. If you do not use them yet, you most definitely should. I’m using custom dashboards to measure SEO, PPC, ROI, conversions and more. I also made a custom dashboard for WordPress blogs using Yoast’s <a\nhref=\"http://yoast.com/wordpress/google-analytics/\">Google Analytics for WordPress plugin</a>. I already shared it in Dutch on <a\nhref=\"http://www.jeroenvaneck.com/\">my own blog</a>, but Joost asked me to share it with his readers as well. So here it is.</p><h2>About the dashboard</h2><p>This dashboard is meant to give a quick insight into all the important things you want to know about your blog at any given time. First of all I’d like to explain some metrics I’ve chosen to use in this dashboard. Firstly I chose to use visits instead of visitors because you also want to know when someone visits your blog multiple times. Secondly I chose to use unique page views instead of page views because I want to know how many people read my posts, not how many times they are read. Thirdly with this dashboard I tried to create insights into metrics about posts instead of metrics about all pages.</p><h2>How to build this dashboard</h2><p>First of all this dashboard of course contains a section regarding the most important core metrics. In this case I chose to include widgets containing the number of visits, the number of new visitors, a graph of the number of visits over the chosen period, the pages per visit and the average time on site. So far: nothing special. These widgets you can create without filtering any data.</p><h2>Google Analytics for WordPress</h2><p>For the following sections you need to use the Google Analytics for WordPress plugin. The plugin will allow you to use custom variables to track post types, authors, categories and tags. In the settings of the plugin you can activate them in Custom Variable Settings (in advanced settings). These settings allow you to show the interesting data for your dashboard. Depending on which Custom Variables you use you have to tweak your dashboard. For this dashboard we’ve used the following settings:</p><p><a\nclass=\"thickbox\" href=\"http://cdn2.yoast.com/wp-content/uploads/2012/09/custom-variable-settings-yoast.jpg\"><img\nclass=\"alignnone size-large wp-image-45997\" title=\"Custom Variable Settings Yoast\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/09/custom-variable-settings-yoast-536x389.jpg\" alt=\"Custom Variable Settings Yoast\" width=\"536\" height=\"389\" /></a></p><p>When you use different settings you have to check which variable is saved in which custom variable key.<br\n/> With these settings you are able to count the number of posts read on your blog and the most read posts. Because the plugin creates a custom variable containing the post type for each post that has been viewed you only need to filter the pages containing any kind of post type.</p><p>The widget settings for the number of posts read will look like this:</p><p><a\nclass=\"thickbox\" href=\"http://cdn3.yoast.com/wp-content/uploads/2012/09/number-of-posts-read.jpg\"><img\nclass=\"alignnone size-large wp-image-46001\" title=\"Number of posts read\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/09/number-of-posts-read-536x283.jpg\" alt=\"Number of posts read\" width=\"536\" height=\"283\" /></a></p><p>The widget settings for the most read posts will look like this:</p><p><a\nclass=\"thickbox\" href=\"http://cdn3.yoast.com/wp-content/uploads/2012/09/most-read-posts.jpg\"><img\nclass=\"alignnone size-large wp-image-46000\" title=\"Most read posts\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/09/most-read-posts-536x309.jpg\" alt=\"Most read posts\" width=\"536\" height=\"309\" /></a></p><p>The other custom variables created by the plugin allow you to show a few other interesting numbers. In this example we’ve chosen to show the most read authors and most read categories, but you could also show the most read tags or the number of posts by publication year.</p><p>The widget settings for the most read authors will look like this:</p><p><a\nclass=\"thickbox\" href=\"http://cdn2.yoast.com/wp-content/uploads/2012/09/most-read-authors.jpg\"><img\nclass=\"alignnone size-large wp-image-45998\" title=\"Most read authors\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/09/most-read-authors-536x288.jpg\" alt=\"Most read authors\" width=\"536\" height=\"288\" /></a></p><p>The widget settings for the most read categories will look like this:</p><p><a\nclass=\"thickbox\" href=\"http://cdn2.yoast.com/wp-content/uploads/2012/09/most-read-categories.jpg\"><img\nclass=\"alignnone size-large wp-image-45999\" title=\"Most read categories\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/09/most-read-categories-536x288.jpg\" alt=\"Most read categories\" width=\"536\" height=\"288\" /></a></p><h2>Sources</h2><p>Lastly the dashboard contains an overview of the most important traffic sources split up in used medium, social sources and used organic search terms.</p><h2>Installation</h2><p>I recommend you try to build this dashboard on your own. Not only to understand how it works but also to be able to choose to represent data in a different way. But of course I will provide you with <a\nhref=\"https://www.google.com/analytics/web/permalink?uid=aoWyebltTe6p_02PrR16og\">a link</a> to the dashboard configuration, which you can save to the desired profile in your Google Analytics account. Remember you need to have the Google Analytics for WordPress plugin installed as mentioned to be able to see all the correct data. Otherwise you still have to tweak the dashboard yourself.</p><p>Hope you enjoy your dashboard. Do you have any questions or suggestions? Leave a comment below.</p><p><a\nhref=\"http://yoast.com/google-analytics-dashboard/\">Google Analytics Dashboard for WordPress Blogs</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/jeroen/\">Jeroen van Eck</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/WkB5HaRNB0I\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://yoast.com/google-analytics-dashboard/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:71:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/FI_GAforWP-180x114.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:6:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:63:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/FI_GAforWP.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Google Analytics Dashboard for WordPress blogs\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:71:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/FI_GAforWP-180x114.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:83:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/custom-variable-settings-yoast.jpg\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Custom Variable Settings Yoast\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:90:\"http://cdn.yoast.com/wp-content/uploads/2012/09/custom-variable-settings-yoast-180x114.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:73:\"http://cdn3.yoast.com/wp-content/uploads/2012/09/number-of-posts-read.jpg\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Number of posts read\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:81:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/number-of-posts-read-180x114.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:68:\"http://cdn3.yoast.com/wp-content/uploads/2012/09/most-read-posts.jpg\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Most read posts\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:75:\"http://cdn.yoast.com/wp-content/uploads/2012/09/most-read-posts-180x114.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:70:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/most-read-authors.jpg\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Most read authors\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:78:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/most-read-authors-180x114.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:73:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/most-read-categories.jpg\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Most read categories\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:80:\"http://cdn.yoast.com/wp-content/uploads/2012/09/most-read-categories-180x114.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"http://yoast.com/google-analytics-dashboard/#utm_source=rss&utm_medium=rss&utm_campaign=google-analytics-dashboard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:15:\"               \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WooThemes chooses WordPress SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/LKmy1Veod_c/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://yoast.com/welcome-woothemes-users/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Sep 2012 14:07:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:13:\"WordPress SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:16:\"WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=46021\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:838:\"<p>WooThemes once again showed that they are at the forefront of WordPress development today: they deprecated their WooFramework&#8217;s SEO functionality and recommend their users to switch to WordPress SEO by Yoast. I&#8217;ve worked closely with Matt Cohen, WooThemes CTO, to build an import functionality for WooThemes users straight into WordPress SEO. I recently added statistics&#8230;</p><p><a\nhref=\"http://yoast.com/welcome-woothemes-users/\">WooThemes chooses WordPress SEO</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3313:\"<p><img\nclass=\"alignright size-full wp-image-45991\" title=\"WooThemes chooses WordPress SEO\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/06/FI_WordPress.png\" alt=\"WooThemes chooses WordPress SEO\" width=\"203\" height=\"137\" />WooThemes once again showed that they are at the forefront of WordPress development today: they <a\nhref=\"http://www.woothemes.com/2012/09/every-line-of-code-audited/\">deprecated their WooFramework&#8217;s SEO functionality</a> and recommend their users to switch to <a\nhref=\"http://yoast.com/wordpress/seo/\">WordPress SEO by Yoast</a>. I&#8217;ve worked closely with Matt Cohen, WooThemes CTO, to build an import functionality for WooThemes users straight into WordPress SEO.</p><p>I recently added statistics tracking to my two main plugins, and about 125,000 of you have already kindly agreed to send me some anonymous data. Because of that, I now know that <a\nhref=\"http://www.woothemes.com/2012/06/canvas/\">WooThemes Canvas</a> is actually one of the 10 most used themes <em>and</em> is used as a parent theme quite often as well, and their dozens of other themes are very, very popular, so this could mean a lot of new users for my SEO plugin. I welcome you all!</p><h2>WooSEO Import</h2><p>The WooSEO import functionality is very simple, activate the WordPress SEO plugin, go to SEO -&gt; Import and you&#8217;ll see this:</p><p><img\nclass=\"alignnone size-full wp-image-46022\" title=\"WooThemes Import at work: check the import from Woothemes box, press import\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/09/woothemes-import.png\" alt=\"WooThemes Import at work: check the import from Woothemes box, press import\" width=\"527\" height=\"281\" /></p><p>You can check if the data has imported ok by opening up some posts and seeing if your WordPress SEO box contains the titles and meta descriptions you had entered in WooSEO. If it has imported ok, repeat the process above but check the &#8220;Delete the old data&#8221; checkbox, this will make sure your database is as clean as can be by deleting the old WooSEO values from the database.</p><h2>Thank you to WooThemes!</h2><p>By doing this, WooThemes is finally doing what I&#8217;ve been proposing theme companies do <a\nhref=\"http://yoast.com/wordpress-seo-theme/\">for ages now</a>: stop trying to provide an SEO framework and focus on good code, great design and the functionality to change that design. That&#8217;s a step I thank &amp; applaud them for and I fully hope other theme vendors will do the same. I&#8217;m open to working with everybody on building import functionality when they decide to take this step.</p><p>Let me know what you think in the comments, and if you&#8217;re a recent &#8220;convert&#8221; coming from WooSEO, I&#8217;d seriously love to hear that too!</p><p><a\nhref=\"http://yoast.com/welcome-woothemes-users/\">WooThemes chooses WordPress SEO</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/LKmy1Veod_c\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://yoast.com/welcome-woothemes-users/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"35\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:73:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/FI_WordPress-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:2:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:65:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/FI_WordPress.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WooThemes chooses WordPress SEO\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:73:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/FI_WordPress-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:69:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/woothemes-import.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WooThemes Import at work: check the import from Woothemes box, press import\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:77:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/woothemes-import-180x114.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"http://yoast.com/welcome-woothemes-users/#utm_source=rss&utm_medium=rss&utm_campaign=welcome-woothemes-users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:15:\"               \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Twitter Cards in action\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/uQYktVK1qOM/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://yoast.com/twitter-cards-in-action/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Sep 2012 20:22:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:12:\"Social Media\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Twitter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45981\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:749:\"<p>I first wrote about Twitter Cards in June, when Twitter had just announced them, today I got a tweet from Paul Savage who noticed that they were now enabled for yoast.com. That&#8217;s super awesome news as it means that the implementation I did in my WordPress SEO plugin works. Of course I had to do&#8230;</p><p><a\nhref=\"http://yoast.com/twitter-cards-in-action/\">Twitter Cards in action</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3768:\"<p><img\nclass=\"alignright size-full wp-image-45989\" title=\"Twitter Cards in action\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/09/ionen_social_Twitter.png\" alt=\"Twitter Cards in action\" width=\"203\" height=\"137\" />I first wrote about <a\nhref=\"http://yoast.com/twitter-cards/\">Twitter Cards</a> in June, when Twitter had just announced them, today I got a tweet from <a\nhref=\"http://twitter.com/paulsavage\">Paul Savage</a> who noticed that they were now enabled for yoast.com. That&#8217;s super awesome news as it means that the implementation I did in my <a\nhref=\"http://yoast.com/wordpress/seo/\">WordPress SEO plugin</a> works.</p><p>Of course I had to do some tweaking afterwards, because as it turns out Twitter&#8217;s scraper for the Twitter Card data is easily confused (it doesn&#8217;t understand how to parse multiple og:images meta tags). But let me show you what it means if it works well; if you tweet an article from this site, you&#8217;ll see a normal tweet with a new &#8220;View Summary&#8221; link:</p><p><img\nclass=\"alignnone size-full wp-image-45983\" title=\"Tweet with summary button\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/09/tweet-summary-button.png\" alt=\"Tweet with summary button\" width=\"513\" height=\"88\" /></p><p>When you click that View summary link, the link &#8220;expands&#8221; and you&#8217;ll see this, the complete Twitter Card:</p><p><img\nclass=\"alignnone size-full wp-image-45982\" title=\"Expanded Twitter Card\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/09/twitter-expanded-twitter-card.png\" alt=\"Expanded Twitter Card\" width=\"513\" height=\"314\" /></p><p>As you might notice my Twitter account is there twice, the top one is because I&#8217;m the author of that article, the second one is because I set the @yoast account as the main account for this site. So if you see an article tweeted that&#8217;s been written by Michiel, you&#8217;ll see his twitter account on top and the main @yoast account in the bottom:</p><p><img\nclass=\"size-full wp-image-45984 alignnone\" title=\"Twitter Card Michiel\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/09/twitter-card-michiel.png\" alt=\"Twitter Card Michiel\" width=\"448\" height=\"187\" /></p><h2>Can I have Twitter Cards for my site?</h2><p>I know you&#8217;re asking yourself that question. I tested some sites that are running my SEO plugin on which I knew the Twitter Cards implementation in it is activated, but unfortunately couldn&#8217;t find any working examples outside of my own site yet. It seems that you really have to <a\nhref=\"https://dev.twitter.com/form/participate-twitter-cards\">apply to participate</a> with your site next to having the functionality active on your site (you can activate it on the SEO -&gt; Social menu).</p><p>So, the next step is another update of my SEO plugin which improves a bit on the current Twitter Card implementation now that I can test properly, expect that somewhere early next week. This update will also rely on OpenGraph when activated too where possible so you don&#8217;t have another 10 lines of Twitter meta data but instead only 3 or 4 lines for Twitter and the rest of the data coming from OpenGraph. Looking forward to seeing this work on other sites that run my SEO plugin!</p><p><a\nhref=\"http://yoast.com/twitter-cards-in-action/\">Twitter Cards in action</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/uQYktVK1qOM\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://yoast.com/twitter-cards-in-action/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"35\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:80:\"http://cdn.yoast.com/wp-content/uploads/2012/09/ionen_social_Twitter-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:4:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:72:\"http://cdn.yoast.com/wp-content/uploads/2012/09/ionen_social_Twitter.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Twitter Cards in action\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:80:\"http://cdn.yoast.com/wp-content/uploads/2012/09/ionen_social_Twitter-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:73:\"http://cdn3.yoast.com/wp-content/uploads/2012/09/tweet-summary-button.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Tweet with summary button\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:80:\"http://cdn2.yoast.com/wp-content/uploads/2012/09/tweet-summary-button-125x88.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:82:\"http://cdn3.yoast.com/wp-content/uploads/2012/09/twitter-expanded-twitter-card.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Expanded Twitter Card\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:90:\"http://cdn3.yoast.com/wp-content/uploads/2012/09/twitter-expanded-twitter-card-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:73:\"http://cdn3.yoast.com/wp-content/uploads/2012/09/twitter-card-michiel.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Twitter Card Michiel\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:81:\"http://cdn3.yoast.com/wp-content/uploads/2012/09/twitter-card-michiel-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"http://yoast.com/twitter-cards-in-action/#utm_source=rss&utm_medium=rss&utm_campaign=twitter-cards-in-action\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"             \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress Archive Pages: the tutorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/ituadafIpro/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://yoast.com/wordpress-archive-pages/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Aug 2012 13:26:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45944\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:813:\"<p>On any bigger site, you&#8217;ll get archive pages of some sort. Whether they are taxonomy or category archives, like this SEO category, Custom Post Type archives like this one for our WordPress plugin reviews or my speaking engagements, or even date archives: they all share the same common traits. In WordPress an archive will, by default, consist&#8230;</p><p><a\nhref=\"http://yoast.com/wordpress-archive-pages/\">WordPress Archive Pages: the tutorial</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8281:\"<p><img\nclass=\"alignright size-full wp-image-45974\" title=\"WordPress Archive Pages\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/08/ionen_content_WP1.png\" alt=\"WordPress Archive Pages\" width=\"203\" height=\"137\" />On any bigger site, you&#8217;ll get archive pages of some sort. Whether they are taxonomy or category archives, like this <a\nhref=\"http://yoast.com/cat/seo/\">SEO category</a>, Custom Post Type archives like this one for our <a\nhref=\"http://yoast.com/wp-plugin-review/\">WordPress plugin reviews</a> or my <a\nhref=\"http://yoast.com/speaking/\">speaking engagements</a>, or even date archives: they all share the same common traits. In WordPress an archive will, by default, consist only of a listing of posts. As these pages will get visited by normal people, that means those visitors are &#8220;thrown&#8221; upon a page that doesn&#8217;t try to tell them where they are.</p><p>This lack of introduction gives visitors only two options: leave immediately because they don&#8217;t understand where they&#8217;ve ended up, or click through to an article, without you having had <em>any</em> chance of pushing them in the right direction.</p><p>Because of that, every decent archive needs an &#8220;introduction&#8221;. This can be as simple as just a header that stands out, but for more important sections of your site, it actually pays of to write a bit of content.</p><p>Before you write that content though, you first have to make sure that the content you write actually displays on those archive pages.</p><h2>Show introductory content on archive pages</h2><h3>Categories, Tags and Custom Taxonomies</h3><p>For category, tag or custom taxonomy archives, you can simply create a custom template by creating a file. For categories, for instance, this file would be called category.php. If you don&#8217;t know how template hierarchy works within WordPress, check out <a\nhref=\"http://yoast.com/wordpress-theme-anatomy/\">our infographic</a> on the topic.</p><p>In this template, above the standard WordPress loop, you add the following code:</p><pre class=\"brush: php; title: ; notranslate\">&lt;!--?php if ( !get_query_var( \'paged\' ) ) { ?--&gt;&lt;/pre&gt;\n&lt;h1&gt;&lt;/h1&gt;\n&lt;pre&gt;\n  &lt;!--?php echo wpautop( term_description() ); ?--&gt;\n&lt;!--?php } ?--&gt;</pre><p>This uses the title you set for the category / tag / custom taxonomy, as well as the description, which you can fill in the WordPress backend.</p><p>If you uses <a\nhref=\"http://yoast.com/wp-theme/genesis/\">Genesis</a>, you don&#8217;t need to create an extra file, you can probably just check the box in your Genesis theme settings:</p><p><img\nclass=\"alignnone\" title=\"Genesis Archive Settings\" src=\"http://cdn3.yoast.com/wp-content/uploads/2011/09/genesis-archive-settings.png\" alt=\"Genesis Archive Settings\" width=\"575\" height=\"99\" /></p><p>Or if that doesn&#8217;t work, you can just add this to your child theme&#8217;s functions.php (there&#8217;s still no need to make that file):</p><pre class=\"brush: php; title: ; notranslate\">&lt;!--?php &lt;br ?--&gt;function yoast_term_archive_intro() {\n  if ( !is_category() &amp;&amp; !is_tag() &amp;&amp; !is_tax() )\n    return;\n\n  if( get_query_var( \'paged\' ) )\n    return;\n\n  echo \'&lt;/pre&gt;\n&lt;h1 class=&quot;entry-title&quot;&gt;\'.single_term_title(\'\', false).\'&lt;/h1&gt;\n&lt;pre&gt;\n\';\n  echo \'&lt;/pre&gt;\n&lt;div class=&quot;entry-content&quot;&gt;\'.wpautop( term_description() ).\'&lt;/div&gt;\n&lt;pre&gt;\n\';\n}\nadd_action( \'genesis_before_loop\', \'yoast_term_archive_intro\', 20 );</pre><p>Of course you can add some extra code or classes in there to style those boxes a bit more.</p><h3>Custom Post Type archives</h3><p>For custom post type archives, this might actually be a bit harder. The beginning of the process is the same: you can create a new file, the name of which should contain your post type: <em>archive-{posttype}.php</em>.</p><p>Then you could output the name of the post type using the following code:</p><pre class=\"brush: php; title: ; notranslate\">if ( !get_query_var( \'paged\' ) ) {\n$pt = get_post_type_object( get_post_type() );\necho \'&lt;/pre&gt;\n&lt;h1&gt;\'.$pt-&gt;labels-&gt;name.\'&lt;/h1&gt;\n&lt;pre&gt;\n\';\n}</pre><p>This is where the tricky bit comes in though: there is no backend in WordPress to input descriptions for these types of pages, nor is there a preferred way of storing that data. I added input fields for these to my Genesis child theme settings, which is too much to explain here, of course you could also hardcode it but that&#8217;s a bit ugly&#8230;</p><p>Within Genesis, with the data coming from my child theme settings, I output the text using the following code in my functions.php (again, no reason to create a new file):</p><pre class=\"brush: php; title: ; notranslate\">&lt;!--?php &lt;br ?--&gt;function yoast_cpt_intro() {\n  if ( !is_post_type_archive() )\n    return;\n\n  if( get_query_var( \'paged\' ) )\n    return;\n\n  $pt = get_post_type();\n  if ( genesis_get_option( $pt.\'-title\', \'child-settings\' ) ) {\n    echo \'&lt;/pre&gt;\n&lt;h1&gt;\'.genesis_get_option( $pt.\'-title\', \'child-settings\' ).\'&lt;/h1&gt;\n&lt;pre&gt;\n\';\n    echo wpautop( genesis_get_option( $pt.\'-intro\', \'child-settings\' ) );\n  }\n}\nadd_action( \'genesis_before_loop\', \'yoast_cpt_intro\', 20 );</pre><h2>Prevent duplicate content</h2><p>To avoid <a\nhref=\"http://yoast.com/articles/duplicate-content/\">duplicate content</a>, we only add the introduction to the first page of an archive, if that archive is a paginated one. With the introduction of <a\nhref=\"http://yoast.com/rel-next-prev-paginated-archives/\">rel=&#8221;next&#8221; and rel=&#8221;previous&#8221;</a>, sites that have implemented this well will be getting more visitors to the first page of a paginated series of archives anyway, but we still don&#8217;t want to show the same content on multiple pages.</p><p>You might have noticed this line of code in the Genesis examples above:</p><pre class=\"brush: php; title: ; notranslate\">if( get_query_var( \'paged\' ) )\nreturn;</pre><p>This does exactly that: prevent the duplicate content.</p><h2>Styling the archive introduction text</h2><p>You should make sure that your introductory text for your archive really stands out. Remember, it&#8217;s not &#8220;just&#8221; there for SEO reasons, it&#8217;s there because people will read it! It&#8217;s very tempting to make it look just like another post, but you should take a bit more time and style it properly.</p><p>I personally like the way we&#8217;ve done that in our recent redesign, this is for instance what the <a\nhref=\"http://yoast.com/cat/wordpress/\">WordPress category</a> intro looks like:</p><p><img\nclass=\"alignnone size-full wp-image-45947\" title=\"WordPress category introduction\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/08/wordpress-category-introduction.png\" alt=\"WordPress category introduction\" width=\"560\" height=\"187\" /></p><p>Of course, the text for that introduction is a bit poor. I should probably do a much better job myself of explaining people where to go for what kinds of content, so I&#8217;ll get right on that once I finish this post&#8230; Which brings me to the last bit:</p><h2>HTML in category descriptions</h2><p>HTML in descriptions for categories, tags and custom taxonomies is currently disallow by default. I think that&#8217;s changing in an upcoming release, but for now you&#8217;ll have to fix that. If you&#8217;re using my WordPress SEO plugin, this has already been fixed for you, if not, AppThemes has quite a <a\nhref=\"http://docs.appthemes.com/tutorials/allow-html-in-taxonomy-descriptions/\">good tutorial</a> on it.</p><p>Let me know what you did with your archive pages in the comments, I&#8217;m very curious to see good examples!</p><p><a\nhref=\"http://yoast.com/wordpress-archive-pages/\">WordPress Archive Pages: the tutorial</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/ituadafIpro\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://yoast.com/wordpress-archive-pages/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"34\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:78:\"http://cdn2.yoast.com/wp-content/uploads/2012/08/ionen_content_WP1-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:3:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:70:\"http://cdn3.yoast.com/wp-content/uploads/2012/08/ionen_content_WP1.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"WordPress Archive Pages\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:78:\"http://cdn2.yoast.com/wp-content/uploads/2012/08/ionen_content_WP1-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:2:\"  \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:77:\"http://cdn3.yoast.com/wp-content/uploads/2011/09/genesis-archive-settings.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Genesis Archive Settings\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:84:\"http://cdn3.yoast.com/wp-content/uploads/2012/08/wordpress-category-introduction.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress category introduction\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:91:\"http://cdn.yoast.com/wp-content/uploads/2012/08/wordpress-category-introduction-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"http://yoast.com/wordpress-archive-pages/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-archive-pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:11:\"           \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Why relative URLs should be forbidden for web developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/qPbEHoWyZgc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://yoast.com/relative-urls-issues/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Aug 2012 09:52:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Webdesign & development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45908\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:782:\"<p>Twitter is the website / web service most of us love and sometimes hate, a service that has become an integral part of most of our online identities. It&#8217;s one of the services we expect to be there when we Google ourselves or other people. So when you Google yourself and instead of twitter.com, you&#8230;</p><p><a\nhref=\"http://yoast.com/relative-urls-issues/\">Why relative URLs should be forbidden for web developers</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10926:\"<p>Twitter is the website / web service most of us love and sometimes hate, a service that has become an integral part of most of our online identities. It&#8217;s one of the services we expect to be there when we Google ourselves or other people. So when you Google yourself and instead of twitter.com, you see a weird result, you think &#8220;huh&#8221;. Then, when you&#8217;re like me, you try to figure out what caused that and once you figure it, you think &#8220;d0h!&#8221;. You&#8217;d think the people at Twitter would know better than to use relative URLs or even worse, a HOST header to determine the domain, resulting in this result when you search for my name:</p><p><img\nclass=\"aligncenter size-full wp-image-45910\" title=\"yoast - twitter\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/08/yoast-twitter.png\" alt=\"yoast - twitter\" width=\"522\" height=\"83\" /></p><p>Relative URLs stink. They really do. All sorts of SEO problems on the web are caused by the use of relative URLs in links, canonicals and more. We find issues with them in our <a\nhref=\"http://yoast.com/hire-me/website-review/\">website reviews</a> on a regular basis, but as you can see bigger sites like Twitter also have massive issues because of them. I&#8217;ll try to explain why you shouldn&#8217;t use them and what you could do instead, as it might be simple things like this that hold you back from performing well with your website.</p><h2>What are relative URLs?</h2><p>Relative URLs are all URLs that do not contain a fully qualified domain name and path, but instead just the path or a portion of the path. So when your website is example.com, you could be linking to your contact page from your homepage like this:</p><pre class=\"brush: xml; title: ; notranslate\">&lt;a href=&quot;contact.html&quot;&gt;Contact&lt;/a&gt;</pre><p>And back to your homepage from your contact page like this:</p><pre class=\"brush: xml; title: ; notranslate\">&lt;a href=&quot;/&quot;&gt;Home&lt;/a&gt;</pre><p>The / refers to the directory / on the domain. So even when you&#8217;re three levels deep in a directory structure, linking to / would link to the frontpage. Lastly, when you&#8217;re on the corporate page of your about section, for instance <em>example.com/about/corporate.html</em>, you could link to your contact page like this:</p><pre class=\"brush: xml; title: ; notranslate\">&lt;a href=&quot;../contact.html&quot;&gt;Contact&lt;/a&gt;</pre><p>All the resulting URLs are calculated by your browser based on the base URL. By default, this is the current URL that&#8217;s in your location bar, but using the <code>base</code> element, you could set it to something else, like this:</p><pre class=\"brush: xml; title: ; notranslate\">&lt;base href=&quot;http://www.example.com/subdirectory/&quot;&gt;</pre><p>Doing this would make the second link above, the link to /, resolve to <em>http://www.example.com/subdirectory/</em>.</p><p>This was all fine when HTML was invented and websites consisted of real static HTML pages in directory structures. Now though, most of the web is built with content management systems, changing URLs is easier and some URLs might behave differently than what you&#8217;d expect. Because of that, relative URLs can cause a few different types of issues, all of which can be pretty detrimental for your SEO and your server performance.</p><h3>Why are relative URLs still being used?</h3><p>Relative URLs are often used because developers have a test environment on another hostname and it makes it easy for them to move stuff between their test environment and their live environment. Other reasons include that it&#8217;s &#8220;just easier in website maintenance&#8221;. They&#8217;re also, in my opinion falsely, <a\nhref=\"http://www.websiteoptimization.com/speed/tweak/relative/\">promoted</a> by some websites about site speed because they&#8217;re &#8220;shorter&#8221; and thus &#8220;faster&#8221;.</p><p>In reality, all of these reasons are false when you look at the bigger picture. The few minutes a developer might save by using relative URLs are offset by countless hours an SEO might be spending to solve the issues caused.</p><h2>Some of the problems caused by relative URLs</h2><p>Issues caused by the use of relative URLs are vast and plentiful, and any seasoned SEO can probably give you a few examples of clients that have had huge losses because of them. Let me show you a couple of them:</p><h3>A completely indexed test environment</h3><p>When you have a menu structure that relies on relative URLs, one wrong link in your content to your test environment would cause the entire test environment to be spidered and indexed, causing massive <a\nhref=\"http://yoast.com/articles/duplicate-content/\">duplicate content issues</a>. This happens more often than you think, in fact, have you checked whether the test environment you used to test your last few development projects are indexed by Google? I bet some of you will now find out that they are indexed.</p><h3>Spider traps</h3><p>Most of the times I&#8217;ve found what we call &#8220;spider traps&#8221; they&#8217;re caused by wrongly used relative URLs. Let me show you an example: a site linking to ./example instead of ../example/, from the /contact/ page. A link to ./ means you&#8217;re linking to the current directory. When the current URL ends in /contact/ this means that a link to ./example/ resolves to /contact/example/. So clicking that link would take me to http://www.example.com/contact/example/, if your CMS is set up to serve the same page for /contact/example/ as it serves for /contact/, which is a <em>very</em> common case, you&#8217;ll now have a spider trap. Because that /content/example/ page also links to ./example/, which now resolves to /contact/example/example/, which then links to ./example/ again and thus links to /contact/example/example/example/ etc. etc. etc. You probably get the issue, and I hope you also understand why this could be <em>very</em> detrimental for your search engine rankings.</p><p>These kinds of issues are <em>very</em> easily found using a tool like <a\nhref=\"http://www.screamingfrog.co.uk/seo-spider/\">Screaming Frog</a>, which I think every webmaster should have in its arsenal.</p><h3>Relative canonical URLs</h3><p>Issues can also be caused by using relative canonical URLs. A <a\nhref=\"http://yoast.com/canonical-url-links/\">canonical URL</a> is supposed to link to the &#8220;perfect&#8221; URL for a piece of content on your website. If you use a relative link and also have a subdomain or test environment that&#8217;s indexed, you suddenly have several versions of a piece of content that all proclaim themselves as the canonical version of that piece of content&#8230; You can understand a search engine having a hard time dealing with this.</p><h4>A little knowledge is a dangerous thing&#8230;</h4><p>At Twitter, they figured out that they shouldn&#8217;t use relative canonicals. So a developer there thought he was smart and probably defined the domain part of the canonical URL using the HOST header information. This causes the very issue that I talked about in the introduction above, because now the IP result in the screenshot above has a canonical URL pointing to itself, causing Google to show Twitter&#8217;s IP&#8217;s in search results everywhere instead of the proper domain&#8230;</p><h3>Protocol-relative URLs</h3><p>Another issue is the so-called protocol relative URL. This is a URL that leaves of the http:// or https:// bit. This type of relative URL does have its uses, but it should not be deployed outside of those useful cases. The useful cases are when it&#8217;s used inside JavaScript or CSS, so files are served over the same protocol as the current page, especially because when you&#8217;re on a https URL, serving anything over http basically breaks the security. Using protocol relative URLs within links or canonical URLs is a <em>very bad idea</em> though, because you can still have duplicate content issues between http and https versions of a website.</p><h2>The solution</h2><p>WordPress core has this solution solved in a very nice way, using a couple of solutions:</p><h3>Absolute URLs everywhere</h3><p>Whenever WordPress outputs a URL, it&#8217;s always a full, absolute URL. For the domain name part of that it uses the domain you set in the General settings. This is the type of solution everyone should use: the domain name should be in a configuration file, this would allow you to still easily migrate between development environment and live environment by just using different configuration files.</p><h3>Canonical Redirects</h3><p>Whenever WordPress detects that you are on a specific article but are not using the proper &#8220;canonical&#8221; URL, it&#8217;ll try to 301 redirect you to the correct version. For the cases when it doesn&#8217;t detect this (it for instance ignores query parameters added to the URL), there is:</p><h3>The canonical link URL element</h3><p>When you&#8217;re on a single post or page, WordPress puts out a <a\nhref=\"http://yoast.com/canonical-url-links/\">canonical link element</a>, based on what the URL of the current article should be, irregardless of what&#8217;s in your browsers location bar. My <a\nhref=\"http://yoast.com/wordpress/seo/\">WordPress SEO plugin</a> extends this functionality to display canonical link elements just about everywhere within WordPress, and you should do this in your CMS too.</p><h2>Conclusion</h2><p>Twitter&#8217;s issue could be rather easily resolved, as we&#8217;ve discussed, by using proper absolute URLs everywhere in their code. There are no real good arguments against not doing that. While Twitter is not a direct e-commerce site and might not have the biggest of issues with losing a bit of traffic, I&#8217;ve had issues with relative URLs and relative canonicals at clients that have cost those clients upwards of a hundred thousand euro&#8217;s. The very small gain in web development time, if any, is never, ever, worth that.</p><p>So you should be using absolute URLs at all times, canonical redirects when possible and canonical link elements should ideally be on every page you serve out. After all, when you&#8217;re building a brand, do you really want to lose that brand in the search result pages? I think that&#8217;s a waste and I&#8217;m guessing you do too.</p><p><a\nhref=\"http://yoast.com/relative-urls-issues/\">Why relative URLs should be forbidden for web developers</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/qPbEHoWyZgc\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://yoast.com/relative-urls-issues/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"60\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:73:\"http://cdn3.yoast.com/wp-content/uploads/2012/08/yoast-twitter-125x83.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:65:\"http://cdn.yoast.com/wp-content/uploads/2012/08/yoast-twitter.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"yoast – twitter\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:73:\"http://cdn3.yoast.com/wp-content/uploads/2012/08/yoast-twitter-125x83.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://yoast.com/relative-urls-issues/#utm_source=rss&utm_medium=rss&utm_campaign=relative-urls-issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:11:\"           \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Redesign and more :)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/Dzq5aIAuyBM/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://yoast.com/redesign-and-more/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Aug 2012 11:47:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Offtopic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45894\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:794:\"<p>Yoast keeps changing and growing in many, many ways. One of those is a redesign, which is now live. We&#8217;re finally using the theme framework we&#8217;ve been recommending to others for ages: StudioPress&#8217; Genesis. We used an external developer for most of the development, just because I&#8217;m too pressed for time myself and didn&#8217;t want&#8230;</p><p><a\nhref=\"http://yoast.com/redesign-and-more/\">Redesign and more :)</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2569:\"<p><img\nclass=\"alignright size-full wp-image-45895\" title=\"yoast redesign\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/08/yoast-redesign.png\" alt=\"yoast redesign\" width=\"347\" height=\"156\" />Yoast keeps changing and growing in many, many ways. One of those is a redesign, which is now live. We&#8217;re finally using the theme framework we&#8217;ve been recommending to others for ages: <a\nhref=\"http://yoast.com/out/genesis/\">StudioPress&#8217; Genesis</a>. We used an external developer for most of the development, just because I&#8217;m too pressed for time myself and didn&#8217;t want this to wait. His name is <a\nhref=\"http://www.billerickson.net/\">Bill Erickson</a> and he comes <em>highly</em> recommended, he&#8217;s been an absolute pleasure to work with.</p><p>I hope you like it, a longer story on the how and why of this will come soon, as we make sure we&#8217;ve fixed all small bugs.</p><h2>Other changes at Yoast</h2><p>But there&#8217;s more&#8230; While we work on the new design, we can also tell you that we&#8217;ve actually hired a part-time designer, who&#8217;ll be joining us September 1st to start out several new projects. We&#8217;re excited to have her on board but we won&#8217;t tell you more than that just yet!</p><p>Related to that I have finally convinced my wife that I need her in the company too, to head up our research &#8220;department&#8221; (she&#8217;s a Ph. D. in criminology/sociology). While she will continue to teach and do research at <a\nhref=\"http://www.studyatavans.com/en/home\">Avans</a>, she will also be helping us out with a research project, for which an intern will be starting soon as well.</p><p>One more thing&#8230;</p><p><a\nhref=\"http://yoast.com/wordpress/video-seo/\">Video SEO</a>! It&#8217;s like, ready. We&#8217;re hard at work preparing documentation and the necessary infrastructure, but the plugin will go on sale within the next few weeks.</p><p>That&#8217;s it for now, enjoy the new design and make sure you subscribe to the newsletter so we can keep you up to date.</p><p><a\nhref=\"http://yoast.com/redesign-and-more/\">Redesign and more :)</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/Dzq5aIAuyBM\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://yoast.com/redesign-and-more/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"85\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:75:\"http://cdn3.yoast.com/wp-content/uploads/2012/08/yoast-redesign-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:66:\"http://cdn.yoast.com/wp-content/uploads/2012/08/yoast-redesign.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"yoast redesign\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:75:\"http://cdn3.yoast.com/wp-content/uploads/2012/08/yoast-redesign-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://yoast.com/redesign-and-more/#utm_source=rss&utm_medium=rss&utm_campaign=redesign-and-more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:14:\"              \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Tag Optimization for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/99yY97SLdX4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://yoast.com/optimizing-tags/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Jul 2012 14:51:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45845\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:769:\"<p>In our website reviews we regularly encounter websites who&#8217;ve got just as many tags as posts, or 20,000 posts and 5,000 tags. This is undesirable as it means you&#8217;re not using tags to relate your posts together, which is what you should do. We usually tell them to optimize their tags but that&#8217;s easier to&#8230;</p><p><a\nhref=\"http://yoast.com/optimizing-tags/\">Tag Optimization for WordPress</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4501:\"<p>In our <a\nhref=\"http://yoast.com/hire-me/website-review/\">website reviews</a> we regularly encounter websites who&#8217;ve got just as many tags as posts, or 20,000 posts and 5,000 tags. This is undesirable as it means you&#8217;re not using tags to relate your posts together, which is what you should do. We usually tell them to optimize their tags but that&#8217;s easier to say than do. Deleting them is easy, but that&#8217;s not a solution. What you <em>should</em> be doing is merging multiple tags into one, adding more posts to a tag or delete &amp; redirect them to your homepage.</p><p>That&#8217;s not something you want to do manually, as it&#8217;s a lot of work. That&#8217;s why I built a tool called the Term Optimizer. This tool helps you find tags or other taxonomy terms that are used only once, or even less, and allows you to merge them, redirect them, etc.</p><h2>Optimize your WordPress Tags with the Term Optimizer</h2><p>It&#8217;s simple, once you&#8217;ve bought the file, you place it in your WordPress root directory, it needs to have <em>wp- load.php</em> in the same directory. You then open the URL and you&#8217;ll be seeing an interface like this (click for larger version):</p><p><a\nclass=\"thickbox\" href=\"http://cdn.yoast.com/wp-content/uploads/2012/07/Term-Optimizer-by-Yoast.png\"><img\nclass=\"alignnone size-large wp-image-45853\" title=\"Easy Tag Optimization with Term Optimizer by Yoast\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/07/Term-Optimizer-by-Yoast-590x533.png\" alt=\"Easy Tag Optimization with Term Optimizer by Yoast\" width=\"580\" height=\"523\" /></a></p><p>By default it&#8217;ll search for all tags that are used less than 4 times. As you can see, there&#8217;s a checkbox before each post. If you check them and use the drop down in the top, you can choose from several actions:</p><p><img\nclass=\"aligncenter size-full wp-image-45855\" title=\"With selected tags, do the following: merge, delete &amp; redirect, shows posts with term, search &amp; tag\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/07/with-selected-do.png\" alt=\"With selected tags, do the following: merge, delete &amp; redirect, shows posts with term, search &amp; tag\" width=\"372\" height=\"133\" /></p><p>If you choose merge and selected, you&#8217;ll be presented with a second screen that allows you to choose the tag you want to merge these tags with. Once that&#8217;s done, if your .htaccess file is writeable, the tool will automatically add the redirect lines to your .htaccess file.</p><p>Pressing delete will do something similar, you&#8217;ll be able to redirect to the homepage, to a category or to a custom URL:</p><p><img\nclass=\"aligncenter size-full wp-image-45849\" title=\"Delete &amp; redirect tag\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/07/delete-redirect-tag.png\" alt=\"Delete &amp; redirect tag\" width=\"312\" height=\"199\" /></p><p>This allows you to optimize your tags with only a few minutes / hours work, instead of having to get a developer to do all this work for you.</p><h2>Quickly Adding Tags to Posts</h2><p>Sometimes you realize that you should have created a certain tag and it&#8217;s now a lot of work to do that through the interface. With the term optimizer you can do that quite simply (click for larger image):</p><p><a\nclass=\"thickbox\" href=\"http://cdn3.yoast.com/wp-content/uploads/2012/07/search-tag.png\"><img\nclass=\"aligncenter size-large wp-image-45860\" title=\"Search &amp; Tag posts\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/07/search-tag-590x632.png\" alt=\"Search &amp; Tag posts\" width=\"580\" height=\"621\" /></a></p><h2>Buy this Tool, start Optimizing your Tags Now!</h2><p>We&#8217;ll be making this available to our past website review customers who need it for free, if you&#8217;re not a website review customer but just want to clean up your tags or other terms, you can buy it now:</p><div\nclass=\"aligncenter\"><a\nclass=\"button\" href=\"http://gum.co/vyvF\">Buy Term Optimizer</a></div><p><a\nhref=\"http://yoast.com/optimizing-tags/\">Tag Optimization for WordPress</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/99yY97SLdX4\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://yoast.com/optimizing-tags/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"86\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:84:\"http://cdn3.yoast.com/wp-content/uploads/2012/07/Term-Optimizer-by-Yoast-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:4:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:75:\"http://cdn.yoast.com/wp-content/uploads/2012/07/Term-Optimizer-by-Yoast.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Easy Tag Optimization with Term Optimizer by Yoast\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:84:\"http://cdn3.yoast.com/wp-content/uploads/2012/07/Term-Optimizer-by-Yoast-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:68:\"http://cdn.yoast.com/wp-content/uploads/2012/07/with-selected-do.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"With selected tags, do the following: merge, delete & redirect, shows posts with term, search & tag\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:77:\"http://cdn2.yoast.com/wp-content/uploads/2012/07/with-selected-do-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:72:\"http://cdn2.yoast.com/wp-content/uploads/2012/07/delete-redirect-tag.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Delete & redirect tag\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:80:\"http://cdn2.yoast.com/wp-content/uploads/2012/07/delete-redirect-tag-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:63:\"http://cdn3.yoast.com/wp-content/uploads/2012/07/search-tag.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Search & Tag posts\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:70:\"http://cdn.yoast.com/wp-content/uploads/2012/07/search-tag-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://yoast.com/optimizing-tags/#utm_source=rss&utm_medium=rss&utm_campaign=optimizing-tags\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:14:\"              \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"Twitter Cards, Open Graph & Social Meta Data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/QeKlh469Q54/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://yoast.com/twitter-cards/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Jun 2012 06:22:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:12:\"Social Media\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"OpenGraph\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Twitter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45800\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:788:\"<p>Two days ago, Twitter introduced a new system called Twitter Cards (see their docs). It allows site owners to enhance the expanded tweets Twitter creates for their site, much in the same was as  OpenGraph tags give site owners the chance to determine what their posts &#38; pages will look like when shared on Facebook. In&#8230;</p><p><a\nhref=\"http://yoast.com/twitter-cards/\">Twitter Cards, Open Graph &#038; Social Meta Data</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5576:\"<p><a\nhref=\"http://cdn3.yoast.com/wp-content/uploads/2012/06/example-card-web-summary.png\"><img\nclass=\"alignright size-medium wp-image-45801\" title=\"Example Twitter Card\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/06/example-card-web-summary-300x156.png\" alt=\"Example Twitter Card\" width=\"300\" height=\"156\" /></a>Two days ago, Twitter <a\nhref=\"https://dev.twitter.com/blog/twitter-cards\">introduced</a> a new system called Twitter Cards (see <a\nhref=\"https://dev.twitter.com/docs/cards\">their docs</a>). It allows site owners to enhance the expanded tweets Twitter creates for their site, much in the same was as  OpenGraph tags give site owners the chance to determine what their posts &amp; pages will look like when shared on Facebook. In fact, Twitter chose to fall back to OpenGraph data when their specific tags aren&#8217;t being used, just as Google+ does.</p><p>A while back Alex posted about <a\nhref=\"http://yoast.com/facebook-open-graph-protocol/\">OpenGraph</a> here and users of my <a\nhref=\"http://yoast.com/wordpress/seo/\">WordPress SEO plugin</a> will have noticed that quite some development went into (and actually still goes into) the OpenGraph settings of that plugin. With this change, that development has been worth while even more. Google+, Facebook and Twitter now all use the basic OpenGraph tags like og:url, <code>og:description</code>, <code>og:title</code> and <code>og:image</code>.</p><p>This means that for a full Twitter Cards implementation, you only really need to add three lines to your site. For instance for every post <a\nhref=\"http://yoast.com/author/michiel/\">Michiel</a> writes on this site, we&#8217;d need to add this:</p><pre class=\"brush: xml; title: ; notranslate\">&lt;meta name=&quot;twitter:card&quot; value=&quot;summary&quot;&gt;\n&lt;meta name=&quot;twitter:site&quot; value=&quot;@yoast&quot;&gt;\n&lt;meta name=&quot;twitter:creator&quot; value=&quot;@michielheijmans&quot;&gt;</pre><p>All the other data would be taken from the OpenGraph metadata that&#8217;s already there. When I noticed this, I realized that the Twitter Card implementation for my SEO plugin would be a breeze; so I went ahead and build it. I&#8217;m currently waiting for access to their beta so I can test it, but the implementation is mostly done. It&#8217;ll add a Twitter contact field to every user&#8217;s profile using the <a\nhref=\"http://yoast.com/user-contact-fields-wordpress/\">method I wrote about a few days ago</a>. Next to that it&#8217;ll allow you to set a site Twitter account and check a box to say you want to include the data, that&#8217;s it. If you want to have a play, the code is already in the WordPress SEO trunk, so you can download it from the <a\nhref=\"http://wordpress.org/extend/plugins/wordpress-seo/developers/\">developers page</a>.</p><h2>What Twitter Cards mean for OpenGraph</h2><p>As you&#8217;ll understand, Twitter Cards made OpenGraph even more important than it already was. No site on the web should be without the basic OpenGraph meta data anymore. Microsoft recently announced <a\nhref=\"http://blogs.msdn.com/b/ie/archive/2012/05/14/sharing-links-from-ie10-on-windows-8.aspx\">suport for OpenGraph in IE10</a> in Windows 8 as well, which just adds another reason.</p><p>It makes sense too: the OpenGraph protocol is relatively easy yet allows for a bit more than just a meta description and title tag. So go forth and implement OpenGraph!</p><h2>Merge it all into one standard</h2><p>There are some things that obviously need to be worked on though. The fact that Twitter requires the <code>twitter:card</code> meta tag sort of annoys me, as it seems to me they could have just mapped the <code>og:type</code> meta tag for that, which would make implementation even easier. The same goes for the <code>og:url</code> meta tag, Facebook falls back to the <code>rel=canonical</code> element when it&#8217;s there and there is no <code>og:url</code> element, I&#8217;m hoping Twitter will do the same but they haven&#8217;t specified it yet.</p><p>In the <a\nhref=\"https://www.facebook.com/groups/opengraph/\">Facebook group</a> that discusses the Open Graph Protocol I already saw <a\nhref=\"https://www.facebook.com/groups/opengraph/permalink/447342028623970/\">Tantek Çelik say</a> what I was thinking:</p><blockquote><p>og:&#8230; twitter:&#8230; &#8211; it&#8217;s like vendor prefixes for meta tags! looks like a good opportunity to create a microformat based on commonalities among all this vendor-specific work.</p></blockquote><p>All I can say is: yes! Hell yes! Because before you know it, Pinterest will create some meta tags too, StumbleUpon will follow and we&#8217;ll have even more code spaghetti in the <code>&lt;head&gt;</code>s of our pages.</p><p>For now though, I like what Twitter did with their Twitter Cards change, here&#8217;s to hoping I get into the beta soon.</p><p><strong>Update September 5th, 2012:</strong> it now works for yoast.com! Here are some <a\nhref=\"http://yoast.com/twitter-cards-in-action/\">more thoughts on the topic</a>.</p><p><a\nhref=\"http://yoast.com/twitter-cards/\">Twitter Cards, Open Graph &#038; Social Meta Data</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/QeKlh469Q54\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://yoast.com/twitter-cards/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"35\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:84:\"http://cdn.yoast.com/wp-content/uploads/2012/06/example-card-web-summary-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:77:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/example-card-web-summary.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Example Twitter Card\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:84:\"http://cdn.yoast.com/wp-content/uploads/2012/06/example-card-web-summary-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://yoast.com/twitter-cards/#utm_source=rss&utm_medium=rss&utm_campaign=twitter-cards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"             \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"User Contact Fields in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/gHUBwi4FUAk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://yoast.com/user-contact-fields-wordpress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Jun 2012 08:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Facebook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"Google\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Twitter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"http://yoast.com/?p=1593\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:778:\"<p>WordPress comes with a &#8220;default&#8221; set of user contact fields, which has always looked random to me: AIM, Yahoo IM and Jabber / Google Talk, instead of what I&#8217;d want to have there: Twitter, Facebook and Google+. A while back I got frustrated enough to have a look at how this was actually dealt with&#8230;</p><p><a\nhref=\"http://yoast.com/user-contact-fields-wordpress/\">User Contact Fields in WordPress</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3157:\"<p>WordPress comes with a &#8220;default&#8221; set of user contact fields, which has always looked random to me: AIM, Yahoo IM and Jabber / Google Talk, instead of what I&#8217;d want to have there: Twitter, Facebook and Google+. A while back I got frustrated enough to have a look at how this was actually dealt with in the backend of WordPress, and fix it, so in WordPress 2.9 an API was added as a result of ticket <a\nhref=\"http://core.trac.wordpress.org/ticket/10240\">#10240</a>.</p><p>This change allowed for developers to add user contact fields in a very simple way. The example code below adds Twitter and removes Yahoo IM, and yes, this is all the code that&#8217;s needed to do it:</p><pre class=\"brush: php; title: ; notranslate\">function add_twitter_contactmethod( $contactmethods ) {\n  // Add Twitter\n  if ( !isset( $contactmethods[\'twitter\'] ) )\n    $contactmethods[\'twitter\'] = \'Twitter\';\n\n  // Remove Yahoo IM\n  if ( isset( $contactmethods[\'yim\'] ) )\n    unset( $contactmethods[\'yim\'] );\n\n  return $contactmethods;\n}\nadd_filter( \'user_contactmethods\', \'add_twitter_contactmethod\', 10, 1 );</pre><p>Easy does it, right? Retrieving the user contact field isn&#8217;t much harder either, for example, if you&#8217;re on a singular page, use the following code:</p><pre class=\"brush: php; title: ; notranslate\">if ( is_singular() ) {\n  global $post;\n  $twitter = get_the_author_meta( \'twitter\', $post-&gt;post_author );\n}</pre><p>And there you have it! My <a\nhref=\"http://yoast.com/wordpress/seo/\">WordPress SEO plugin</a> uses this exact method to add a Google+ profile field for users to be used in conjunction with the <a\nhref=\"http://yoast.com/highlighting-wordpress-authors-search/\">author highlighting</a> features of Google. If you&#8217;d want to echo the Google+ user contact field that plugin creates, do the following:</p><pre class=\"brush: php; title: ; notranslate\">if ( is_singular() ) {\n  global $post;\n  the_author_meta( \'googleplus\', $post-&gt;post_author );\n}</pre><p>As you can see this uses <code>the_author_meta</code> instead of <code>get_the_author_meta</code>. The <code>$post</code> global and the <code>$post-&gt;post_author</code> reference would strictly speaking not even be needed as they&#8217;re called from the global otherwise within the function, but this might prevent issues with retrieving the wrong user contact fields.</p><p>That&#8217;s it! Now you can add and remove user contact fields as you wish. You can do this in your theme&#8217;s <em>functions.php</em> or in a plugin, be sure to add the <code>isset</code> code around it to prevent notices though!</p><p><a\nhref=\"http://yoast.com/user-contact-fields-wordpress/\">User Contact Fields in WordPress</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/gHUBwi4FUAk\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://yoast.com/user-contact-fields-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"http://yoast.com/user-contact-fields-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=user-contact-fields-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:17:\"                 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress SEO 1.2 – Major Upgrade\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/9gwcWupQ9Is/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://yoast.com/wordpress-seo-1-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jun 2012 13:11:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:13:\"WordPress SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45751\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:751:\"<p>My WordPress SEO plugin has been updated to 1.2. A few weeks back I did a series of bug fix updates and while doing that I noticed there where things that were really bugging me in the plugin. Everybody seemed to focus on the settings and hardly anyone was working with the snippet preview and&#8230;</p><p><a\nhref=\"http://yoast.com/wordpress-seo-1-2/\">WordPress SEO 1.2 &#8211; Major Upgrade</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8046:\"<p>My WordPress SEO plugin has been updated to 1.2. A few weeks back I did a series of bug fix updates and while doing that I noticed there where things that were <em>really</em> bugging me in the plugin. Everybody seemed to focus on the settings and hardly anyone was working with the snippet preview and the page analysis functionality, in my opinion the most important pieces of the plugin. This update will try and gently push you to use that functionality more.</p><p>Next to that, I also did a major overhaul of the two most important settings pages, so let&#8217;s discuss these changes first:</p><h2>The new SEO settings pages</h2><p>The plugin used to have a &#8220;Titles&#8221; and an &#8220;Indexation&#8221; page. That was confusing as the titles page also covered the meta descriptions and had pieces for each (custom) post type and (custom) taxonomy and the Indexation page had other settings for these same post types and taxonomies. So I decided to merge them into one and divide them into tabs for the separate sections.</p><p>These sections now look as follows:</p><p><img\nclass=\"alignnone size-full wp-image-45755\" title=\"Titles Meta settings\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/06/Titles-Meta-settings.png\" alt=\"Titles Meta settings\" width=\"580\" height=\"631\" /></p><p>And the section for post types:</p><p><img\nclass=\"alignnone size-full wp-image-45756\" title=\"titles meta settings for post types\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/06/titles-metas-post-types.png\" alt=\"titles meta settings for post types\" width=\"580\" height=\"502\" /></p><p>As you can see, they&#8217;re much cleaner. Both post types and taxonomies can now be noindex, followed straight from this interface as well, with the option to override the global setting on a per post or per term (eg. a tag or category) basis.</p><h2>Rel=&#8221;author&#8221;</h2><p>As I mentioned in my previous post about <a\nhref=\"http://yoast.com/push-rel-author-head/\">rel=&#8221;author&#8221; through your head</a>, this feature is now in WordPress SEO 1.2. Simply go to your author profile and fill your Google+ URL and it&#8217;ll be added to each post automagically.</p><h2>Default Settings</h2><p>The WordPress SEO plugin until now always lacked proper default settings. It had them but it didn&#8217;t show them to the user in the titles section and it didn&#8217;t have them for various other sections. While there&#8217;s still more work to do with guiding people to get the right settings, the plugin now sets defaults that should work well for 99% of sites on install.</p><p>This also means the plugin, when freshly installed, will now automatically enable XML Sitemaps and will detect automatically whether force rewrite needs to be enabled or not. That should save me some support headaches.</p><p>But, as I said, those sections aren&#8217;t really that important. This bit is:</p><h2>The Snippet Preview &amp; Focus keyword</h2><p>An enormous amount of bugs have been fixed in the snippet preview and the focus keyword functionality. Most of them are related to non-ascii characters and languages such as Russian and Arabian, but others involve keywords with dollar signs or even simple dashes. &#8220;<a\nhref=\"http://yoast.nl/seo-trainingen/in-company-seo-training/\">In-company SEO training</a>&#8221; for instance will now be properly recognized as a focus keyword.</p><p>The bolding of keywords in the snippet preview has also been fixed for all cases I knew went wrong. If you still have issues, be sure to let me know through the forums; but I fully expect this release to fix most of them.</p><h2>The Page Analysis functionality</h2><p>When I introduced this functionality in May 2011 I thought it was the best thing since sliced bread, but as I said, I couldn&#8217;t get enough people to use it properly. Linkdex, who contributed the original code, always calculated a &#8220;score&#8221; for each page based on that code and I had decided to not use that score. The reason I left it out was simple: I didn&#8217;t want people to optimize for that last percent.</p><p>For this release, I decided it was time to re-think that approach and come up with something better. Now, each post, page or other post type will get a &#8220;score&#8221;, but there are only 4 options:</p><ul><li>bad (red)</li><li>poor (orange)</li><li>ok (yellow)</li><li>good (green)</li></ul><p>They look as follows:</p><p><img\nclass=\"aligncenter size-full wp-image-45754\" title=\"Score buttons\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/06/score_buttons.png\" alt=\"Score buttons\" width=\"164\" height=\"19\" /></p><p>This score is shown inside the publish box:</p><p><img\nclass=\"aligncenter size-full wp-image-45752\" title=\"SEO Score shown inside the publish box\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/06/seo-score-publish-box.png\" alt=\"SEO Score shown inside the publish box\" width=\"288\" height=\"96\" /></p><p>But, more importantly, it&#8217;s also shown in the overview of posts and pages, alongside other key SEO info (click for large version):</p><p><a\nclass=\"thickbox\" href=\"http://cdn2.yoast.com/wp-content/uploads/2012/06/seo-score-pages-overview.png\"><img\nclass=\"aligncenter size-large wp-image-45753\" title=\"SEO Score in the pages overview\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/06/seo-score-pages-overview-590x231.png\" alt=\"SEO Score in the pages overview\" width=\"580\" height=\"227\" /></a></p><p>As you can see, you can show the SEO score, the focus keyword, the meta description and the title; and you have the ability to sort by the first three of those values. This makes it easy to find posts that don&#8217;t have a focus keyword or have a low SEO score. You can also easily disable those columns that you&#8217;d rather not see. Within the posts overview, there are two colors for posts that aren&#8217;t a score. Grey means the post has no focus keyword and thus no score; blue means the post is set to noindex, so the score doesn&#8217;t matter.</p><h2>Questions and Answers about this release</h2><ul><li><strong>Why is this 1.2 and not 2.0?</strong><br\n/> I&#8217;ve decided my WordPress SEO plugin will follow the same version numbering as WordPress, so each point release is a major version increase. This prevents version number inflation so we don&#8217;t have WordPress SEO 25 in 4-5 years time.</li><li><strong>Will all my settings be saved when I upgrade?</strong><br\n/> Yes. But it won&#8217;t hurt you to go through all your settings and check whether you&#8217;re still doing what&#8217;s best for you. It won&#8217;t force the new defaults on you if you&#8217;ve already got the plugin installed, but there&#8217;s a button you can push if you want it to.</li><li><strong>Does this version do <em>X</em>?</strong><br\n/> It might. Why not download it and see for yourself? If it doesn&#8217;t, open a thread in the forums and let&#8217;s talk about it. Be warned though, I refuse most feature requests.</li><li><strong>You removed the setting for X, how can I change that now?</strong><br\n/> First of all, I tend to remove stuff for a good reason. Think about why I did that and see if you really need to change it. If you do, there&#8217;s a good chance the <a\nhref=\"http://yoast.com/wordpress/seo/api-docs/\">WordPress SEO API</a>, which has a ton of actions and filters added in this release, will allow you to change it programmatically.</li></ul><p>That&#8217;s it! Go and play with it and let me know what you think about this upgrade in the comments!</p><p><a\nhref=\"http://yoast.com/wordpress-seo-1-2/\">WordPress SEO 1.2 &#8211; Major Upgrade</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/9gwcWupQ9Is\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://yoast.com/wordpress-seo-1-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:81:\"http://cdn2.yoast.com/wp-content/uploads/2012/06/Titles-Meta-settings-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:5:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:73:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/Titles-Meta-settings.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Titles Meta settings\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:81:\"http://cdn2.yoast.com/wp-content/uploads/2012/06/Titles-Meta-settings-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:76:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/titles-metas-post-types.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"titles meta settings for post types\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:83:\"http://cdn.yoast.com/wp-content/uploads/2012/06/titles-metas-post-types-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:66:\"http://cdn2.yoast.com/wp-content/uploads/2012/06/score_buttons.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Score buttons\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:73:\"http://cdn2.yoast.com/wp-content/uploads/2012/06/score_buttons-125x19.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:74:\"http://cdn2.yoast.com/wp-content/uploads/2012/06/seo-score-publish-box.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"SEO Score shown inside the publish box\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:81:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/seo-score-publish-box-125x96.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:77:\"http://cdn2.yoast.com/wp-content/uploads/2012/06/seo-score-pages-overview.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"SEO Score in the pages overview\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:85:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/seo-score-pages-overview-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://yoast.com/wordpress-seo-1-2/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-seo-1-2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:16:\"                \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Push rel=”author” through your head\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/Aq4UeMKt4bQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://yoast.com/push-rel-author-head/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Jun 2012 12:36:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:3:\"SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:13:\"WordPress SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45687\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:848:\"<p>No this title wasn&#8217;t a pun. It&#8217;s dead serious. My buddy Arjan discovered yesterday that Google is now allowing rel=&#8221;author&#8221; markup through a &#60;link&#62; element in the head of your site. This makes adding rel=&#8221;author&#8221; to your site properly a lot easier, and allows me to add it to my WordPress SEO plugin. The rel=&#8221;author&#8221; link&#8230;</p><p><a\nhref=\"http://yoast.com/push-rel-author-head/\">Push rel=&#8221;author&#8221; through your head</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3833:\"<p><a\nhref=\"http://cdn2.yoast.com/wp-content/uploads/2012/06/rel-author.png\"><img\nclass=\"alignright size-full wp-image-45689\" title=\"rel=author in action\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/06/rel-author.png\" alt=\"rel=author in action\" width=\"200\" height=\"102\" /></a>No this title wasn&#8217;t a pun. It&#8217;s dead serious. My buddy <a\nhref=\"http://www.uprise.nl/\">Arjan</a> discovered yesterday that Google is now allowing <a\nhref=\"http://yoast.com/wordpress-rel-author-rel-me/\">rel=&#8221;author&#8221;</a> markup through a &lt;link&gt; element in the head of your site. This makes adding rel=&#8221;author&#8221; to your site properly a lot easier, and allows me to add it to my WordPress SEO plugin.</p><h2>The rel=&#8221;author&#8221; link element</h2><p>So the element should look like this:</p><pre>&lt;link rel=\"author\" href=\"<a href=\"https://plus.google.com/115369062315673853712/posts\" target=\"_blank\">https://plus.google.com/115369062315673853712/posts</a>\"/&gt;</pre><p>Where the Google+ link should link to your Google+ profile. It&#8217;s really that simple. I reached out to Google  to get confirmation that this would work and would keep working and they confirmed. So making author highlights work is now a three step process:</p><h2>Getting author highlights</h2><p>It&#8217;s a simple three step process:</p><ol><li>Add the above link to the &lt;head&gt; of the URLs you&#8217;d like your face to appear on.</li><li>On your Google+ profile, you need to make sure to have a link pointing back to the site you want the author highlight to work on.</li><li>Make sure your +1&#8242;s are public on your Google+ profile or it won&#8217;t work.</li></ol><p>Once you&#8217;ve done the above, use the <a\nhref=\"http://www.google.com/webmasters/tools/richsnippets\">rich snippet testing tool</a> to confirm it works.</p><h2>rel=&#8221;author&#8221; in my WordPress SEO plugin</h2><p>This already works in the development version of my WordPress SEO plugin, you can download that from the <a\nhref=\"http://wordpress.org/extend/plugins/wordpress-seo/developers/\">developers page</a>. That version has a bucket load of improvements and some new features, so you might want to test that anyway, it&#8217;ll probably be released early next week.</p><p>If you&#8217;re looking for it in the development version, there are two spots: on each users profile page there&#8217;s a new Google+ contact method:</p><p\nstyle=\"text-align: center;\"><img\nclass=\"size-full wp-image-45693 aligncenter\" title=\"Google Plus for rel=&quot;author&quot;\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/06/google-plus-profile.png\" alt=\"Google Plus for rel=&quot;author&quot;\" width=\"553\" height=\"285\" /></p><p>When a user fills this out, the link will automatically be added to each post or page he/she publishes. On the &#8220;new&#8221; Title&#8217;s &amp; Meta&#8217;s settings page under SEO, you&#8217;ll find a drop down which allows you to choose which author should be shown on the frontpage:</p><p><img\nclass=\"wp-image-45694 alignnone\" title=\"rel=author drop down for homepage\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/06/home-rel-author.png\" alt=\"rel=author drop down for homepage\" width=\"580\" /></p><p>That&#8217;s it. Let me know whether this works for you!</p><p><a\nhref=\"http://yoast.com/push-rel-author-head/\">Push rel=&#8221;author&#8221; through your head</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/Aq4UeMKt4bQ\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://yoast.com/push-rel-author-head/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:70:\"http://cdn.yoast.com/wp-content/uploads/2012/06/rel-author-125x102.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:3:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:63:\"http://cdn2.yoast.com/wp-content/uploads/2012/06/rel-author.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"rel=author in action\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:70:\"http://cdn.yoast.com/wp-content/uploads/2012/06/rel-author-125x102.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:71:\"http://cdn.yoast.com/wp-content/uploads/2012/06/google-plus-profile.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Google Plus for rel=”author”\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:79:\"http://cdn.yoast.com/wp-content/uploads/2012/06/google-plus-profile-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:68:\"http://cdn2.yoast.com/wp-content/uploads/2012/06/home-rel-author.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"rel=author drop down for homepage\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:76:\"http://cdn3.yoast.com/wp-content/uploads/2012/06/home-rel-author-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://yoast.com/push-rel-author-head/#utm_source=rss&utm_medium=rss&utm_campaign=push-rel-author-head\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:11:\"           \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Common sense for your website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/6FCA-xZElVg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://yoast.com/common-sense/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jun 2012 13:34:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:3:\"SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"Usability & Conversion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:12:\"Social Media\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45649\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:740:\"<p>I am the last one to tell a website owner that his job is to become the local SEO or usability expert. That would be unrealistic. Why should a constructor learn SEO? He should not. Why should a gardner know all about user experience? He should not. But how about applying some common sense to&#8230;</p><p><a\nhref=\"http://yoast.com/common-sense/\">Common sense for your website</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/michiel/\">Michiel Heijmans</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Michiel Heijmans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8071:\"<p>I am the last one to tell a website owner that his job is to become the local SEO or usability expert. That would be unrealistic. Why should a constructor learn SEO? He should not. Why should a gardner know all about user experience? He should not. But how about applying some common sense to your website?</p><p>Let&#8217;s go over an imaginary website, top to bottom:</p><h2>Browser</h2><p>Your browser has a couple of spots where your &lt;title&gt; is shown, like in the upper left and on a tab. That means your page title should start with he main subject of the page, not your site name. If it would start with your site name, all tabs would read the same title.</p><p>Next to that, you want your browser to display the website as quick as possible, meaning you should make your website as fast as possible. Sure, browser cache and compression might be way over your head, but how about not using a template with tables and combining your CSS and JavaScript files? Or lowering the number of CSS and JavaScript files by losing all &#8216;extra&#8217; WordPress plugins, assuming your site is in WordPress of course.</p><h2>Header</h2><p>Do your really think putting all these items in your header help visitors or Google:</p><ul><li>RSS, Facebook, Twitter, Google+</li><li>Telephone number</li><li>Additional menu for About Us, Privacy Policy, Contact, Directions, Terms &amp; Conditions</li><li>Subscription form for email newsletter</li><li>Banner for your own or even worse other company&#8217;s products</li><li>Quality Marks</li><li>etc</li></ul><p>And all that in the first 100px of your website. Squeezed together and made to be skipped anyway. That header area should contain only the necessary, all other items should be in a sidebar or footer area. If you want people to call you, list your phone number. Make it large, but no larger than your logo. If you are the best painter in Maine, make that statement in the header. No need for all the other fuzz.</p><p>With your header comes the menu (in most cases). If you would list 30 items in the menu, do you think that would add focus to your website or do you think just using six items would guide your visitor more? Consider creating a submenu and add that structure to your breadcrumbs as well.</p><p>So far I have not mentioned anything strange or difficult to implement, right? It&#8217;s all common sense and you have thought at least 10 times &#8220;I know that already&#8221;. So why are not all websites set up with these basics? Why is there so much crap on the web?</p><h2>Content</h2><p>Your page content should contain at least 300 words. That has a simple reason: would your page be a great source for the topic or keyword you want to rank for when it would only contain 50 words? Is that all there is to say about that keyword? I don&#8217;t believe that, you don&#8217;t believe that and Google does not believe that. There should be a significant amount of content for your page to be considered a great source of information.</p><p>Of course you will write some posts or pages that are much shorter, like your contact page, but do your really want to rank that page? No, not on most websites. Don&#8217;t go crazy over this on pages like that, that&#8217;s not worth the effort. Get them on your site with other pages and guide them to your contact form.</p><p>An easy way to do that is by using <a\ntitle=\"Where do you want me to click?\" href=\"http://yoast.com/call-to-action/\">a call-to-action</a>. Make that call-to-action stand out by using colors that are not overused in your design or use a much larger font. Surround the call-to-action with enough whitespace. If you are adding your fourth call-to-action, please realize that that again is killing all focus on the website. Stick to one and let the content do the rest.</p><p>Focus in your content can be achieved by adding subheadings to your text that should be structured in (again) a logical matter, pretty much the same way you should set up a Word document:</p><ul><li>H1<ul\nstyle=\"margin-bottom: 0;\"><li>H2<ul\nstyle=\"margin-bottom: 0;\"><li>H3</li><li>H3</li></ul></li><li>H2</li></ul></li></ul><p>That also means one H1 per page, being the site name on the homepage and the page title on the other pages.</p><p>I think we all agree nowadays that reading on a computer screen is not as pleasant as reading text on paper. But we should make things as convenient as possible: make short sentences and even more important, create short paragraphs. I&#8217;d like to create paragraphs that are four to eight lines long and I hope this is a nice read ;)</p><p>In these paragraphs you should link to your own pages as well as to other websites. The great thing about these links to your own pages is that these links are really valuable as they are surrounded with relevant, related content. Next to that, you can easily use your keywords of choice in the anchor text. Unfortunately most people seem to think that these links should only go to other websites. A regrettable misunderstanding.</p><h2>Sharing</h2><p>If you write great content.. Let me rephrase that: <strong>provided</strong> you write great content, people will be more than willing to tell others about your piece. Of course you should add social sharing buttons below the content. These buttons should not be styled in some fashionable way, but should look like the commonly used share buttons &#8211; see below this post ;) &#8211; for better recognition as sharing buttons.</p><p>I&#8217;d use Facebook, Twitter, Share-by-email and Google+ for all websites, Linkedin for business news / economy related websites and Pinterest only when you have that amazing image in the post that people might want to share. Do not list a share option, just because people you know are using it, but only use those sharing options you think are relevant for your website.</p><p>The fashionable buttons can be used for subscription options, like links to your Facebook profile or your Youtube channel. In most cases, the square icons are used for this, or the round icons you find on yoast.com.</p><h2>Footer</h2><p>This is not a great footer:</p><blockquote><p>© SomewebsiteImade.com. All rights reserved. Reproduction of this content only after written permission.</p></blockquote><p>First: really? Share buttons <em>and</em> telling people they should not use your content on other websites? We actually encountered this in one of the <a\ntitle=\"Website Review\" href=\"http://yoast.com/hire-me/website-review/\">websites we have reviewed</a>.</p><p>Next to that, I think the entire footer should be used for extra contact information (or a small form) and other information that you really want to list on your website like a small link list, perhaps some recent news items and a small category list (max 8 items or so). Not sure about this, but why not throw in some social profiles as well..</p><p>What I really dislike is a footer that has one million links in it. That reduces the value of all other links and all focus on the page.</p><p>So, in conclusion, I think you should not so much focus on hearsay about SEO, but think about what seems logical and makes the most sense. Only when your website makes common sense to you, you should go look for someone that can help you with the not so logical Search Engine and Usability optimization issues ;)</p><h3>Any additions?</h3><p>Common sense is not as easy as it looks for a lot of people. If you have any comments or additions to the list above, please drop me a line in the comments!</p><p><a\nhref=\"http://yoast.com/common-sense/\">Common sense for your website</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/michiel/\">Michiel Heijmans</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/6FCA-xZElVg\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"http://yoast.com/common-sense/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"43\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://yoast.com/common-sense/#utm_source=rss&utm_medium=rss&utm_campaign=common-sense\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"             \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Why should I visit your website?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/um_-AjHfIe4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://yoast.com/introductory-content/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 May 2012 19:18:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Usability & Conversion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45638\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:775:\"<p>One thing we often recommend in our site analyses, is the use of introductory content on a homepage. We get quite a lot response on that, with people being unclear how to do that. &#8220;Where should I put that content?&#8221; or &#8220;How long should that content be?&#8221; or the one I dislike the most: &#8220;I&#8230;</p><p><a\nhref=\"http://yoast.com/introductory-content/\">Why should I visit your website?</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/michiel/\">Michiel Heijmans</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Michiel Heijmans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5554:\"<p>One thing we often recommend <a\ntitle=\"Our website reviews deal with SEO, usability and more\" href=\"http://yoast.com/hire-me/website-review/\">in our site analyses</a>, is the use of introductory content on a homepage. We get quite a lot response on that, with people being unclear how to do that. &#8220;Where should I put that content?&#8221; or &#8220;How long should that content be?&#8221; or the one I dislike the most: &#8220;I don&#8217;t need that&#8221;.</p><h2>The main goal of introductory content</h2><p>I can not emphasize this enough. Introductory content is meant for your most valued visitors: us people and Google. Introductory content helps those visitors to grasp the leitmotif of your website. It also tells the visitor why you are the source to turn to, whether or not in combination with the title of your website.</p><p>There are two main ways to list that introductory content:</p><h3>The right slogan or tagline as introductory content</h3><p><img\nclass=\"alignright size-full wp-image-45640\" title=\"Chicago Tribune logo\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/05/chicago-tribune.png\" alt=\"Chicago Tribune logo: notice the caption\" width=\"318\" height=\"79\" />If only things where always this simple. <a\ntitle=\"Chicago Tribune\" href=\"http://www.chicagotribune.com/\" rel=\"nofollow\">Chicago Tribune</a> has a small caption below the logo that tells all: We are a Chicago based news provider bringing you all the latest news and we are doing this for such a long time you can consider us a trustworthy source.</p><p>The Chicago Tribune can do that this way and get away with it. But if you are a local news agency that brings mainly local news, you might need a different approach. Just the tagline might not be enough.</p><p>Suppose you are running the website of that more local newsletter, for instance the <a\ntitle=\"Local newspaper for Stowe\" href=\"http://www.stowetoday.com/\" rel=\"nofollow\">Stowe Today</a>. I really love these kind of websites, since they seem to be made with more care and passion than most websites. But it totally lacks introductory content. You have to know Stowe Today to know what the website is about.</p><p>A huge number of inbound links is telling Google what the Chicago Tribune is about, but I can&#8217;t imagine Stowe Today benefitting from such a number of in-links. The website will have to tell Google itself what it is about. It&#8217;s not.</p><p>The website starts off with a lot of (local) banner ads and some featured articles, but nowhere on that page it tells me &#8216;bringing you local news from Stowe, including human interest stories, upcoming events and more&#8217;. If I would not have known better, it might also have been a blog from a very enthusiastic local student, earning an extra buck this way. I also checked the <a\ntitle=\"About Sowe Today\" href=\"http://www.stowetoday.com/site/about/\">About</a>. page of the website, but that only refers to other publications.</p><h3>Adding a few paragraphs as an introduction</h3><p>Most news websites or webshops think they have no space for a few extra paragraphs of introductory content. The website should start with either news or products. I call bullsh*t on that.</p><p>I&#8217;m not a big fan of the somewhat sneaky way the <a\ntitle=\"Hidden introductory content\" href=\"http://www.hypedc.com/\" rel=\"nofollow\">online sneakershop Hypedc.com</a> did this:</p><p><img\nclass=\"aligncenter size-large wp-image-45641\" title=\"Hypedc.com source code\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/05/hypedccom-590x215.png\" alt=\"Hypedc.com source code\" width=\"580\" height=\"211\" /><br\n/> As you can see, the introduction is there, but is not shown on the page itself. You are serving that intro to Google, but not to your customers. Why not!?</p><p>But that is just one way. I&#8217;m a much bigger fan of the way <a\ntitle=\"WP Types introductory content\" href=\"http://wp-types.com/\">WP-Types.com</a> is doing this, for instance:</p><p><img\nclass=\"aligncenter size-full wp-image-45642\" title=\"wp-types\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/05/wp-types.png\" alt=\"WP-Types\" width=\"556\" height=\"288\" /></p><p>&#8220;But they just have a couple of products&#8221;. I hear you, that&#8217;s right. But how about the way <a\ntitle=\"Large intro for SurfStitch\" href=\"http://www.surfstitch.com/\" rel=\"nofollow\">SurfStitch</a> is doing this? That&#8217;s actually quite common for (Magento) webshops. List the products first, than the introduction.</p><p>I think that is a pretty good practice, since your products tell a global story and you are able to refine that with the additional introduction below.</p><h3>Your two cents</h3><p>I&#8217;d like to make a bold statement on introductory content for webshops and am looking forward to your opinion on that, as a webdesigner, SEO or customer:</p><blockquote><p>A webshop&#8217;s homepage does not need any overview of products. A great textual introduction works much better.</p></blockquote><p>Looking forward to your thoughts!</p><p><a\nhref=\"http://yoast.com/introductory-content/\">Why should I visit your website?</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/michiel/\">Michiel Heijmans</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/um_-AjHfIe4\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://yoast.com/introductory-content/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"27\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:75:\"http://cdn2.yoast.com/wp-content/uploads/2012/05/chicago-tribune-125x79.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:3:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:67:\"http://cdn.yoast.com/wp-content/uploads/2012/05/chicago-tribune.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Chicago Tribune logo\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:75:\"http://cdn2.yoast.com/wp-content/uploads/2012/05/chicago-tribune-125x79.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:61:\"http://cdn.yoast.com/wp-content/uploads/2012/05/hypedccom.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Hypedc.com source code\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:69:\"http://cdn.yoast.com/wp-content/uploads/2012/05/hypedccom-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:61:\"http://cdn2.yoast.com/wp-content/uploads/2012/05/wp-types.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"wp-types\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:69:\"http://cdn3.yoast.com/wp-content/uploads/2012/05/wp-types-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://yoast.com/introductory-content/#utm_source=rss&utm_medium=rss&utm_campaign=introductory-content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:11:\"           \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Penguin, Panda, it’s not that black and white..\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/UDijxOyZ450/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://yoast.com/penguin-panda-issues/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 May 2012 12:37:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45611\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:818:\"<p>We&#8217;re getting quite a few site review requests and SEO consultancy requests recently for people that have been hit by a sudden drop in traffic after the recent Google Penguin update. Because there has been quite some news about Google&#8217;s Penguin update and before that its Panda update, people are blaming those. In our perspective,&#8230;</p><p><a\nhref=\"http://yoast.com/penguin-panda-issues/\">Penguin, Panda, it&#8217;s not that black and white..</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4523:\"<p><a\nhref=\"http://cdn2.yoast.com/wp-content/uploads/2012/05/Yoast_penguin.jpg\"><img\nclass=\"alignright size-medium wp-image-45821\" title=\"Yoast - Penguin update\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/05/Yoast_penguin-206x300.jpg\" alt=\"Yoast - Penguin update\" width=\"206\" height=\"300\" /></a>We&#8217;re getting quite a few <a\ntitle=\"Website Review\" href=\"http://yoast.com/hire-me/website-review/\">site review</a> requests and SEO consultancy requests recently for people that have been hit by a sudden drop in traffic after the recent Google Penguin update. Because there has been quite some news about Google&#8217;s Penguin update and before that its Panda update, people are blaming those. In our perspective, whether you&#8217;re blaming Penguin, Panda or another update from Google isn&#8217;t really that interesting if you&#8217;re not an SEO. What matters most is: you&#8217;ve lost traffic, how are you going to get it back?</p><h2>Why you&#8217;d want to know whether the Penguin update caused it</h2><p>The idea is that if you know which update caused your traffic to drop and you know what that update targeted, you only have to fix that specific issue and your rankings will be magically restored. The reality is that it&#8217;s <em>really </em>not that black and white. Quite often now people blame one update, but if we look at the SearchMetrics stats for their domain, they&#8217;ve had a gradual decline over the last few months with a bigger decline in recent weeks. If we based our actions solely on what Penguin update targeted (and that&#8217;s not even really clear yet within the SEO community) we might be missing other issues.</p><p>There were other updates that didn&#8217;t get named by Google in the same way but had a <em>huge</em> impact in some countries. We&#8217;ve seen sites with over-optimized anchor text being hit from the beginning of the year already, but suddenly people now attribute that to Penguin. The end result for you as a site owner: it doesn&#8217;t matter.</p><p>You need to fix <em>all</em> your issues, not just the ones that this specific update &#8220;targets&#8221;.</p><h2>How to get &#8220;your&#8221; traffic back</h2><p>First of all, it&#8217;s not your traffic. It&#8217;s Google&#8217;s traffic. Being mad at Google, or anyone else for that matter, won&#8217;t help you one bit, it&#8217;s Google&#8217;s traffic and they can do what they want with it. So to regain the traffic your website was getting from Google, you need to play by their rules and in all honesty: those rules haven&#8217;t changed all that much over the last 10 years. The only thing that&#8217;s happening is that all the ways people found of bending those rules are slowly breaking.</p><p>Don&#8217;t try and play a game with Google if you don&#8217;t understand what you&#8217;re doing. There are dozens of great blackhats out there whom I respect, but that&#8217;s because they do their own research and they don&#8217;t start complaining publicly when Google catches them. If you have to read about and apply other people&#8217;s tricks, you&#8217;re probably not going to win. As the old saying goes: if you can&#8217;t stand the heat, stay out of the kitchen.</p><p>So how <em>do</em> you get your traffic back? By getting your site re-aligned with Google&#8217;s values. If you&#8217;ve lost in the Panda update or Penguin update and now recently lost a lot of traffic <em>again</em>, Google is sending you a message: your website doesn&#8217;t fit our idea of quality. Fix that. Don&#8217;t try to remove the one or two links that you think might have hurt you.</p><p>Now of course, you&#8217;re more than welcome to <a\ntitle=\"Website Review\" href=\"http://yoast.com/hire-me/website-review/\">order a website review</a> and get our opinion, but please don&#8217;t expect us to come up with a silver bullet. There are no silver bullets in SEO, just a lot of shiny silver drops of sweat, coming from your forehead.</p><p><a\nhref=\"http://yoast.com/penguin-panda-issues/\">Penguin, Panda, it&#8217;s not that black and white..</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/UDijxOyZ450\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://yoast.com/penguin-panda-issues/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"85\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:73:\"http://cdn.yoast.com/wp-content/uploads/2012/05/Yoast_penguin-125x125.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:66:\"http://cdn2.yoast.com/wp-content/uploads/2012/05/Yoast_penguin.jpg\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Yoast – Penguin update\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:73:\"http://cdn.yoast.com/wp-content/uploads/2012/05/Yoast_penguin-125x125.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"http://yoast.com/penguin-panda-issues/#utm_source=rss&utm_medium=rss&utm_campaign=penguin-panda-issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:11:\"           \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Having a blast at BlueGlass LA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/r_uYdP0kJkU/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://yoast.com/blast-blueglass-la/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Apr 2012 17:18:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:3:\"SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Conference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45602\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:775:\"<p>I&#8217;m currently sitting in the conference room for BlueGlass LA, listening to Marty Weintraub and finishing my presentation I&#8217;ll be giving this afternoon. Which leads me to the point of this post as I&#8217;m going to try and prove a point, therefore the following video is not really meant for you to watch but for&#8230;</p><p><a\nhref=\"http://yoast.com/blast-blueglass-la/\">Having a blast at BlueGlass LA</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2098:\"<p>I&#8217;m currently sitting in the conference room for <a\nhref=\"http://www.blueglass.com/conferences/la/\">BlueGlass LA</a>, listening to <a\nhref=\"http://www.aimclearblog.com/author/aimclear/\">Marty Weintraub</a> and finishing my presentation I&#8217;ll be giving this afternoon. Which leads me to the point of this post as I&#8217;m going to try and prove a point, therefore the following video is not really meant for you to watch but for me to test something with:</p><p><iframe\nwidth=\"570\" height=\"321\" src=\"http://www.youtube.com/embed/CSMUB1u5VXI?fs=1&#038;feature=oembed\" frameborder=\"0\" allowfullscreen></iframe></p><p>As a side note, BlueGlass LA is probably the best conference I&#8217;ve been to in a while, with a ridiculous line-up of speakers, if you&#8217;re going to go to an internet marketing conference, BlueGlass conferences are seriously among the very best in the US, second only to SEOktoberfest.</p> <span\nitemprop=\"video\" itemscope itemtype=\"http://schema.org/VideoObject\"><meta\nitemprop=\"name\" content=\"Having a blast at BlueGlass LA\"><meta\nitemprop=\"thumbnailURL\" content=\"http://cdn2.yoast.com/wp-content/uploads/2012/04/blueglass-la-e280a2-best-online-marketing-conf-on-the-west-coast-e280a2-yoast-300x225.jpg\"><meta\nitemprop=\"description\" content=\"Having a blast at BlueGlass LA with some of the most awesome internet marketers in the world.\"><meta\nitemprop=\"uploadDate\" content=\"2012-04-24T19:18:26+00:00\"><meta\nitemprop=\"embedURL\" content=\"http://www.youtube-nocookie.com/v/CSMUB1u5VXI\"><meta\nitemprop=\"duration\" content=\"PT4M5S\"></span><p><a\nhref=\"http://yoast.com/blast-blueglass-la/\">Having a blast at BlueGlass LA</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/r_uYdP0kJkU\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://yoast.com/blast-blueglass-la/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:1:{s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:6:\"      \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:45:\"http://www.youtube-nocookie.com/v/CSMUB1u5VXI\";s:8:\"duration\";s:3:\"245\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:5:{s:6:\"player\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:45:\"http://www.youtube-nocookie.com/v/CSMUB1u5VXI\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"BlueGlass LA • Best Online Marketing Conf on the West Coast • Yoast\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Having a blast at BlueGlass LA with some of the most awesome internet marketers in the world.\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:138:\"http://cdn2.yoast.com/wp-content/uploads/2012/04/blueglass-la-e280a2-best-online-marketing-conf-on-the-west-coast-e280a2-yoast-300x225.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"keywords\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Conference,BlueGlass LA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://yoast.com/blast-blueglass-la/#utm_source=rss&utm_medium=rss&utm_campaign=blast-blueglass-la\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:11:\"           \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Why I dislike Bo.lt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/6OfPelIL784/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://yoast.com/dislike-bolt/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 Apr 2012 21:59:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Social Media\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45589\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:710:\"<p>When I released my updated WordPress SEO article a few weeks back, my buddy Avinash was kind enough to tweet it. He tweeted it, at first, with a bo.lt link. Bo.lt is a sharing service that allows you to basically make a copy of a page and add some notes or even some changes to&#8230;</p><p><a\nhref=\"http://yoast.com/dislike-bolt/\">Why I dislike Bo.lt</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4689:\"<p><img\nclass=\"alignright size-full wp-image-45593\" title=\"bo.lt logo\" src=\"http://cdn3.yoast.com/wp-content/uploads/2012/04/bo.lt-logo.jpg\" alt=\"bo.lt logo\" width=\"200\" height=\"200\" />When I released my updated <a\nhref=\"http://yoast.com/articles/wordpress-seo/\">WordPress SEO article</a> a few weeks back, my buddy <a\nhref=\"http://www.kaushik.net/avinash/\">Avinash</a> was kind enough to tweet it. He tweeted it, at first, with a <a\nhref=\"http://bo.lt\">bo.lt</a> link. Bo.lt is a sharing service that allows you to basically make a copy of a page and add some notes or even some changes to the page. The idea is nice, as a webmaster though, I hate it. Let me explain why.</p><p>You see, bo.lt makes a <em>copy</em> of the page at the moment it&#8217;s prepared for sharing, they say they do that because of speed. As Avinash tweets a lot, he probably made that copy a couple of hours before he shared it. This wouldn&#8217;t be so much of an issue if I hadn&#8217;t added stuff to the page in the mean time and fixed a lot of typo&#8217;s. Everyone who&#8217;d use Avinash&#8217;s link wouldn&#8217;t see those changes. And bo.lt decided that for me, without asking me anything, or even worse, giving me the option to opt-out.</p><h2>SEO Impact</h2><p>Surely those bo.lt guys are at least trying to give the rankings for those pages people share through its service their links back? No. They don&#8217;t. Well, not unless you&#8217;re not already adding <code>rel=\"canonical\"</code> elements to your site yourself. Each user has its own subdomain. Avinash&#8217;s subdomain is zqi.bo.lt. As you can <a\nhref=\"http://www.google.com/search?q=site%3Abo.lt+yoast&amp;pws=0\">see for yourself</a>, quite a few of his shared pages are indexed by Google. That shouldn&#8217;t be possible. Bo.lt should add a canonical back to the original page if there isn&#8217;t one in the source already.</p><h2>No Analytics</h2><p>They claim a webmaster gets all his normal stuff, ads and analytics etc. Except that for both Clicky and Google Analytics there are no views measured for that bo.lt link, because Clicky refuses pageviews from other domains and I&#8217;ve filtered those out of Google Analytics to prevent others from rendering my analytics useless (yes, people do try that). So, &#8220;my&#8221; visitors don&#8217;t get the changes I made to the copy, making me look stupid and I can&#8217;t track which visitors those were and where they came from&#8230; At this point, I want out.</p><h2>Opt Out</h2><p>I&#8217;ve gone through their documentation, both normal and for developers, and there simply is no documented way to opt-out. So I decided to dive a bit deeper and figure out which user-agent bo.lt uses. It turns out that they actually <em>do</em> have a <a\nhref=\"http://bo.lt/ua\">page about their user-agent</a>. The next step would normally be simple: add a line to your robots.txt blocking bo.lt. Unfortunately, in my tests, bo.lt never actually retrieved the robots.txt file so they&#8217;re not adhering to the robots.txt protocol. They <em>really</em> should. They&#8217;re taking my content, they&#8217;re not asking for permission and they&#8217;re not allowing me to opt-out. Someone could sue them over that. I&#8217;m just going to request, through this blog post:</p><p><strong>Bo.lt, please add an option to opt my sites out of your service.</strong></p><p>Also, in my opinion, if you&#8217;re using bo.lt, you should probably start considering alternatives.</p><p>Disclaimer: please be aware that I like Avinash a lot and don&#8217;t blame <em>him</em> for anything. He&#8217;s a great guy and an inspiration to a lot of us in the online marketing industry. It&#8217;s the bo.lt service I dislike and I think that after reading this he will switch to something else as well.</p><h2>A &#8220;hard&#8221; out</h2><p>I figured out a &#8220;hard&#8221; way to get out of bo.lt doing its thing, add the following to your <em>.htaccess</em> file:</p><pre class=\"brush: plain; title: ; notranslate\">RewriteBase /\nRewriteEngine on\nRewriteCond %{HTTP_USER_AGENT} bo.lt/ua\nRewriteRule . - [F,L]</pre><p>This will block bo.lt, giving it a &#8220;forbidden&#8221; page.</p><p><a\nhref=\"http://yoast.com/dislike-bolt/\">Why I dislike Bo.lt</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/6OfPelIL784\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"http://yoast.com/dislike-bolt/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:71:\"http://cdn2.yoast.com/wp-content/uploads/2012/04/bo.lt-logo-125x125.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:63:\"http://cdn3.yoast.com/wp-content/uploads/2012/04/bo.lt-logo.jpg\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"bo.lt logo\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:71:\"http://cdn2.yoast.com/wp-content/uploads/2012/04/bo.lt-logo-125x125.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://yoast.com/dislike-bolt/#utm_source=rss&utm_medium=rss&utm_campaign=dislike-bolt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:12:\"            \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress Stats Infographic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/RkHT86bonB8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"http://yoast.com/wordpress-stats/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 Apr 2012 11:30:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45554\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:761:\"<p>My Google Analytics plugin recently hit 3 million downloads and my WordPress SEO plugin hit its first million downloads. I thought those stats were cool and I decided to have an infographic made with more WordPress stats and dive in a little bit more and gather some stats that I thought would be interesting. If you&#8230;</p><p><a\nhref=\"http://yoast.com/wordpress-stats/\">WordPress Stats Infographic</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3356:\"<p><div\nclass=\"alignright\"><a\nhref=\"http://pinterest.com/pin/create/button/?url=http%3A%2F%2Fyoast.com%2Fwordpress-stats%2F&media=http%3A%2F%2Fcdn.yoast.com%2Fwp-content%2Fuploads%2F2012%2F04%2Fwordpress-stats-infographic-yoast-full.jpg&description=WordPress+Stats+infographic+by+Yoast\" class=\"pin-it-button\" count-layout=\"vertical\"><img\nborder=\"0\" src=\"//assets.pinterest.com/images/PinExt.png\" title=\"Pin It\" /></a><script type=\"text/javascript\" src=\"//assets.pinterest.com/js/pinit.js\"></script></div>My <a\nhref=\"http://yoast.com/wordpress/google-analytics/\">Google Analytics plugin</a> recently hit 3 million downloads and my <a\nhref=\"http://yoast.com/wordpress/seo/\">WordPress SEO plugin</a> hit its first million downloads. I thought those stats were cool and I decided to have an infographic made with more WordPress stats and dive in a little bit more and gather some stats that I thought would be interesting.</p><p>If you read any blogs in the world, by now you&#8217;ll know <a\nhref=\"http://royal.pingdom.com/2012/04/11/wordpress-completely-dominates-top-100-blogs/\">WordPress dominates the top 100 blogs in the world</a>, <a\nhref=\"http://ma.tt/2012/04/wordpress-and-the-top-100/\">Matt had some interesting comments</a> about that. We&#8217;ve seen more WordPress stats, like <a\nhref=\"http://lorelle.wordpress.com/2012/03/29/wordpress-stats-and-numbers-breaking-their-own-records/\">these by Lorelle</a>. I then started adding more stats on my own.</p><p>I asked <a\nhref=\"http://www.experian.com/hitwise/index.html\">Experian Hitwise</a> to give me some stats about visits to WordPress.org, Drupal.org and Joomla.org in the UK and US, which they did (thanks!). <a\nhref=\"https://www.odesk.com/trends/WordPress\">oDesk</a> and <a\nhref=\"http://www.freelancer.com/hire/Wordpress\">Freelancer.com</a> have some great WordPress stats pages and of course there&#8217;s a bit of info <a\nhref=\"http://wordpress.org/extend/plugins/\">on WordPress</a>.org itself. So, with all of that and some I&#8217;m probably forgetting, <a\nhref=\"http://www.designbysoap.co.uk/design/infographic-design/?utm_source=yoast&amp;utm_medium=post&amp;utm_campaign=wordpress-stats\">Design by Soap</a> made the following infographic for me, I hope you like it, if you do, please share it! (<a\nclass=\"thickbox\" href=\"http://cdn.yoast.com/wp-content/uploads/2012/04/wordpress-stats-infographic-yoast-full.jpg\">click here for a larger version</a>)</p><h2>WordPress Stats</h2><p><a\nclass=\"thickbox\" href=\"http://cdn.yoast.com/wp-content/uploads/2012/04/wordpress-stats-infographic-yoast-full.jpg\"><img\nclass=\"alignnone size-full wp-image-45559\" title=\"WordPress Stats infographic by Yoast\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/04/wordpress-stats-infographic-yoast1.jpg\" alt=\"WordPress Stats infographic by Yoast\" width=\"582\" height=\"3382\" /></a></p><p><a\nhref=\"http://yoast.com/wordpress-stats/\">WordPress Stats Infographic</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/RkHT86bonB8\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://yoast.com/wordpress-stats/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"57\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:56:\"http://yoast.com//assets.pinterest.com/images/PinExt.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:2:{i:0;a:6:{s:4:\"data\";s:2:\"  \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:56:\"http://yoast.com//assets.pinterest.com/images/PinExt.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Pin It\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:87:\"http://cdn2.yoast.com/wp-content/uploads/2012/04/wordpress-stats-infographic-yoast1.jpg\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"WordPress Stats infographic by Yoast\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:94:\"http://cdn.yoast.com/wp-content/uploads/2012/04/wordpress-stats-infographic-yoast1-125x125.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://yoast.com/wordpress-stats/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-stats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:10:\"          \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"The ethics of SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/YfVDkmGVt78/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"http://yoast.com/ethics-seo/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Apr 2012 08:29:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:3:\"SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"Spam\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45531\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:774:\"<p>The type of SEO I help my clients do and promote to you using this blog is often labeled white hat SEO because it stays within Google&#8217;s and other search engines guidelines. Other SEO&#8217;s don&#8217;t care about Google&#8217;s guidelines as much and do what&#8217;s called &#8220;black hat SEO&#8221;. Far too often though, black hat SEO&#8230;</p><p><a\nhref=\"http://yoast.com/ethics-seo/\">The ethics of SEO</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6527:\"<p>The type of SEO I help my clients do and promote to you using this blog is often labeled white hat SEO because it stays within Google&#8217;s and other search engines guidelines. Other SEO&#8217;s don&#8217;t care about Google&#8217;s guidelines as much and do what&#8217;s called &#8220;black hat SEO&#8221;. Far too often though, black hat SEO is confused with the hacking of sites and the use of other tactics not outside the laws of Google but the laws of our lands. I think it&#8217;s time for me to explain where I stand in this.</p><h2>My background</h2><p>As a former Theology student and as someone raised in the Christian tradition, I have a fairly specific (and in some eyes: stringent) set of ethics. I don&#8217;t work on gambling or porn related sites because of that. I&#8217;m aware that others have different opinions on this and I don&#8217;t judge others when they have other ethics with regards to their work. To each his own. Sometimes though, I draw the line. Among my friends are some of the world&#8217;s best black hat SEO&#8217;s. These are also guys that will <em>never</em> break a law or willfully hurt other people to get their rankings, they just game Google&#8217;s algorithms. I know <a\nhref=\"http://mattcutts.com/blog/\">Matt</a> knows at least some of them and there&#8217;s even a form of &#8220;honor&#8221; among them: he seems to appreciate their ability to outwit their algorithm. Unfortunately not everyone in the SEO &#8220;community&#8221; is that clean: some people <em>are </em>willing to break laws or hurt other people. After the last SES conference in Amsterdam, which I arranged the speakers for, one of the speakers (not the keynote :) ) admitted to me he wouldn&#8217;t mind teaching other people how to hack sites or how to build trojans to gain links. I was too startled to give a proper response but decided later that day that I would never allow him back on a conference I arranged speakers for.</p><h2>Spammy Link Building in the Netherlands</h2><p>The last few days there&#8217;s been <a\nhref=\"http://www.molblog.nl/bericht/douwe-egberts-kpn-pon-en-randstad-betrokken-bij-icomment-spam-i/\">an outcry</a> in the Netherlands over several companies using comment spam and forum spam as a method of gaining links. They&#8217;d been caught creating fake profiles on all sort of sites and pretending to interact while really only inserting their links. I had to laugh a bit, as would most of my UK, American and German friends, as that&#8217;s <em>so</em> common outside of the Netherlands nobody would be surprised to see that anymore. There was <a\nhref=\"http://www.molblog.nl/bericht/de-buzzmollen-van-groupon/\">one specific case</a> though that &#8220;hurt&#8221; more than others (which was by another company by the way). Someone had willfully created an account on a forum for MS (multiple sclerosis) patients, claiming to be a patient, while was spamming links there to health related offers. That&#8217;s so low that it hurts.</p><h2>Outing Non-ethical SEO practices: immoral?</h2><p>Recently Joe Hall, whom I respect a lot, did a post saying <a\nhref=\"http://joehall.me/seo-outing-is-immoral/29/\">SEO &#8220;outing&#8221; is immoral</a>. He mentions that while the outed practices themselves might be non-ethical, those people have families too, etc. Basically: people lose their jobs because of it. That&#8217;s true. And that&#8217;s sad. Especially as most of those people will not know what hit them. I will counter that though: those companies have grown by using their unethical methods, costing other people their jobs in other companies. This is a zero-sum game in most cases. Google doesn&#8217;t tell people what to buy, it helps them find <em>where</em> they can buy it. Keep this in your mind at all times: search doesn&#8217;t create demand, it merely funnels it. I refuse to let people who use unethical SEO methods &#8220;win&#8221; because they support families, simply because their more ethical competitors support families too. I recently <a\nhref=\"http://yoast.com/godaddy-link-building/\">outed GoDaddy</a> over using spammy link building techniques and got a lot of flack for that from other people in the industry. Some seem to think that it&#8217;s all of &#8220;us&#8221; (SEO&#8217;s) against &#8220;them&#8221; (Google). I wholeheartedly disagree. GoDaddy was using its paying customers to strengthen their own SEO without consulting them, in fact, they were specifically hiding what they were doing in their editor. I don&#8217;t mind them &#8220;playing&#8221; Google&#8217;s algorithms. I mind them abusing their customers websites without their consent. The only way of making that stop is to ask Google to remove the value that abuse has. In the same way I loathe WordPress plugin developers who add links to their users sites without consent. I will <em>not</em> &#8221;out&#8221; people for buying high quality, relevant links from high quality websites related to their own topic, I have less issues outing people who hack into my website to gain a few links. This happens more often than I dare to admit.</p><h2>Policing the web</h2><p>Joe goes further and says:</p><blockquote><p>&#8220;If your paycheck doesn’t say “Google” on it, it’s not your job to police the web.&#8221;</p></blockquote><p>My paycheck doesn&#8217;t say Google. I&#8217;m not policing the web. Neither is Google. Google is trying to maintain a set of rules <em>within its own index</em>. It has all the rights in the world to do that. My paycheck doesn&#8217;t say &#8220;WordPress&#8221; either, yet I help develop that project because we all benefit. There <em>really</em> is such a thing as &#8220;the common good&#8221;. That&#8217;s entirely different from outing every SEO I find that does something outside of Google&#8217;s guidelines, I&#8217;m smart enough to create my own set of ethics. I hope you are too. I for one intend to help them battle unethical SEO&#8217;s because I think we all benefit from that.</p><p><a\nhref=\"http://yoast.com/ethics-seo/\">The ethics of SEO</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/joost/\">Joost de Valk</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/YfVDkmGVt78\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://yoast.com/ethics-seo/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://yoast.com/ethics-seo/#utm_source=rss&utm_medium=rss&utm_campaign=ethics-seo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:15:\"               \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:7:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"7 ways to Increase Sales by creating Trust\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/joostdevalk/~3/1ssU1JMTUtQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://yoast.com/7-ways-to-increase-sales-by-creating-trust/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Mar 2012 13:09:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:22:\"Usability & Conversion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:28:\"Conversion Rate Optimization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://yoast.com/?p=45457\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:779:\"<p>The key to conversing a visitor into a client is the creation of trust. Your product can be the greatest thing on earth or the dullest office supply ever, both can be sold online when your visitor knows you are the best supplier for that product or service. We often advise on how to gain&#8230;</p><p><a\nhref=\"http://yoast.com/7-ways-to-increase-sales-by-creating-trust/\">7 ways to Increase Sales by creating Trust</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/michiel/\">Michiel Heijmans</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Michiel Heijmans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6646:\"<p>The key to conversing a visitor into a client is the creation of trust. Your product can be the greatest thing on earth or the dullest office supply ever, both can be sold online when your visitor knows you are the best supplier for that product or service.</p><p>We often advise on how to gain trust in our <a\ntitle=\"Website Review\" href=\"http://yoast.com/hire-me/website-review/\">website reviews</a>, and I&#8217;ve compiled a list of some of the advice we&#8217;ve given over time. Of course, trust can be earned in more ways than this, but we&#8217;ll give you these seven to start with.</p><h2>1. Use clear and normal language</h2><p>This is an often overseen issue that causes a lot of misgrief with your visitors. You should speak their language, not drown them in a sea of technical specs you don&#8217;t even understand yourself. Use a clear and direct style of writing. Keep your audience in mind. Do not focus on telling them what you want to tell them, focus on providing as many arguments as possible why their quality of life improves after buying that specific product.</p><h2>2. Testimonials</h2><p>Do not brag about your products yourself. If your products or services are really that good, I&#8217;m sure you&#8217;ll find someone else that can do the bragging for you. Make sure your visitor understand that the testimonial is written by an actual customer, by listing at least name and company and if the customer agrees, even a picture of him. Video seems to be the next big thing in testimonials, by the way. In my opinion, that video testimonial should be accompanied by a written excerpt:</p><div\nid=\"attachment_45461\" class=\"wp-caption alignright\"><a\nhref=\"http://cdn.yoast.com/wp-content/uploads/2012/03/testimonials-cloversites.com_.png\"><img\nclass=\"size-large wp-image-45461\" title=\"Testimonials as seen on cloversites.com\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/03/testimonials-cloversites.com_-590x472.png\" alt=\"Testimonials as seen on cloversites.com\" width=\"580\" height=\"464\" /></a><p\nclass=\"wp-caption-text\">Testimonials as seen on cloversites.com</p></div><h2>3. Verified signs</h2><p>Everyone can create a verified sign, so don&#8217;t let those verified signs fool you. But the majority of your visitors actually believe that you are the &#8216;Most appreciated hairdresser of Mississippi&#8217; or the &#8216;Best Plummer 2006&#8242;. Man, I hate those signs. But when the signs are from well-known companies, they really do add value to a webshop:</p><div\nid=\"attachment_45459\" class=\"wp-caption alignright\"><a\nhref=\"http://cdn2.yoast.com/wp-content/uploads/2012/03/verified-signs-dx.com_.png\"><img\nclass=\"size-large wp-image-45459\" title=\"&quot;Verified&quot; signs\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/03/verified-signs-dx.com_-590x76.png\" alt=\"&quot;Verified&quot; signs\" width=\"580\" height=\"74\" /></a><p\nclass=\"wp-caption-text\">&quot;Verified&quot; signs</p></div><p>By investing in the guidelines of the right verification companies  the webshop shows that it has been keeping the customer in mind when setting up the website.</p><h2>4. Pictures</h2><p>If you recognize the woman on this picture, please call the following toll-free number&#8230;:</p><p><a\nhref=\"http://cdn3.yoast.com/wp-content/uploads/2012/03/picture-stock.png\"><img\nclass=\"alignright size-large wp-image-45460\" title=\"Stock photography\" src=\"http://cdn2.yoast.com/wp-content/uploads/2012/03/picture-stock-590x314.png\" alt=\"Stock photography\" width=\"580\" height=\"308\" /></a></p><p>You can do better than that stock photo. Listing actual pictures of yourself and/or your employees pushes conversion due to recognition and identification.</p><h2>5. List your physical address</h2><p>This one is really simple: people want to know there is a place to go to in case of problems (if any). Having an actual store next to your webshop works even better, especially if a lot of your customers are relatively local.</p><p>In the Netherlands <a\nhref=\"http://digitalstreet.nl/\">digitalstreet.nl</a> made this concept into a huge success, even though they&#8217;re located in the south-west of the Netherlands (quite near to where we are), people come from all over the Netherlands because they&#8217;d rather buy the product in the store. There are more stories like that, but even if you don&#8217;t want to do that, just listing your address on check-out pages increases trust a lot.</p><h2>6. What happens after check-out?</h2><p>There&#8217;s this hesitation in almost all buying decisions: right before you click the Pay Now button. What&#8217;s going to happen next? Am I charged for taxes, import, anything else? Can I select a wrapping paper? Explain what happens after clicking that button. That way the customer is included in your ordering process and there are absolutely no suprises. That can be done with just a few short lines of text:</p><p><a\nhref=\"http://cdn2.yoast.com/wp-content/uploads/2012/03/checkout-bloomingdales.com_.png\"><img\nclass=\"alignright size-large wp-image-45458\" title=\"checkout message on bloomingdales.com\" src=\"http://cdn.yoast.com/wp-content/uploads/2012/03/checkout-bloomingdales.com_-590x244.png\" alt=\"checkout message on bloomingdales.com\" width=\"580\" height=\"239\" /></a></p><h2>7. Show you care about more than making money</h2><p>The most important thing is that your website has to reflect your believe in the product or service you provide. Just a list of products is not enough. Also tell your customer about your company, your main values or mission statement. I really love the 1% for the Planet from Yvon Chouinard (Patagonia) and Craig Mathews (Blue Ribbon Flies) <a\nhref=\"http://www.onepercentfortheplanet.org/\">http://www.onepercentfortheplanet.org</a>. Next to showing that you are involved, it also creates a huge sympathy and trust factor.</p><h2>We&#8217;d love to hear your tips!</h2><p>If you are selling products or services on your website, you must have thought about this subject. I&#8217;m curious: What have you done on your website to increase trust? What are you going to do?</p><p><a\nhref=\"http://yoast.com/7-ways-to-increase-sales-by-creating-trust/\">7 ways to Increase Sales by creating Trust</a> is a post by <a\nrel=\"author\" href=\"http://yoast.com/author/michiel/\">Michiel Heijmans</a> on <a\nhref=\"http://yoast.com\">Yoast - Tweaking Websites</a>.A good WordPress blog needs good hosting, you don\'t want your blog to be slow, or, even worse, down, do you? Check out my thoughts on <a\nhref=\"http://yoast.com/wordpress-hosting/\">WordPress hosting</a>!</p><img src=\"http://feeds.feedburner.com/~r/joostdevalk/~4/1ssU1JMTUtQ\" height=\"1\" width=\"1\"/>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://yoast.com/7-ways-to-increase-sales-by-creating-trust/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"44\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:90:\"http://cdn3.yoast.com/wp-content/uploads/2012/03/testimonials-cloversites.com_-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:4:{i:0;a:6:{s:4:\"data\";s:4:\"    \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:81:\"http://cdn.yoast.com/wp-content/uploads/2012/03/testimonials-cloversites.com_.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Testimonials as seen on cloversites.com\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Testimonials as seen on cloversites.com\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:90:\"http://cdn3.yoast.com/wp-content/uploads/2012/03/testimonials-cloversites.com_-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:4:\"    \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:75:\"http://cdn2.yoast.com/wp-content/uploads/2012/03/verified-signs-dx.com_.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"“Verified” signs\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"\"Verified\" signs\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:81:\"http://cdn.yoast.com/wp-content/uploads/2012/03/verified-signs-dx.com_-125x98.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:66:\"http://cdn3.yoast.com/wp-content/uploads/2012/03/picture-stock.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Stock photography\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:74:\"http://cdn2.yoast.com/wp-content/uploads/2012/03/picture-stock-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:3:\"   \";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:80:\"http://cdn2.yoast.com/wp-content/uploads/2012/03/checkout-bloomingdales.com_.png\";s:6:\"medium\";s:5:\"image\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"checkout message on bloomingdales.com\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:87:\"http://cdn.yoast.com/wp-content/uploads/2012/03/checkout-bloomingdales.com_-125x125.png\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"http://yoast.com/7-ways-to-increase-sales-by-creating-trust/#utm_source=rss&utm_medium=rss&utm_campaign=7-ways-to-increase-sales-by-creating-trust\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:39:\"http://feeds.feedburner.com/joostdevalk\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:5:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:11:\"joostdevalk\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:14:\"emailServiceId\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"joostdevalk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:18:\"feedburnerHostname\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://feedburner.google.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"feedFlare\";a:7:{i:0;a:5:{s:4:\"data\";s:22:\"Subscribe with Podnova\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:82:\"http://www.podnova.com/add.srf?url=http%3A%2F%2Ffeeds.feedburner.com%2Fjoostdevalk\";s:3:\"src\";s:47:\"http://www.podnova.com/img_chicklet_podnova.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:24:\"Subscribe with NewsGator\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:103:\"http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Fjoostdevalk\";s:3:\"src\";s:42:\"http://www.newsgator.com/images/ngsub1.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:23:\"Subscribe with Netvibes\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:89:\"http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2Fjoostdevalk\";s:3:\"src\";s:44:\"http://www.netvibes.com/img/add2netvibes.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:25:\"Subscribe with Pageflakes\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:92:\"http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Fjoostdevalk\";s:3:\"src\";s:87:\"http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&fileName=ATP_blu_91x17.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:24:\"Subscribe with My Yahoo!\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:79:\"http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2Fjoostdevalk\";s:3:\"src\";s:59:\"http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"Subscribe with ODEO\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:85:\"http://odeo.com/listen/subscribe?feed=http%3A%2F%2Ffeeds.feedburner.com%2Fjoostdevalk\";s:3:\"src\";s:43:\"http://odeo.com/img/badge-channel-black.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:21:\"Subscribe with Google\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:84:\"http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Fjoostdevalk\";s:3:\"src\";s:51:\"http://buttons.googlesyndication.com/fusion/add.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"browserFriendly\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"This is the combined feed for Yoast.com and the WordPress podcast. Subscribe now to get WordPress & Magento tips & tricks, helping you optimize your site for speed, search engines and conversion!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"GlXDbrtJ27eyIOB5Umn+6gmwtjQ\";s:13:\"last-modified\";s:29:\"Mon, 24 Sep 2012 16:08:03 GMT\";s:4:\"date\";s:29:\"Mon, 24 Sep 2012 17:29:21 GMT\";s:7:\"expires\";s:29:\"Mon, 24 Sep 2012 17:29:21 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";}s:5:\"build\";s:14:\"20090627192103\";}","no");
INSERT INTO wp_options VALUES("460","0","_transient_timeout_feed_mod_895a6fef0cc57461ead214388fd67e81","1348550963","no");
INSERT INTO wp_options VALUES("461","0","_transient_feed_mod_895a6fef0cc57461ead214388fd67e81","1348507763","no");
INSERT INTO wp_options VALUES("733","0","uninstall_plugins","a:3:{i:0;b:0;s:35:\"si-contact-form/si-contact-form.php\";s:24:\"si_contact_unset_options\";s:69:\"contact-form-with-a-meeting-scheduler-by-vcita/vcita-contact-form.php\";s:15:\"vcita_uninstall\";}","yes");
INSERT INTO wp_options VALUES("741","0","_transient_timeout_si_contact_form_info","1349469199","no");
INSERT INTO wp_options VALUES("742","0","_transient_si_contact_form_info","O:8:\"stdClass\":18:{s:4:\"name\";s:24:\"Fast Secure Contact Form\";s:4:\"slug\";s:15:\"si-contact-form\";s:7:\"version\";s:7:\"3.1.5.5\";s:6:\"author\";s:72:\"<a href=\"http://www.642weather.com/weather/scripts.php\">Mike Challis</a>\";s:14:\"author_profile\";s:41:\"http://profiles.wordpress.org/mikechallis\";s:12:\"contributors\";a:1:{s:12:\"Mike Challis\";s:41:\"http://profiles.wordpress.org/mikechallis\";}s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:5:\"3.4.2\";s:13:\"compatibility\";a:1:{s:3:\"3.3\";a:5:{s:5:\"3.0.5\";a:3:{i:0;i:100;i:1;i:2;i:2;i:2;}s:3:\"3.1\";a:3:{i:0;i:96;i:1;i:25;i:2;i:24;}s:5:\"3.1.2\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:7:\"3.1.4.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}s:7:\"3.1.5.1\";a:3:{i:0;i:100;i:1;i:1;i:2;i:1;}}}s:6:\"rating\";d:89;s:11:\"num_ratings\";i:1285;s:10:\"downloaded\";i:2903201;s:12:\"last_updated\";s:10:\"2012-08-07\";s:5:\"added\";s:10:\"2009-08-27\";s:8:\"homepage\";s:37:\"http://www.FastSecureContactForm.com/\";s:8:\"sections\";a:5:{s:11:\"description\";s:5719:\"<p>This plugin allows a webmaster to easily create and add contact forms to WordPress. The contact form will let the user send emails to a site\'s admin, and also send a meeting request to talk over phone or video. An administration panel is present, where the webmaster can create and preview unlimited forms.</p>\n\n<p>Features a super easy admin panel, multi-form feature, autoresponder, no templates to mess with, and an option to redirect visitors to any URL after the message is sent. Includes CAPTCHA and Akismet support to block all common spammer tactics. Spam is no longer a problem. You can add extra fields of any type: text, textarea, checkbox, checkbox-multiple, radio, select, select-multiple, attachment, date, time, hidden, password, and fieldset.</p>\n\n<ul>\n<li><a href=\"http://www.fastsecurecontactform.com/\">FastSecureContactForm.com</a></li>\n<li><a href=\"http://downloads.wordpress.org/plugin/si-contact-form.zip\">Download WordPress Plugin Version</a></li>\n<li><a href=\"http://www.fastsecurecontactform.com/download-php-script\">Download PHP Script Version</a></li>\n</ul>\n\n<h4>Help Keep This Plugin Free</h4>\n\n<p>If you find this plugin useful to you, please consider <a href=\"http://www.fastsecurecontactform.com/donate\"><strong>making a small donation</strong></a> to help contribute to my time invested and to further development. Thanks for your kind support! - <a href=\"http://profiles.wordpress.org/users/MikeChallis/\"><strong>Mike Challis</strong></a></p>\n\nFeatures:\n\n<ul>\n<li>Super easy customizable Options from Admin settings page.</li>\n<li>Multi-Form feature that allows you to have as many different forms as you need.<a href=\"http://www.fastsecurecontactform.com/multiple-e-mail-recipients\">See FAQ</a></li>\n<li>Optional extra fields of any type: text, textarea, checkbox, checkbox-multiple, radio, select, select-multiple, attachment, date, time, hidden, password, fieldset(box). <a href=\"http://www.fastsecurecontactform.com/how-to-add-extra-fields\">See FAQ</a></li>\n<li>File attachments are supported, see here for details: <a href=\"http://wordpress.org/support/topic/416371\" rel=\"nofollow\">http://wordpress.org/support/topic/416371</a></li>\n<li>Backup/restore tool. You can backup/restore all your forms or single forms and settings.<a href=\"http://www.fastsecurecontactform.com/backup-restore-forms\">See FAQ</a></li>\n<li>Easy to hide subject and message fields for use as a newsletter signup.</li>\n<li>Supports sending mail to multiple departments.<a href=\"http://www.fastsecurecontactform.com/tip-form-preview\">See FAQ</a></li>\n<li>Optional - redirect to any URL after message sent.</li>\n<li>Optional - posted data can be sent as a query string on the redirect URL. <a href=\"http://www.fastsecurecontactform.com/sending-data-by-query-string\">See faq</a></li>\n<li>Optional - autoresponder E-mail message.<a href=\"http://www.fastsecurecontactform.com/tip-add-email-autoresponder\">See FAQ</a></li>\n<li>Valid coding for HTML, XHTML, HTML STRICT, Section 508, and WAI Accessibility.</li>\n<li>Uses simple inline error messages.</li>\n<li>Reloads form data and warns user if user forgets to fill out a field.</li>\n<li>Validates syntax of E-mail address.</li>\n<li>CAPTCHA can be turned off or hidden from logged in users and or admins.</li>\n<li>Multi \"E-mail to\" contact support.</li>\n<li>Auto form fill for logged in users.</li>\n<li>Customizable form field titles.</li>\n<li>Customizable CSS style.</li>\n<li>Sends E-mail with UTF-8 character encoding for US and International character support.</li>\n<li>Pre-fill in form fields from a URL query string. <a href=\"http://www.fastsecurecontactform.com/query-string-parameters\">See FAQ</a></li>\n<li>Save emails to the WordPress database, or export to CSV or Excel. <a href=\"http://www.fastsecurecontactform.com/save-to-database\">See FAQ</a></li>\n<li>I18n language translation support. <a href=\"http://www.fastsecurecontactform.com/how-to-translate\">See FAQ</a></li>\n</ul>\n\nScheduling, Meeting and Payments via vCita:\n\n<ul>\n<li>Offer visitors to Schedule Meetings as part of your Contact Form</li>\n<li>Set your availability and synchronize your contact form with your Google calendar</li>\n<li>Meet online with web-based video meeting room</li>\n<li>Meet over phone conference</li>\n<li>Record your meetings</li>\n<li>Collect payments and bill for your time and services</li>\n<li>Send a payment request once a meeting is completed or secure a fee in advance according to your hourly rate</li>\n</ul>\n\nSecurity:\n\n<ul>\n<li>It has very tight security, stops all automated spammers.</li>\n<li>Akismet spam protection support.</li>\n<li>Spam checks E-mail address input from common spammer tactics...\nprevents spammer forcing to:, cc:, bcc:, newlines, and other E-mail injection attempts to spam the world.</li>\n<li>Makes sure the contact form was posted from your blog domain name only.</li>\n<li>Filters all form inputs from HTML and other nasties.</li>\n<li>E-mail message footer shows blog username(if logged on), Date/Time timestamp, IP address, and user agent (browser version) of user who contacted you.</li>\n</ul>\n\nCaptcha Image Support:\n\n<ul>\n<li>Uses Open-source free PHP CAPTCHA library by <a href=\"http://www.phpcaptcha.org\" rel=\"nofollow\">http://www.phpcaptcha.org</a> (customized version included)</li>\n<li>Abstract background with multi colored, angled, and transparent text</li>\n<li>Arched lines through text</li>\n<li>Refresh button to reload captcha if you cannot read it</li>\n<li>CAPTCHA can be disabled in Options</li>\n</ul>\n\nRequirements/Restrictions:\n\n<ul>\n<li>Works with Wordpress 2.8+, WPMU, and BuddyPress (Wordpress 3.0+ is highly recommended)</li>\n<li>PHP5 </li>\n<li>PHP register_globals and safe_mode should be set to \"Off\".</li>\n</ul>\";s:12:\"installation\";s:1238:\"<ol>\n<li><p>Install automatically through the <code>Plugins</code>, <code>Add New</code> menu in WordPress, or upload the <code>si-contact-form</code> folder to the <code>/wp-content/plugins/</code> directory.</p></li>\n<li><p>Activate the plugin through the <code>Plugins</code> menu in WordPress. Look for the Settings link to configure the Options.</p></li>\n<li><p>Add the shortcode <code>&#x5b;si-contact-form form=\'1\']</code> in a Page, Post, or Text Widget. Here is how: Log into your blog admin dashboard. Click <code>Pages</code>, click <code>Add New</code>, add a title to your page, enter the shortcode <code>&#x5b;si-contact-form form=\'1\']</code> in the page, uncheck <code>Allow Comments</code>, click <code>Publish</code>.</p></li>\n<li><p>Test an email from your form.</p></li>\n<li><p>Updates are automatic. Click on \"Upgrade Automatically\" if prompted from the admin menu. If you ever have to manually upgrade, simply deactivate, uninstall, and repeat the installation steps with the new version.</p></li>\n</ol>\n\n<h4>I just installed this and do not get any email from it, what could be wrong?</h4>\n\n<p><a href=\"http://www.fastsecurecontactform.com/email-does-not-send\">See FAQ page: How to troubleshoot mail delivery</a></p>\";s:11:\"screenshots\";s:1588:\"<ol>\n	<li>\n		<a href=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-1.gif?r=608677\' title=\'Click to view full-size screenshot 1\'><img class=\'screenshot\' src=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-1.gif?r=608677\' alt=\'si-contact-form screenshot 1\' /></a>\n		<p><p>screenshot-1.gif is the contact form.</p></p>\n	</li>\n	<li>\n		<a href=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-2.gif?r=608677\' title=\'Click to view full-size screenshot 2\'><img class=\'screenshot\' src=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-2.gif?r=608677\' alt=\'si-contact-form screenshot 2\' /></a>\n		<p><p>screenshot-2.gif is the contact form showing the inline error messages.</p></p>\n	</li>\n	<li>\n		<a href=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-3.gif?r=608677\' title=\'Click to view full-size screenshot 3\'><img class=\'screenshot\' src=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-3.gif?r=608677\' alt=\'si-contact-form screenshot 3\' /></a>\n		<p><p>screenshot-3.gif is the <code>Contact Form options</code> tab on the <code>Admin Plugins</code> page.</p></p>\n	</li>\n	<li>\n		<a href=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-4.gif?r=608677\' title=\'Click to view full-size screenshot 4\'><img class=\'screenshot\' src=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-4.gif?r=608677\' alt=\'si-contact-form screenshot 4\' /></a>\n		<p><p>screenshot-4.gif adding the shortcode <code>&#x5b;si-contact-form form=\'1\']</code> in a Page.</p></p>\n	</li>\n</ol>\";s:9:\"changelog\";s:44188:\"<h4>3.1.5.5</h4>\n\n<ul>\n<li>(06 Aug 2012) - Fix so permissions of the captcha temp folder is not changed.</li>\n</ul>\n\n<h4>3.1.5.4</h4>\n\n<ul>\n<li>(12 May 2012) - Better detection of checkbox config errors.</li>\n</ul>\n\n<h4>3.1.5.3</h4>\n\n<ul>\n<li>(11 Apr 2012) - vCita message dismiss feature.</li>\n<li>put # for the redirect URL and it will redirect to the same page the form is on regardless of the page.</li>\n</ul>\n\n<h4>3.1.5.2</h4>\n\n<ul>\n<li>(02 Apr 2012) - Fixed hidden shortcode settings broken since version 3.1.5</li>\n</ul>\n\n<h4>3.1.5.1</h4>\n\n<ul>\n<li>(20 Mar 2012) - removed message \"You still haven\'t completed your Meeting Scheduler settings.\" on admin pages.</li>\n</ul>\n\n<h4>3.1.5</h4>\n\n<ul>\n<li>(20 Mar 2012) - vCita improved so your email address is not sent to VCita unless you type it in yourself when activating the service.</li>\n<li>Email parameter removed from vCita banner URL.</li>\n<li>Added shortcode setting to show Form Page URL in the email message [si-contact-form form=\'1\' hidden=\'form_page=1\']</li>\n</ul>\n\n<h4>3.1.4.1</h4>\n\n<ul>\n<li>(24 Feb 2012) - Email will only be passed to vCita servers when you choose to enable vCita services. </li>\n</ul>\n\n<h4>3.1.4</h4>\n\n<ul>\n<li>(23 Feb 2012) - Fix bug in Extra field tags can be used in subject setting.</li>\n<li>Fix possible error: preg_match() expects parameter to be string. </li>\n<li>Fix to use separate CC: email header.</li>\n<li>vCita improvements.</li>\n<li>Updated Russian (ru_RU) - Translated by <a href=\"http://www.iflexion.com/\">Iflexion</a></li>\n</ul>\n\n<h4>3.1.3.1</h4>\n\n<ul>\n<li>(05 Feb 2012) - Fix vCita had some uninitialized variable errors when debugging is on.</li>\n</ul>\n\n<h4>3.1.3</h4>\n\n<ul>\n<li>(04 Feb 2012) - Extra field tags can be used in subject setting. For available field tags, click \'help\' next to the \'E-mail Subject Prefix:\' setting.</li>\n<li>Fix vCita could not be disabled during invalid email condition.</li>\n<li>Fix JS on form edit preview page.</li>\n</ul>\n\n<h4>3.1.2</h4>\n\n<ul>\n<li>(25 Jan 2012) - Use WP function is_ssl() for better SSL compatibility.</li>\n<li>Fix vCita \'JS on every page\' bug in admin and WP site.</li>\n<li>Fix vCita had some output when disabled.</li>\n<li>Fix calendar week number bug.</li>\n</ul>\n\n<h4>3.1.1</h4>\n\n<ul>\n<li>(21 Jan 2012) - Updated vCita functions and added new schedule a meeting buttons. </li>\n<li>Replace the use of WP_PLUGIN_URL with plugins_url() for better SSL compatibility.</li>\n<li>Updated Italian language (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>3.1</h4>\n\n<ul>\n<li>(06 Dec 2011) - Add \"Set a meeting\" option to your contact form using vCita Meeting Scheduler. Meet users over video or phone, and collect payment for services.</li>\n<li>Improved HTML code on message sent.</li>\n</ul>\n\n<h4>3.0.5</h4>\n\n<ul>\n<li>(18 Nov 2011) - Harden security for CAPTCHA by limiting the number of created cache files. This condition could only be realized with a script. Found by <a href=\"http://bstpierre.org/\">Brian St. Pierre</a>.</li>\n<li>HTML validation fix, added unique id for submit and reset buttons.</li>\n</ul>\n\n<h4>3.0.4</h4>\n\n<ul>\n<li>(09 Oct 2011) - Fix default text could not be 0.</li>\n<li>Fix HTML validation with date field.</li>\n<li>Fix rows and cols extra field attributes.</li>\n<li>Fix javascript console error on date calendar popup.</li>\n</ul>\n\n<h4>3.0.3.2</h4>\n\n<ul>\n<li>(27 Jul 2011) - Fixed medium XSS HTB23036 - as advised by High-Tech Bridge SA Security Research Lab.</li>\n<li>Fix, added missing 00 to 24 hour time select.</li>\n</ul>\n\n<h4>3.0.3.1</h4>\n\n<ul>\n<li>(05 Jul 2011) - Tested / fixed to be compatible with WP 3.2</li>\n<li>Fix for <code>&#38;apos</code> entity showing for single quotes on IE7, IE8</li>\n<li>Fix for CAPTCHA input field out of position on IE7 with labels left CSS setting.</li>\n</ul>\n\n<h4>3.0.3</h4>\n\n<ul>\n<li>(16 Jun 2011) - Tested compatible with WP 3.2 Beta 2</li>\n<li>\"Number of available extra fields\" setting is now for each form # instead of all forms.</li>\n<li>CAPTCHA audio feature removed.</li>\n<li>Misc. admin Fixes.</li>\n<li>Another fix for empty autoresponder field tags were showing.</li>\n<li>Calendar style improvements.</li>\n</ul>\n\n<h4>3.0.2</h4>\n\n<ul>\n<li>(08 Jun 2011) - Fixed error: Undefined variable: securimage_url </li>\n<li>Added id tags to submit and reset buttons.</li>\n<li>Updated Italian language (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>3.0.1</h4>\n\n<ul>\n<li>(02 Jun 2011) - CAPTCHA Audio feature is disabled by Mike Challis until further notice because a proof of concept code CAPTCHA solving exploit was released - Security Advisory - SOS-11-007. CAPTCHA image is not involved.</li>\n<li>Security enhancements for possible low level XSS exploit in admin settings: thanks to <a href=\"http://secu.boiteaweb.fr/\">Julio Potier</a>.</li>\n<li>Fix javascript error when CAPTCHA audio is disabled.</li>\n<li>Fixed missing width/height attributes for CAPTCHA images.</li>\n<li>Fixed backslash problem on Restore Settings tool.</li>\n<li>Fixed empty autoresponder field tags were showing.</li>\n<li>Fixed various style improvements for admin error messages.</li>\n<li>Added a popup alert for when changing the number of forms or extra fields.</li>\n<li>Added setting: CSS style for CAPTCHA input field on the contact form.</li>\n<li>Added Norwegian Bokmal (nb_NO) - Translated by <a href=\"http://punktlig-ikt.no\">Tore Johnny Bratveit</a></li>\n</ul>\n\n<h4>3.0</h4>\n\n<ul>\n<li>(25 Apr 2011) - Added (extra fields) default text can be set for text or textarea.</li>\n<li>Added (extra fields) max length can be set for password, text or textarea.</li>\n<li>Added (extra fields) attributes can be set for password, text or textarea.</li>\n<li>Added (extra fields) validation regex can be set for password, text or textarea.</li>\n<li>Added (extra fields) validation regex fail message can be set for password, text or textarea.</li>\n<li>Added (extra fields) label or input CSS can be set individually for any extra field.</li>\n<li>Added (extra fields) HTML before and after can be set.</li>\n<li>Added (extra fields) \'email\' extra field type with validation.</li>\n<li>Added (extra fields) \'url\' extra field type with validation.</li>\n<li>Added (extra fields) first option of select field type can be in brackets to indicate [Please select].</li>\n<li>Added \'email\' field pulls up proper keyboard on iphone/ipad.</li>\n<li>Added optional [form_label] tag for subject. </li>\n<li>Added time format option for \'time\' extra field (select 12 or 24 hour).</li>\n<li>Improved extra fields admin GUI.</li>\n<li>Added Field labels are bold when HTML email is enabled.</li>\n<li>Fix - trim spaces on extra field multiple options.</li>\n<li>Fix - attached field allowed types separated by spaces.</li>\n<li>Fix - bug in restore tool that could cause data loss.</li>\n<li>Email validate DNS check disabled by default because some servers have big delay.</li>\n</ul>\n\n<h4>2.9.8.6</h4>\n\n<ul>\n<li>(27 Mar 2011) - Fix HTML notes would not appear before a fieldset open.</li>\n<li>Fix horizontal display feature for radio and multiple checkbox after post.</li>\n<li>Fixed date calender on some themes by adding a high z-index to the CSS.</li>\n<li>Added ability to use comma in \"Email To:\" name. If you need to use a comma besides the one needed to separate the name and email, escape it with a back slash, like this: \\,</li>\n<li>Added ability to specify cc and bcc in \"Email To:\". Example: Webmaster,user1@example.com;[cc]user2@example.com;[bcc]user3@example.com</li>\n<li>Added more WordPress logged in user details to the email message footer.</li>\n<li>Added optional \"Are you sure?\" form submit popup message (message can also be changed).</li>\n<li>Added Arabic (ar) partial translation - Translated by Jasmine Hassan</li>\n</ul>\n\n<h4>2.9.8.5</h4>\n\n<ul>\n<li>(08 Mar 2011) - Improved required date fields</li>\n<li>Added optional form \"reset\" button.</li>\n<li>Fixed escaped comma bug in Restore Tool</li>\n</ul>\n\n<h4>2.9.8.4</h4>\n\n<ul>\n<li>(23 Feb 2011) - Fixed broken \"fields to ignore\" feature. </li>\n<li>File attach type and size labels can be changed.</li>\n</ul>\n\n<h4>2.9.8.3</h4>\n\n<ul>\n<li>(14 Feb 2011) - Improvement: javascript is only loaded on pages when it is conditionally needed.</li>\n<li>Fixed 2 label alignment problems with some themes.</li>\n<li>Fixed possible javascript conflict that can break the redirect feature.</li>\n<li>Fixed extra fields were not accepting zero.</li>\n<li>More name labels can be changed.</li>\n<li>Added new feature: Copy Settings Tool. This tool can copy your contact form settings from one form number to any of your other forms. Use to copy just the style settings, or all the settings from one form.</li>\n<li>Added more shortcode optional settings <a href=\"http://www.fastsecurecontactform.com/shortcode-options\">see FAQ page</a> </li>\n<li>Added hidden field can accept query input. <a href=\"http://www.fastsecurecontactform.com/query-string-parameters\">see FAQ page</a></li>\n<li>Other fixes and enhancements</li>\n</ul>\n\n<h4>2.9.8.2</h4>\n\n<ul>\n<li>(07 Feb 2011) - Fix critical error \"invalid argument supplied foreach () /si-contact-form.php on line 474\". Sorry for the inconvenience.</li>\n<li>Fix \"Enable data export after the message\" setting would not uncheck.</li>\n<li>Changed default setting: If you use Contact Form 7 to DB Extension Plugin, be sure to visit the form edit page and enable this setting: \"Enable data export after the message\", because it is not enabled by default.</li>\n</ul>\n\n<h4>2.9.8.1</h4>\n\n<ul>\n<li>(07 Feb 2011) - Added Silent Send feature: Use to send the posted data to another form or 3rd party API <a href=\"http://www.fastsecurecontactform.com/send-form-data-elsewhere\">See FAQ</a></li>\n<li>Fixed blank from email when email address was set to \"not available\".</li>\n<li>Added features: Now you can add tags to print posted data for the email subject, autoresponder subject, or the autoresponder message.\nTo see instructions, just click \"help\" next to any of these fields on the form edit page. <a href=\"http://www.fastsecurecontactform.com/tip-add-email-autoresponder\">See FAQ</a></li>\n<li>Added feature: Data Export settings to manage what fields are allowed to be exported or ignored for each form. Also email can be disabled when exporting data.</li>\n</ul>\n\n<h4>2.9.8</h4>\n\n<ul>\n<li>(29 Jan 2011) - Added setting: \"Enable to receive email as HTML instead of plain text.\" Enable if you want the email message sent as HTML format. HTML format is desired if you want to avoid a 70 character line wordwrap when you copy and paste the email message. Normally the email is sent in plain text wordwrapped 70 characters per line to comply with most email programs. </li>\n<li>Added new settings in the \"Redirect\" section: You can Enable posted data to be sent as a query string on the redirect URL. This can be used to send the posted data via GET query string to a another form. </li>\n<li>New settings for redirect: \"Query string fields to ignore\", \"Query string fields to rename\", and \"Disable email sending (use only when required while you have enabled query string on the redirect URL)\". <a href=\"http://www.fastsecurecontactform.com/sending-data-by-query-string\">See FAQ</a></li>\n<li>Added version indicator and new version reminder to settings page.</li>\n<li>Fixed a multiple email problem if using the same form in several posts. Anyway, it is recommended to use the form in a page or sidebar, not a post.</li>\n<li>Fixed bug where form number was reset to 4 after trying to increase over 99.</li>\n<li>Fixed so now one CAPTCHA random position always has to be a number so that a 4 letter swear word could never appear.</li>\n<li>Many small fixes and enhancements. </li>\n<li>Added Romanian (ro_RO) - Translated by <a href=\"http://www.jibo.ro\">Anunturi Jibo</a></li>\n</ul>\n\n<h4>2.9.7.1</h4>\n\n<ul>\n<li>(19 Jan 2011) - Added ability to pre-fill in form fields from a URL query string. <a href=\"http://www.fastsecurecontactform.com/query-string-parameters\">see FAQ page</a></li>\n<li>Select Single posted data fix.</li>\n</ul>\n\n<h4>2.9.7</h4>\n\n<ul>\n<li>(13 Jan 2011) - Added a new hook for other plugins to use (just after mail sent). This can be used to export the posted data and attachments to a database. A plugin for this is in the works, stay tuned.</li>\n<li>Added new Select-multiple extra field type.</li>\n<li>Added new feature to set the css style for Label and Field in the same row, or switch back to Label on Top <a href=\"http://www.fastsecurecontactform.com/form-labels-left\">see FAQ</a></li>\n<li>Added new Setting for \"Form Label\". You can enter a label for your form to keep track of what you are using it for.</li>\n<li>Fixes and improvements for better mail delivery and to reduce the emails from going to the spam folder.\nIf you are not getting email, set the setting \"E-mail From\" to an email address on the same domain as your web site. This will improve mail delivery.\n<a href=\"http://www.fastsecurecontactform.com/email-does-not-send\">mail problem faq</a>.</li>\n<li>Added new setting: \"Enable when web host requires \"Mail From\" strictly tied to domain email account\". If your form does not send any email, then set the \"E-mail From\" setting to an address on the same web domain as your web site. If email still does not send, also check this setting. (ie: some users report this is required by yahoo small business web hosting) .</li>\n<li>Added ability to use comma in extra field labels for Checkbox, Radio, Select, or Select-multiple. If you need to use a comma besides the one needed to separate the label, escape it with a back slash, like this: \\,</li>\n<li>Improved Akismet spam check API code.</li>\n<li>Fixed required option for checkbox multiple, now all field types can be required as needed. </li>\n<li>Fixed all fields with multiple options can have a default option: checkbox, radio, select, or select-multiple.</li>\n<li>Other small Fixes and improvements.    </li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>2.9.6</h4>\n\n<ul>\n<li>(29 Dec 2010) - Removed advanced options link. Too many people could not find it. All options are now always available on the form edit page.</li>\n<li>Added new setting for \"Autoresponder E-mail \"From\" address:\" </li>\n</ul>\n\n<h4>2.9.5.4</h4>\n\n<ul>\n<li>(17 Dec 2010) - Advanced Options are now open by default for new installs.</li>\n<li>Some changes to admin settings page.</li>\n</ul>\n\n<h4>2.9.5.3</h4>\n\n<ul>\n<li>(14 Dec 2010) - Added Geolocation for the email footer. Install my Visitor Maps plugin and the sender\'s city, state, country will automatically be included in the email footer. </li>\n<li>Rename CAPTCHA font files all lower case to avoid a rare FTP problem.</li>\n</ul>\n\n<h4>2.9.5.2</h4>\n\n<ul>\n<li>(30 Nov 2010) - Fix - last update included an old file causing the new \'hidden\' and \'password\' fields not to show up on form.</li>\n</ul>\n\n<h4>2.9.5.1</h4>\n\n<ul>\n<li>(19 Nov 2010) - Added extra field types for \'hidden\' and \'password\' entry.</li>\n<li>Added option to preserve white space on Message field. Normally the Message field will have all extra white space removed. Enabling this setting will allow all the Message field white space to be preserved.</li>\n<li>Updated Farsi(Persian)(fa_IR) partial translation - Translated by Ramin Firooz</li>\n</ul>\n\n<h4>2.9.5</h4>\n\n<ul>\n<li>(05 Nov 2010) - Added extra field type for \'time\' entry.</li>\n<li>Small code improvements for CAPTCHA function.</li>\n<li>Added Farsi(Persian)(fa) partial translation - Translated by Ramin Firooz</li>\n</ul>\n\n<h4>2.9.4.1</h4>\n\n<ul>\n<li>(27 Oct 2010) - Fix Backup Settings tool download hang on Firefox.</li>\n<li>Added Japanese (ja) - Translated by [Ichiro Kozuka]</li>\n</ul>\n\n<h4>2.9.4</h4>\n\n<ul>\n<li>(11 Oct 2010) - Added new option for what should happen if Akismet determines the message is spam. If you select \"block spam messages\". If Akismet determines the message is spam: An error will display \"Invalid Input - Spam?\" and the form will not send. If you select \"tag as spam and send anyway\". If Akismet determines the message is spam: The message will send and the subject will begin with \"Akismet: Spam\". This way you can have Akismet on and be sure not to miss a message.</li>\n<li>Added more years to the extra date field date selector (1930-2037).</li>\n<li>Fixed order of extra field options on admin settings page.</li>\n<li>Added Arabic (ar) - Translated by [Mouad] translated only the public side of the form</li>\n<li>Updated Russian (ru_RU) - Translated by [Petr Perstnev]</li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>2.9.3</h4>\n\n<ul>\n<li>(20 Sep 2010) - Added new setting so Akismet can now be set to off for the forms. The new setting is individual to each form.</li>\n<li>Added new email footer message for \"Akismet Spam Check: passed\".</li>\n<li>Added more date format types for the calendar date setting.</li>\n</ul>\n\n<h4>2.9.2</h4>\n\n<ul>\n<li>(05 Sep 2010) - Fixed bug that caused form radio or select default to always be 0.</li>\n<li>Fixed form action URL posted to wrong page when form is in a sidebar widget.</li>\n<li>New transparent audio and refresh images for the CAPTCHA, will look better on dark themes.</li>\n<li>Updated Danish (da_DK) - Translated by <a href=\"http://wordpress.blogos.dk/wpdadkdownloads/\">GeorgWP</a></li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Updated French (fr_FR) - Translated by <a href=\"http://Rhialto.com/\">Daniel</a></li>\n</ul>\n\n<h4>2.9.1</h4>\n\n<ul>\n<li>(28 Aug 2010) - Fixed critical HTML errors on admin settings page.</li>\n<li>Improved autoresponder settings (now in new fieldset) on admin settings page.</li>\n<li>Added new setting: \"Enable using HTML in autoresponder E-mail message\".</li>\n<li>Added new setting: \"Advanced Options - Stay Open\" to make the Advance Options always stay open.</li>\n</ul>\n\n<h4>2.9</h4>\n\n<ul>\n<li>(23 Aug 2010) - New style for admin settings page.</li>\n<li>New preview form feature for admin settings page. <a href=\"http://www.fastsecurecontactform.com/tip-form-preview\">more about preview mode</a></li>\n<li>Added automatic SSL support for the CAPTCHA URL.</li>\n<li>Added download count and star rating on admin options page. </li>\n<li>Improved error messages when detecting possible email injection attempts.</li>\n<li><a href=\"http://www.fastsecurecontactform.com/faq-wordpress-version\">New official FAQ at FastSecureContactForm.com</a></li>\n</ul>\n\n<h4>2.8.3</h4>\n\n<ul>\n<li>(15 Aug 2010) - New homepage: <a href=\"http://www.FastSecureContactForm.com/\" rel=\"nofollow\">http://www.FastSecureContactForm.com/</a></li>\n<li>Added attachment directory permissions check.</li>\n<li>Fixed error when increasing number of fields.</li>\n<li>Renamed plugin to \"Fast Secure Contact Form\"</li>\n<li>Added rel=\"nofollow\" tag to CAPTCHA Audio and Refresh links for better SEO.</li>\n<li>Removed CAPTCHA WAV sound files, mp3 ones smaller size.</li>\n<li>Updated Dutch</li>\n<li>Updated Italian</li>\n</ul>\n\n<h4>2.8.2</h4>\n\n<ul>\n<li>(07 Aug 2010) - More improvements to the CAPTCHA test page. </li>\n<li>Added captcha-temp directory permission check to alert the admin if there is a problem. This check is on the admin settings page, the captcha test page, and when posting the captcha.</li>\n</ul>\n\n<h4>2.8.1</h4>\n\n<ul>\n<li>(01 Aug 2010) - PHP Sessions are no longer required for the CAPTCHA. The new method uses temporary files to store the CAPTCHA codes until validation. PHP sessions can still be reactivated by unchecking the setting: \"Use CAPTCHA without PHP session\".</li>\n<li>Added Akismet spam prevention status to the contact form settings page, so you can know if Akismet is protecting or not.</li>\n<li>Added more help notes to the admin settings page.</li>\n<li>Fixed extra forms were not deleted when when decreasing the number of available forms.</li>\n<li>Fixed to redirect to Form 1 when changing the number of available forms.</li>\n<li>Improved the CAPTCHA Test Page.</li>\n</ul>\n\n<h4>2.8</h4>\n\n<ul>\n<li>(25 Jul 2010) - Added much requested Backup/restore tool. You can backup/restore all your forms or single forms and settings using a tool at the bottom of the settings page.</li>\n<li>Added new settings: \'Autoresponder E-mail From name\', and \'Autoresponder E-mail \"Reply To\" address\'.</li>\n<li>Added ability to set subject by URL GET method: ?si_contact_subject=I would like to adopt Freddy.</li>\n<li>Fixed email \"Reply to\" header to be from sender when appropriate so that replying to the email goes back to sender.</li>\n<li>More improvements to email sending and testing functions.</li>\n<li>Improved fieldset feature. Renamed fieldset(group) to fieldset(box-open) and added fieldset(box-close).  </li>\n<li>Minor improvements to display.</li>\n<li>Updated German</li>\n</ul>\n\n<h4>2.7.4</h4>\n\n<ul>\n<li>(19 Jul 2010) - Fixed blank subject when using optional email subject list.</li>\n<li>Fixed AutoResponder is from person filling the form instead of from WordPress admin.</li>\n<li>Fixed email delivery for some servers that require 5th parameter -f to PHP mail function.</li>\n<li>Updated FAQ page for better help when mail is not sending: <a href=\"http://wordpress.org/extend/plugins/si-contact-form/faq/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/si-contact-form/faq/</a></li>\n<li>Improved the E-mail test feature at the bottom of the settings page, use to troubleshooting mail delivery problems.</li>\n<li>Added option to use geekMail library for sending mail, try when having mail delivery problems.</li>\n<li>Added more style settings.</li>\n<li>Other small improvements.</li>\n</ul>\n\n<h4>2.7.3</h4>\n\n<ul>\n<li>(12 Jul 2010) - Critical fix for broken checkbox feature in IE8 caused by version 2.7.2</li>\n<li>Added more date format types for the date extra field.</li>\n</ul>\n\n<h4>2.7.2</h4>\n\n<ul>\n<li>(11 Jul 2010) - Added \"Name field format:\" so you can select how the name field is formatted on the form. Name, First Name, Last Name, etc. </li>\n<li>Added autoresponder E-mail message feature. Enable when you want the form to automatically answer with an autoresponder E-mail message.</li>\n<li>Added Optional notes/help for extra form fields. Use the optional notes/help to print some notes or instructions before a form field. This is for the form display only, not E-mail. HTML is allowed. </li>\n<li>Fixed \"Attachment upload failed\" message when attachment is not set to required.</li>\n<li>Improved email newline handling(some windows servers are really picky).</li>\n<li>Improved CAPTCHA image alignment and other minor fixes.</li>\n<li>Updated Danish (da_DK) - Translated by <a href=\"http://wordpress.blogos.dk/wpdadkdownloads/\">GeorgWP</a></li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Updated German (de_DE) - Translated by [Rico]</li>\n</ul>\n\n<h4>2.7.1</h4>\n\n<ul>\n<li>(04 Jul 2010) - Added fieldset(group) feature to extra fields. The fieldset is used to draw a box around related form elements.</li>\n<li>Added more language strings to date field.</li>\n<li>Added setting: \"Date field - Calendar Start Day of the Week:\"</li>\n<li>Added new setting: \"Move extra fields to after the Message field.\"</li>\n<li>Fixed rare problem on some servers, CAPTCHA image had missing letters.</li>\n</ul>\n\n<h4>2.7</h4>\n\n<ul>\n<li>(27 Jun 2010) - Added file attachment feature, see here for details: <a href=\"http://wordpress.org/support/topic/416371\" rel=\"nofollow\">http://wordpress.org/support/topic/416371</a></li>\n<li>Added setting: \"Enable users to send HTML code in the textarea extra field types.\"(off by default).</li>\n<li>Added setting: \"Enable sender information in E-mail footer.\"(on by default).</li>\n<li>Added HTML anchor tags to bring focus to the form when used on a page with lots of content before the form. </li>\n</ul>\n\n<h4>2.6.5</h4>\n\n<ul>\n<li>(23 Jun 2010) - CSS fix form field margins were too big on Twenty Ten Theme in WP 3.0</li>\n<li>Single checkbox can have a comma in the label(as long is there is no semicolon because then it becomes a multi-checkbox).</li>\n</ul>\n\n<h4>2.6.4</h4>\n\n<ul>\n<li>(11 Jun 2010) - Added ability to set both a name and email on the \"E-mail From (optional):\" field .You can enter just an email: <a href=\"mailto:user1@example.com\">user1@example.com</a>\nOr enter name and email: webmaster,user1@example.com </li>\n<li>Fixed missing shortcode example on admin page.</li>\n<li>Fixed so subject prefix can be blank.</li>\n<li>Added more field indicator options in Advanced Options - Fields</li>\n<li>Added Finnish (fi) - Translated by <a href=\"http://www.guimikko.com/\">Mikko Vahatalo</a> </li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>2.6.3</h4>\n\n<ul>\n<li>(30 May 2010) - Added setting to switch from wordpress mail function to PHP mail function. This setting can resolve some rare mail delivery problems.</li>\n<li>Fixed so checkboxes can have default selected.</li>\n<li>Fixed HTML5 compatible(with CAPTCHA flash audio off).</li>\n<li>Fixed required indicator now has proper class <code>&#60;span class=\"required\"&#62;*&#60;/span&#62;</code>. </li>\n<li>Fixed syntax bug on extra \'date\' fields.</li>\n<li>Fixed for Simple Facebook Connect compatibility (fixes broken CAPTCHA caused by SFC Like and Share plugins).</li>\n</ul>\n\n<h4>2.6.2</h4>\n\n<ul>\n<li>(21 May 2010) - Fixed major bug: All text and textarea extra fields were missing from email. Sorry for the inconvenience. There are so many who use it,  I updated it right away.</li>\n</ul>\n\n<h4>2.6.1</h4>\n\n<ul>\n<li>(19 May 2010) - Fixed bug: all checkboxes appeared selected in the email. </li>\n<li>Fixed to allow HTML in extra field labels.</li>\n</ul>\n\n<h4>2.6</h4>\n\n<ul>\n<li>(19 May 2010) - Fix for XHTML Strict compliance.</li>\n<li>Improved CAPTCHA CSS code (better alignment captcha, refresh, and audio images).</li>\n<li>Added advanced options for date format on extra \'date\' fields (mm/dd/yyyy, dd/mm/yyyy).</li>\n<li>Added advanced options to set checkboxes with children (Pizza Toppings:,olives;mushrooms;cheese;ham;tomatoes).</li>\n<li>Added advanced options to set a default selected item for select and radio fields.</li>\n<li>Added advanced options to make name, email, subject, or message fields (not_available, not_required, or required).\nthis feature can be used to make an anonymous comment form. Also can be used to disable name and email to make them reordered when using extra fields.</li>\n<li>Updated Spanish (es_ES) - Translated by Sergio Torres.</li>\n</ul>\n\n<h4>2.5.6</h4>\n\n<ul>\n<li>(15 May 2010) - Made WP3 Compatible.</li>\n</ul>\n\n<h4>2.5.5</h4>\n\n<ul>\n<li>(07 May 2010) - Fixed to be compatible with *www.com domain name.</li>\n<li>Added extra field type for \"date\", this new field can be used for a hotel registration form and uses a popup \"Epoch DHTML Calendar\" 1.06 by Nick Baicoianu from meanfreepath.com</li>\n</ul>\n\n<h4>2.5.4</h4>\n\n<ul>\n<li>(01 May 2010) - Fixed small issue with \"enable hidden message\" option.</li>\n<li>Fixed small issue with \"email from\" option.</li>\n<li>Improved CAPTCHA testpage.</li>\n</ul>\n\n<h4>2.5.3</h4>\n\n<ul>\n<li>(23 Apr 2010) - Added Dutch (nl_NL) - Translated by [Mark Visser]</li>\n<li>Added Swedish (sv_SE) - Translated by <a href=\"http://walktheline.boplatsen.se/\">Daniel Persson</a></li>\n</ul>\n\n<h4>2.5.2</h4>\n\n<ul>\n<li>(16 Apr 2010) - Added Hungarian (hu_HU) - Translated by <a href=\"http://dmgmedia.hu\">Jozsef Burgyan</a></li>\n<li>Updated Polish (pl_PL) - Translated by [Pawel Mezyk]</li>\n</ul>\n\n<h4>2.5.1</h4>\n\n<ul>\n<li>(09 Apr 2010) - Fixed bug in reset styles feature.</li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>2.5.0</h4>\n\n<ul>\n<li>(05 Apr 2010) - Added setting to add optional drop down list for email subject.</li>\n<li>Added setting to make the CAPTCHA image smaller.</li>\n<li>Added settings to increase number of forms and have more extra fields (editing code is no longer needed).</li>\n<li>Fixed so multiple forms can be on the same page. </li>\n<li>Added editable text label setting for (* denotes required field).</li>\n<li>Added more style settings in Advanced Options. You can use inline css, or add a class property to be used by your own stylsheet.\nAcceptable Examples:\ntext-align:left; color:#000000; background-color:#CCCCCC;\nstyle=\"text-align:left; color:#000000; background-color:#CCCCCC;\"\nclass=\"input\"</li>\n<li>Split code into 4 smaller files for better performance.</li>\n<li>Other bug fixes.</li>\n</ul>\n\n<h4>2.0.2</h4>\n\n<ul>\n<li>(16 Mar 2010) - Added radio and select configuration error checking. Fix display of radio input fields to be on separate lines.</li>\n<li>Fixed multiple BCC feature, it was only accepting one BCC.</li>\n<li>Updated German (de_DE) and Bulgarian (bg_BG)</li>\n</ul>\n\n<h4>2.0.1</h4>\n\n<ul>\n<li>(06 Feb 2010) - Fix Invalid Input error when the word \"donkey\" is in the input string.</li>\n<li>Added Polish (pl_PL) - Translated by [Pawel Mezyk]</li>\n<li>Fixed Greek language file name.</li>\n</ul>\n\n<h4>2.0</h4>\n\n<ul>\n<li>(26 Jan 2010) - Added required field indicators (can be disabled in settings if you do not like them).</li>\n<li>Added setting to adjust redirect delay seconds(range of 1-5 recommended).</li>\n<li>Added setting to hide message entry, now you can hide subject and message fields for use as a newsletter signup.</li>\n<li>Added selectable extra field types: text, textarea, checkbox, radio, select. Note: When using select or radio field types, first enter the label and a comma. Next include the options separating with a semicolon like this example: Color:,Red;Green;Blue </li>\n</ul>\n\n<h4>1.9.6</h4>\n\n<ul>\n<li>(31 Dec 2009) - New setting for a few people who had problems with the text transparency \"Disable CAPTCHA transparent text (only if captcha text is missing on the image, try this)\".</li>\n<li>Added Hebrew, Israel (he_IL) - Translated by <a href=\"http://web.freeall.org\">Asaf Chertkoff FreeAllWeb GUILD</a> </li>\n</ul>\n\n<h4>1.9.5</h4>\n\n<ul>\n<li>(04 Dec 2009) - Fix slashes issue on some servers.</li>\n<li>More improvements for CAPTCHA images and fonts.</li>\n</ul>\n\n<h4>1.9.4</h4>\n\n<ul>\n<li>(30 Nov 2009) - Fix blank CAPTCHA text issue some users were having.</li>\n<li>Added CAPTCHA difficulty level setting on the settings page (Low, Medium, Or High).</li>\n<li>Added Portuguese (pt_PT) - Translated by <a href=\"http://pws.op351.net/\">AJBFerreira Blog</a></li>\n</ul>\n\n<h4>1.9.3</h4>\n\n<ul>\n<li>(23 Nov 2009) - Fix completely broke CAPTCHA, sorry about that</li>\n</ul>\n\n<h4>1.9.2</h4>\n\n<ul>\n<li>(23 Nov 2009) - Added 5 random CAPTCHA fonts.</li>\n<li>Added feature to increase the number of extra form fields available (see faq if you need it).</li>\n<li>Fixed fail over to GD Fonts on the CAPTCHA when TTF Fonts are not enabled in PHP (it was broken).</li>\n</ul>\n\n<h4>1.9.1</h4>\n\n<ul>\n<li>(21 Nov 2009) - Fixed Flash audio was not working.</li>\n<li>Added Spanish (es_ES) - Translated by <a href=\"http://www.activosenred.com/\">Valentin Yonte Rodriguez</a></li>\n</ul>\n\n<h4>1.9</h4>\n\n<ul>\n<li>(20 Nov 2009) - Updated to SecureImage CAPTCHA library version 2.0</li>\n<li>New CAPTCHA features include: increased CAPTCHA difficulty using mathematical distortion, streaming MP3 audio of CAPTCHA code using Flash, random audio distortion, better distortion lines, random backgrounds and more.</li>\n<li>Other minor fixes.</li>\n</ul>\n\n<h4>1.8.4</h4>\n\n<ul>\n<li>(10 Nov 2009) - Added advanced option to edit the CAPTCHA input field size.</li>\n<li>Other minor fixes.</li>\n</ul>\n\n<h4>1.8.3</h4>\n\n<ul>\n<li>(09 Nov 2009) - Fix Submit button spacing.</li>\n</ul>\n\n<h4>1.8.2</h4>\n\n<ul>\n<li>(03 Nov 2009) - Added feature to increase the number of forms available (see faq if you need it).</li>\n<li>Fix for settings not being deleted when plugin is deleted from admin page.</li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Added Albanian (sq_AL) - Translated by <a href=\"http://www.romeolab.com\">Romeo Shuka</a></li>\n</ul>\n\n<h4>1.8.1</h4>\n\n<ul>\n<li>(02 Nov 2009) - Fixed error \"Could not read CAPTCHA cookie\" on some installs using version 1.8</li>\n</ul>\n\n<h4>1.8</h4>\n\n<ul>\n<li>(02 Nov 2009) - Added Multi-Form feature that allows you to have up to four different forms on your site.</li>\n<li>Added Bulgarian (bg_BG) - Translated by <a href=\"http://chereshka.net/\">Dimitar Atanasov</a></li>\n</ul>\n\n<h4>1.7.7</h4>\n\n<ul>\n<li>(30 Oct 2009) - Fixed issue on some sites with blank css fields that caused image misalignment.</li>\n<li>Added advanced option to edit the CSS style for border on the contact form.</li>\n</ul>\n\n<h4>1.7.6</h4>\n\n<ul>\n<li>(27 Oct 2009) - Added advanced option to edit the CSS style for contact drop down select on the contact form.</li>\n<li>HTML validation fix.</li>\n</ul>\n\n<h4>1.7.5</h4>\n\n<ul>\n<li>(21 Oct 2009) - Added Chinese (zh_CN) - Translated by <a href=\"http://www.awuit.cn/\">Awu</a> </li>\n<li>Added Greek (el) - Translated by <a href=\"http://www.jbaron.gr/\">Ioannis</a></li>\n</ul>\n\n<h4>1.7.4</h4>\n\n<ul>\n<li>(03 Oct 2009) - Fixed advanced setting: CSS style for form input fields. Changing background color did not work.</li>\n<li>Added setting to Enable hidden E-mail subject (removes subject field from contact form).  </li>\n</ul>\n\n<h4>1.7.3</h4>\n\n<ul>\n<li>(01 Oct 2009) - Updated links to my other plugins.</li>\n<li>Danish (da_DK) - Updated by <a href=\"http://wordpress.blogos.dk\">Georg / Team Blogos</a></li>\n</ul>\n\n<h4>1.7.2</h4>\n\n<ul>\n<li>(30 Sep 2009) - Fixed settings were deleted at deactivation. Settings are now only deleted at uninstall.</li>\n</ul>\n\n<h4>1.7.1</h4>\n\n<ul>\n<li>(29 Sep 2009) - Fix credit link position. </li>\n<li>Some people wanted to change the error messages for the contact form. Advanced settings fields can be filled in to override the standard included error messages.</li>\n</ul>\n\n<h4>1.7</h4>\n\n<ul>\n<li>(28 Sep 2009) - Added 8 optional extra fields. Some people requested extra contact form fields that could be used for phone number, company name, etc. To enable an extra field from the advanced options, just enter a label. Then check if you want the field to be required or not.</li>\n</ul>\n\n<h4>1.6.8</h4>\n\n<ul>\n<li>(22 Sep 2009) - Fix, some sites reported a image path problem. (I think it is correct now). </li>\n</ul>\n\n<h4>1.6.7</h4>\n\n<ul>\n<li>(22 Sep 2009) - Fix, some sites reported a path problem with \"Blog address\" is different domain than \"WordPress address\".</li>\n<li>Added setting to enable upper case alphabet correction. </li>\n<li>Added more fields in \"advanced options\".</li>\n<li>Minor code cleanup.</li>\n</ul>\n\n<h4>1.6.6</h4>\n\n<ul>\n<li>(21 Sep 2009) - Fix \"Invalid Input\" error on installations where \"Blog address\" is different domain than \"WordPress address\".</li>\n<li>More sanity checks on Form DIV Width setting.</li>\n<li>Added ability to use dashes or underscores in shortcode: <code>&#x5b;si-contact-form]</code> or <code>&#x5b;si_contact_form]</code>.</li>\n</ul>\n\n<h4>1.6.5</h4>\n\n<ul>\n<li>(18 Sep 2009) - Added proper nonce protection to options forms. </li>\n<li>Added option to reset the styles to defaults (incase you tried to adjust them and did not like the results).</li>\n<li>Fixed typo in file name for Portuguese - Brazil language (pt_BR).</li>\n<li>Fixed several language files [BR, FR, NO, DE...] had word \"Submit\" spelled as \"submit\".</li>\n</ul>\n\n<h4>1.6.4</h4>\n\n<ul>\n<li>(14 Sep 2009) - Added E-mail test feature in options, if you are not receiving mail, try it. It will display troubleshooting information.</li>\n<li>Added error check for wp_mail send, this is helful to troubleshoot mail delivery. </li>\n<li>Added a warning message on Options page for when the web host has mail() function disabled.</li>\n</ul>\n\n<h4>1.6.3</h4>\n\n<ul>\n<li>(13 Sep 2009) - Added new advanced options for CSS style of captcha image, audio image, reload image, and submit button.</li>\n<li>Fixed coding for XHTML Strict validation.</li>\n<li>Added Ukrainian language (uk_UA) - Translated by <a href=\"http://wordpress.ua/\">Wordpress.Ua</a></li>\n</ul>\n\n<h4>1.6.2</h4>\n\n<ul>\n<li>(11 Sep 2009) - Added new feature in options: \"Enable checking DNS records for the domain name when checking for a\nvalid E-mail address.\" It looks for any of the following: A record, a CNAME record, or MX record.(enabled by default).</li>\n<li>Updated FAQ</li>\n</ul>\n\n<h4>1.6.1</h4>\n\n<ul>\n<li>(11 Sep 2009) - Fixes error if you are upgrading from prior version: Fatal error: Call to a member function <code>si_contact_migrate()</code> on a non-object in si-contact-form.php on line 1461</li>\n<li>If you get this error and cannot access your WP site: the manual fix is to delete the <code>si-contact-form.php</code> file from the <code>plugins/si-contact-form/</code> directory, your site will start working again. Then you can install this new version.<br />\nSee this <a href=\"http://wordpress.org/support/topic/309925\">forum post</a></li>\n</ul>\n\n<h4>1.6</h4>\n\n<ul>\n<li>(10 Sep 2009) - Auto form fill is automatically skipped for any user with administrator role.</li>\n<li>New option: Auto form fill can be enabled/disabled in advanced options(enabled by default).</li>\n<li>Plugin options are now stored in a single database row instead of many. (it will auto migrate/cleanup old database rows).</li>\n<li>Language files are now stored in the <code>si-contact-form/languages</code> folder.</li>\n<li>Options are deleted when this plugin is deleted.</li>\n<li>Added help links on options page.</li>\n<li>Added Portuguese Brazil (pt_BR) - Translated by [Rui Alao]</li>\n<li>Updated Russian (ru_RU) - Translated by <a href=\"http://www.sprestij.ru/\">Bezraznizi</a></li>\n<li>Updated Turkish (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n</ul>\n\n<h4>1.5</h4>\n\n<ul>\n<li>(9 Sep 2009) - New feature: I added an \"advanced options\" section to the options page. Some people wanted to change the text labels for the contact form.\nThese advanced options fields can be filled in to override the standard included field titles.</li>\n<li>Other minor code changes.</li>\n</ul>\n\n<h4>1.4.4</h4>\n\n<ul>\n<li>(08 Sep 2009) - Fixed possible error: \"mail could not be sent because host may have disabled email function()\"</li>\n</ul>\n\n<h4>1.4.3</h4>\n\n<ul>\n<li>(08 Sep 2009) - Fixed redirect/logout problem on admin menu reported by a user.</li>\n<li>Removed blog name from top of email message body.</li>\n</ul>\n\n<h4>1.4.2</h4>\n\n<ul>\n<li>(07 Sep 2009) - Added configurable email subject prefix in options.</li>\n<li>Added configurable border width in options.</li>\n<li>Auto form fill is now disabled for admin, but still works for other logged in users.</li>\n<li>Other minor fixes.</li>\n</ul>\n\n<h4>1.4.1</h4>\n\n<ul>\n<li>(06 Sep 2009) - Added feature: Auto form fill email address and name (username) on the contact form for logged in users.</li>\n<li>Added feature: prints \"From a WordPress user: <code>&#60;username&#62;</code>\" on email footer for logged in users.</li>\n<li>Added feature: Date/Time timestamp on email footer (uses Date/Time format from general options setting).</li>\n<li>Added Russian Language (ru_RU) - Translated by <a href=\"http://www.sprestij.ru/\">Bezraznizi</a></li>\n</ul>\n\n<h4>1.4</h4>\n\n<ul>\n<li>(06 Sep 2009) Now uses wp_mail function so that users who use the SMTP mail plugins will be supported.</li>\n<li>Now sends email encoded in the character encoding you write your blog in, (UTF-8 is recommended) see <code>Settings</code>, <code>Reading</code> admin options page.</li>\n<li>New feature: Now you can have multiple E-mails per contact, this is called a CC(Carbon Copy). If you need to add more than one contact, see the example: click \"help\" on the <code>Contact Form Options Page</code>. </li>\n<li>Fixed error \"Bad parameters to mail() function\" reported by a couple users.</li>\n<li>Fixed error \"Call to undefined function <code>mb_detect_encoding()</code>\" reported by one user.</li>\n<li>Many hours were put into this free plugin. Please donate, even small amounts like $2.99 are welcome.</li>\n</ul>\n\n<h4>1.3</h4>\n\n<ul>\n<li>(04 Sep 2009) Added Feature: This contact form sends E-mail with UTF-8 character encoding for US and International character support.(fee FAQ)</li>\n<li>Added Danish Language (da_DK) - Translated by <a href=\"http://www.ohyeah-webdesign.dk\">Thomas J. Langer</a></li>\n<li>fixed an issue with the \"Welcome introduction\" field translation not translating.</li>\n</ul>\n\n<h4>1.2.5</h4>\n\n<ul>\n<li>(02 Sep 2009) Added Norwegian language (nb_NO) - Translated by <a href=\"http://roger.inro.net/\">Roger Sylte</a></li>\n</ul>\n\n<h4>1.2.4</h4>\n\n<ul>\n<li>(02 Sep 2009) Added German Language (de_DE) - Translated by <a href=\"http://sebastian.kreideweiss.info/\">Sebastian Kreideweiss</a></li>\n</ul>\n\n<h4>1.2.3</h4>\n\n<ul>\n<li>(01 Sep 2009) Fixed email validation on some windows servers</li>\n<li>Added Traditional Chinese, Taiwan Language (zh_TW) - Translated by [Cjh]</li>\n<li>Added French language (fr_FR) - Translated by <a href=\"http://pierre.sudarovich.free.fr/\">Pierre Sudarovich</a></li>\n</ul>\n\n<h4>1.2.2</h4>\n\n<ul>\n<li>(31 Aug 2009) Added Italian language (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>1.2.1</h4>\n\n<ul>\n<li>(31 Aug 2009) Added more diagnostic test scripts: a Cookie Test, Captcha test, and a PHP Requirements Test.\nClick on the \"Test if your PHP installation will support the CAPTCHA\" link on the Options page.\nor open this URL in your web browser to run the test:</li>\n</ul>\n\n<pre><code>/wp-content/plugins/si-contact-form/captcha-secureimage/test/index.php</code></pre>\n\n<h4>1.2</h4>\n\n<ul>\n<li>(31 Aug 2009) Translations were not working</li>\n</ul>\n\n<h4>1.1.7</h4>\n\n<ul>\n<li>(31 Aug 2009) Cookie error improvements.</li>\n</ul>\n\n<h4>1.1.6</h4>\n\n<ul>\n<li>(30 Aug 2009) Added a Cookie Test to help diagnose if a web browser has cookies disabled.\nClick on the \"Test if your PHP installation will support the CAPTCHA\" link on the Options page.\nor open this URL in your web browser to run the test:</li>\n</ul>\n\n<pre><code>/wp-content/plugins/si-contact-form/captcha-secureimage/test/index.php</code></pre>\n\n<h4>1.1.5</h4>\n\n<ul>\n<li>(30 Aug 2009) Improved Akismet function (checks for <code>wordpress_api_key</code>)</li>\n<li>Hide CAPTCHA for registered users is now disabled by default(configurable in Options)</li>\n</ul>\n\n<h4>1.1.4</h4>\n\n<ul>\n<li>(29 Aug 2009) Improved <code>ctf_validate_email</code> function and fixed a bug that invalidated email address with upper case</li>\n</ul>\n\n<h4>1.1.3</h4>\n\n<ul>\n<li>(29 Aug 2009) Added this script to be used to test if your PHP installation will support the CAPTCHA:\nOpen this URL in your web browser to run the test:</li>\n</ul>\n\n<pre><code>/wp-content/plugins/si-contact-form/captcha-secureimage/secureimage_test.php</code></pre>\n\n<h4>1.1.2</h4>\n\n<ul>\n<li>(28 Aug 2009) Updated Turkish language (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n</ul>\n\n<h4>1.1.1</h4>\n\n<ul>\n<li>(28 Aug 2009) Added Turkish language (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n<li>CAPTCHA fix - Added Automatic fail over from TTF Fonts to GD Fonts if the PHP installation is configured without \"--with-ttf\".\nSome users were reporting there was no error indicating this TTF Fonts not supported condition and the captcha was not working.</li>\n</ul>\n\n<h4>1.1</h4>\n\n<ul>\n<li>(28 Aug 2009) Added multi \"email to\" contact feature. Add as many contacts as you need in Options. The drop down list on the contact form will be made automatically.</li>\n</ul>\n\n<h4>1.0.3</h4>\n\n<ul>\n<li>(28 Aug 2009) fix options permission bug introduced by last update, sorry</li>\n</ul>\n\n<h4>1.0.2</h4>\n\n<ul>\n<li>(27 Aug 2009) Added Akismet spam protection. Checks the form input with Akismet, but only if Akismet plugin is also installed.</li>\n<li>added settings link to the plugin action links.</li>\n</ul>\n\n<h4>1.0.1</h4>\n\n<ul>\n<li>(26 Aug 2009) fixed deprecated ereg_replace and eregi functions for PHP 5.3+ compatibility when error warnings are on</li>\n</ul>\n\n<h4>1.0</h4>\n\n<ul>\n<li>(26 Aug 2009) Initial Release</li>\n</ul>\";s:3:\"faq\";s:6104:\"<p><a href=\"http://www.fastsecurecontactform.com/faq-wordpress-version\">See the official FAQ at FastSecureContactForm.com</a></p>\n\n<h4>I just installed this and do not get any email from it, what could be wrong?</h4>\n\n<p><a href=\"http://www.fastsecurecontactform.com/email-does-not-send\">See FAQ page: How to troubleshoot email delivery</a></p>\n\n<h4>Is this plugin available in other languages?</h4>\n\n<p>Yes. To use a translated version, you need to obtain or make the language file for it.\nAt this point it would be useful to read <a href=\"http://codex.wordpress.org/Installing_WordPress_in_Your_Language\" title=\"Installing WordPress in Your Language\">Installing WordPress in Your Language</a> from the Codex. You will need an .mo file for this plugin that corresponds with the \"WPLANG\" setting in your wp-config.php file. Translations are listed below -- if a translation for your language is available, all you need to do is place it in the <code>/wp-content/plugins/si-contact-form/languages</code> directory of your WordPress installation. If one is not available, and you also speak good English, please consider doing a translation yourself (see the next question).</p>\n\n<p>The following translations are included in the download zip file:</p>\n\n<ul>\n<li>Albanian (sq_AL) - Translated by <a href=\"http://www.romeolab.com\">Romeo Shuka</a></li>\n<li>Arabic (ar) partial translation - Translated by Jasmine Hassan</li>\n<li>Bulgarian (bg_BG) - Translated by <a href=\"http://chereshka.net\">Dimitar Atanasov</a></li>\n<li>Chinese (zh_CN) - Translated by <a href=\"http://www.awuit.cn/\">Awu</a> </li>\n<li>Danish (da_DK) - Translated by <a href=\"http://wordpress.blogos.dk/wpdadkdownloads/\">GeorgWP</a></li>\n<li>Farsi(Persian)(fa_IR) partial translation - Translated by Ramin Firooz</li>\n<li>Finnish (fi) - Translated by <a href=\"http://www.guimikko.com/\">Mikko Vahatalo</a> </li>\n<li>French (fr_FR) - Translated by <a href=\"http://pierre.sudarovich.free.fr/\">Pierre Sudarovich</a></li>\n<li>German (de_DE) - Translated by <a href=\"http://sebastian.kreideweiss.info/\">Sebastian Kreideweiss</a></li>\n<li>Greek (el) - Translated by <a href=\"http://www.jbaron.gr/\">Ioannis</a></li>\n<li>Hebrew, Israel (he_IL) - Translated by Asaf Chertkoff FreeAllWeb GUILD</li>\n<li>Hungarian (hu_HU) - Translated by <a href=\"http://dmgmedia.hu\">Jozsef Burgyan</a></li>\n<li>Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Japanese (ja) - Translated by [Ichiro Kozuka]</li>\n<li>Norwegian Bokmal (nb_NO) - Translated by <a href=\"http://punktlig-ikt.no\">Tore Johnny Bratveit</a></li>\n<li>Polish (pl_PL) - Translated by [Pawel Mezyk]</li>\n<li>Portuguese (pt_PT) - Translated by <a href=\"http://pws.op351.net/\">AJBFerreira Blog</a></li>\n<li>Portuguese Brazil (pt_BR) - Translated by [Rui Alao]</li>\n<li>Romanian (ro_RO) - Translated by <a href=\"http://www.jibo.ro\">Anunturi Jibo</a></li>\n<li>Russian (ru_RU) - Translated by <a href=\"http://www.iflexion.com/\">Iflexion</a></li>\n<li>Spanish (es_ES) - Translated by <a href=\"http://www.activosenred.com/\">Valentin Yonte Rodriguez</a></li>\n<li>Swedish (sv_SE) - Translated by <a href=\"http://walktheline.boplatsen.se/\">Daniel Persson</a></li>\n<li>Traditional Chinese, Taiwan (zh_TW) - Translated by [Cjh]</li>\n<li>Turkish (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n<li>Ukrainian (uk_UA) - Translated by <a href=\"http://wordpress.ua/\">Wordpress.Ua</a></li>\n<li>More are needed... Please help translate.</li>\n</ul>\n\n<h4>Can I provide a translation?</h4>\n\n<p>Of course! \nHow to translate Fast Secure Contact Form for WordPress\n<a href=\"http://www.fastsecurecontactform.com/how-to-translate\" rel=\"nofollow\">http://www.fastsecurecontactform.com/how-to-translate</a></p>\n\n<h4>Is it possible to update the translation files for newest version?</h4>\n\n<p>How to update a translation of Fast Secure Contact Form for WordPress\n<a href=\"http://www.fastsecurecontactform.com/how-to-update-translation\" rel=\"nofollow\">http://www.fastsecurecontactform.com/how-to-update-translation</a></p>\n\n<h4>This contact form sends E-mail with UTF-8 character encoding for US and International character support.</h4>\n\n<p>English-language users will experience little to no impact. Any non-English questions or messages submitted will have unicode character encoding so that when you receive the e-mail, the language will still be viewable.</p>\n\n<p>If you receive an email with international characters and the characters look garbled with symbols and strange characters, your e-mail program may need to be set as follows:</p>\n\n<p>How to set incoming messages character encoding to Unicode(UTF-8) in various mail clients:</p>\n\n<p>Evolution:\nView &#62; Character Encoding &#62; Unicode</p>\n\n<p>Outlook Express 6, Windows Mail:\nPlease check \"Tools-&#62;Options-&#62;Read-&#62;International Settings\". Un-check \"Use default encoding format for all incoming messages\" \nNow select \"View-&#62;Encoding\", select \"Unicode(UTF-8)\"</p>\n\n<p>Mozilla Thunderbird:\nClick on Inbox.\nSelect \"View-&#62;Character Encoding\", select \"Unicode(UTF-8)\"</p>\n\n<p>Gmail:\nNo setting necessary, it just works.</p>\n\n<p>For more help... <a href=\"http://www.fastsecurecontactform.com/faq-wordpress-version\">See the official FAQ at FastSecureContactForm.com</a></p>\n\n<h4>What is the \"Set a meeting\" option I have in my form?</h4>\n\n<p>You can extend your contact form to let your users to Schedule Meetings based on your availability, meet online with web-based video, talk over phone conference, and collect payments for your time and services.</p>\n\n<p>You can enable this option in \"Accept Meeting Requests\" section at contact form settings page.\nYou can then configure your meeting preferences, set your availability and more by activating your free vCita account (again at the contact form settings).</p>\n\n<p>You can learn more about vCita at <a href=\"http://www.vcita.com?invite=FSContact\">http://www.vcita.com</a>\nIf you have any question about the Schedule Meetings feature please contact <a href=\"mailto:support@vcita.com\">support@vcita.com</a></p>\";}s:13:\"download_link\";s:57:\"http://downloads.wordpress.org/plugin/si-contact-form.zip\";s:4:\"tags\";a:11:{s:7:\"akismet\";s:7:\"Akismet\";s:10:\"buddypress\";s:10:\"buddypress\";s:7:\"captcha\";s:7:\"captcha\";s:7:\"contact\";s:7:\"contact\";s:12:\"contact-form\";s:12:\"contact form\";s:5:\"email\";s:5:\"email\";s:4:\"form\";s:4:\"form\";s:4:\"mail\";s:4:\"mail\";s:12:\"multilingual\";s:12:\"multilingual\";s:4:\"spam\";s:4:\"spam\";s:4:\"wpmu\";s:4:\"wpmu\";}}","no");
INSERT INTO wp_options VALUES("747","0","_transient_plugins_delete_result_1","1","yes");
INSERT INTO wp_options VALUES("749","0","vcita_widget","a:19:{s:5:\"title\";s:0:\"\";s:3:\"uid\";i:207058;s:11:\"new_install\";s:4:\"true\";s:7:\"version\";s:5:\"3.1.0\";s:19:\"contact_page_active\";s:4:\"true\";s:13:\"engage_active\";s:4:\"true\";s:18:\"confirmation_token\";N;s:18:\"implementation_key\";N;s:7:\"dismiss\";b:1;s:7:\"created\";i:1;s:5:\"email\";s:27:\"adam_kubizna_12@hotmail.com\";s:10:\"first_name\";s:4:\"Adam\";s:9:\"last_name\";s:7:\"Kubizna\";s:10:\"last_error\";s:0:\"\";s:7:\"page_id\";i:108;s:12:\"engage_delay\";i:15;s:11:\"engage_text\";N;s:9:\"confirmed\";b:1;s:10:\"vcita_init\";s:4:\"true\";}","yes");
INSERT INTO wp_options VALUES("1303","0","_site_transient_timeout_browser_9ebb4bcd54d62cfae319c0e229bc970d","1351109016","yes");
INSERT INTO wp_options VALUES("1304","0","_site_transient_browser_9ebb4bcd54d62cfae319c0e229bc970d","a:9:{s:8:\"platform\";s:6:\"iPhone\";s:4:\"name\";s:6:\"iPhone\";s:7:\"version\";N;s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("1322","0","jetpack_activated","1","yes");
INSERT INTO wp_options VALUES("1323","0","jetpack_options","a:9:{s:7:\"version\";s:14:\"2.2:1362628567\";s:11:\"old_version\";s:14:\"2.1:1357334351\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:41703567;s:10:\"blog_token\";s:65:\"pyP5VR%NL&8uXZfU8D9*dB38Ee4jDE%$.P0)VAx%ZULAHsqbjq#kWYjqAsaFMPNBW\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"#0Z6CJe3bQHz)dNlVP257&Kz5lrqv0X#.ntSCQohsi)#C9#b7M!kBn5Hti!)0uTzT.1\";}s:11:\"master_user\";i:1;s:6:\"public\";i:1;}","yes");
INSERT INTO wp_options VALUES("1327","0","jetpack_active_modules","a:17:{i:0;s:10:\"vaultpress\";i:1;s:18:\"after-the-deadline\";i:3;s:12:\"contact-form\";i:5;s:10:\"custom-css\";i:7;s:21:\"enhanced-distribution\";i:9;s:19:\"gravatar-hovercards\";i:11;s:5:\"latex\";i:13;s:10:\"sharedaddy\";i:15;s:10:\"shortcodes\";i:17;s:10:\"shortlinks\";i:19;s:5:\"stats\";i:21;s:13:\"subscriptions\";i:23;s:7:\"widgets\";i:25;s:11:\"mobile-push\";i:27;s:5:\"notes\";i:29;s:13:\"post-by-email\";i:31;s:9:\"publicize\";}","yes");
INSERT INTO wp_options VALUES("1329","0","stats_options","a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"blog_id\";i:41703567;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:0;s:7:\"version\";s:1:\"8\";s:9:\"reg_users\";b:0;}","yes");
INSERT INTO wp_options VALUES("1330","0","stats_cache","a:2:{s:32:\"0f9ac9ea893206cf1c270954ab850756\";a:1:{i:1362678596;a:5:{i:0;a:4:{s:7:\"post_id\";s:2:\"47\";s:10:\"post_title\";s:10:\"About Adam\";s:14:\"post_permalink\";s:33:\"http://adamkubizna.com/wordpress/\";s:5:\"views\";s:2:\"10\";}i:1;a:4:{s:7:\"post_id\";s:2:\"63\";s:10:\"post_title\";s:17:\"Adam in the Press\";s:14:\"post_permalink\";s:44:\"http://adamkubizna.com/wordpress/?page_id=63\";s:5:\"views\";s:1:\"3\";}i:2;a:4:{s:7:\"post_id\";s:2:\"68\";s:10:\"post_title\";s:9:\"My Dreams\";s:14:\"post_permalink\";s:44:\"http://adamkubizna.com/wordpress/?page_id=68\";s:5:\"views\";s:1:\"2\";}i:3;a:4:{s:7:\"post_id\";s:2:\"36\";s:10:\"post_title\";s:20:\"Where Has Adam Been?\";s:14:\"post_permalink\";s:44:\"http://adamkubizna.com/wordpress/?page_id=36\";s:5:\"views\";s:1:\"2\";}i:4;a:4:{s:7:\"post_id\";s:3:\"182\";s:10:\"post_title\";s:15:\"Public Speaking\";s:14:\"post_permalink\";s:45:\"http://adamkubizna.com/wordpress/?page_id=182\";s:5:\"views\";s:1:\"1\";}}}s:32:\"eb83bc26204ddff36d0aa48be383173b\";a:1:{i:1362678596;a:0:{}}}","yes");
INSERT INTO wp_options VALUES("1331","0","sharing-options","a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}","yes");
INSERT INTO wp_options VALUES("1806","0","_site_transient_timeout_browser_7ff96cded241a1a4d960f336ea0299f2","1352253018","yes");
INSERT INTO wp_options VALUES("1807","0","_site_transient_browser_7ff96cded241a1a4d960f336ea0299f2","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"6.0.1\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:3:\"5.1\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("1864","0","limit_login_client_type","REMOTE_ADDR","yes");
INSERT INTO wp_options VALUES("1865","0","limit_login_allowed_retries","4","yes");
INSERT INTO wp_options VALUES("1866","0","limit_login_lockout_duration","1200","yes");
INSERT INTO wp_options VALUES("1867","0","limit_login_allowed_lockouts","4","yes");
INSERT INTO wp_options VALUES("1868","0","limit_login_long_duration","86400","yes");
INSERT INTO wp_options VALUES("1869","0","limit_login_valid_duration","43200","yes");
INSERT INTO wp_options VALUES("1870","0","limit_login_lockout_notify","email","yes");
INSERT INTO wp_options VALUES("1871","0","limit_login_notify_email_after","4","yes");
INSERT INTO wp_options VALUES("1872","0","limit_login_cookies","1","yes");
INSERT INTO wp_options VALUES("1876","0","mc_interest_groups","","yes");
INSERT INTO wp_options VALUES("1877","0","mc_apikey","df433bc5f86b4a9e9872dc98cece65ce-us6","yes");
INSERT INTO wp_options VALUES("1878","0","mc_username","kubiznach","yes");
INSERT INTO wp_options VALUES("1879","0","mc_user_id","9e67a4da05b9f9f66efadf870","yes");
INSERT INTO wp_options VALUES("1880","0","mc_list_id","5875515b26","yes");
INSERT INTO wp_options VALUES("1881","0","mc_list_name","AdamKubizna.Com Newsletter","yes");
INSERT INTO wp_options VALUES("1882","0","mc_email_type_option","1","yes");
INSERT INTO wp_options VALUES("1883","0","mc_header_content","Sign up for AdamKubizna.Com Newsletter","yes");
INSERT INTO wp_options VALUES("1884","0","mc_submit_text","Subscribe me to this unique newsletter!","yes");
INSERT INTO wp_options VALUES("1885","0","mc_use_datepicker","on","yes");
INSERT INTO wp_options VALUES("1886","0","mc_custom_style","on","yes");
INSERT INTO wp_options VALUES("1887","0","mc_use_javascript","off","yes");
INSERT INTO wp_options VALUES("1888","0","mc_use_unsub_link","off","yes");
INSERT INTO wp_options VALUES("1889","0","mc_header_border_width","1","yes");
INSERT INTO wp_options VALUES("1890","0","mc_header_border_color","E3E3E3","yes");
INSERT INTO wp_options VALUES("1891","0","mc_header_background","FFFFFF","yes");
INSERT INTO wp_options VALUES("1892","0","mc_header_text_color","CC6600","yes");
INSERT INTO wp_options VALUES("1893","0","mc_form_border_width","1","yes");
INSERT INTO wp_options VALUES("1894","0","mc_form_border_color","C4D3EA","yes");
INSERT INTO wp_options VALUES("1895","0","mc_form_background","EEF3F8","yes");
INSERT INTO wp_options VALUES("1896","0","mc_form_text_color","555555","yes");
INSERT INTO wp_options VALUES("1897","0","mc_merge_vars","a:4:{i:0;a:10:{s:4:\"name\";s:13:\"Email Address\";s:3:\"req\";b:1;s:10:\"field_type\";s:5:\"email\";s:6:\"public\";b:1;s:4:\"show\";b:1;s:5:\"order\";s:1:\"1\";s:7:\"default\";N;s:8:\"helptext\";N;s:4:\"size\";s:2:\"25\";s:3:\"tag\";s:5:\"EMAIL\";}i:1;a:10:{s:4:\"name\";s:10:\"First Name\";s:3:\"req\";b:0;s:10:\"field_type\";s:4:\"text\";s:6:\"public\";b:1;s:4:\"show\";b:1;s:5:\"order\";s:1:\"2\";s:7:\"default\";s:0:\"\";s:8:\"helptext\";s:0:\"\";s:4:\"size\";s:2:\"25\";s:3:\"tag\";s:5:\"FNAME\";}i:2;a:10:{s:4:\"name\";s:9:\"Last Name\";s:3:\"req\";b:1;s:10:\"field_type\";s:4:\"text\";s:6:\"public\";b:1;s:4:\"show\";b:1;s:5:\"order\";s:1:\"3\";s:7:\"default\";s:0:\"\";s:8:\"helptext\";s:0:\"\";s:4:\"size\";s:2:\"25\";s:3:\"tag\";s:5:\"LNAME\";}i:3;a:10:{s:4:\"name\";s:27:\"What would you like to see?\";s:3:\"req\";b:0;s:10:\"field_type\";s:4:\"text\";s:6:\"public\";b:1;s:4:\"show\";b:1;s:5:\"order\";s:1:\"5\";s:7:\"default\";s:0:\"\";s:8:\"helptext\";s:0:\"\";s:4:\"size\";s:2:\"25\";s:3:\"tag\";s:7:\"MMERGE3\";}}","yes");
INSERT INTO wp_options VALUES("1898","0","mc_mv_EMAIL","on","yes");
INSERT INTO wp_options VALUES("1899","0","mc_mv_FNAME","on","yes");
INSERT INTO wp_options VALUES("1900","0","mc_mv_LNAME","on","yes");
INSERT INTO wp_options VALUES("1901","0","mc_mv_MMERGE3","off","yes");
INSERT INTO wp_options VALUES("1902","0","mc_rewards","on","yes");
INSERT INTO wp_options VALUES("1903","0","mc_subheader_content","","yes");
INSERT INTO wp_options VALUES("1904","0","widget_mailchimpsf_widget","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("2687","0","_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a","1353523757","yes");
INSERT INTO wp_options VALUES("2688","0","_site_transient_poptags_40cd750bba9870f18aada2478b24840a","a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"3406\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"2207\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"2091\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1732\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1645\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1450\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1165\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1161\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1153\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1119\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1066\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:3:\"983\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"892\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"836\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"826\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:3:\"767\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"724\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"719\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"665\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"664\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"617\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"613\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"593\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"573\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"524\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"503\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"498\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"496\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"490\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"471\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"466\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"444\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"441\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"432\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"404\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"401\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"399\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"383\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"382\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"378\";}}","yes");
INSERT INTO wp_options VALUES("2696","0","vm-backups","a:7:{s:11:\"vm_bkp_path\";s:0:\"\";s:14:\"vm_bkp_plugins\";s:2:\"on\";s:9:\"vm_bkp_db\";s:2:\"on\";s:12:\"vm_bkp_theme\";s:2:\"on\";s:15:\"vm_bkp_sendmail\";s:2:\"on\";s:12:\"vm_bkp_email\";s:27:\"adam_kubizna_12@hotmail.com\";s:6:\"submit\";s:4:\"Save\";}","yes");
INSERT INTO wp_options VALUES("2816","0","_site_transient_timeout_browser_51e024e8db82dba7de77784797fb6e69","1354507615","yes");
INSERT INTO wp_options VALUES("2817","0","_site_transient_browser_51e024e8db82dba7de77784797fb6e69","a:9:{s:8:\"platform\";s:6:\"iPhone\";s:4:\"name\";s:6:\"iPhone\";s:7:\"version\";N;s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("3110","0","_site_transient_timeout_browser_4ea0c534be3bc6af9b8e57f69be8b2a1","1355172840","yes");
INSERT INTO wp_options VALUES("3111","0","_site_transient_browser_4ea0c534be3bc6af9b8e57f69be8b2a1","a:9:{s:8:\"platform\";s:6:\"iPhone\";s:4:\"name\";s:6:\"iPhone\";s:7:\"version\";N;s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("3438","0","_transient_timeout_yoast_tracking_active_plugins_hash","1356032060","no");
INSERT INTO wp_options VALUES("3439","0","_transient_yoast_tracking_active_plugins_hash","020936caf9cbe4adc5d878373bd6d165","no");
INSERT INTO wp_options VALUES("3464","0","_transient_timeout_yoast_tracking_cache","1356032071","no");
INSERT INTO wp_options VALUES("3465","0","_transient_yoast_tracking_cache","1","no");
INSERT INTO wp_options VALUES("4229","0","_site_transient_timeout_browser_1fe194223ffbdcc335cc5b8bc7deba49","1357938805","yes");
INSERT INTO wp_options VALUES("4230","0","_site_transient_browser_1fe194223ffbdcc335cc5b8bc7deba49","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"23.0.1271.101\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("4698","0","_transient_timeout_embed_codecontact207058100%450px","1358397817","no");
INSERT INTO wp_options VALUES("4699","0","_transient_embed_codecontact207058100%450px","<iframe src=\"http://www.vcita.com/contact_form?v=a9a6413d&ver=2\" width=\"100%\" height=\"450px\" scrolling=\"no\" frameborder=\"0\" style=\"\">\n  <p>Contact Adam D. Kubizna</p>\n  <p><a href=\"http://www.vcita.com/meeting_scheduler?v=a9a6413d\" target=\"_blank\">Set a Meeting</a> or\n<a href=\"http://www.vcita.com/contact_page?v=a9a6413d\" target=\"_blank\">Send a Message</a>\n</p>\n  <p>Powered by <a href=\'http://www.vcita.com/?invite=VR_PB-207058\'>vCita</a></p>\n</iframe>\n<DIV style=\"width:100%;text-align:right;font-size:12px;color:#62656a;font-family:Arial, sans-serif\"><DIV style=\"padding: 5px 10px;\"><a href=\'http://www.vcita.com/?invite=VR_STATIC-207058&no_redirect=true\' target=\'_blank\' style=\'color:#3D60AF;text-decoration: underline;\'>Contact Form & Online Scheduling</a> by vCita</DIV></DIV>\n","no");
INSERT INTO wp_options VALUES("4738","0","_transient_timeout_embed_codewidget207058100%430px","1358486709","no");
INSERT INTO wp_options VALUES("4739","0","_transient_embed_codewidget207058100%430px","<iframe src=\"http://www.vcita.com/contact_widget?v=a9a6413d&ver=2\" width=\"100%\" height=\"430px\" scrolling=\"no\" frameborder=\"0\" style=\"max-width:525;\">\n  <p>Contact Adam D. Kubizna</p>\n  <p><a href=\"http://www.vcita.com/meeting_scheduler?v=a9a6413d\" target=\"_blank\">Set a Meeting</a> or\n<a href=\"http://www.vcita.com/contact_page?v=a9a6413d\" target=\"_blank\">Send a Message</a>\n</p>\n  <p>Powered by <a href=\'http://www.vcita.com/?invite=VR_PB-207058\'>vCita</a></p>\n</iframe>\n<DIV style=\"width:100%;max-width:525;text-align:right;font-size:12px;color:#62656a;font-family:Arial, sans-serif\"><DIV style=\"padding: 5px 10px;\"><a href=\'http://www.vcita.com/?invite=VR_STATIC-207058&no_redirect=true\' target=\'_blank\' style=\'color:#3D60AF;text-decoration: underline;\'>Powered by vCita</a></DIV></DIV>\n","no");
INSERT INTO wp_options VALUES("4740","0","_site_transient_timeout_browser_6aea14875754026e671c08ab21c76c33","1359087937","yes");
INSERT INTO wp_options VALUES("4741","0","_site_transient_browser_6aea14875754026e671c08ab21c76c33","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"24.0.1312.52\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("5113","0","_site_transient_timeout_browser_ebec2e2be660fc69f568cfb5a9766a0f","1359911821","yes");
INSERT INTO wp_options VALUES("5114","0","_site_transient_browser_ebec2e2be660fc69f568cfb5a9766a0f","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"24.0.1312.56\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("5817","0","_site_transient_timeout_browser_4071fadaf88b07467adaed3daf67fa4c","1361924958","yes");
INSERT INTO wp_options VALUES("5818","0","_site_transient_browser_4071fadaf88b07467adaed3daf67fa4c","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:5:\"6.0.2\";s:10:\"update_url\";s:28:\"http://www.apple.com/safari/\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/safari.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/safari.png\";s:15:\"current_version\";s:1:\"5\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("5862","0","_site_transient_timeout_browser_4be16c64619c81e751508305737407dd","1361938303","yes");
INSERT INTO wp_options VALUES("5863","0","_site_transient_browser_4be16c64619c81e751508305737407dd","a:9:{s:8:\"platform\";s:6:\"iPhone\";s:4:\"name\";s:6:\"iPhone\";s:7:\"version\";N;s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("5899","0","_site_transient_timeout_browser_8753fb663bab349b3c451d42aafe0da0","1362010307","yes");
INSERT INTO wp_options VALUES("5900","0","_site_transient_browser_8753fb663bab349b3c451d42aafe0da0","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"24.0.1312.57\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("6407","0","_site_transient_timeout_browser_d41fb648d39c9cf0533cd9dd04021dd3","1363231961","yes");
INSERT INTO wp_options VALUES("6408","0","_site_transient_browser_d41fb648d39c9cf0533cd9dd04021dd3","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"25.0.1364.152\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("6449","0","widget_image","a:1:{s:12:\"_multiwidget\";i:1;}","yes");
INSERT INTO wp_options VALUES("6492","0","_site_transient_timeout_browser_ff7f6543c801270d1276b8ef21194c36","1363283351","yes");
INSERT INTO wp_options VALUES("6493","0","_site_transient_browser_ff7f6543c801270d1276b8ef21194c36","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"25.0.1364.155\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("6618","0","_site_transient_timeout_browser_62a6a7d6df9d1d93c0a40547c469c2d7","1363574209","yes");
INSERT INTO wp_options VALUES("6619","0","_site_transient_browser_62a6a7d6df9d1d93c0a40547c469c2d7","a:9:{s:8:\"platform\";s:6:\"iPhone\";s:4:\"name\";s:6:\"iPhone\";s:7:\"version\";N;s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("6709","0","_site_transient_timeout_browser_57daddf5ff43235c7ff25707f291c88c","1363708623","yes");
INSERT INTO wp_options VALUES("6710","0","_site_transient_browser_57daddf5ff43235c7ff25707f291c88c","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"25.0.1364.160\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("6783","0","_site_transient_timeout_browser_b413a72ed60babf459be3d7026921ef9","1363800422","yes");
INSERT INTO wp_options VALUES("6784","0","_site_transient_browser_b413a72ed60babf459be3d7026921ef9","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"25.0.1364.172\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("7437","0","_site_transient_timeout_browser_c881d162a563c13744d797999767b246","1365439257","yes");
INSERT INTO wp_options VALUES("7438","0","_site_transient_browser_c881d162a563c13744d797999767b246","a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"26.0.1410.43\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}","yes");
INSERT INTO wp_options VALUES("7439","0","_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca","1364877661","no");
INSERT INTO wp_options VALUES("7440","0","_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:50:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2013 14:21:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://wordpress.org/?v=3.6-alpha-23883\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.5.1 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Jan 2013 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2531\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:359:\"WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2499:\"<p>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, <a href=\"http://core.trac.wordpress.org/milestone/3.5.1\">fixing 37 bugs</a>. It is also a security release for all previous WordPress versions. For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.5.1\">list of tickets</a> and the <a href=\"http://core.trac.wordpress.org/log/branches/3.5?rev=23341&amp;stop_rev=23167\">changelog</a>, which include:</p>\n<ul>\n<li>Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare cases.</li>\n<li>Media: Fix a collection of minor workflow and compatibility issues in the new media manager.</li>\n<li>Networks: Suggest proper rewrite rules when creating a new network.</li>\n<li>Prevent scheduled posts from being stripped of certain HTML, such as video embeds, when they are published.</li>\n<li>Work around some misconfigurations that may have caused some JavaScript in the WordPress admin area to fail.</li>\n<li>Suppress some warnings that could occur when a plugin misused the database or user APIs.</li>\n</ul>\n<p>Additionally, a bug affecting Windows servers running IIS can prevent updating from 3.5 to 3.5.1. If you receive the error &#8220;Destination directory for file streaming does not exist or is not writable,&#8221; you will need to <a href=\"http://codex.wordpress.org/Version_3.5.1\">follow the steps outlined on the Codex</a>.</p>\n<p>WordPress 3.5.1 also addresses the following security issues:</p>\n<ul>\n<li>A server-side request forgery vulnerability and remote port scanning using pingbacks. This vulnerability, which could potentially be used to expose information and compromise a site, affects all previous WordPress versions. This was fixed by the WordPress security team. We&#8217;d like to thank security researchers <a href=\"http://codeseekah.com/\">Gennady Kovshenin</a> and <a href=\"http://www.ethicalhack3r.co.uk/\">Ryan Dewhurst</a> for reviewing our work.</li>\n<li>Two instances of cross-site scripting via shortcodes and post content. These issues were discovered by Jon Cave of the WordPress security team.</li>\n<li>A cross-site scripting vulnerability in the external library Plupload. Thanks to the Moxiecode team for working with us on this, and for releasing Plupload 1.5.5 to address this issue.</li>\n</ul>\n<p><strong><a href=\"http://wordpress.org/download/\">Download 3.5.1</a> or visit Dashboard → Updates in your site admin to update now.</strong></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2013/01/wordpress-3-5-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"2012: A Look Back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/news/2013/01/2012-a-look-back/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2013/01/2012-a-look-back/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Jan 2013 02:22:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2525\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"Another year is coming to a close, and it&#8217;s time to look back and reflect on what we&#8217;ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jen Mylo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4441:\"<p>Another year is coming to a close, and it&#8217;s time to look back and reflect on what we&#8217;ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering.</p>\n<h4>Software Releases</h4>\n<p>We had two major releases of the WordPress web application with versions <a href=\"http://wordpress.org/news/2012/06/green/\">3.4</a> and <a href=\"http://wordpress.org/news/2012/12/elvin/\">3.5</a>, as well as 5 security releases during 2012. 3.4 included the theme customizer, while 3.5 became the long awaited &#8220;media release&#8221; featuring a new uploader and gallery management tool. 3.5 contained code contributions from more people than ever, and we hope to continue growing the contributor ranks in the year ahead. We currently have native apps on 6 mobile platforms &#8212; <a href=\"http://ios.wordpress.org/\">iOS</a>, <a href=\"http://android.wordpress.org/\">Android</a>, <a href=\"http://blackberry.wordpress.org/\">Blackberry</a>, <a href=\"http://wpwindowsphone.wordpress.com/\">Windows Phone</a>, <a href=\"http://nokia.wordpress.org/\">Nokia</a>, and <a href=\"http://webos.wordpress.org/\">WebOS</a> &#8212; and saw several updates there as well.</p>\n<h4>Plugin Directory</h4>\n<p>A number of improvements were made to the Plugin Directory in 2012. More cosmetic  updates, like the introduction of branded plugin page headers, make it a nicer browsing experience, while functional changes like better-integrated support forums, plugin reviews, and a favorites system made the plugin directory even more useful as a resource.</p>\n<h4>The &#8220;Make&#8221; Network and Team Reps</h4>\n<p>2012 was the year that saw the creation of <a href=\"http://make.wordpress.org/\">Make.wordpress.org</a>, a network of sites for the teams of contributors responsible for the different areas of the WordPress project. Now anyone can follow along and get involved with the teams that work on <a href=\"http://make.wordpress.org/core/\">core</a>, <a href=\"http://make.wordpress.org/themes/\">theme review</a>, <a href=\"http://make.wordpress.org/support/\">forum support</a>, <a href=\"http://make.wordpress.org/docs/\">documentation</a>, and more. In 2013 we&#8217;ll work to improve these sites to make it easier to become a contributor. Each team also now has elected Team Reps, a new role that has already led to more cross-team communication. Team reps post each week to the <a href=\"https://make.wordpress.org/updates/\">Updates blog</a> so that the other reps can keep up with what&#8217;s going on in other teams.</p>\n<h4>WordPress Community Summit</h4>\n<p>At the end of October, about 100 of the most influential and respected members of the WordPress community attended an inaugural <a href=\"https://make.wordpress.org/summit\">summit</a> to discuss where we all stand, and to figure out where we go next with WordPress. A &#8220;conference of conversations,&#8221; this unconference made everyone an active participant, and while not every issue brought to the table was solved by the end of the event, the right questions were being asked.</p>\n<h4>Meetup.com</h4>\n<p>The WordPress Foundation now has a central account with Meetup.com. We&#8217;ve brought in a couple dozen existing meetup groups as a pilot to test the system, and are in the process of working with more existing meetups (as well as new ones) to join us so that local organizers won&#8217;t have to pay organizer dues and can get more support from the WordPress project.</p>\n<h4>Internet Blackout Day</h4>\n<p>We participated in the protest against SOPA/PIPA, Internet Blackout Day, on January 18. Though we usually stay out of politics, this campaign was important, and we not only participated in the blackout on WordPress.org, we encouraged our users to do so as well, and recommended plugins to provide blackout functionality. It was deemed the <a href=\"http://sopastrike.com/numbers/\">largest online protest in history</a>.</p>\n<h4>WordCamps</h4>\n<p>And finally, it wouldn&#8217;t be a recap without counting up the <a href=\"http://wordcamp.org\">WordCamps</a>! There were 67 WordCamps around the world in 2012, bringing together WordPress users, developers, and fans. If you didn&#8217;t make it to a WordCamp this year, maybe it can be one of your new year resolutions: <a href=\"http://central.wordcamp.org/schedule/\">check the schedule</a> to find one near you!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/news/2013/01/2012-a-look-back/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.5 “Elvin”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://wordpress.org/news/2012/12/elvin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2012/12/elvin/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Dec 2012 16:54:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2517\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:363:\"It&#8217;s the most wonderful time of the year: a new WordPress release is available and chock-full of goodies to delight bloggers and developers alike. We&#8217;re calling this one &#8220;Elvin&#8221; in honor of drummer Elvin Jones, who played with John Coltrane in addition to many others. If you&#8217;ve been around WordPress a while, the most dramatic [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:20083:\"<p>It&#8217;s the most wonderful time of the year: a new WordPress release <a href=\"http://wordpress.org/download/\">is available</a> and chock-full of goodies to delight bloggers and developers alike. We&#8217;re calling this one &#8220;Elvin&#8221; in honor of <a href=\"http://en.wikipedia.org/wiki/Elvin_Jones\">drummer Elvin Jones</a>, who played with John Coltrane in addition to many others.</p>\n<p>If you&#8217;ve been around WordPress a while, the most dramatic new change you&#8217;ll notice is a completely re-imagined flow for uploading photos and creating galleries. Media has long been a friction point and we&#8217;ve listened hard and given a lot of thought into crafting this new system. 3.5 includes a new default theme, Twenty Twelve, which has a very clean mobile-first responsive design and works fantastic as a base for a CMS site. Finally we&#8217;ve spent a lot of time refreshing the styles of the dashboard, updating everything to be Retina-ready with beautiful high resolution graphics, a new color picker, and streamlining a couple of fewer-used sections of the admin.</p>\n<p>Here&#8217;s a quick video overview of everything you can share with your friends:</p>\n<div id=\"v-jQDfEbzZ-1\" class=\"video-player\"><embed id=\"v-jQDfEbzZ-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&amp;guid=jQDfEbzZ&amp;isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 3.5\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h3>For Developers</h3>\n<p>You can now put your (or anyone&#8217;s) WordPress.org username on the plugins page and see your favorite tagged ones, to make it easy to install them again when setting up a new site. There&#8217;s a new Tumblr importer. New installs no longer show the links manager. Finally for multisite developers <code>switch_to_blog()</code> is way faster and you can now install MS in a sub-directory. The <a href=\"http://underscorejs.org/\">Underscore</a> and <a href=\"http://backbonejs.org/\">Backbone</a> JavaScript libraries are now available. <a href=\"http://codex.wordpress.org/Version_3.5\">The Codex has a pretty good summary of the developer features above and beyond this</a>, and you can always <a href=\"http://core.trac.wordpress.org/milestone/3.5\">grab a warm beverage and explore Trac directly</a>.</p>\n<h3>Percussion Section</h3>\n<p>Behind every great release is great contributors. 3.5 had more people involved than any release before it:</p>\n<p><a href=\"http://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/aaronholbrook\">aaronholbrook</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/alyssonweb\">akbortoli</a>, <a href=\"http://profiles.wordpress.org/alecrust\">alecrust</a>, <a href=\"http://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/alexkingorg\">Alex King</a>, <a href=\"http://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/alexvorn2\">alexvorn2</a>, <a href=\"http://profiles.wordpress.org/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/andrear\">andrea.r</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/andrewryno\">Andrew Ryno</a>, <a href=\"http://profiles.wordpress.org/andrewspittle\">Andrew Spittle</a>, <a href=\"http://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"http://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"http://profiles.wordpress.org/bainternet\">Bainternet</a>, <a href=\"http://profiles.wordpress.org/barrykooij\">Barry Kooij</a>, <a href=\"http://profiles.wordpress.org/bazza\">bazza</a>, <a href=\"http://profiles.wordpress.org/bbrooks\">bbrooks</a>, <a href=\"http://profiles.wordpress.org/casben79\">Ben Casey</a>, <a href=\"http://profiles.wordpress.org/husobj\">Ben Huson</a>, <a href=\"http://profiles.wordpress.org/benkulbertis\">Ben Kulbertis</a>, <a href=\"http://profiles.wordpress.org/bergius\">bergius</a>, <a href=\"http://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"http://profiles.wordpress.org/betzster\">betzster</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/bolo1988\">bolo1988</a>, <a href=\"http://profiles.wordpress.org/bradparbs\">bradparbs</a>, <a href=\"http://profiles.wordpress.org/bradthomas127\">bradthomas127</a>, <a href=\"http://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"http://profiles.wordpress.org/brandondove\">Brandon Dove</a>, <a href=\"http://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"http://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/sennza\">Bronson Quick</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/cannona\">cannona</a>, <a href=\"http://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"http://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/cdog\">cdog</a>, <a href=\"http://profiles.wordpress.org/thee17\">Charles Frees-Melvin</a>, <a href=\"http://profiles.wordpress.org/chellycat\">chellycat</a>, <a href=\"http://profiles.wordpress.org/chexee\">Chelsea Otakan</a>, <a href=\"http://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"http://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"http://profiles.wordpress.org/chriswallace\">Chris Wallace</a>, <a href=\"http://profiles.wordpress.org/corvannoorloos\">Cor van Noorloos</a>, <a href=\"http://profiles.wordpress.org/scribu\">Cristi Burc&#259;</a>, <a href=\"http://profiles.wordpress.org/mrroundhill\">Dan</a>, <a href=\"http://profiles.wordpress.org/dan-rivera\">Dan Rivera</a>, <a href=\"http://profiles.wordpress.org/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/lessbloat\">Dave Martin</a>, <a href=\"http://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/djzone\">DjZoNe</a>, <a href=\"http://profiles.wordpress.org/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/doublesharp\">doublesharp</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes (DrewAPicture)</a>, <a href=\"http://profiles.wordpress.org/drewstrojny\">Drew Strojny</a>, <a href=\"http://profiles.wordpress.org/eddiemoya\">Eddie Moya</a>, <a href=\"http://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"http://profiles.wordpress.org/emiluzelac\">Emil Uzelac</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Empireoflight</a>, <a href=\"http://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"http://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/ericwahlforss\">ericwahlforss</a>, <a href=\"http://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/fadingdust\">fadingdust</a>, <a href=\"http://profiles.wordpress.org/f-j-kaiser\">F J Kaiser</a>, <a href=\"http://profiles.wordpress.org/foxinni\">foxinni</a>, <a href=\"http://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"http://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/geertdd\">GeertDD</a>, <a href=\"http://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/ghosttoast\">GhostToast</a>, <a href=\"http://profiles.wordpress.org/gnarf\">gnarf</a>, <a href=\"http://profiles.wordpress.org/goldenapples\">goldenapples</a>, <a href=\"http://profiles.wordpress.org/webord\">Gustavo Bordoni</a>, <a href=\"http://profiles.wordpress.org/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/hardy101\">hardy101</a>, <a href=\"http://profiles.wordpress.org/hebbet\">hebbet</a>, <a href=\"http://profiles.wordpress.org/helenyhou\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"http://profiles.wordpress.org/iamfriendly\">iamfriendly</a>, <a href=\"http://profiles.wordpress.org/iandstewart\">Ian Stewart</a>, <a href=\"http://profiles.wordpress.org/ikailo\">ikailo</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/itworx\">itworx</a>, <a href=\"http://profiles.wordpress.org/j-idris\">j-idris</a>, <a href=\"http://profiles.wordpress.org/jakemgold\">Jake Goldman</a>, <a href=\"http://profiles.wordpress.org/jakubtyrcha\">jakub.tyrcha</a>, <a href=\"http://profiles.wordpress.org/jamescollins\">James Collins</a>, <a href=\"http://profiles.wordpress.org/jammitch\">jammitch</a>, <a href=\"http://profiles.wordpress.org/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/japh\">Japh</a>, <a href=\"http://profiles.wordpress.org/jarretc\">JarretC</a>, <a href=\"http://profiles.wordpress.org/madtownlems\">Jason Lemahieu (MadtownLems)</a>, <a href=\"http://profiles.wordpress.org/javert03\">javert03</a>, <a href=\"http://profiles.wordpress.org/jbrinley\">jbrinley</a>, <a href=\"http://profiles.wordpress.org/jcakec\">jcakec</a>, <a href=\"http://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"http://profiles.wordpress.org/jeffsebring\">Jeff Sebring</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/hd-j\">Jeremy Herve</a>, <a href=\"http://profiles.wordpress.org/jerrysarcastic\">Jerry Bates (JerrySarcastic)</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (Jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jndetlefsen\">jndetlefsen</a>, <a href=\"http://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/joelhardi\">joelhardi</a>, <a href=\"http://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn (johnbillion)</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"http://profiles.wordpress.org/jond3r\">Jonas Bolinder</a>, <a href=\"http://profiles.wordpress.org/jondavidjohn\">Jonathan D. Johnson</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/joostdekeijzer\">joostdekeijzer</a>, <a href=\"http://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"http://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/pottersys\">Juan</a>, <a href=\"http://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"http://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"http://profiles.wordpress.org/trepmal\">Kailey Lampert (trepmal)</a>, <a href=\"http://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"http://profiles.wordpress.org/keruspe\">Keruspe</a>, <a href=\"http://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"http://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/kopepasah\">Kopepasah</a>, <a href=\"http://profiles.wordpress.org/klagraff\">Kristopher Lagraff</a>, <a href=\"http://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>, <a href=\"http://profiles.wordpress.org/kyrylo\">Kyrylo</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/larysa\">Larysa Mykhas</a>, <a href=\"http://profiles.wordpress.org/leogermani\">leogermani</a>, <a href=\"http://profiles.wordpress.org/lesteph\">lesteph</a>, <a href=\"http://profiles.wordpress.org/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"http://profiles.wordpress.org/latz\">Lutz Schroer</a>, <a href=\"http://profiles.wordpress.org/mailnew2ster\">mailnew2ster</a>, <a href=\"http://profiles.wordpress.org/targz-1\">Manuel Schmalstieg</a>, <a href=\"http://profiles.wordpress.org/maor\">Maor Chasen</a>, <a href=\"http://profiles.wordpress.org/mimecine\">Marco</a>, <a href=\"http://profiles.wordpress.org/marcuspope\">MarcusPope</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/martythornley\">MartyThornley</a>, <a href=\"http://profiles.wordpress.org/mattdanner\">mattdanner</a>, <a href=\"http://profiles.wordpress.org/bigdawggi\">Matthew Richmond</a>, <a href=\"http://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"http://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/merty\">Mert Yazicioglu</a>, <a href=\"http://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"http://profiles.wordpress.org/mfields\">Michael Fields</a>, <a href=\"http://profiles.wordpress.org/mbijon\">Mike Bijon</a>, <a href=\"http://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"http://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"http://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"http://profiles.wordpress.org/DH-Shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/toppa\">Mike Toppa</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/mohanjith\">mohanjith</a>, <a href=\"http://profiles.wordpress.org/mpvanwinkle77\">mpvanwinkle77</a>, <a href=\"http://profiles.wordpress.org/usermrpapa\">Mr Papa</a>, <a href=\"http://profiles.wordpress.org/murky\">murky</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/ntm\">ntm</a>, <a href=\"http://profiles.wordpress.org/nvartolomei\">nvartolomei</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/pdclark\">pdclark</a>, <a href=\"http://profiles.wordpress.org/petemall\">Pete Mall</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/pas5027\">Pete Schuster</a>, <a href=\"http://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"http://profiles.wordpress.org/phill_brown\">Phill Brown</a>, <a href=\"http://profiles.wordpress.org/picklepete\">picklepete</a>, <a href=\"http://profiles.wordpress.org/picklewagon\">Picklewagon</a>, <a href=\"http://profiles.wordpress.org/nprasath002\">Prasath Nadarajah</a>, <a href=\"http://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"http://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"http://profiles.wordpress.org/moraleidame\">Ricardo Moraleida</a>, <a href=\"http://profiles.wordpress.org/miqrogroove\">Robert Chapin (miqrogroove)</a>, <a href=\"http://profiles.wordpress.org/wet\">Robert Wetzlmayr</a>, <a href=\"http://profiles.wordpress.org/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/rstern\">rstern</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/ryanimel\">Ryan Imel</a>, <a href=\"http://profiles.wordpress.org/ryanjkoehler\">Ryan Koehler</a>, <a href=\"http://profiles.wordpress.org/markel\">Ryan Markel</a>, <a href=\"http://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"http://profiles.wordpress.org/zeo\">Safirul Alredha</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"http://profiles.wordpress.org/gluten\">Sam Margulies</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"http://profiles.wordpress.org/saracannon\">sara cannon</a>, <a href=\"http://profiles.wordpress.org/gandham\">Satish Gandham</a>, <a href=\"http://profiles.wordpress.org/scottgonzalez\">scott.gonzalez</a>, <a href=\"http://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/greglone\">ScreenfeedFr</a>, <a href=\"http://profiles.wordpress.org/sergeysbetkenovgaroru\">sergey.s.betke</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/ssamture\">ssamture</a>, <a href=\"http://profiles.wordpress.org/sterlo\">sterlo</a>, <a href=\"http://profiles.wordpress.org/sumindmitriy\">sumindmitriy</a>, <a href=\"http://profiles.wordpress.org/sushkov\">sushkov</a>, <a href=\"http://profiles.wordpress.org/swekitsune\">swekitsune</a>, <a href=\"http://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"http://profiles.wordpress.org/taylorde\">Taylor Dewey</a>, <a href=\"http://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"http://profiles.wordpress.org/saltcod\">Terry Sutton</a>, <a href=\"http://profiles.wordpress.org/griffinjt\">Thomas Griffin</a>, <a href=\"http://profiles.wordpress.org/tott\">Thorsten Ott</a>, <a href=\"http://profiles.wordpress.org/timbeks\">timbeks</a>, <a href=\"http://profiles.wordpress.org/timfs\">timfs</a>, <a href=\"http://profiles.wordpress.org/tmoorewp\">Tim Moore</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomasm\">TomasM</a>, <a href=\"http://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/tommcfarlin\">tommcfarlin</a>, <a href=\"http://profiles.wordpress.org/willmot\">Tom Willmot</a>, <a href=\"http://profiles.wordpress.org/toscho\">toscho</a>, <a href=\"http://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"http://profiles.wordpress.org/vhauri\">Vasken Hauri</a>, <a href=\"http://profiles.wordpress.org/viniciusmassuchetto\">Vinicius Massuchetto</a>, <a href=\"http://profiles.wordpress.org/lightningspirit\">Vitor Carvalho</a>, <a href=\"http://profiles.wordpress.org/waclawjacek\">Waclaw</a>, <a href=\"http://profiles.wordpress.org/waldojaquith\">WaldoJaquith</a>, <a href=\"http://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"http://profiles.wordpress.org/xibe\">Xavier Borderie</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/yogi-t\">Yogi T</a>, <a href=\"http://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, and <a href=\"http://profiles.wordpress.org/zamoose\">ZaMoose</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/news/2012/12/elvin/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.5 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Dec 2012 08:37:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"The third release candidate for WordPress 3.5 is now available. We&#8217;ve made a number of changes over the last week since RC2 that we can&#8217;t wait to get into your hands. Hope you&#8217;re ready to do some testing! Final UI improvements for the new media manager, based on lots of great feedback. Show more information about [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1950:\"<p>The third release candidate for WordPress 3.5 is now available. We&#8217;ve made a number of changes over the last week since <a title=\"WordPress 3.5 Release Candidate 2\" href=\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/\">RC2</a> that we can&#8217;t wait to get into your hands. Hope you&#8217;re ready to do some testing!</p>\n<ul>\n<li><span style=\"line-height: 13px\">Final UI improvements for the new media manager, based on lots of great feedback.</span></li>\n<li>Show more information about uploading errors when they occur.</li>\n<li>When inserting an image into a post, don&#8217;t forget the alternative text.</li>\n<li>Fixes for the new admin button styles.</li>\n<li>Improvements for mobile devices, Internet Explorer, and right-to-left languages.</li>\n<li>Fix cookies for subdomain installs when multisite is installed in a subdirectory.</li>\n<li>Fix ms-files.php rewriting for very old multisite installs.</li>\n</ul>\n<p>At this point, we only have a <a href=\"http://core.trac.wordpress.org/report/5\">few minor issues</a> left. If all goes well, you will see WordPress 3.5 very soon. If you run into any issues, please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>.</p>\n<p>If you&#8217;d like to know what to test, visit the About page (<strong><img style=\"vertical-align: middle\" alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features. This is still development software, so your boss may get mad if you install this on a live site. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC3.zip\">download the release candidate here (zip)</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2012/12/wordpress-3-5-release-candidate-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.5 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Nov 2012 19:55:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2494\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"The second release candidate for WordPress 3.5 is now available for download and testing. We&#8217;re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you&#8217;d like to know what to test, visit the About page ( → About in the toolbar) and check out [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1509:\"<p>The second release candidate for WordPress 3.5 is now available for download and testing.</p>\n<p>We&#8217;re still working on about a dozen remaining issues, but we hope to deliver WordPress 3.5 to your hands as early as next week. If you&#8217;d like to know what to test, visit the About page (<strong><img alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features! As usual, this is still development software and we suggest you do not install this on a live site unless you are adventurous.</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>.</p>\n<p><strong>Developers,</strong> please continue to test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release. You can find our <a href=\"http://core.trac.wordpress.org/report/6\">list of known issues here</a>.</p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC2.zip\">download the release candidate here (zip)</a>.</p>\n<p><em>&#8211;<br />\n</em><em>We are getting close<br />\n</em><em>Should have asked for haiku help<br />\n</em><em>Please test RC2</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 3.5 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Nov 2012 13:35:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2479\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The first release candidate for WordPress 3.5 is now available. We hope to ship WordPress 3.5 in two weeks. But to do that, we need your help! If you haven&#8217;t tested 3.5 yet, there&#8217;s no time like the present. (The oft-repeated warning: Please, not on a live site, unless you&#8217;re adventurous.) Think you&#8217;ve found a [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1545:\"<p>The first release candidate for WordPress 3.5 is now available.</p>\n<p>We hope to ship WordPress 3.5 in <em>two weeks</em>. But to do that, we need your help! If you haven&#8217;t tested 3.5 yet, there&#8217;s no time like the present. (The oft-repeated warning: Please, not on a live site, unless you&#8217;re adventurous.)</p>\n<p><strong>Think you&#8217;ve found a bug?</strong> Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/6\">find them here</a>. <strong>Developers,</strong> please test your plugins and themes, so that if there is a compatibility issue, we can figure it out before the final release.</p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.5-RC1.zip\">download the release candidate here (zip)</a>.</p>\n<p>If you&#8217;d like to know what to <del>break</del> test, visit the About page (<strong><img style=\"vertical-align: text-top\" alt=\"\" src=\"http://wordpress.org/wp-content/themes/twentyten/images/wordpress.png\" /> → About</strong> in the toolbar) and check out the list of features! Trust me, you want to try out media.</p>\n<p><em>Release candidate</em><br />\n<em>Three point five in two weeks time</em><br />\n<em>Please test all the things</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/news/2012/11/wordpress-3-5-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:48:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.5 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Nov 2012 04:26:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2467\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The third beta release of WordPress 3.5 is now available for download and testing. Hey, developers! We expect to WordPress 3.5 to be ready in just a few short weeks. Please, please test your plugins and themes against beta 3. Media management has been rewritten, and we&#8217;ve taken great pains to ensure most plugins will work the [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2677:\"<p>The third beta release of WordPress 3.5 is now available for download and testing.</p>\n<p><strong>Hey, developers!</strong> We expect to WordPress 3.5 to be ready in just a few short weeks. <em>Please, please</em> test your plugins and themes against beta 3. Media management has been rewritten, and we&#8217;ve taken great pains to ensure most plugins will work the same as before, but we&#8217;re not perfect. We would like to hear about any incompatibilities we&#8217;ve caused so we can work with you to address them <em>before</em> release, rather than after. I think you&#8217;ll agree it&#8217;s much better that way. <img src=\'http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif\' alt=\':-)\' class=\'wp-smiley\' /> </p>\n<p>To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta3.zip\">download the beta here</a> (zip). For more on 3.5, <a title=\"WordPress 3.5 Beta 1\" href=\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\">check out the extensive Beta 1 blog post</a>, which covers what’s new in version 3.5 and how you can help. We made <a href=\"http://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=22557&amp;stop_rev=22224&amp;limit=400\">more than 300 changes</a> since <a href=\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/\">beta 2</a>. <span style=\"line-height: 13px\">At this point, the Add Media dialog is complete, and we&#8217;re now just working on fixing up inserting images into the editor. We&#8217;ve also u</span>pdated to jQuery UI 1.9.1, SimplePie 1.3.1, and TinyMCE 3.5.7.</p>\n<p>The usual warnings apply: We can see the light at the end of the tunnel, but this is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.5\">everything we’ve fixed</a> so far.</p>\n<p><em>Beta three is out</em><br />\n<em>Soon, a release candidate</em><br />\n<em>Three point five is near</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/11/wordpress-3-5-beta-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.5 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Oct 2012 00:02:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2458\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"Two weeks after the first beta, WordPress 3.5 Beta 2 is now available for download and testing. This is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1856:\"<p>Two weeks after the first beta, WordPress 3.5 Beta 2 is now available for download and testing.</p>\n<p>This is software still in development, so we don’t recommend that you run it on a production site. Set up a test site to play with the new version. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta2.zip\">download the beta here</a> (zip).</p>\n<p>For more, <a title=\"WordPress 3.5 Beta 1\" href=\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\"><strong>check out the extensive Beta 1 blog post</strong></a>, which covers what&#8217;s new in version 3.5 and how you can help. What&#8217;s new since beta 1? I&#8217;m glad you asked:</p>\n<ul>\n<li>New workflow for working with image galleries, including drag-and-drop reordering and quick caption editing.</li>\n<li>New image editing API. (<a title=\"Ticket 6821\" href=\"http://core.trac.wordpress.org/ticket/6821\">#6821</a>)</li>\n<li><del>New user interface for setting static front pages for the Reading Settings screen. (<a title=\"Ticket 16379\" href=\"http://core.trac.wordpress.org/ticket/16379\">#16379</a>)</del></li>\n</ul>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.5\">everything we’ve fixed</a> so far. Happy testing!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/10/wordpress-3-5-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 3.5 Beta 1 (and a bonus!)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Sep 2012 22:37:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2443\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"I&#8217;m excited to announce the availability of WordPress 3.5 Beta 1. This is software still in development and we really don’t recommend that you run it on a production site — set up a test site just to play with the new version. To test WordPress 3.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6696:\"<p>I&#8217;m excited to announce the availability of WordPress 3.5 Beta 1.</p>\n<p>This is software still in development and <strong>we <em>really</em> don’t recommend that you run it on a production site</strong> — set up a test site just to play with the new version. To test WordPress 3.5, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.5-beta-1.zip\">download the beta here</a> (zip).</p>\n<p>In just three short months, we&#8217;ve already made a few hundred changes to improve your WordPress experience. The biggest thing we&#8217;ve been working on is overhauling the media experience from the ground up. We&#8217;ve made it all fair game: How you upload photos, arrange galleries, insert images into posts, and more. It&#8217;s still rough around the edges and some pieces are missing — which means now is the <em>perfect</em> time to test it out, report issues, and help shape our headline feature.</p>\n<p>As always, if you think you’ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=3.5\">everything we&#8217;ve fixed</a> so far.</p>\n<p>Here&#8217;s some more of what&#8217;s new:</p>\n<ul>\n<li><strong>Appearance: </strong>A simplified welcome screen. A new color picker. And the all-HiDPI (retina) dashboard.</li>\n<li><strong>Accessibility:</strong> Keyboard navigation and screen reader support have both been improved.</li>\n<li><strong>Plugins: </strong>You can browse and install plugins you&#8217;ve marked as favorites on WordPress.org, directly from your dashboard.</li>\n<li><strong>Mobile: </strong>It&#8217;ll be easier to link up your WordPress install with <a href=\"http://wordpress.org/extend/mobile/\">our mobile apps</a>, as XML-RPC is now enabled by default.</li>\n<li><strong>Links: </strong>We&#8217;ve hidden the Link Manager for new installs. (Don&#8217;t worry, <a href=\"http://wordpress.org/extend/plugins/link-manager/\">there&#8217;s a plugin for that</a>.)</li>\n</ul>\n<p><strong>Developers: </strong>We love you. We do. And one of the things we strive to do with every release is be compatible with all existing plugins and themes. To make sure we don&#8217;t break anything, we need your help. <strong>Please, please test your plugins and themes against 3.5.</strong> If something isn&#8217;t quite right, please let us know. (Chances are, it wasn&#8217;t intentional.) And despite all of the changes to media, we&#8217;re still aiming to be backwards compatible with plugins that make changes to the existing media library. It&#8217;s a tall task, and it means we need your help.</p>\n<p>Here&#8217;s some more things we think developers will enjoy (and should test their plugins and themes against):</p>\n<ul>\n<li><strong>External libraries updated:</strong> TinyMCE  <del>3.5.6</del> 3.5.7. SimplePie <del>1.3</del> 1.3.1. jQuery <del>1.8.2</del> 1.8.3. jQuery UI <del>1.9 (and it&#8217;s not even released yet)</del> 1.9.2. We&#8217;ve also added Backbone 0.9.2 and Underscore <del>1.3.3</del> 1.4.2, and you can use protocol-relative links when enqueueing scripts and styles. (<a href=\"http://core.trac.wordpress.org/ticket/16560\">#16560</a>)</li>\n<li><strong>WP Query:</strong> You can now ask to receive posts in the order specified by <code>post__in</code>. (<a href=\"http://core.trac.wordpress.org/ticket/13729\">#13729</a>)</li>\n<li><strong>XML-RPC:</strong> New user management, profile editing, and post revision methods. We&#8217;ve also removed AtomPub. (<a href=\"http://core.trac.wordpress.org/ticket/18428\">#18428</a>, <a href=\"http://core.trac.wordpress.org/ticket/21397\">#21397</a>, <a href=\"http://core.trac.wordpress.org/ticket/21866\">#21866</a>)</li>\n<li><strong>Multisite: </strong>switch_to_blog() is now used in more places, is faster, and more reliable. Also: You can now use multisite in a subdirectory, and uploaded files no longer go through ms-files (for new installs). (<a href=\"http://core.trac.wordpress.org/ticket/21434\">#21434</a>, <a href=\"http://core.trac.wordpress.org/ticket/19796\">#19796</a>, <a href=\"http://core.trac.wordpress.org/ticket/19235\">#19235</a>)</li>\n<li><strong>TinyMCE: </strong>We&#8217;ve added an experimental API for &#8220;views&#8221; which you can use to offer previews and interaction of elements from the visual editor. (<a href=\"http://core.trac.wordpress.org/ticket/21812\">#21812</a>)</li>\n<li><strong>Posts API: </strong>Major performance improvements when working with hierarchies of pages and post ancestors. Also, you can now &#8220;turn on&#8221; native custom columns for taxonomies on edit post screens. (<a href=\"http://core.trac.wordpress.org/ticket/11399\">#11399</a>, <a href=\"http://core.trac.wordpress.org/ticket/21309\">#21309</a>, <a href=\"http://core.trac.wordpress.org/ticket/21240\">#21240</a>)</li>\n<li><strong>Comments API:</strong> Search for comments of a particular status, or with a meta query (same as with WP_Query). (<a href=\"http://core.trac.wordpress.org/ticket/21101\">#21101</a>, <a href=\"http://core.trac.wordpress.org/ticket/21003\">#21003</a>)</li>\n<li><strong>oEmbed: </strong>We&#8217;ve added support for a few oEmbed providers, and we now handle SSL links. (<a href=\"http://core.trac.wordpress.org/ticket/15734\">#15734</a>, <a href=\"http://core.trac.wordpress.org/ticket/21635\">#21635</a>, <a href=\"http://core.trac.wordpress.org/ticket/16996\">#16996</a>, <a href=\"http://core.trac.wordpress.org/ticket/20102\">#20102</a>)</li>\n</ul>\n<p>We&#8217;re looking forward to your feedback. If you break it (find a bug), please report it, and if you’re a developer, try to help us fix it. We&#8217;ve already had more than 200 contributors to version 3.5 — come join us!</p>\n<h3>And as promised, a bonus:</h3>\n<p>We&#8217;re planning a December 5 release for WordPress 3.5. But, we have a special offering for you, today. The newest default theme for WordPress, <strong>Twenty</strong><strong> Twelve</strong>, is now <a href=\"http://wordpress.org/extend/themes/twentytwelve\">available for download</a> from the WordPress themes directory. It&#8217;s a gorgeous and fully responsive theme, and it works with WordPress 3.4.2. Take it for a spin!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2012/09/wordpress-3-5-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:45:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 3.4.2 Maintenance and Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Sep 2012 20:07:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2426\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions. After nearly 15 million downloads since 3.4 was released not three months ago, we&#8217;ve identified and fixed a number of nagging bugs, including: Fix some issues with older browsers in the administration area. Fix an issue where a theme [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1443:\"<p>WordPress 3.4.2, now available for download, is a maintenance and security release for all previous versions.</p>\n<p>After nearly 15 million downloads since 3.4 was released not three months ago, we&#8217;ve <a href=\"http://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=3.4.2&amp;group=resolution&amp;order=severity&amp;desc=1\">identified and fixed a number of nagging bugs</a>, including:</p>\n<ul>\n<li>Fix some issues with older browsers in the administration area.</li>\n<li>Fix an issue where a theme may not preview correctly, or its screenshot may not be displayed.</li>\n<li>Improve plugin compatibility with the visual editor.</li>\n<li>Address pagination problems with some category permalink structures.</li>\n<li>Avoid errors with both oEmbed providers and trackbacks.</li>\n<li>Prevent improperly sized header images from being uploaded.</li>\n</ul>\n<p>Version 3.4.2 also fixes a few security issues and contains some security hardening. The vulnerabilities included potential privilege escalation and a bug that affects multisite installs with untrusted users. These issues were discovered and fixed by the WordPress security team.</p>\n<p><a href=\"http://wordpress.org/download/\"><strong>Download 3.4.2</strong></a><strong> now or visit Dashboard → Updates in your site admin to update now.</strong></p>\n<p><em>Fixes for some bugs<br />\nBack to work on 3.5<br />\nIt&#8217;s time to update</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2012/09/wordpress-3-4-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 01 Apr 2013 16:41:01 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 07 Mar 2013 14:21:02 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}","no");
INSERT INTO wp_options VALUES("7441","0","_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c","1364877662","no");
INSERT INTO wp_options VALUES("7442","0","_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca","1364877662","no");
INSERT INTO wp_options VALUES("7443","0","_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca","1364834462","no");
INSERT INTO wp_options VALUES("7444","0","_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51","1364877662","no");
INSERT INTO wp_options VALUES("7445","0","_transient_timeout_feed_da12cc7959810dde5ca78b0e6a5aa5c2","1364877662","no");
INSERT INTO wp_options VALUES("7446","0","_transient_dash_4077549d03da2e451c8b5f002294ff51","<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/01/wordpress-3-5-1/\' title=\'WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [&hellip;]\'>WordPress 3.5.1 Maintenance and Security Release</a> <span class=\"rss-date\">January 24, 2013</span><div class=\'rssSummary\'>WordPress 3.5.1 is now available. Version 3.5.1 is the first maintenance release of 3.5, fixing 37 bugs. It is also a security release for all previous WordPress versions. For a full list of changes, consult the list of tickets and the changelog, which include: Editor: Prevent certain HTML elements from being unexpectedly removed or modified in rare [&hellip;]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/01/2012-a-look-back/\' title=\'Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [&hellip;]\'>2012: A Look Back</a> <span class=\"rss-date\">January 1, 2013</span><div class=\'rssSummary\'>Another year is coming to a close, and it’s time to look back and reflect on what we’ve accomplished in the past twelve months. The WordPress community is stronger than ever, and some of the accomplishments of the past year are definitely worth remembering. Software Releases We had two major releases of the WordPress web [&hellip;]</div></li></ul></div>","no");
INSERT INTO wp_options VALUES("7447","0","_transient_feed_da12cc7959810dde5ca78b0e6a5aa5c2","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\n  \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:33:\"\n    \n    \n    \n    \n    \n    \n  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"link:http://adamkubizna.com/wordpress/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"http://www.google.com/search?ie=utf-8&q=link:http://adamkubizna.com/wordpress/&tbm=blg&tbs=sbd:1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Your search - <b>link:http://adamkubizna.com/wordpress/</b> - did not match any documents.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Mon, 01 Apr 2013 16:41:02 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=4546631ab23ae1cb:FF=0:TM=1364834462:LM=1364834462:S=4ePQVT4p23RqKyrB; expires=Wed, 01-Apr-2015 16:41:02 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=dzYZZ6kMELJp42OjiUcnB8M68vWn360SfpzhuQYE6Bnswzs0qKDH3ki9hDn5iojBb-Z6olkdaXq7sH2ou-jgh_wztCTGLcSHPsnKcR0DZD_yjxPmCd1Xdkylk2pwuwms; expires=Tue, 01-Oct-2013 16:41:02 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20090627192103\";}","no");
INSERT INTO wp_options VALUES("7448","0","_transient_timeout_feed_mod_da12cc7959810dde5ca78b0e6a5aa5c2","1364877662","no");
INSERT INTO wp_options VALUES("7449","0","_transient_feed_867bd5c64f85878d03a060509cd2f92c","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.tv: Understanding the WordPress Add New User Screen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18463\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2013/03/31/understanding-the-wordpress-add-new-user-screen/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:642:\"<div id=\"v-pjAMiXtc-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18463/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18463/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18463&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/31/understanding-the-wordpress-add-new-user-screen/\"><img alt=\"wpaddnewuser.mp4\" src=\"http://videos.videopress.com/pjAMiXtc/video-5b0b00cf6d_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Apr 2013 04:45:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.tv: Understanding WordPress Discussion Settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18455\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.tv/2013/03/31/understanding-wordpress-discussion-settings/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:644:\"<div id=\"v-QKczX0JE-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18455/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18455/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18455&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/31/understanding-wordpress-discussion-settings/\"><img alt=\"wpdiscussion.mp4\" src=\"http://videos.videopress.com/QKczX0JE/video-5280873d59_scruberthumbnail_2.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Apr 2013 04:30:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WordPress.tv: Phil Erb: WordPress is Installed… Now What?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18452\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.tv/2013/03/28/phil-erb-wordpress-is-installed-now-what/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:674:\"<div id=\"v-f6li6sy6-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18452/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18452/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18452&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/28/phil-erb-wordpress-is-installed-now-what/\"><img alt=\"Phil Erb: WordPress is Installed&#8230; Now What?\" src=\"http://videos.videopress.com/f6li6sy6/video-50494d19a5_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Apr 2013 04:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"Weblog Tools Collection: I am taking my leave of Weblog Tools Collection, and thanks for everything!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12845\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/NRKA8GMV-fA/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4720:\"<p>Not many of the present readers might know me very well, and that in part, is the reason that I have made the decision to transfer WLTC to more willing and presently capable hands. I am a stranger on my blog and the time has come for me to make sure that this blog, its contents and its knowledge are archived and preserved and maybe rejuvenated at a later time.</p>\n<p>I delved into blogging tools back in 2004 when I started my Masters degree in CS. I wanted some code to mess around with in my free time and everyone was talking about blogging. I looked into a variety of tools, built a small Linux server for myself at home, and installed a few of the tools that were freely available at that time. I had a heck of a time getting a hold of MT (Moveable Type, the most well-known name) and then found b2 by sheer luck. I loved the cool look of Michael&#8217;s blog and the people involved in the tool seemed to be open to comments and replied warmly to my emails and questions. Through the b2 forums I heard about WordPress and proceeded to install it on my own. To my astonishment, it worked without a hitch and I was blogging away in no time. I started looking through the code to understand how it worked and it drew me in every step of the way.</p>\n<p>Within a few months of installing WordPress, I started to take part in the forums and wrote a few plugins and created some &#8220;hacks&#8221; for the tool. I even gained some notoriety with my MT VS WP post and that&#8217;s when the WordPress ecosphere started to look very attractive to me. I did not do this to seek attention, but I was getting a lot of attention and I was loving it. I believe that was when Matt first noticed me and we exchanged some emails and chatted with each other. With every month and with every release of WordPress I was getting more involved. At some point I realized that I could not do it alone and hired a few interested people to help me write posts and the blog started to get popular. I brought on some advertisers to help me offset costs. Matt gave me and my blog the highest honor of being included in the WordPress Planet and that&#8217;s when things really started to happen for this blog. I also started a WordPress Job blog (http://jobs.wordpress.net) which I still curate and I got involved in WordPress evangelism. Somewhere within this time, Matt had asked me to work for him at the new company he was starting and I had to turn him down because of visa restrictions and because I wanted to finish school (I kick myself every time I think about that).</p>\n<p>WordPress started to mature and WordCamps started to happen. I graduated from school with a Master&#8217;s Degree in Computer Science and found a job. I wanted to stay involved but it was getting bigger than I could handle. I could either dive in and get into WordPress and the blogging world, or I could focus on my job, career and family. I decided to choose the latter. I still wanted to loosely be involved with WordPress and things went well for a couple of years with me being casually involved. I even visited and spoke at a couple of WordCamps.</p>\n<p>When my son Lucien was born, all my time and attention was exhausted on him. I could not spend any time with WordPress or blogging at all. In addition to my growing family, I was diagnosed with a serious health condition just as I was starting a new job and moving to a new city. Needless to say, the blog was the last thing on my mind. James, who has been the sole author and curator for a long time, was my winning hand and just a fantastic helper and well wisher. He has kept things running for a long time and I have had no complaints.</p>\n<p>But I have found very little time to come back and spend with my old friends, Weblog Tools Collection and WordPress. I do not want this blog&#8217;s content and conversations to be lost or forgotten because of my neglect. I am hoping this move will help it live on as an archive, or find new lifeblood in another form. I know that it is in the right hands.</p>\n<p>So Adios and Gracias. I hope to see you in another blog, and take part in another conversation with you someday. It has been a wonderful journey and I appreciate everything that has taken place because of WordPress and every bit of help and encouragement that has been provided to me by so many of you. So thank to my wonderful audience of many years, thanks to my advertisers, thanks to my authors and finally thanks to Matt and to WordPress for making my life so much more fulfilling and successful.</p>\n<p>Peace on Earth, Goodwill to All, And to All a Goodnight!</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/NRKA8GMV-fA\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 31 Mar 2013 13:41:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mark Ghosh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Weblog Tools Collection: Where to Find WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12846\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/ah3QRPNnlhs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2837:\"<p>The landscape of news has changed so much over the last few years that news about a particular topic or platform is readily available to anyone within an instant. With <a href=\"http://wordpress.org\">WordPress</a>, I imagine that could be one of the perks of <a href=\"http://weblogtoolscollection.com/archives/2012/08/08/the-state-of-the-word-in-2012/\">powering over 16% of the web</a>, but it&#8217;s true that news is becoming incredibly accessible. In short, news is everywhere.</p>\n<p>Speaking of WordPress in general, you can of course acquire official direct news from <a href=\"http://wordpress.org/news/\">WordPress News</a>, but you can also take a peak behind the curtain and follow news in the making at <a href=\"http://make.wordpress.org\">Make WordPress.org</a>. Though it&#8217;s only specific to the <a href=\"http://wordpress.com\">WordPress.com</a> blogging platform, <a href=\"http://en.blog.wordpress.com\">WordPress.com News</a> is also worth watching for WordPress development news, as WordPress.com users often get access to new WordPress features before they&#8217;re released, so you&#8217;ll be able to try new features rather than just read about them.</p>\n<p>There&#8217;s more news than just direct official news, like I said earlier, it&#8217;s everywhere. You could subscribe to every general news site, every core developer&#8217;s personal blog, every premium theme shop, and every plugin developer, but why not subscribe to a few curated news sources instead? I guess you could call <a href=\"http://planet.wordpress.org\">WordPress Planet</a> the official curated news source, but it&#8217;s really just a collection of all news items from a particular set of curated blogs. For specific news items curated from sources through the entire WordPress community, subscribe to <a href=\"http://poststat.us\">Post Status</a>, and don&#8217;t neglect the power of allowing the folks you follow on <a href=\"http://twitter.com\">Twitter</a>, <a href=\"http://plus.google.com\">Google+</a>, and/or <a href=\"http://www.facebook.com\">Facebook</a> to curate news for you.</p>\n<p>Speaking of the WordPress community, you should <a href=\"http://codex.wordpress.org/Contributing_to_WordPress\">get involved</a> if you aren&#8217;t already. If you don&#8217;t even use WordPress yet, it&#8217;s time to get started <a href=\"http://codex.wordpress.org/Getting_Started_with_WordPress\">with either WordPress.org</a> or <a href=\"http://learn.wordpress.com/get-started/\">with WordPress.com</a>, share your thoughts with the world, and maybe spread some WordPress news on your blog too.</p>\n<p>The news is out there, and it&#8217;s well within your reach. If you can&#8217;t find the news, it&#8217;s time to make your own.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/ah3QRPNnlhs\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 31 Mar 2013 00:05:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 3/30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12837\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/-vmyakR-BnA/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1089:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/gc-message-box/\"><strong>GC Message Box</strong></a> allows you to highlight your key message(s) in smart ways within articles and blog posts.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/simple-social-icons/\"><strong>Simple Social Icons</strong></a> allows you to insert social icons in any widget area.</p>\n<p><a href=\"http://askwebexpert.com/stick-it/\"><strong>Stick It</strong></a> allows you to stick the navigation menu in any theme to the top of browser window.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://jetpack.me/\"><strong>Jetpack</strong></a> allows you to supercharge your WordPress site with powerful features previously only available to <a href=\"http://wordpress.com/\">WordPress.com</a> users.</p>\n<p><a href=\"http://blog.milandinic.com/wordpress/plugins/nav-menu-images/\"><strong>Nav Menu Images</strong></a> enables uploading of images for nav menu items on the menu edit screen.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/-vmyakR-BnA\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Mar 2013 14:00:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: (Un)organized Consumption\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://ma.tt/2013/03/unorganized-consumption/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:387:\"<p><a href=\"http://writingthroughthefog.com/2013/03/09/on-unorganized-consumption/\">On (Un)organized Consumption</a> by Automattician Cheri Lucas. &#8220;I stopped using Instapaper. Early on, I relied on it as a space to store ideas and information I could draw from, but it quickly became my intellectual limbo: the unfortunate vault of forgotten stories and Twitter residue.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Mar 2013 14:20:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Matt: Evolution of San Francisco\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42333\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ma.tt/2013/03/evolution-of-san-francisco/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2968:\"<p>There have been three excellent writings on the effects and consequences of the latest boom on the Bay Area, each long but worth reading.</p>\n<p>The East Bay Express, with a permalink I&#8217;m sure won&#8217;t work a decade from now, brings us <a href=\"http://www.eastbayexpress.com/oakland/the-bacon-wrapped-economy/Content?oid=3494301&showFullText=true\">The Bacon-Wrapped Economy</a>:</p>\n<div class=\"blockquote\">\n<blockquote>The arts economy, already unstable, has been forced to contend with the twin challenges of changing tastes and new funding models. Entire industries that didn&#8217;t exist ten years ago are either thriving on venture capital, or thriving on companies that are thriving on it. It is now possible to find a $6 bottle of Miller High Life, a $48 plate of fried chicken, or a $20 BLT in parts of the city that used to be known for their dive bars and taco stands. If, after all, money has always been a means of effecting the world we want to bring about, when a region is flooded with uncommonly rich and uncommonly young people, that world begins to look very different. And we&#8217;re all living in it, whether we like it or not.</p></blockquote>\n</div>\n<p>SFGate has <a href=\"http://www.sfgate.com/technology/dotcommentary/article/Innovation-and-the-face-of-capitalism-4342160.php\">The hypocrisy in Silicon Valley&#8217;s big talk on innovation</a>:</p>\n<div class=\"blockquote\">\n<blockquote>&#8220;[I]nnovation&#8221; is something of a magic word around here, shape-shifting to fit the speaker&#8217;s immediate needs. So long as semiconductors and coding are involved, people will staple it to anything from flying cars to the iFart app.</p>\n<p>Other times it&#8217;s just code for &#8220;jobs,&#8221; used to justify asking for government favors one day and scolding them for meddling in the free market the next.</p>\n<p>&#8220;Lower our payroll taxes because &#8230; innovation.&#8221;<br />\n&#8220;Drop that antitrust inquiry because &#8230; innovation.&#8221;</p>\n<p>But for all the funding announcements, product launches, media attention and wealth creation, most of Silicon Valley doesn&#8217;t concern itself with aiming &#8220;almost ridiculously high.&#8221; It concerns itself primarily with getting people to click on ads or buy slightly better gadgets than the ones they got last year.</p></blockquote>\n</div>\n<p>The final comes from Rebecca Solnit, <a href=\"http://ma.tt/2011/07/on-blue/\">who I&#8217;ve quoted before</a>, writes <a href=\"http://www.lrb.co.uk/v35/n03/rebecca-solnit/diary\">a diary for the London Review of Books</a>.</p>\n<div class=\"blockquote\">\n<blockquote>I weathered the dot-com boom of the late 1990s as an observer, but I sold my apartment to a Google engineer last year and ventured out into both the rental market (for the short term) and home buying market (for the long term) with confidence that my long standing in this city and respectable finances would open a path.</p></blockquote>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2013 15:49:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 3/28\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/gKIU6AevNTQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1374:\"<p><a href=\"http://emptynestthemes.com/2013/03/26/airtime-wordpress-blog-theme\"><img class=\"alignnone size-thumbnail wp-image-12826\" alt=\"screenshot2\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot21.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/03/26/airtime-wordpress-blog-theme/\"><strong>AirTime</strong></a> is a subtle and simple theme.</p>\n<p><a href=\"http://wordpress.org/extend/themes/firmasite\"><img class=\"alignnone size-thumbnail wp-image-12827\" alt=\"screenshot\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot6.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/firmasite\"><strong>FirmaSite</strong></a> is a responsive theme with <a href=\"http://buddypress.org\">BuddyPress</a> and <a href=\"http://bbpress.org\">bbPress</a> support.</p>\n<p><a href=\"http://wordpress.org/extend/themes/stark-lite\"><img class=\"alignnone size-thumbnail wp-image-12828\" alt=\"screenshot-1\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-16.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/stark-lite\"><strong>Stark Lite</strong></a> is a minimalist and simple theme.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/gKIU6AevNTQ\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2013 14:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress.tv: Chris Lema: Execution\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18441\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.tv/2013/03/27/chris-lema-execution/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:626:\"<div id=\"v-dquuVmAU-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18441/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18441/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18441&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/27/chris-lema-execution/\"><img alt=\"Chris Lema: Execution\" src=\"http://videos.videopress.com/dquuVmAU/video-7a7d3fbf9e_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2013 00:30:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"bbPress: bbPress 2.3 – Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://bbpress.org/?p=131092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://bbpress.org/blog/2013/03/bbpress-2-3-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1175:\"<p>Today the bbPress team is happy to announce <a href=\"http://downloads.wordpress.org/plugin/bbpress.zip\">bbPress 2.3, release candidate 1</a>.</p>\n<p>bbPress 2.3 introduces forum-specific search functionality, so that your users are able to search your forum posts without interfering with your blog posts. It simplifies the fancy topic and reply editors, enabling only the functionality your users should see. Lastly, we&#8217;ve included more forum migration tools to help you transition to bbPress from Vanilla, Mingle, and SimplePress.</p>\n<p>With that, we bring you <a href=\"http://downloads.wordpress.org/plugin/bbpress.zip\">bbPress 2.3, Release Candidate 1</a>. Please try it, either on a test site, or wherever you feel comfortable running it, and <a href=\"http://bbpress.trac.wordpress.org\">let us know if you run into any issues</a>.</p>\n<p>Oh yeah&#8230; If you want to stay on the bleeding edge of releases, check out the <a href=\"http://wordpress.org/extend/plugins/bbpress-beta-tester/\">bbPress Beta Tester</a> plugin! It&#8217;s really neat. <img src=\"http://bbpress.org/wordpress/wp-includes/images/smilies/icon_smile.gif\" alt=\":)\" class=\"wp-smiley\" /> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2013 21:14:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.tv: WordPress General Settings and WordPress Roles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18439\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.tv/2013/03/27/wordpress-general-settings-and-wordpress-roles/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:652:\"<div id=\"v-Pz6kgctM-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18439/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18439/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18439&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/27/wordpress-general-settings-and-wordpress-roles/\"><img alt=\"wpgeneralsettings.mp4\" src=\"http://videos.videopress.com/Pz6kgctM/video-1094a9ccf9_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2013 20:20:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"BuddyPress: BuddyPress 1.7 – Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=158776\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://buddypress.org/2013/03/buddypress-1-7-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1388:\"<p>Today the BuddyPress team would like to tell you a bit about <a href=\"http://downloads.wordpress.org/plugin/buddypress.zip\">BuddyPress 1.7, release candidate 1</a>.</p>\n<p>BuddyPress 1.7 is going to be one of our most exciting releases to date. It comes packaged with the same theme compatibility that was introduced in bbPress 2.0, which means that BuddyPress will now work out-of-the-box with a majority of the WordPress themes available today.</p>\n<p>We&#8217;ve also fixed <a href=\"http://buddypress.trac.wordpress.org/milestone/1.7\">a bunch of annoyances</a>, and smoothed out the installation and update experiences, to provide users and site-admins with a less intimidating introduction into building a community with BuddyPress.</p>\n<p>Because of the hugeness of 1.7&#8242;s features and changes, we&#8217;ve spent a little extra time rigorously testing it with various types of themes and installations, to make it a worry-free update from BuddyPress 1.5 or later. The beta-testing phase has gone well, and uncovered only a few loose-ends that needed tying.</p>\n<p>With that, we bring you <a href=\"http://downloads.wordpress.org/plugin/buddypress.zip\">BuddyPress 1.7, Release Candidate 1</a>. Please try it, either on a test site, or wherever you feel comfortable running it, and <a href=\"http://buddypress.trac.wordpress.org/\">let us know if you run into any issues</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2013 19:47:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Matt: Imports Keep Rolling, and Trust\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42335\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2013/03/imports-and-trust/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:900:\"<p>TechCrunch writes <a href=\"http://techcrunch.com/2013/03/26/wordpress-com-has-imported-15m-posts-in-the-last-30-days-remains-a-top-safe-haven-for-nomad-bloggers/\">WordPress.com Has Imported 15M Posts In The Last 30 Days, Remains A Top Safe Haven For Nomad Bloggers</a>. I&#8217;m very proud of the 8+ years we&#8217;ve been a home for, and protected, our users blogs. Protection covers many aspects: backups, scalability, security, speed, permalinks, mobile versions, forward-compatible markup, clean exports&#8230; the list goes on. We&#8217;ve done the same with other internet-scale services, like <a href=\"http://akismet.com/\">Akismet</a>, <a href=\"http://gravatar.com/\">Gravatar</a>, and <a href=\"http://jetpack.me/\">Jetpack</a>, and I hope to earn the same trust in the coming decade with <a href=\"http://vaultpress.com/\">VaultPress</a> and <a href=\"http://simperium.com/\">Simperium</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2013 14:07:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Matt: No to NoUI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=42332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://ma.tt/2013/03/no-to-noui/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"<p><a href=\"http://www.elasticspace.com/2013/03/no-to-no-ui\">No to NoUI</a> by Timo Arnall is one of the better pieces I&#8217;ve read on design and interfaces, and is also chock-full of links that will keep you busy for hours.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Mar 2013 14:12:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress.tv: Understanding WordPress Permalinks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18376\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.tv/2013/03/25/understanding-wordpress-permalinks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:633:\"<div id=\"v-kEYdKErG-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18376/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18376/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18376&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/25/understanding-wordpress-permalinks/\"><img alt=\"permalinks.mp4\" src=\"http://videos.videopress.com/kEYdKErG/video-f10e063f57_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Mar 2013 20:02:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WP iPhone: Version 3.5 is Here: Draft Previews, Autosave, and More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"http://ios.wordpress.org/?p=1376\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://ios.wordpress.org/2013/02/22/version-3-5-is-here-draft-previews-autosave-and-more/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3713:\"<p><a href=\"http://wpiphone.files.wordpress.com/2013/02/wpios-3-5-draft-previews-plus-autosave.png\"><img src=\"http://wpiphone.files.wordpress.com/2013/02/wpios-3-5-draft-previews-plus-autosave.png?w=240&h=517\" alt=\"Version 3.5 of WordPress for iOS: Draft Previews + Autosave\" width=\"240\" height=\"517\" class=\"alignright size-medium wp-image-1402\" /></a>We&#8217;re pleased as punch to announce that WordPress for iOS 3.5 is now available in the <a href=\"https://itunes.apple.com/us/app/wordpress/id335703880?ls=1&mt=8\">App Store</a>. The dev team focused on the content editor for this release, which adds some very handy new features:</p>\n<h3>Draft previews</h3>\n<p>We know that publishing your very best stuff is important, and you should be able to see what your post or page will look like <em>before</em> you publish. Now, in version 3.5 of WordPress for iOS, you can preview your drafts! Just tap the preview &#8220;eye&#8221; tab while drafting your post or page to see the post as it will appear on your WordPress site after you hit publish.</p>\n<p>If you have a <a href=\"http://en.wikipedia.org/wiki/Responsive_web_design\">responsive</a> WordPress theme the preview will show what your post looks like on a mobile device.</p>\n<h3>Autosave</h3>\n<p>Thanks to a new Autosave feature, your site&#8217;s content is safer than ever before. Now, when you edit a draft in the app, you&#8217;ll notice a small &#8220;Autosaved ✓&#8221; message appear as you type. The draft is instantly saved locally, and if you have a reliable Internet connection at the time, it will autosave online to your WordPress site, too.</p>\n<p><img src=\"http://wpiphone.files.wordpress.com/2013/02/wpios-3-5-autosave1.jpg?w=420&h=188\" alt=\"Version 3.5 of WordPress for iOS: Autosave\" width=\"420\" height=\"188\" class=\"aligncenter size-full wp-image-1395\" /></p>\n<h3>More improvements and bug fixes</h3>\n<p>This release also includes improvements for WordPress.com and Jetpack notifications, as well as fixes for crashes and other bugs. You can check out all the changes <a href=\"http://ios.trac.wordpress.org/timeline?from=02%2F11%2F13&daysback=6&authors=&ticket=on&milestone=on&changeset=on&wiki=on&update=Update\">here</a>.</p>\n<p>The crash on launch that some of you were seeing has been fixed in this release.</p>\n<h3>What&#8217;s next?</h3>\n<p>We want to continue making your mobile blogging experience better and better! While the dev team is currently deciding what to work on for version 3.6, these next items are high on our list:</p>\n<ul>\n<li>Rich Text Editor</li>\n<li>Improved media management</li>\n<li>Sharing to the app from third-party apps and services</li>\n</ul>\n<p>Want to keep up with the latest happenings in the WordPress mobile world? Head over to <a href=\"http://make.wordpress.org/mobile\">http://make.wordpress.org/mobile</a>.</p>\n<p>A huge thanks to the contributors that worked on this release: <a href=\"http://wordpress.org/support/profile/beaucollins\">beaucollins</a>, <a href=\"http://wordpress.org/support/profile/daniloercoli\">daniloercoli</a>, <a href=\"http://wordpress.org/support/profile/koke\">koke</a>, and <a href=\"http://wordpress.org/support/profile/mrroundhill\">mrroundhill.</a></p>\n<p>If you have any feedback about the app, please leave a comment below or follow us <a href=\"http://twitter.com/wordpressios\">@WordPressiOS</a>.</p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wpiphone.wordpress.com/1376/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wpiphone.wordpress.com/1376/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=ios.wordpress.org&blog=3882653&post=1376&subd=wpiphone&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Mar 2013 18:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Dan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 3/25\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12819\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/J5kgleppg3E/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1264:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/easy-watermark/\"><strong>Easy Watermark</strong></a> automatically adds watermark to images when they are uploaded.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/cat-signal/\"><strong>Internet Defense League Cat Signal</strong></a> automatically loads either the modal or the banner Cat Signal when there is an active campaign from <a href=\"http://internetdefenseleague.org\">the Internet Defense League</a>.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://calendarscripts.info/autoresponder-wordpress.html\"><strong>BFT Autoresponder</strong></a> allows scheduling of automated autoresponder messages and managing a mailing list.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/google-analytics-dashboard-for-wp/\"><strong>Google Analytics Dashboard for WP</strong></a> will display Google Analytics data and statistics inside your Dashboard.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/\"><strong>WordPress MU Domain Mapping</strong></a> allows users of a WordPress MU site or WordPress 3.0 network to map their blog/site to another domain.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/J5kgleppg3E\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Mar 2013 18:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"BuddyPress: BuddyPress 1.6.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=157571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://buddypress.org/2013/03/buddypress-1-6-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:649:\"<p><a href=\"http://wordpress.org/extend/plugins/buddypress/\">BuddyPress 1.6.5</a> is now available. It&#8217;s the fifth minor release to the 1.6 branch, and is a recommended update for all previous versions of BuddyPress.</p>\n<p>1.6.5 fixes 1 security issue potentially allowing access to the &#8216;delete-account&#8217; Settings screen for users that should not normally have that privilege. This bug was reported and researched by Rob Begic, and fixed by the BuddyPress core team.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/buddypress/\">Download 1.6.5</a> or visit Dashboard &rarr; Updates in your administration area to update now.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Mar 2013 20:53:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 3/23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12813\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/RRyaMSkB1LI/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1260:\"<p><a href=\"http://wordpress.org/extend/themes/memori-jingga\"><img class=\"alignnone size-thumbnail wp-image-12814\" alt=\"screenshot\" src=\"http://i1.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot5.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/memori-jingga\"><strong>Memori Jingga</strong></a> is a responsive, clean, and simple theme.</p>\n<p><a href=\"http://wordpress.org/extend/themes/rockers\"><img class=\"alignnone size-thumbnail wp-image-12815\" alt=\"screenshot-1\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-15.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/rockers\"><strong>Rockers</strong></a> is a responsive theme with a clean design.</p>\n<p><a href=\"http://wordpress.org/extend/themes/satu\"><img class=\"alignnone size-thumbnail wp-image-12816\" alt=\"screenshot-2\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-23.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/satu\"><strong>Satu</strong></a> is an elegant single-column responsive theme.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/RRyaMSkB1LI\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Mar 2013 14:00:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Weblog Tools Collection: WordCamp San Francisco 2013 Dates Announced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12807\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/tdYxbhgsXyo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:859:\"<p>The dates <a href=\"http://2013.sf.wordcamp.org/2013/03/22/wordcamp-sf-2013-announcement/\">have been announced</a> for <a href=\"http://2013.sf.wordcamp.org\">WordCamp San Francisco 2013</a>, an event which is often heralded as the annual <a href=\"http://wordpress.org/\">WordPress</a> conference.</p>\n<p>WordCamp San Francisco 2013 will be held on July 26 and 27 at <a href=\"http://goo.gl/maps/rT6ou\">the Mission Bay Conference Center</a> with a Developer Hack Day on July 28. A list of speakers is not yet available, but they would like you to <a href=\"http://wordcampcentral.polldaddy.com/s/best-2012-2013-wordcamp-speakers-so-far\">nominate your favorite past WordCamp speakers</a>.</p>\n<p>Will you be attending WordCamp San Francisco this year?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/tdYxbhgsXyo\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Mar 2013 00:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WordPress.tv: Chris Lema: Says No Automatically (w/ Gravity Forms)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.tv/2013/03/22/chris-lema-says-no-automatically-w-gravity-forms/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:692:\"<div id=\"v-NF4VIeHi-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18041/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18041/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18041&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/22/chris-lema-says-no-automatically-w-gravity-forms/\"><img alt=\"OCWP &#8211; Chris Lema &#8211; Recording on 2013-03-11.mp4\" src=\"http://videos.videopress.com/NF4VIeHi/video-548cfa5139_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Mar 2013 19:45:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 3/21\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12802\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/0LUWJ6dWyoE/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1145:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/google-adsense-dashboard-for-wp/\"><strong>Google Adsense Dashboard for WP</strong></a> will display your Google Adsense earnings and related reports inside your Dashboard.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/google-analytics-dashboard-for-wp/\"><strong>Google Analytics Dashboard for WP</strong></a> will display Google Analytics data and statistics inside your Dashboard.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/ad-code-manager/\"><strong>Ad Code Manager</strong></a> allows you to manage your ad codes through the WordPress admin in a safe and easy way.</p>\n<p><a href=\"http://calendarscripts.info/autoresponder-wordpress.html\"><strong>BFT Autoresponder</strong></a> allows scheduling of automated autoresponder messages and managing a mailing list.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/camptix/\"><strong>CampTix Event Ticketing</strong></a> is an easy to use and flexible event ticketing plugin.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/0LUWJ6dWyoE\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Mar 2013 14:00:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WordPress.tv: Walter Dal Mut: WordPress incontra il Cloud Computing: Scalabilità ed Alta Disponiblità\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"http://wordpress.tv/2013/03/20/walter-dal-mut-wordpress-incontra-il-cloud-computing-scalabilita-ed-alta-disponiblita/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:710:\"<div id=\"v-8DjnnEnW-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17317/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17317/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17317&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/20/walter-dal-mut-wordpress-incontra-il-cloud-computing-scalabilita-ed-alta-disponiblita/\"><img alt=\"02 Gabriele Mittica & Walter Dal Mut.mp4\" src=\"http://videos.videopress.com/8DjnnEnW/video-5d332310a1_scruberthumbnail_2.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Mar 2013 01:20:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Alex King: WordPress Maturity – An Interview with Me at WP Engine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=16267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://alexking.org/blog/2013/03/20/wordpress-maturity-an-interview-with-me-at-wp-engine\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"<p>An <a href=\"http://wpengine.com/2013/03/alex-king-on-the-maturity-of-wordpress/\">interview with me about WordPress&#8217;s maturity</a> is up on the WP Engine blog. It&#8217;s a bit of a long read (~4500 words), but <a href=\"http://www.austingunter.com/\">Austin</a> did a great job asking good questions and follow-ups. I quite enjoyed the discussion and I hope you&#8217;ll find it interesting.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Mar 2013 21:26:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.tv: Lisa Sabin-Wilson: Oh, The Themes You’ll Do!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18284\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.tv/2013/03/18/lisa-sabin-wilson-oh-the-themes-youll-do/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:637:\"<div id=\"v-vFBS0C7I-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18284/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18284/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18284&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/18/lisa-sabin-wilson-oh-the-themes-youll-do/\"><img alt=\"Lisa Sabin-Wilson\" src=\"http://videos.videopress.com/vFBS0C7I/lisa-sabin-wilson_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Mar 2013 21:45:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 3/19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12792\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/yiyrwU_8gQQ/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1378:\"<p><a href=\"http://wordpress.org/extend/themes/cazuela\"><img class=\"alignnone size-thumbnail wp-image-12793\" alt=\"screenshot\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot4.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/cazuela\"><strong>Cazuela</strong></a> is a neutral colored theme.</p>\n<p><a href=\"http://wordpress.org/extend/themes/ilisa\"><img class=\"alignnone size-thumbnail wp-image-12795\" alt=\"screenshot-1\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-14.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/ilisa\"><strong>Ilisa</strong></a> is a clean and minimal theme that can be easily used as a personal portfolio or a business website.</p>\n<p><a href=\"http://emptynestthemes.com/2013/03/18/partition-professional-wordpress-theme/\"><img class=\"alignnone size-thumbnail wp-image-12794\" alt=\"DemoBlog\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/DemoBlog3.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/03/18/partition-professional-wordpress-theme/\"><strong>Partition</strong></a> has a light, lively, colorful, yet professional and classic appearance.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/yiyrwU_8gQQ\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Mar 2013 14:00:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress.tv: Noah Dyer: Growth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18187\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://wordpress.tv/2013/03/18/noah-dyer-growth/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:612:\"<div id=\"v-xvr1P7XJ-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18187/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18187/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18187&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/18/noah-dyer-growth/\"><img alt=\"Noah Dyer: Growth\" src=\"http://videos.videopress.com/xvr1P7XJ/video-c774cda819_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Mar 2013 20:29:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WordPress.tv: How to Install Jetpack Site Stats on your WordPress site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17936\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://wordpress.tv/2013/03/18/how-to-install-jetpack-site-stats-on-your-wordpress-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:664:\"<div id=\"v-0EUXgeTM-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17936/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17936/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17936&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/18/how-to-install-jetpack-site-stats-on-your-wordpress-site/\"><img alt=\"WSC-001-jetpack-analitics.mov\" src=\"http://videos.videopress.com/0EUXgeTM/video-c95e94a6ba_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Mar 2013 15:56:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress.tv Blog: Get Involved!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://wptvblog.wordpress.com/?p=291\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wptvblog.wordpress.com/2013/03/18/get-involved/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1594:\"<p>WordPress.tv is now open for video submissions from the WordPress community.</p>\n<p>Do you record your WordPress meetup? <a href=\"http://wordpress.tv/submit-video/\">Submit it to WordPress.tv!</a> Do you record WordPress screencast tutorials? <a href=\"http://wordpress.tv/submit-video/\">Submit them to WordPress.tv!</a> Do you create some other form of WP video awesomesauce that would benefit the community? WordPress.tv might be just the place for it.</p>\n<p>Fair warning: Our intrepid group of WordPress.tv event video moderators already works hard to review and publish WordCamp videos, and if WordPress.tv is suddenly flooded with video submissions, they may take a while to get around to reviewing and publishing your video. Please be patient as we iterate toward success&#8230; and if you&#8217;re interested in donating your time toward becoming a WordPress.tv moderator, please apply <a href=\"http://wordpress.tv/apply-to-be-a-wordpress-tv-moderator/\">here</a>. If this takes off like we think it might, we will definitely need some extra eyes!</p>\n<p>Thanks in advance for helping to make WordPress.tv an even more fantastic resource. If you have questions about this, please don&#8217;t hesitate to ask.</p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/291/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/291/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wptvblog.wordpress.com&blog=5310177&post=291&subd=wptvblog&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Mar 2013 08:57:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Alex King: Announcing Threads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://alexking.org/?p=16176\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://alexking.org/blog/2013/03/17/announcing-threads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2417:\".threads-post-notice {\n	background: #e8e8e8;\n	padding: 10px;\n}\n.threads-post-notice a {\n	font-weight: bold;\n}\n\n<p><img src=\"http://alexking.org/wp-content/uploads/2013/03/threads-timeline-510x382.jpg\" alt=\"threads-timeline\" width=\"480\" height=\"359\" class=\"aligncenter size-medium-img wp-image-16181\" /></p>\n<p>I&#8217;ve just released an initial beta of <a href=\"http://wordpress.org/extend/plugins/threads/\">Threads</a>, a WordPress plugin I&#8217;ve been working on for about a year. The idea is simple: show posts that comprise a single overall story/topic in a timeline. Then link to that timeline from the posts so that your readers have a chance to get more historical context about a post without you having to link back to 20 previous posts.</p>\n<p>Here are some example threads:</p>\n<ul>\n<li><a href=\"http://alexking.org/blog/thread/social\">Social</a></li>\n<li><a href=\"http://alexking.org/blog/thread/hard-drive-recovery\">My Hard Drive Recovery Saga</a></li>\n<li><a href=\"http://alexking.org/blog/thread/twitter-tools\">Twitter Tools</a></li>\n<li><a href=\"http://alexking.org/blog/thread/passwords\">Passwords</a></li>\n<li><a href=\"http://alexking.org/blog/thread/weight-loss\">Weight Loss</a></li>\n</ul>\n<p>As you can see on this site, the thread timeline is responsive and retina/HiDPI ready. Also included is a sidebar widget to show recently active threads and a shortcode so that you can embed a thread timeline in a page.</p>\n<p>Give it a spin &#8211; I hope it works out well for you!</p>\n<p>A quick note about support: As this is a free plugin released under the GPL I am offering only &#8220;Product Support&#8221; for this plugin. That means I will do my best to fix bugs and usabiity issues that are posted on the <a href=\"http://wordpress.org/support/\">WordPress support forums</a>. Contrast this with &#8220;User Support&#8221; which we offer for all of <a href=\"http://crowdfavorite.com\">Crowd Favorite</a>&#8216;s commercial products. With &#8220;User Support&#8221; we do our best to troubleshoot and address each customer&#8217;s issues.</p>\n<p>Developers, contributions are welcome on <a href=\"https://github.com/crowdfavorite/wp-threads\">GitHub</a>.</p>\n<p class=\"threads-post-notice\">This post is part of the thread: <a href=\"http://alexking.org/blog/thread/content\">Content Presentation</a> &#8211; an ongoing story on this site. View the thread timeline for more context on this post.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 17 Mar 2013 21:35:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 3/17\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12787\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/iCzrsWmhJSE/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1168:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/barc-chat/\"><strong>Barc Chat</strong></a> provides a simple yet feature rich chat room for your whole community to interact in real-time directly on your site.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/get-directions/\"><strong>Get Directions</strong></a> is a flexible and responsive map plugin.</p>\n<p><a href=\"http://namaste-lms.org/\"><strong>Namaste! LMS</strong></a> is a learning management system for WordPress.</p>\n<p><a href=\"http://tutskid.com/pinterest-verify-meta-tag/\"><strong>Pinterest Verify Meta Tag</strong></a> simply inserts the Pinterest meta tag verification code to the correct section of your site.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/backwpup/\"><strong>BackWPup</strong></a> allows you to backup your WordPress database, files, and more.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/ooyala-video-browser/\"><strong>Ooyala Video</strong></a> allows you to easily embed videos from the Ooyala Video Platform.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/iCzrsWmhJSE\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 17 Mar 2013 14:00:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WordPress.tv: Make Quick Posts to Your WordPress Blog with Press This\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17934\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://wordpress.tv/2013/03/17/make-quick-posts-to-your-wordpress-blog-with-press-this/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:653:\"<div id=\"v-zbaXcN4P-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17934/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17934/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17934&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/17/make-quick-posts-to-your-wordpress-blog-with-press-this/\"><img alt=\"PressThis.mov\" src=\"http://videos.videopress.com/zbaXcN4P/video-b1ff756587_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 17 Mar 2013 07:00:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.tv: Chris Lema: Success in Distributed Contexts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18183\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.tv/2013/03/17/chris-lema-success-in-distributed-contexts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:670:\"<div id=\"v-1oRdV9R4-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18183/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18183/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18183&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/17/chris-lema-success-in-distributed-contexts/\"><img alt=\"Chris Lema: Success in Distributed Contexts\" src=\"http://videos.videopress.com/1oRdV9R4/video-fd51521a82_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 17 Mar 2013 07:00:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WordPress.tv: Melinda Samson: Google Analytics 101 Workshop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17624\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wordpress.tv/2013/03/16/melinda-samson-workshop-google-analytics-101/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:666:\"<div id=\"v-Wa1tv4CB-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17624/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17624/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17624&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/16/melinda-samson-workshop-google-analytics-101/\"><img alt=\"Workshop: Google Analytics 101\" src=\"http://videos.videopress.com/Wa1tv4CB/workshop_google_analytics_101_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Mar 2013 07:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WordPress.tv: Greg Taylor: Fundamentals of a Kick Ass WordPress Site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18191\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://wordpress.tv/2013/03/16/greg-taylor-fundamentals-of-a-kick-ass-wordpress-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:686:\"<div id=\"v-cSUD5DNg-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18191/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18191/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18191&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/16/greg-taylor-fundamentals-of-a-kick-ass-wordpress-site/\"><img alt=\"Greg Taylor: Fundamentals of a Kick Ass WordPress Site\" src=\"http://videos.videopress.com/cSUD5DNg/video-6e7f46dc65_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Mar 2013 07:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 3/15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12779\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/lRqztGNTtv8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1767:\"<p><a href=\"http://wordpress.org/extend/themes/ease\"><img class=\"alignnone size-thumbnail wp-image-12780\" alt=\"screenshot\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot3.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/ease\"><strong>Ease</strong></a> is a simple red and white theme.</p>\n<p><a href=\"http://emptynestthemes.com/2013/03/14/nomad-wordpress-blog-theme/\"><img class=\"alignnone size-thumbnail wp-image-12783\" alt=\"DemoBlog\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/DemoBlog2.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://emptynestthemes.com/2013/03/14/nomad-wordpress-blog-theme/\"><strong>Nomad</strong></a> is an attractive professional, business or blog theme with an unusual, very narrow orientation and design.</p>\n<p><a href=\"http://wordpress.org/extend/themes/sensitive\"><img class=\"alignnone size-thumbnail wp-image-12782\" alt=\"screenshot-2\" src=\"http://i2.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-22.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/sensitive\"><strong>Sensitive</strong></a> is fully responsive theme using Twitter Bootstrap and a Metro-styled accent.</p>\n<p><a href=\"http://wordpress.org/extend/themes/visual\"><img class=\"alignnone size-thumbnail wp-image-12781\" alt=\"screenshot-1\" src=\"http://i0.wp.com/weblogtoolscollection.com/wp-content/uploads/2013/03/screenshot-13.png?resize=150%2C150\" /></a></p>\n<p><a href=\"http://wordpress.org/extend/themes/visual\"><strong>Visual</strong></a> is a dark minimalist theme for displaying photos and images.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/lRqztGNTtv8\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Mar 2013 19:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.tv: Andrew Nacin: WP_Query / WordPress In-depth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17990\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.tv/2013/03/15/andrew-nacin-wp_query-wordpress-in-depth/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:671:\"<div id=\"v-fN7XVxWJ-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17990/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17990/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17990&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/15/andrew-nacin-wp_query-wordpress-in-depth/\"><img alt=\"Andrew Nacin: WP_Query / WordPress in Depth\" src=\"http://videos.videopress.com/fN7XVxWJ/andrewnacin-wpquery_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Mar 2013 07:00:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WordPress.tv: Andrew Nacin: WordPress in 2012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18004\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.tv/2013/03/15/andrew-nacin-wordpress-in-2012/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:647:\"<div id=\"v-w1h37UGG-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18004/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18004/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18004&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/15/andrew-nacin-wordpress-in-2012/\"><img alt=\"AndrewNacin-WordPressin2012\" src=\"http://videos.videopress.com/w1h37UGG/andrewnacin-wordpressin2012_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Mar 2013 07:00:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Weblog Tools Collection: WordPress 3.6 Release Delayed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12772\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/N8oZD4gd_rM/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:820:\"<p>The impending release of <a href=\"http://wordpress.org\">WordPress</a> 3.6 has been pushed back one more week to April 29.</p>\n<p>At this time, WordPress 3.6 is not yet feature complete (meaning that all intended new features have not been entirely finished), so <a href=\"http://make.wordpress.org/core/2013/03/13/the-road-to-3-6-beta-1/\">the decision was made</a> to push the first beta release back two weeks to March 27 and the final release back one week to April 29. This will allow the team time to focus on finalizing the in-progress new features so that they (and the brave folks who enjoy running beta software) can simply focus on testing and bug fixing rather than polishing up partial features.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/N8oZD4gd_rM\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 14:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WordPress.tv: Karim Osman: over WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17975\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.tv/2013/03/14/karim-osman-over-wordpress-com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:649:\"<div id=\"v-3Y8BPEXu-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17975/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17975/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17975&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/karim-osman-over-wordpress-com/\"><img alt=\"Karim Osman: over WordPress-com\" src=\"http://videos.videopress.com/3Y8BPEXu/karim-wordpress-com_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 13:25:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WordPress.tv: Paul Gibbs: BuddyPress in 2012\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17997\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.tv/2013/03/14/paul-gibbs-buddypress-in-2012/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:653:\"<div id=\"v-6oGBfrOG-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17997/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17997/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17997&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/paul-gibbs-buddypress-in-2012/\"><img alt=\"Paul Gibbs: BuddyPress In 2012\" src=\"http://videos.videopress.com/6oGBfrOG/paulgibs-buddypressin2012_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 13:25:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.tv: Elles de Boorder: Case: Mobiel solliciteren\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17980\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.tv/2013/03/14/elles-de-boorder-case-mobiel-solliciteren/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:632:\"<div id=\"v-38Fa0w7P-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17980/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17980/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17980&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/elles-de-boorder-case-mobiel-solliciteren/\"><img alt=\"EllesdeBoorder\" src=\"http://videos.videopress.com/38Fa0w7P/ellesdeboorder_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 13:25:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress.tv: Björn Wijers: WordPress als CMS voor je intranet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18006\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2013/03/14/bjorn-wijers-wordpress-als-cms-voor-je-intranet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:631:\"<div id=\"v-5VOLRNIc-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18006/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18006/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18006&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/bjorn-wijers-wordpress-als-cms-voor-je-intranet/\"><img alt=\"Björn Wijers\" src=\"http://videos.videopress.com/5VOLRNIc/bjorn-ff_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 13:25:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.tv: Bas van der Lans: WordPress voor ondernemers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18002\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.tv/2013/03/14/bas-van-der-lans-wordpress-voor-ondernemers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:686:\"<div id=\"v-lwAbDvM7-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18002/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18002/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18002&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/bas-van-der-lans-wordpress-voor-ondernemers/\"><img alt=\"BasvanderLans-WordPress-voor-ondernemers\" src=\"http://videos.videopress.com/lwAbDvM7/basvanderlans-wordpress-voor-ondernemers_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 13:25:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.tv: Remkus de Vries: 10 WordPress weetjes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=18010\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.tv/2013/03/14/remkus-de-vries-10-wordpress-weetjes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:663:\"<div id=\"v-ZPtpJB08-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/18010/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/18010/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=18010&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/remkus-de-vries-10-wordpress-weetjes/\"><img alt=\"RemkusdeVries-10WordPressweetjes\" src=\"http://videos.videopress.com/ZPtpJB08/remkusdevries-10wordpressweetjes_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 13:25:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WordPress.tv: Coen Jacobs: Core Contributions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.tv/2013/03/14/coen-jacobs-core-contributions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:649:\"<div id=\"v-rT4xpicr-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17992/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17992/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17992&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/coen-jacobs-core-contributions/\"><img alt=\"CoenJacobs-CoreContributions\" src=\"http://videos.videopress.com/rT4xpicr/coenjacobs-corecontributions_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 13:24:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress.tv: Noel Tock: Customizing WP-Admin for your Clients\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17995\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://wordpress.tv/2013/03/14/noel-tock-customizing-wp-admin-for-your-clients/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:628:\"<div id=\"v-SG6bzhAh-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17995/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17995/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17995&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/noel-tock-customizing-wp-admin-for-your-clients/\"><img alt=\"Noel.mp4.ff\" src=\"http://videos.videopress.com/SG6bzhAh/noel-ff_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 07:00:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WordPress.tv: Maurizio Pelizzone: Strumenti e metodi per lavorare con WordPress in progetti complessi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=17321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"http://wordpress.tv/2013/03/14/maurizio-pelizzone-strumenti-e-metodi-per-lavorare-con-wordpress-in-progetti-complessi/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:690:\"<div id=\"v-AOGI9WO3-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/17321/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/17321/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=17321&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2013/03/14/maurizio-pelizzone-strumenti-e-metodi-per-lavorare-con-wordpress-in-progetti-complessi/\"><img alt=\"04 Maurizio Pelizzone.mp4\" src=\"http://videos.videopress.com/AOGI9WO3/video-c5e85ec88e_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 07:00:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 3/13\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=12768\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/nc1L0kLDbSc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1374:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/easy-media-gallery/\"><strong>Easy Media Gallery</strong></a> is designed to display portfolios and various media types including gallery sets, single images, google maps, video, audio, and links with ease and elegance.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/ytlink/\"><strong>ytlink</strong></a> provides a preview image for embedded YouTube videos.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/backwpup/\"><strong>BackWPup</strong></a> allows you to backup your WordPress database, files, and more.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/genericond/\"><strong>Genericon&#8217;d</strong></a> enables easy use of the <a href=\"http://genericons.com\">Genericons</a> icon font set from within WordPress. Icons can be inserted using either HTML or a shortcode.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/keyring/\"><strong>Keyring</strong></a> provides a very hookable, completely customizable framework for connecting your WordPress site to an external service.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-all-import/\"><strong>WP All Import</strong></a> makes it easy to import any XML or CSV file into your WordPress site.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/nc1L0kLDbSc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Mar 2013 05:45:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 01 Apr 2013 16:41:02 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:5:\"84819\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 01 Apr 2013 16:30:29 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20090627192103\";}","no");
INSERT INTO wp_options VALUES("7450","0","_transient_feed_mod_da12cc7959810dde5ca78b0e6a5aa5c2","1364834462","no");
INSERT INTO wp_options VALUES("7451","0","_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc","1364877662","no");
INSERT INTO wp_options VALUES("7452","0","_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c","1364877662","no");
INSERT INTO wp_options VALUES("7453","0","_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f","1364877663","no");
INSERT INTO wp_options VALUES("7454","0","_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c","1364834462","no");
INSERT INTO wp_options VALUES("7455","0","_transient_feed_a5420c83891a9c88ad2a4f04584a5efc","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Apr 2013 16:25:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/extend/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"23862@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Michael Adams (mdawaffe)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18101@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"WordPress SEO by Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"8321@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/extend/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"15@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2141@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"132@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"arnee\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Google Analytics for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2316@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Track your WordPress site easily and with lots of metadata: views per author &#38; category, automatic tracking of outbound clicks and pageviews.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"753@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Facebook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/facebook/#post-37351\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 May 2012 19:36:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"37351@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Add Facebook social plugins and the ability to publish new posts to a Facebook Timeline or Facebook Page. Official Facebook plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Samuel Wood (Otto)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"1169@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 6 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WooCommerce - excelling eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"29860@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wysija Newsletters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/wysija-newsletters/#post-32629\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Dec 2011 17:09:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32629@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Send newsletters, post notifications or autoresponders from WordPress easily, and beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"wysija\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12073@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/contact-form-plugin/#post-26890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 May 2011 07:34:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"26890@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Add Contact Form to your WordPress website.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2572@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 01 Apr 2013 16:41:02 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Mon, 01 Apr 2013 17:00:06 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Mon, 01 Apr 2013 16:25:06 +0000\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}","no");
INSERT INTO wp_options VALUES("7456","0","_transient_dash_20494a3d90a6669585674ed0eb8dcd8f","<p>This dashboard widget queries <a href=\"http://blogsearch.google.com/\">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links&hellip; yet. It&#8217;s okay &#8212; there is no rush.</p>\n","no");
INSERT INTO wp_options VALUES("7457","0","_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0","1364877663","no");
INSERT INTO wp_options VALUES("7458","0","_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc","1364877663","no");
INSERT INTO wp_options VALUES("7459","0","_transient_dash_aa95765b5cc111c56d5993d476b1c2f0","<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/03/31/understanding-the-wordpress-add-new-user-screen/\' title=\' [&hellip;]\'>WordPress.tv: Understanding the WordPress Add New User Screen</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/03/31/understanding-wordpress-discussion-settings/\' title=\' [&hellip;]\'>WordPress.tv: Understanding WordPress Discussion Settings</a></li><li><a class=\'rsswidget\' href=\'http://wordpress.tv/2013/03/28/phil-erb-wordpress-is-installed-now-what/\' title=\' [&hellip;]\'>WordPress.tv: Phil Erb: WordPress is Installed… Now What?</a></li><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/NRKA8GMV-fA/\' title=\'Not many of the present readers might know me very well, and that in part, is the reason that I have made the decision to transfer WLTC to more willing and presently capable hands. I am a stranger on my blog and the time has come for me to make sure that this blog, its contents and its knowledge are archived and preserved and maybe rejuvenated at a later tim [&hellip;]\'>Weblog Tools Collection: I am taking my leave of Weblog Tools Collection, and thanks for everything!</a></li><li><a class=\'rsswidget\' href=\'http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/ah3QRPNnlhs/\' title=\'The landscape of news has changed so much over the last few years that news about a particular topic or platform is readily available to anyone within an instant. With WordPress, I imagine that could be one of the perks of powering over 16% of the web, but it’s true that news is becoming incredibly accessible. In short, news is everywhere. Speaking of WordPr [&hellip;]\'>Weblog Tools Collection: Where to Find WordPress News</a></li></ul></div>","no");
INSERT INTO wp_options VALUES("7460","0","_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc","1364834463","no");
INSERT INTO wp_options VALUES("7461","0","_transient_timeout_feed_57bc725ad6568758915363af670fd8bc","1364877663","no");
INSERT INTO wp_options VALUES("7462","0","_transient_feed_57bc725ad6568758915363af670fd8bc","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/extend/plugins/browse/new/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Apr 2013 16:14:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Plugin Name\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.org/extend/plugins/relative-date-template-tag/#post-51254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Mar 2013 03:06:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51254@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Gives developers two template tags for retrieving a relative date instead of an exact date for posts.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Eric Allen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Snake\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"http://wordpress.org/extend/plugins/snake/#post-51232\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2013 13:35:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51232@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Let your users play snake on your website!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"camilstaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Pay2View\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/pay2view/#post-51388\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Apr 2013 05:31:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51388@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Let your users pay to view content. Use it to hide download links, images, paragraphs or other shortcodes. This plugin allows the administrator to use\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Ciprian Popescu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"FullscreenWidth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/extend/plugins/fullscreenwidth/#post-51318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Mar 2013 18:06:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51318@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"FullscreenWidth adds a input field to change the editarea width, next to the toolbar buttons at the fullscreen view.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Rufnex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"bildly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/bildly/#post-51097\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Mar 2013 14:38:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51097@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"This plugin lets you embed a bildly door image into your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"luzischucan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Recent Posts FlexSlider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/extend/plugins/recent-posts-flexslider/#post-51178\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Mar 2013 18:00:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51178@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Simple setup responsive slider of recent posts selected by category or post type using FlexSlider by WooThemes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"David Laietta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Inline Tweets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/inline-tweets/#post-51262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Mar 2013 11:17:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51262@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Embed latest tweet(s) or a specific tweet in any page, post or text widget and apply your custom styles.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"mdjekic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Media File Manager Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/extend/plugins/media-file-manager-advanced/#post-51245\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2013 20:17:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51245@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"You can make sub-directories in the upload directory, and move files into them.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"zefta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Stealth Login Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/stealth-login-page/#post-51315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Mar 2013 17:21:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51315@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Protect your /wp-admin and wp-login.php pages from being accessed without editing .htaccess\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Jesse Petersen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BSK Zoho Campaign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/bsk-zoho-campaigns/#post-51235\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2013 15:08:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51235@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"The plugin may hlep you add contacts to Zoho Campaigns.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"bannersky\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Jigoshop Basic Weight Shipping\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.org/extend/plugins/jigoshop-basic-weight-shipping/#post-51312\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Mar 2013 10:20:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51312@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Extend the Jigoshop shipping methods by adding a basic weight method.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"gasserol\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP Branding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/wp-branding/#post-51175\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Mar 2013 16:57:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51175@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Just a simple branding plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"elsteno\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Chatme.im ShortCode\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/chatmeim-shortcode/#post-51329\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 31 Mar 2013 12:23:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51329@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"This plugin add ChatMe Shortcode to Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Thomas Camaran\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Really Simple Popup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/extend/plugins/really-simple-popup/#post-51234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2013 14:20:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51234@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Simple, easy to use, fancybox style popup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"huntlyc\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Paginated Effects Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/extend/plugins/paginated-effects-gallery/#post-51323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Mar 2013 22:42:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51323@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"A simple, light and easy-to-use plugin that adds jQuery pagination to the standard wordpress gallery with cool jquery effects.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Nadeem Kelly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:48:\"http://wordpress.org/extend/plugins/rss/view/new\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 01 Apr 2013 16:41:03 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Mon, 01 Apr 2013 16:49:58 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Mon, 01 Apr 2013 16:14:58 +0000\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}","no");
INSERT INTO wp_options VALUES("7463","0","_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc","1364877665","no");
INSERT INTO wp_options VALUES("7464","0","_transient_feed_mod_57bc725ad6568758915363af670fd8bc","1364834465","no");
INSERT INTO wp_options VALUES("7465","0","_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2","1364877666","no");
INSERT INTO wp_options VALUES("7466","0","_transient_feed_1a5f760f2e2b48827d4974a60857e7c2","a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/updated/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Apr 2013 16:36:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Cloudflare Cache Purge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/cloudflare-cache-purge/#post-51250\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2013 22:01:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51250@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"Author URI: <a href=\"http://www.fiftyandfifty.org/\" rel=\"nofollow\">http://www.fiftyandfifty.org/</a>\n\nPurge your entire Cloudflare cache from within Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"shanaver\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Relative Date Template Tag\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.org/extend/plugins/relative-date-template-tag/#post-51254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Mar 2013 03:06:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51254@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Gives developers two template tags for retrieving a relative date instead of an exact date for posts.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Eric Allen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Contact Us By Lord Linus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"http://wordpress.org/extend/plugins/contact-us-by-lord-linus/#post-51203\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2013 09:34:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51203@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Contact Us form generates a custom contact form on your website page, or post.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"lordlinus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Events Made Easy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/extend/plugins/events-made-easy/#post-30361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Sep 2011 22:00:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"30361@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Manage and display events. Includes recurring events; locations; widgets; Google maps; RSVP; ICAL and RSS feeds; PAYPAL, 2Checkout, Webmoney and Googl\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Franky\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"wp Pause Ads\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/wp-pause-ads/#post-49615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Feb 2013 22:10:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"49615@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"This plugin allows you to create HTML/CSS/JS Code Snippets and to embed them anywhere in your posts, using a shortcode.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Didier Sampaolo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Reveal Page Templates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/extend/plugins/reveal-page-templates/#post-14694\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 12 Dec 2009 02:30:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"14694@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"Adds a column to the Edit Pages Dashboard screen displaying the Page Template assigned to each Page.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"studiograsshopper\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Kazooky Loyalty\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/extend/plugins/kazooky-loyalty-rewards/#post-43161\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2012 20:56:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"43161@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Coded By <a href=\"http://www.kazookyloyalty.com\" rel=\"nofollow\">http://www.kazookyloyalty.com</a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"kazooky\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Custom Taxonomies Menu Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/custom-taxonomies-menu-widget/#post-21423\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Oct 2010 19:04:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"21423@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"Creates a simple menu of your custom taxonomies and their associated terms, ideal for sidebars. Highly customisable via widget control panel.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"studiograsshopper\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WP Tracklink\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/wp-tracklink/#post-51008\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Mar 2013 18:40:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51008@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Tracks referrer links and how often they have clicked and displays them on your Wordpress widget sidebar. Increase your page ranking due to backlink.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Jules81\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"MarcTV Video Embed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/extend/plugins/marctv-jquery-video-embed/#post-22859\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Dec 2010 13:18:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"22859@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Loads an image with play icon instead of an embed code which is only embedded after the image has been clicked. Saves loading time and bandwidth. And\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"marcdk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress Download Manager\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/extend/plugins/download-manager/#post-15863\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Feb 2010 08:21:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"15863@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"This is a Files and Document Management plugin which will help you to manage, track and control file downloads from your wordpress site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Shaon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"TTLive\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/ttlive/#post-44401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 14 Oct 2012 10:59:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44401@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"A simple wordpress plugin to get the data from the ttlive-system and display in your wp-post or wp-page with shortcode.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"finalan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"FullscreenWidth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/extend/plugins/fullscreenwidth/#post-51318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Mar 2013 18:06:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"51318@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"FullscreenWidth adds a input field to change the editarea width, next to the toolbar buttons at the fullscreen view.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Rufnex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Design Approval System\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/design-approval-system/#post-41388\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Aug 2012 22:00:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"41388@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"A system to streamline the process of getting designs, photos, or videos approved by clients quickly.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"slickremix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"MVIS Security Center\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/extend/plugins/mvis-security-center/#post-44179\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Oct 2012 11:32:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"44179@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"MVIS Security Center shows you exactly how to lock down your setup and sends subscribed users real-time vulnerability alerts for their site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"secconsult\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/updated\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 01 Apr 2013 16:41:06 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 28 Mar 2013 22:01:07 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}","no");
INSERT INTO wp_options VALUES("7467","0","_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2","1364877666","no");
INSERT INTO wp_options VALUES("7468","0","_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2","1364834466","no");
INSERT INTO wp_options VALUES("7469","0","_transient_timeout_plugin_slugs","1364922161","no");
INSERT INTO wp_options VALUES("7470","0","_transient_plugin_slugs","a:10:{i:0;s:19:\"akismet/akismet.php\";i:1;s:69:\"contact-form-with-a-meeting-scheduler-by-vcita/vcita-contact-form.php\";i:2;s:21:\"facebook/facebook.php\";i:3;s:9:\"hello.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:45:\"limit-login-attempts/limit-login-attempts.php\";i:6;s:23:\"mailchimp/mailchimp.php\";i:7;s:31:\"spotify-embed/spotify-embed.php\";i:8;s:25:\"vm-backups/vm-backups.php\";i:9;s:24:\"wordpress-seo/wp-seo.php\";}","no");
INSERT INTO wp_options VALUES("7471","0","_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e","1364877668","no");
INSERT INTO wp_options VALUES("7472","0","_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e","<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/facebook/\'>Facebook</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=facebook&amp;_wpnonce=39252d9c56&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Facebook\'>Install</a>)</span>\n<p>Add Facebook social plugins and the ability to publish new posts to a Facebook Timeline or Facebook Page. Official Facebook plugin.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/fullscreenwidth/\'>FullscreenWidth</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=fullscreenwidth&amp;_wpnonce=e96d32fe7a&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'FullscreenWidth\'>Install</a>)</span>\n<p>FullscreenWidth adds a input field to change the editarea width, next to the toolbar buttons at the fullscreen view.</p>\n<h4>Recently Updated</h4>\n<h5><a href=\'http://wordpress.org/extend/plugins/contact-us-by-lord-linus/\'>Contact Us By Lord Linus</a></h5>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=contact-us-by-lord-linus&amp;_wpnonce=223012a8d8&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Contact Us By Lord Linus\'>Install</a>)</span>\n<p>Contact Us form generates a custom contact form on your website page, or post.</p>\n","no");
INSERT INTO wp_options VALUES("7473","0","_site_transient_timeout_wporg_theme_feature_list","1364852923","yes");
INSERT INTO wp_options VALUES("7474","0","_site_transient_wporg_theme_feature_list","a:5:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:7:\"Columns\";a:6:{i:0;s:10:\"one-column\";i:1;s:11:\"two-columns\";i:2;s:13:\"three-columns\";i:3;s:12:\"four-columns\";i:4;s:12:\"left-sidebar\";i:5;s:13:\"right-sidebar\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}s:8:\"Features\";a:19:{i:0;s:8:\"blavatar\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:20:\"front-page-post-form\";i:11;s:19:\"full-width-template\";i:12;s:12:\"microformats\";i:13;s:12:\"post-formats\";i:14;s:20:\"rtl-language-support\";i:15;s:11:\"sticky-post\";i:16;s:13:\"theme-options\";i:17;s:17:\"threaded-comments\";i:18;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}","yes");
INSERT INTO wp_options VALUES("7477","0","_transient_timeout_embed_codecontact207058100%px450px","1364838268","no");
INSERT INTO wp_options VALUES("7478","0","_transient_embed_codecontact207058100%px450px","<iframe src=\"http://www.vcita.com/contact_form?v=a9a6413d&ver=2\" width=\"100%px\" height=\"450px\" scrolling=\"no\" frameborder=\"0\" style=\"\">\n  <p>Contact Adam D. Kubizna</p>\n  <p><a href=\"http://www.vcita.com/meeting_scheduler?v=a9a6413d\" target=\"_blank\">Set a Meeting</a> or\n<a href=\"http://www.vcita.com/contact_page?v=a9a6413d\" target=\"_blank\">Send a Message</a>\n</p>\n  <p>Powered by <a href=\'http://www.vcita.com/?invite=VR_PB-207058\'>vCita</a></p>\n</iframe>\n<DIV style=\"width:100%px;text-align:right;font-size:12px;color:#62656a;font-family:Arial\"><DIV style=\"padding: 5px 10px;\"><a href=\'http://www.vcita.com/home?invite=VR_STATIC-207058\' target=\'_blank\' style=\'color:#3D60AF;text-decoration: underline;\'>Contact Form & Online Scheduling</a> by vCita</DIV></DIV>\n","no");
INSERT INTO wp_options VALUES("7480","0","_site_transient_update_themes","O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1364842123;s:7:\"checked\";a:5:{s:18:\"desk-mess-mirrored\";s:3:\"2.2\";s:7:\"edegree\";s:3:\"1.1\";s:7:\"iribbon\";s:6:\"1.0.32\";s:12:\"twentyeleven\";s:3:\"1.5\";s:9:\"twentyten\";s:3:\"1.5\";}s:8:\"response\";a:0:{}}","yes");
INSERT INTO wp_options VALUES("7482","0","_site_transient_update_plugins","O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1364835759;s:7:\"checked\";a:10:{s:19:\"akismet/akismet.php\";s:5:\"2.5.7\";s:69:\"contact-form-with-a-meeting-scheduler-by-vcita/vcita-contact-form.php\";s:5:\"3.1.0\";s:21:\"facebook/facebook.php\";s:5:\"1.3.1\";s:9:\"hello.php\";s:3:\"1.6\";s:19:\"jetpack/jetpack.php\";s:5:\"2.2.1\";s:45:\"limit-login-attempts/limit-login-attempts.php\";s:5:\"1.7.1\";s:23:\"mailchimp/mailchimp.php\";s:6:\"1.2.13\";s:31:\"spotify-embed/spotify-embed.php\";s:5:\"0.2.1\";s:25:\"vm-backups/vm-backups.php\";s:3:\"1.0\";s:24:\"wordpress-seo/wp-seo.php\";s:5:\"1.4.4\";}s:8:\"response\";a:0:{}}","yes");
INSERT INTO wp_options VALUES("7483","0","_transient_timeout_facebook_locale","1364922160","no");
INSERT INTO wp_options VALUES("7484","0","_transient_facebook_locale","en_US","no");
INSERT INTO wp_options VALUES("7485","0","facebook_migration_10","1","yes");
INSERT INTO wp_options VALUES("7486","0","facebook_migration_115","1","yes");
INSERT INTO wp_options VALUES("7487","0","facebook_migration_118","1","yes");
INSERT INTO wp_options VALUES("7497","0","_transient_timeout_embed_codewidget207058100%px430px","1364843027","no");
INSERT INTO wp_options VALUES("7498","0","_transient_embed_codewidget207058100%px430px","<iframe src=\"http://www.vcita.com/contact_widget?v=a9a6413d&ver=2\" width=\"100%px\" height=\"430px\" scrolling=\"no\" frameborder=\"0\" style=\"max-width:525;\">\n  <p>Contact Adam D. Kubizna</p>\n  <p><a href=\"http://www.vcita.com/meeting_scheduler?v=a9a6413d\" target=\"_blank\">Set a Meeting</a> or\n<a href=\"http://www.vcita.com/contact_page?v=a9a6413d\" target=\"_blank\">Send a Message</a>\n</p>\n  <p>Powered by <a href=\'http://www.vcita.com/?invite=VR_PB-207058\'>vCita</a></p>\n</iframe>\n<DIV style=\"width:100%px;max-width:525;text-align:right;font-size:12px;color:#62656a;font-family:Arial, sans-serif\"><DIV style=\"padding: 5px 10px;\"><a href=\'http://www.vcita.com/home?invite=VR_STATIC-207058\' target=\'_blank\' style=\'color:#3D60AF;text-decoration: underline;\'>Powered by vCita</a></DIV></DIV>\n","no");
INSERT INTO wp_options VALUES("7499","0","_site_transient_timeout_theme_roots","1364849218","yes");
INSERT INTO wp_options VALUES("7500","0","_site_transient_theme_roots","a:5:{s:18:\"desk-mess-mirrored\";s:7:\"/themes\";s:7:\"edegree\";s:7:\"/themes\";s:7:\"iribbon\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";}","yes");
INSERT INTO wp_options VALUES("7501","0","_transient_timeout_wpcom_subscribers_total","1364845633","no");
INSERT INTO wp_options VALUES("7502","0","_transient_wpcom_subscribers_total","a:2:{s:6:\"status\";s:7:\"success\";s:5:\"value\";i:0;}","no");



DROP TABLE wp_postmeta;

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned 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=InnoDB AUTO_INCREMENT=442 DEFAULT CHARSET=utf8;

INSERT INTO wp_postmeta VALUES("22","13","_wp_attached_file","2012/09/rainbow1.jpg");
INSERT INTO wp_postmeta VALUES("23","13","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"384\";s:6:\"height\";s:3:\"512\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'72\'\";s:4:\"file\";s:20:\"2012/09/rainbow1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"rainbow1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"rainbow1-225x300.jpg\";s:5:\"width\";s:3:\"225\";s:6:\"height\";s:3:\"300\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("55","19","_wp_attached_file","2012/09/385406_10150975943612727_1356835336_n.jpg");
INSERT INTO wp_postmeta VALUES("56","19","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"320\";s:6:\"height\";s:3:\"320\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:49:\"2012/09/385406_10150975943612727_1356835336_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:49:\"385406_10150975943612727_1356835336_n-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:49:\"385406_10150975943612727_1356835336_n-300x300.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:49:\"385406_10150975943612727_1356835336_n-100x100.jpg\";s:5:\"width\";s:3:\"100\";s:6:\"height\";s:3:\"100\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("59","23","_wp_attached_file","2012/09/adamlogo.jpg");
INSERT INTO wp_postmeta VALUES("60","23","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"222\";s:6:\"height\";s:2:\"27\";s:14:\"hwstring_small\";s:23:\"height=\'15\' width=\'128\'\";s:4:\"file\";s:20:\"2012/09/adamlogo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"adamlogo-150x27.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"27\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:19:\"adamlogo-100x27.jpg\";s:5:\"width\";s:3:\"100\";s:6:\"height\";s:2:\"27\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("100","36","_edit_last","1");
INSERT INTO wp_postmeta VALUES("101","36","_edit_lock","1355969101:1");
INSERT INTO wp_postmeta VALUES("102","36","page_sidebar","0");
INSERT INTO wp_postmeta VALUES("103","36","hide_page_title","on");
INSERT INTO wp_postmeta VALUES("104","36","page_section_order","page_section,breadcrumbs");
INSERT INTO wp_postmeta VALUES("105","36","page_slide_one_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("106","36","page_slide_one_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("107","36","page_slide_two_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("108","36","page_slide_two_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("109","36","page_slide_three_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("110","36","page_slide_three_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("111","36","extra_callout_options","off");
INSERT INTO wp_postmeta VALUES("112","36","custom_callout_text_color","#");
INSERT INTO wp_postmeta VALUES("113","47","_edit_last","1");
INSERT INTO wp_postmeta VALUES("114","47","_edit_lock","1364837087:1");
INSERT INTO wp_postmeta VALUES("115","48","_wp_attached_file","2012/09/76021_463457197726_2342275_n.jpg");
INSERT INTO wp_postmeta VALUES("116","48","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"457\";s:6:\"height\";s:3:\"505\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'86\'\";s:4:\"file\";s:40:\"2012/09/76021_463457197726_2342275_n.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:40:\"76021_463457197726_2342275_n-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:40:\"76021_463457197726_2342275_n-271x300.jpg\";s:5:\"width\";s:3:\"271\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:40:\"76021_463457197726_2342275_n-100x100.jpg\";s:5:\"width\";s:3:\"100\";s:6:\"height\";s:3:\"100\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("117","47","page_sidebar","0");
INSERT INTO wp_postmeta VALUES("118","47","hide_page_title","on");
INSERT INTO wp_postmeta VALUES("119","47","page_section_order","page_section,breadcrumbs");
INSERT INTO wp_postmeta VALUES("120","47","page_slide_one_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("121","47","page_slide_one_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("122","47","page_slide_two_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("123","47","page_slide_two_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("124","47","page_slide_three_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("125","47","page_slide_three_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("126","47","extra_callout_options","off");
INSERT INTO wp_postmeta VALUES("127","47","custom_callout_text_color","#");
INSERT INTO wp_postmeta VALUES("128","51","_edit_last","1");
INSERT INTO wp_postmeta VALUES("129","51","_edit_lock","1363103981:1");
INSERT INTO wp_postmeta VALUES("130","51","page_sidebar","0");
INSERT INTO wp_postmeta VALUES("131","51","hide_page_title","on");
INSERT INTO wp_postmeta VALUES("132","51","page_section_order","page_section,breadcrumbs");
INSERT INTO wp_postmeta VALUES("133","51","page_slide_one_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("134","51","page_slide_one_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("135","51","page_slide_two_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("136","51","page_slide_two_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("137","51","page_slide_three_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("138","51","page_slide_three_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("139","51","extra_callout_options","off");
INSERT INTO wp_postmeta VALUES("140","51","custom_callout_text_color","#");
INSERT INTO wp_postmeta VALUES("144","60","_edit_last","1");
INSERT INTO wp_postmeta VALUES("145","60","_edit_lock","1358813409:1");
INSERT INTO wp_postmeta VALUES("148","60","page_sidebar","0");
INSERT INTO wp_postmeta VALUES("149","60","hide_page_title","on");
INSERT INTO wp_postmeta VALUES("150","60","page_section_order","page_section,breadcrumbs");
INSERT INTO wp_postmeta VALUES("151","60","page_slide_one_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("152","60","page_slide_one_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("153","60","page_slide_two_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("154","60","page_slide_two_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("155","60","page_slide_three_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("156","60","page_slide_three_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("157","60","extra_callout_options","off");
INSERT INTO wp_postmeta VALUES("158","60","custom_callout_text_color","#");
INSERT INTO wp_postmeta VALUES("159","63","_edit_last","1");
INSERT INTO wp_postmeta VALUES("160","63","_edit_lock","1363103785:1");
INSERT INTO wp_postmeta VALUES("161","63","page_sidebar","0");
INSERT INTO wp_postmeta VALUES("162","63","hide_page_title","on");
INSERT INTO wp_postmeta VALUES("163","63","page_section_order","page_section,breadcrumbs");
INSERT INTO wp_postmeta VALUES("164","63","page_slide_one_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("165","63","page_slide_one_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("166","63","page_slide_two_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("167","63","page_slide_two_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("168","63","page_slide_three_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("169","63","page_slide_three_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("170","63","extra_callout_options","off");
INSERT INTO wp_postmeta VALUES("171","63","custom_callout_text_color","#");
INSERT INTO wp_postmeta VALUES("181","68","_edit_last","1");
INSERT INTO wp_postmeta VALUES("182","68","_edit_lock","1358813787:1");
INSERT INTO wp_postmeta VALUES("183","68","page_sidebar","0");
INSERT INTO wp_postmeta VALUES("184","68","hide_page_title","on");
INSERT INTO wp_postmeta VALUES("185","68","page_section_order","page_section,breadcrumbs");
INSERT INTO wp_postmeta VALUES("186","68","page_slide_one_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("187","68","page_slide_one_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("188","68","page_slide_two_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("189","68","page_slide_two_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("190","68","page_slide_three_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("191","68","page_slide_three_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("192","68","extra_callout_options","off");
INSERT INTO wp_postmeta VALUES("193","68","custom_callout_text_color","#");
INSERT INTO wp_postmeta VALUES("285","47","_yoast_wpseo_linkdex","58");
INSERT INTO wp_postmeta VALUES("286","63","_yoast_wpseo_linkdex","0");
INSERT INTO wp_postmeta VALUES("287","51","_yoast_wpseo_linkdex","0");
INSERT INTO wp_postmeta VALUES("288","68","_yoast_wpseo_linkdex","0");
INSERT INTO wp_postmeta VALUES("289","60","_yoast_wpseo_linkdex","0");
INSERT INTO wp_postmeta VALUES("290","36","_yoast_wpseo_linkdex","0");
INSERT INTO wp_postmeta VALUES("291","47","_yoast_wpseo_focuskw","adam kubizna, Adam D. Kubizna, Adam Kubizna, Kubizna");
INSERT INTO wp_postmeta VALUES("292","47","_yoast_wpseo_title","Adam D. Kubizna, Student");
INSERT INTO wp_postmeta VALUES("293","47","_yoast_wpseo_metadesc","");
INSERT INTO wp_postmeta VALUES("294","47","_yoast_wpseo_meta-robots-noindex","0");
INSERT INTO wp_postmeta VALUES("295","47","_yoast_wpseo_meta-robots-nofollow","0");
INSERT INTO wp_postmeta VALUES("296","47","_yoast_wpseo_meta-robots-adv","none");
INSERT INTO wp_postmeta VALUES("297","47","_yoast_wpseo_sitemap-include","-");
INSERT INTO wp_postmeta VALUES("298","47","_yoast_wpseo_sitemap-prio","-");
INSERT INTO wp_postmeta VALUES("299","47","_yoast_wpseo_canonical","");
INSERT INTO wp_postmeta VALUES("300","47","_yoast_wpseo_redirect","");
INSERT INTO wp_postmeta VALUES("301","47","_yoast_wpseo_opengraph-description","");
INSERT INTO wp_postmeta VALUES("302","47","_yoast_wpseo_google-plus-description","");
INSERT INTO wp_postmeta VALUES("303","51","_yoast_wpseo_focuskw","");
INSERT INTO wp_postmeta VALUES("304","51","_yoast_wpseo_title","");
INSERT INTO wp_postmeta VALUES("305","51","_yoast_wpseo_metadesc","");
INSERT INTO wp_postmeta VALUES("306","51","_yoast_wpseo_meta-robots-noindex","0");
INSERT INTO wp_postmeta VALUES("307","51","_yoast_wpseo_meta-robots-nofollow","0");
INSERT INTO wp_postmeta VALUES("308","51","_yoast_wpseo_meta-robots-adv","none");
INSERT INTO wp_postmeta VALUES("309","51","_yoast_wpseo_sitemap-include","-");
INSERT INTO wp_postmeta VALUES("310","51","_yoast_wpseo_sitemap-prio","-");
INSERT INTO wp_postmeta VALUES("311","51","_yoast_wpseo_canonical","");
INSERT INTO wp_postmeta VALUES("312","51","_yoast_wpseo_redirect","");
INSERT INTO wp_postmeta VALUES("313","51","_yoast_wpseo_opengraph-description","");
INSERT INTO wp_postmeta VALUES("314","51","_yoast_wpseo_google-plus-description","");
INSERT INTO wp_postmeta VALUES("315","36","_yoast_wpseo_focuskw","");
INSERT INTO wp_postmeta VALUES("316","36","_yoast_wpseo_title","");
INSERT INTO wp_postmeta VALUES("317","36","_yoast_wpseo_metadesc","");
INSERT INTO wp_postmeta VALUES("318","36","_yoast_wpseo_meta-robots-noindex","0");
INSERT INTO wp_postmeta VALUES("319","36","_yoast_wpseo_meta-robots-nofollow","0");
INSERT INTO wp_postmeta VALUES("320","36","_yoast_wpseo_meta-robots-adv","none");
INSERT INTO wp_postmeta VALUES("321","36","_yoast_wpseo_sitemap-include","-");
INSERT INTO wp_postmeta VALUES("322","36","_yoast_wpseo_sitemap-prio","-");
INSERT INTO wp_postmeta VALUES("323","36","_yoast_wpseo_canonical","");
INSERT INTO wp_postmeta VALUES("324","36","_yoast_wpseo_redirect","");
INSERT INTO wp_postmeta VALUES("325","36","_yoast_wpseo_opengraph-description","");
INSERT INTO wp_postmeta VALUES("326","36","_yoast_wpseo_google-plus-description","");
INSERT INTO wp_postmeta VALUES("327","60","_yoast_wpseo_focuskw","");
INSERT INTO wp_postmeta VALUES("328","60","_yoast_wpseo_title","");
INSERT INTO wp_postmeta VALUES("329","60","_yoast_wpseo_metadesc","");
INSERT INTO wp_postmeta VALUES("330","60","_yoast_wpseo_meta-robots-noindex","0");
INSERT INTO wp_postmeta VALUES("331","60","_yoast_wpseo_meta-robots-nofollow","0");
INSERT INTO wp_postmeta VALUES("332","60","_yoast_wpseo_meta-robots-adv","none");
INSERT INTO wp_postmeta VALUES("333","60","_yoast_wpseo_sitemap-include","-");
INSERT INTO wp_postmeta VALUES("334","60","_yoast_wpseo_sitemap-prio","-");
INSERT INTO wp_postmeta VALUES("335","60","_yoast_wpseo_canonical","");
INSERT INTO wp_postmeta VALUES("336","60","_yoast_wpseo_redirect","");
INSERT INTO wp_postmeta VALUES("337","60","_yoast_wpseo_opengraph-description","");
INSERT INTO wp_postmeta VALUES("338","60","_yoast_wpseo_google-plus-description","");
INSERT INTO wp_postmeta VALUES("339","100","_wp_attached_file","2012/09/AdamLogoLarger.jpg");
INSERT INTO wp_postmeta VALUES("340","100","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"350\";s:6:\"height\";s:2:\"39\";s:14:\"hwstring_small\";s:23:\"height=\'14\' width=\'128\'\";s:4:\"file\";s:26:\"2012/09/AdamLogoLarger.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:25:\"AdamLogoLarger-150x39.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"39\";}s:6:\"medium\";a:3:{s:4:\"file\";s:25:\"AdamLogoLarger-300x33.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"33\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:25:\"AdamLogoLarger-100x39.jpg\";s:5:\"width\";s:3:\"100\";s:6:\"height\";s:2:\"39\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("347","68","_yoast_wpseo_focuskw","");
INSERT INTO wp_postmeta VALUES("348","68","_yoast_wpseo_title","");
INSERT INTO wp_postmeta VALUES("349","68","_yoast_wpseo_metadesc","");
INSERT INTO wp_postmeta VALUES("350","68","_yoast_wpseo_meta-robots-noindex","0");
INSERT INTO wp_postmeta VALUES("351","68","_yoast_wpseo_meta-robots-nofollow","0");
INSERT INTO wp_postmeta VALUES("352","68","_yoast_wpseo_meta-robots-adv","none");
INSERT INTO wp_postmeta VALUES("353","68","_yoast_wpseo_sitemap-include","-");
INSERT INTO wp_postmeta VALUES("354","68","_yoast_wpseo_sitemap-prio","-");
INSERT INTO wp_postmeta VALUES("355","68","_yoast_wpseo_canonical","");
INSERT INTO wp_postmeta VALUES("356","68","_yoast_wpseo_redirect","");
INSERT INTO wp_postmeta VALUES("357","68","_yoast_wpseo_opengraph-description","");
INSERT INTO wp_postmeta VALUES("358","68","_yoast_wpseo_google-plus-description","");
INSERT INTO wp_postmeta VALUES("359","63","_yoast_wpseo_focuskw","");
INSERT INTO wp_postmeta VALUES("360","63","_yoast_wpseo_title","");
INSERT INTO wp_postmeta VALUES("361","63","_yoast_wpseo_metadesc","");
INSERT INTO wp_postmeta VALUES("362","63","_yoast_wpseo_meta-robots-noindex","0");
INSERT INTO wp_postmeta VALUES("363","63","_yoast_wpseo_meta-robots-nofollow","0");
INSERT INTO wp_postmeta VALUES("364","63","_yoast_wpseo_meta-robots-adv","none");
INSERT INTO wp_postmeta VALUES("365","63","_yoast_wpseo_sitemap-include","-");
INSERT INTO wp_postmeta VALUES("366","63","_yoast_wpseo_sitemap-prio","-");
INSERT INTO wp_postmeta VALUES("367","63","_yoast_wpseo_canonical","");
INSERT INTO wp_postmeta VALUES("368","63","_yoast_wpseo_redirect","");
INSERT INTO wp_postmeta VALUES("369","63","_yoast_wpseo_opengraph-description","");
INSERT INTO wp_postmeta VALUES("370","63","_yoast_wpseo_google-plus-description","");
INSERT INTO wp_postmeta VALUES("371","124","_yoast_wpseo_linkdex","0");
INSERT INTO wp_postmeta VALUES("372","124","_edit_last","1");
INSERT INTO wp_postmeta VALUES("373","124","_edit_lock","1357711495:1");
INSERT INTO wp_postmeta VALUES("374","124","page_sidebar","0");
INSERT INTO wp_postmeta VALUES("375","124","hide_page_title","on");
INSERT INTO wp_postmeta VALUES("376","124","page_section_order","page_section,breadcrumbs");
INSERT INTO wp_postmeta VALUES("377","124","page_slide_one_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("378","124","page_slide_one_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("379","124","page_slide_two_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("380","124","page_slide_two_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("381","124","page_slide_three_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("382","124","page_slide_three_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("383","124","extra_callout_options","off");
INSERT INTO wp_postmeta VALUES("384","124","custom_callout_text_color","#");
INSERT INTO wp_postmeta VALUES("385","124","_yoast_wpseo_focuskw","");
INSERT INTO wp_postmeta VALUES("386","124","_yoast_wpseo_title","");
INSERT INTO wp_postmeta VALUES("387","124","_yoast_wpseo_metadesc","");
INSERT INTO wp_postmeta VALUES("388","124","_yoast_wpseo_meta-robots-noindex","0");
INSERT INTO wp_postmeta VALUES("389","124","_yoast_wpseo_meta-robots-nofollow","0");
INSERT INTO wp_postmeta VALUES("390","124","_yoast_wpseo_meta-robots-adv","none");
INSERT INTO wp_postmeta VALUES("391","124","_yoast_wpseo_sitemap-include","-");
INSERT INTO wp_postmeta VALUES("392","124","_yoast_wpseo_sitemap-prio","-");
INSERT INTO wp_postmeta VALUES("393","124","_yoast_wpseo_canonical","");
INSERT INTO wp_postmeta VALUES("394","124","_yoast_wpseo_redirect","");
INSERT INTO wp_postmeta VALUES("395","124","_yoast_wpseo_opengraph-description","");
INSERT INTO wp_postmeta VALUES("396","124","_yoast_wpseo_google-plus-description","");
INSERT INTO wp_postmeta VALUES("397","127","_wp_attached_file","2012/10/UN-Report.pdf");
INSERT INTO wp_postmeta VALUES("398","127","_wp_attachment_metadata","a:0:{}");
INSERT INTO wp_postmeta VALUES("401","152","_wp_attached_file","2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf");
INSERT INTO wp_postmeta VALUES("402","152","_wp_attachment_metadata","a:0:{}");
INSERT INTO wp_postmeta VALUES("403","158","_wp_attached_file","2012/12/076e31b.jpg");
INSERT INTO wp_postmeta VALUES("404","158","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"263\";s:6:\"height\";s:3:\"263\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:19:\"2012/12/076e31b.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"076e31b-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:19:\"076e31b-100x100.jpg\";s:5:\"width\";s:3:\"100\";s:6:\"height\";s:3:\"100\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("405","124","_wpas_done_all","1");
INSERT INTO wp_postmeta VALUES("406","60","_wpas_done_all","1");
INSERT INTO wp_postmeta VALUES("407","182","_yoast_wpseo_linkdex","35");
INSERT INTO wp_postmeta VALUES("408","182","_edit_last","1");
INSERT INTO wp_postmeta VALUES("409","182","_edit_lock","1363195508:1");
INSERT INTO wp_postmeta VALUES("410","183","_wp_attached_file","2013/01/650_51403947726_8976_n-2.jpg");
INSERT INTO wp_postmeta VALUES("411","183","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"227\";s:6:\"height\";s:3:\"434\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'50\'\";s:4:\"file\";s:36:\"2013/01/650_51403947726_8976_n-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"650_51403947726_8976_n-2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"650_51403947726_8976_n-2-156x300.jpg\";s:5:\"width\";s:3:\"156\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:36:\"650_51403947726_8976_n-2-100x100.jpg\";s:5:\"width\";s:3:\"100\";s:6:\"height\";s:3:\"100\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("412","182","_wpas_done_all","1");
INSERT INTO wp_postmeta VALUES("413","182","page_sidebar","0");
INSERT INTO wp_postmeta VALUES("414","182","hide_page_title","on");
INSERT INTO wp_postmeta VALUES("415","182","page_section_order","page_section,breadcrumbs");
INSERT INTO wp_postmeta VALUES("416","182","page_slide_one_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("417","182","page_slide_one_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("418","182","page_slide_two_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("419","182","page_slide_two_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("420","182","page_slide_three_image","http://adamkubizna.com/wordpress/wp-content/themes/iribbon/images/responseslider.jpg");
INSERT INTO wp_postmeta VALUES("421","182","page_slide_three_url","http://cyberchimps.com");
INSERT INTO wp_postmeta VALUES("422","182","extra_callout_options","off");
INSERT INTO wp_postmeta VALUES("423","182","custom_callout_text_color","#");
INSERT INTO wp_postmeta VALUES("424","182","_yoast_wpseo_focuskw","adam kubizna, kubizna, speaker, adam kubizna public speaker");
INSERT INTO wp_postmeta VALUES("425","182","_yoast_wpseo_title","");
INSERT INTO wp_postmeta VALUES("426","182","_yoast_wpseo_metadesc","");
INSERT INTO wp_postmeta VALUES("427","182","_yoast_wpseo_meta-robots-noindex","0");
INSERT INTO wp_postmeta VALUES("428","182","_yoast_wpseo_meta-robots-nofollow","0");
INSERT INTO wp_postmeta VALUES("429","182","_yoast_wpseo_meta-robots-adv","none");
INSERT INTO wp_postmeta VALUES("430","182","_yoast_wpseo_sitemap-include","-");
INSERT INTO wp_postmeta VALUES("431","182","_yoast_wpseo_sitemap-prio","-");
INSERT INTO wp_postmeta VALUES("432","182","_yoast_wpseo_canonical","");
INSERT INTO wp_postmeta VALUES("433","182","_yoast_wpseo_redirect","");
INSERT INTO wp_postmeta VALUES("434","182","_yoast_wpseo_opengraph-description","");
INSERT INTO wp_postmeta VALUES("435","182","_yoast_wpseo_google-plus-description","");
INSERT INTO wp_postmeta VALUES("436","203","_wp_attached_file","2012/09/blue-elephant1.jpeg");
INSERT INTO wp_postmeta VALUES("437","203","_wp_attachment_metadata","a:5:{s:5:\"width\";s:2:\"95\";s:6:\"height\";s:2:\"95\";s:14:\"hwstring_small\";s:22:\"height=\'95\' width=\'95\'\";s:4:\"file\";s:27:\"2012/09/blue-elephant1.jpeg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("438","204","_wp_attached_file","2012/09/0aee647.jpg");
INSERT INTO wp_postmeta VALUES("439","204","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"371\";s:6:\"height\";s:3:\"371\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:19:\"2012/09/0aee647.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"0aee647-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"0aee647-300x300.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:19:\"0aee647-100x100.jpg\";s:5:\"width\";s:3:\"100\";s:6:\"height\";s:3:\"100\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");
INSERT INTO wp_postmeta VALUES("440","211","_wp_attached_file","2012/09/0aee647-300x3001.jpg");
INSERT INTO wp_postmeta VALUES("441","211","_wp_attachment_metadata","a:6:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"272\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'105\'\";s:4:\"file\";s:28:\"2012/09/0aee647-300x3001.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"0aee647-300x3001-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:28:\"0aee647-300x3001-100x100.jpg\";s:5:\"width\";s:3:\"100\";s:6:\"height\";s:3:\"100\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}");



DROP TABLE wp_posts;

CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned 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_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) unsigned 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`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=225 DEFAULT CHARSET=utf8;

INSERT INTO wp_posts VALUES("13","1","2012-09-22 02:57:11","2012-09-22 02:57:11","","rainbow1","","inherit","open","open","","rainbow1","","","2012-09-22 02:57:11","2012-09-22 02:57:11","","0","http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/rainbow1.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("19","1","2012-09-21 22:44:24","2012-09-22 03:44:24","","385406_10150975943612727_1356835336_n","","inherit","open","open","","385406_10150975943612727_1356835336_n","","","2012-09-21 22:44:24","2012-09-22 03:44:24","","0","http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/385406_10150975943612727_1356835336_n.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("23","1","2012-09-21 23:58:22","2012-09-22 03:58:22","","adamlogo","","inherit","open","open","","adamlogo","","","2012-09-21 23:58:22","2012-09-22 03:58:22","","0","http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/adamlogo.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("36","1","2012-09-22 20:35:30","2012-09-23 00:35:30","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment (click the zoom out button to see the most recent places Adam has checked into).\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"https://foursquare.com/kubiznach\">Adam\'s Foursquare </a>\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Where Has Adam Been?","","publish","open","open","","where-has-adam-been","","","2012-12-19 22:05:00","2012-12-20 02:05:00","","0","http://adamkubizna.com/wordpress/?page_id=36","0","page","","0");
INSERT INTO wp_posts VALUES("37","1","2012-09-22 20:32:57","2012-09-23 00:32:57","This is a Google Map that is synced with Adam\'s Foursquare Feed, it updates regularly whenever Adam checks in somewhere","Where has Adam Been?","","inherit","open","open","","36-revision","","","2012-09-22 20:32:57","2012-09-23 00:32:57","","36","http://adamkubizna.com/wordpress/?p=37","0","revision","","0");
INSERT INTO wp_posts VALUES("38","1","2012-09-22 20:33:57","2012-09-23 00:33:57","This is a Google Map that is synced with Adam\'s Foursquare Feed, it updates regularly whenever Adam checks in somewhere.\n\n<iframe width=\"640\" height=\"480\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.503884,0.878906&amp;z=10&amp;output=embed\"></iframe><br /><small><a href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.503884,0.878906&amp;z=10\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>","Where has Adam Been?","","inherit","open","open","","36-revision-2","","","2012-09-22 20:33:57","2012-09-23 00:33:57","","36","http://adamkubizna.com/wordpress/?p=38","0","revision","","0");
INSERT INTO wp_posts VALUES("39","1","2012-09-22 20:34:09","2012-09-23 00:34:09","\n\n<iframe width=\"640\" height=\"480\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.503884,0.878906&amp;z=10&amp;output=embed\"></iframe><br /><small><a href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.503884,0.878906&amp;z=10\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>","Where has Adam Been?","","inherit","open","open","","36-revision-3","","","2012-09-22 20:34:09","2012-09-23 00:34:09","","36","http://adamkubizna.com/wordpress/?p=39","0","revision","","0");
INSERT INTO wp_posts VALUES("40","1","2012-09-22 20:34:13","2012-09-23 00:34:13","\n\n<iframe width=\"640\" height=\"480\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.503884,0.878906&amp;z=10&amp;output=embed\"></iframe><br /><small><a href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.503884,0.878906&amp;z=10\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>","Where has Adam Been?","","inherit","open","open","","36-revision-4","","","2012-09-22 20:34:13","2012-09-23 00:34:13","","36","http://adamkubizna.com/wordpress/?p=40","0","revision","","0");
INSERT INTO wp_posts VALUES("41","1","2012-09-22 20:34:42","2012-09-23 00:34:42","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.503884,0.878906&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"640\" height=\"480\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.503884,0.878906&amp;z=10\">View Larger Map</a></small>","Where has Adam Been?","","inherit","open","open","","36-revision-5","","","2012-09-22 20:34:42","2012-09-23 00:34:42","","36","http://adamkubizna.com/wordpress/?p=41","0","revision","","0");
INSERT INTO wp_posts VALUES("42","1","2012-09-22 20:35:21","2012-09-23 00:35:21","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10\">View Larger Map</a></small>","Where has Adam Been?","","inherit","open","open","","36-revision-6","","","2012-09-22 20:35:21","2012-09-23 00:35:21","","36","http://adamkubizna.com/wordpress/?p=42","0","revision","","0");
INSERT INTO wp_posts VALUES("43","1","2012-09-22 20:35:30","2012-09-23 00:35:30","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10\">View Larger Map</a></small>","Where has Adam Been?","","inherit","open","open","","36-revision-7","","","2012-09-22 20:35:30","2012-09-23 00:35:30","","36","http://adamkubizna.com/wordpress/?p=43","0","revision","","0");
INSERT INTO wp_posts VALUES("44","1","2012-10-10 00:15:42","2012-10-10 04:15:42","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment.\n\nTo follow Adam on Foursquare please click the link below:\n\nAdam\'s Foursquare","Where Has Adam Been?","","inherit","open","open","","36-autosave","","","2012-10-10 00:15:42","2012-10-10 04:15:42","","36","http://adamkubizna.com/wordpress/?p=44","0","revision","","0");
INSERT INTO wp_posts VALUES("45","1","2012-09-22 20:36:24","2012-09-23 00:36:24","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10\">View Larger Map</a></small>\n\n&nbsp;\n\nThis map is synced with Adam\'s FourSquare Account, it updates every time Adam checks in somewhere.","Where has Adam Been?","","inherit","open","open","","36-revision-8","","","2012-09-22 20:36:24","2012-09-23 00:36:24","","36","http://adamkubizna.com/wordpress/?p=45","0","revision","","0");
INSERT INTO wp_posts VALUES("46","1","2012-09-22 20:38:20","2012-09-23 00:38:20","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10\">View Larger Map</a></small>\n\n&nbsp;\n\nThis map is synced with Adam\'s FourSquare Account, it updates every time Adam checks in somewhere.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"http://https://foursquare.com/kubiznach\" target=\"_blank\">Adam\'s Foursquare</a>","Where has Adam Been?","","inherit","open","open","","36-revision-9","","","2012-09-22 20:38:20","2012-09-23 00:38:20","","36","http://adamkubizna.com/wordpress/?p=46","0","revision","","0");
INSERT INTO wp_posts VALUES("47","1","2012-09-22 20:56:53","2012-09-23 00:56:53","<img class=\"alignright size-full wp-image-211\" title=\"0aee647-300x300\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x3001.jpg\" alt=\"\" width=\"300\" height=\"272\" />Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n\n&nbsp;","About Adam","","publish","closed","open","","about-adam-2","","","2013-04-01 13:24:46","2013-04-01 17:24:46","","0","http://adamkubizna.com/wordpress/?page_id=47","0","page","","0");
INSERT INTO wp_posts VALUES("48","1","2012-09-22 20:44:04","2012-09-23 00:44:04","","Adam D. Kubizna","","inherit","closed","open","","76021_463457197726_2342275_n","","","2012-09-22 20:44:04","2012-09-23 00:44:04","","47","http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("49","1","2012-09-22 20:55:15","2012-09-23 00:55:15","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelors of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelors of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", he brought the room to tears as he mentioned how his family excelled him through his Boy Scouting career.","About Adam","","inherit","closed","open","","47-revision","","","2012-09-22 20:55:15","2012-09-23 00:55:15","","47","http://adamkubizna.com/wordpress/?p=49","0","revision","","0");
INSERT INTO wp_posts VALUES("50","1","2012-09-22 20:56:15","2012-09-23 00:56:15","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelors of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelors of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family excelled him through his Boy Scouting career.\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-2","","","2012-09-22 20:56:15","2012-09-23 00:56:15","","47","http://adamkubizna.com/wordpress/?p=50","0","revision","","0");
INSERT INTO wp_posts VALUES("51","1","2012-09-22 20:58:55","2012-09-23 00:58:55","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Internship Opportunities\n\n- Employment Opportunities\n\n- <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">Speaking Engagements </a>\n\n- Information about <a href=\"http://votepa.us\">VotePA</a> and <a href=\"http://vote4marybeth.com\">Friends of Marybeth Kuznik (Campaign PAC)</a>\n\n- Philosophical Discussion\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@adamkubizna.com- Website E-mail\n\n<span style=\"text-decoration: underline;\"><strong>To set up a phone or video call with Adam please use this form below:</strong></span>\n\n[vCitaContact]","Contact Adam","","publish","closed","open","","contact-adam","","","2013-03-12 11:59:40","2013-03-12 15:59:40","","0","http://adamkubizna.com/wordpress/?page_id=51","0","page","","0");
INSERT INTO wp_posts VALUES("52","1","2012-09-22 20:58:05","2012-09-23 00:58:05","","Contact Adam","","inherit","closed","open","","51-revision","","","2012-09-22 20:58:05","2012-09-23 00:58:05","","51","http://adamkubizna.com/wordpress/?p=52","0","revision","","0");
INSERT INTO wp_posts VALUES("54","1","2013-03-07 00:05:19","2013-03-07 04:05:19","<img class=\"alignright size-full wp-image-211\" title=\"0aee647-300x300\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x3001.jpg\" alt=\"\" width=\"300\" height=\"272\" />Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-autosave","","","2013-03-07 00:05:19","2013-03-07 04:05:19","","47","http://adamkubizna.com/wordpress/?p=54","0","revision","","0");
INSERT INTO wp_posts VALUES("55","1","2012-09-22 20:56:53","2012-09-23 00:56:53","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelors of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelors of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family excelled him through his Boy Scouting career.\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-3","","","2012-09-22 20:56:53","2012-09-23 00:56:53","","47","http://adamkubizna.com/wordpress/?p=55","0","revision","","0");
INSERT INTO wp_posts VALUES("56","1","2013-03-12 11:59:31","2013-03-12 15:59:31","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Internship Opportunities\n\n- Employment Opportunities\n\n- <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">Speaking Engagements </a>\n\n- Political Campaigning\n\n- Information about <a href=\"http://votepa.us\">VotePA</a> and <a href=\"http://vote4marybeth.com\">Friends of Marybeth Kuznik (Campaign PAC)</a>\n\n- Philosophical Discussion\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@adamkubizna.com- Website E-mail\n\n<span style=\"text-decoration: underline;\"><strong>To set up a phone or video call with Adam please use this form below:</strong></span>\n\n[vCitaContact]","Contact Adam","","inherit","closed","open","","51-autosave","","","2013-03-12 11:59:31","2013-03-12 15:59:31","","51","http://adamkubizna.com/wordpress/?p=56","0","revision","","0");
INSERT INTO wp_posts VALUES("57","1","2012-09-22 20:58:55","2012-09-23 00:58:55","Adam can be contacted using any of the methods above...","Contact Adam","","inherit","closed","open","","51-revision-2","","","2012-09-22 20:58:55","2012-09-23 00:58:55","","51","http://adamkubizna.com/wordpress/?p=57","0","revision","","0");
INSERT INTO wp_posts VALUES("58","1","2012-09-22 21:25:59","2012-09-23 01:25:59","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Employment Opportunities\n\n- Speaking Engagements\n\n- Information about VotePA and Friends of Marybeth Kuznik\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nMobile:\n724-466-2339\n\n&nbsp;\n\n&nbsp;","Contact Adam","","inherit","closed","open","","51-revision-3","","","2012-09-22 21:25:59","2012-09-23 01:25:59","","51","http://adamkubizna.com/wordpress/?p=58","0","revision","","0");
INSERT INTO wp_posts VALUES("59","1","2012-09-22 21:05:18","2012-09-23 01:05:18","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelors of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelors of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family excelled him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>, Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for  all voting rights and election integrity in Pennsylvania.\n\nAdam is a democrat and currently resides in Uniontown, Pennsylvania.","About Adam","","inherit","closed","open","","47-revision-4","","","2012-09-22 21:05:18","2012-09-23 01:05:18","","47","http://adamkubizna.com/wordpress/?p=59","0","revision","","0");
INSERT INTO wp_posts VALUES("60","1","2012-09-22 21:34:28","2012-09-23 01:34:28","<div title=\"Page 1\">\n<div title=\"Page 1\">\n<div>\n\n&nbsp;\n\n</div>\n<div>\n<div title=\"Page 1\">\n<div>\n<div>\n\n<strong>Objective</strong>\n\nTo become an expert practitioner of accounting and criminology, obtain a BS/MPA degree(s) and CPA/CFE Certification(s), and carry that knowledge and experience into the workplace as an accountant.<img src=\"file:///page1image3624\" alt=\"page1image3624\" width=\"82.320000\" height=\"0.240000\" /> <img src=\"file:///page1image3784\" alt=\"page1image3784\" width=\"82.080000\" height=\"0.240000\" />\n\n</div>\n</div>\n<div>\n\n<strong>Employment Experience</strong>\n\nMcDonald’s Corporation\n\n</div>\n</div>\n<ul>\n	<li>  Kitchen Department Manager; February 2012-Present</li>\n	<li>  Swing Manager; February 2011-February 2012</li>\n	<li>  Manager in Training; August 2010 – February 2011</li>\n	<li>  Crew Person/Trainer; 2008-2010</li>\n</ul>\n</div>\n<div>\n<div>\n\nPast and current responsibilities include: managing a multi million dollar store with a staff of up to twenty employees at a time, maintaining a positive food cost/ QCR weekly, training employees on food safety/FIFO procedures and coaching them on the floor\n\n<strong>Volunteer Experience</strong>\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n</div>\n</div>\n<div>\n<div>\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n<strong>Education</strong>\nCalifornia University of Pennsylvania\n\nBachelor of Science in Business Administration with a concentration in Accounting Bachelor of Science in Justice Studies with a concentration in Forensic Science\nCurrent GPA: 3.25                                                            Expected Graduation: Fall 2014\n\n<strong>Skills/Certification/Awards</strong>\n\n- Proficent in Microsoft Office products and designing websites using Wordpress\n\n- ServSafe Food Safety Certification (Expires in 2015)\n\n- Eagle Scout, Class of 2008, Boy Scouts of America\n\n</div>\n<div>\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>\n&nbsp;\n\n&nbsp;","Résumé","","private","closed","open","","resume","","","2013-01-21 20:11:58","2013-01-22 00:11:58","","0","http://adamkubizna.com/wordpress/?page_id=60","0","page","","0");
INSERT INTO wp_posts VALUES("62","1","2012-09-22 21:33:47","2012-09-23 01:33:47","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\"><img class=\"alignright size-full wp-image-61\" title=\"Adam at Work\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>","Résumé","","inherit","closed","open","","60-revision","","","2012-09-22 21:33:47","2012-09-23 01:33:47","","60","http://adamkubizna.com/wordpress/?p=62","0","revision","","0");
INSERT INTO wp_posts VALUES("63","1","2012-09-22 21:43:45","2012-09-23 01:43:45","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Adam has been featured in many articles and has voiced his opinion in a variety of situations using the media, some of them are below:</strong></span></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/student-rips-privatization-of-liquor-stores/article_cfd41448-a879-5cc4-931c-1b37e049bd67.html\">Adam\'s Letter to the Editor, February, 2013</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor, October, 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Adam in the Press","","publish","closed","open","","adam-in-the-press","","","2013-03-12 11:58:15","2013-03-12 15:58:15","","0","http://adamkubizna.com/wordpress/?page_id=63","0","page","","0");
INSERT INTO wp_posts VALUES("64","1","2012-09-22 21:43:41","2012-09-23 01:43:41","<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a>","Adam in the Press","","inherit","closed","open","","63-revision","","","2012-09-22 21:43:41","2012-09-23 01:43:41","","63","http://adamkubizna.com/wordpress/?p=64","0","revision","","0");
INSERT INTO wp_posts VALUES("65","1","2012-09-22 21:43:45","2012-09-23 01:43:45","<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a>","Adam in the Press","","inherit","closed","open","","63-revision-2","","","2012-09-22 21:43:45","2012-09-23 01:43:45","","63","http://adamkubizna.com/wordpress/?p=65","0","revision","","0");
INSERT INTO wp_posts VALUES("66","1","2012-09-22 21:44:35","2012-09-23 01:44:35","<a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a>\n\n<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a>","Adam in the Press","","inherit","closed","open","","63-revision-3","","","2012-09-22 21:44:35","2012-09-23 01:44:35","","63","http://adamkubizna.com/wordpress/?p=66","0","revision","","0");
INSERT INTO wp_posts VALUES("68","1","2012-09-22 22:05:09","2012-09-23 02:05:09","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Here are a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for the same company (for 18 years)\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n<del>- Tour the Library of Congress</del>\n\n<del>- Tour the Capitol</del>\n\n- Become a motivational speaker\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;","My Dreams","","publish","closed","open","","adams-impossible-list","","","2013-01-21 20:18:15","2013-01-22 00:18:15","","0","http://adamkubizna.com/wordpress/?page_id=68","0","page","","0");
INSERT INTO wp_posts VALUES("69","1","2012-09-22 22:05:07","2012-09-23 02:05:07","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n-Work for a reputable accounting firm\n\n- Skydive\n\n- Graduate college with &lt; 3.25 GPA\n\n- Write a book\n\n- Write someones biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n-Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth","Adam\'s Impossible List","","inherit","closed","open","","68-revision","","","2012-09-22 22:05:07","2012-09-23 02:05:07","","68","http://adamkubizna.com/wordpress/?p=69","0","revision","","0");
INSERT INTO wp_posts VALUES("70","1","2012-09-22 22:19:22","2012-09-23 02:19:22","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for a reputable accounting firm\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Write someone\'s biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n- Tour the Capitol","My Dream\'s","","inherit","closed","open","","68-autosave","","","2012-09-22 22:19:22","2012-09-23 02:19:22","","68","http://adamkubizna.com/wordpress/?p=70","0","revision","","0");
INSERT INTO wp_posts VALUES("71","1","2012-09-22 22:05:09","2012-09-23 02:05:09","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n-Work for a reputable accounting firm\n\n- Skydive\n\n- Graduate college with &lt; 3.25 GPA\n\n- Write a book\n\n- Write someones biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n-Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth","Adam\'s Impossible List","","inherit","closed","open","","68-revision-2","","","2012-09-22 22:05:09","2012-09-23 02:05:09","","68","http://adamkubizna.com/wordpress/?p=71","0","revision","","0");
INSERT INTO wp_posts VALUES("75","1","2012-09-22 20:40:21","2012-09-23 00:40:21","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10\">View Larger Map</a></small>\n\n&nbsp;\n\nThis map is synced with Adam\'s FourSquare Account, it updates every time Adam checks in somewhere.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"foursquare.com/kubiznach\">Adam\'s Foursquare</a>","Where has Adam Been?","","inherit","closed","open","","36-revision-10","","","2012-09-22 20:40:21","2012-09-23 00:40:21","","36","http://adamkubizna.com/wordpress/?p=75","0","revision","","0");
INSERT INTO wp_posts VALUES("83","1","2012-09-22 22:07:54","2012-09-23 02:07:54","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for a reputable accounting firm\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Write someone\'s biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n- Tour the Capitol","Adam\'s Impossible List","","inherit","closed","open","","68-revision-3","","","2012-09-22 22:07:54","2012-09-23 02:07:54","","68","http://adamkubizna.com/wordpress/?p=83","0","revision","","0");
INSERT INTO wp_posts VALUES("84","1","2012-09-22 22:18:18","2012-09-23 02:18:18","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for a reputable accounting firm\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Write someone\'s biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n- Tour the Capitol","My Dream\'s","","inherit","closed","open","","68-revision-4","","","2012-09-22 22:18:18","2012-09-23 02:18:18","","68","http://adamkubizna.com/wordpress/?p=84","0","revision","","0");
INSERT INTO wp_posts VALUES("85","1","2012-09-22 21:28:34","2012-09-23 01:28:34","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family excelled him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>, Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for  all voting rights and election integrity in Pennsylvania.\n\nAdam is a democrat and currently resides in Uniontown, Pennsylvania.","About Adam","","inherit","closed","open","","47-revision-5","","","2012-09-22 21:28:34","2012-09-23 01:28:34","","47","http://adamkubizna.com/wordpress/?p=85","0","revision","","0");
INSERT INTO wp_posts VALUES("86","1","2012-09-22 22:24:23","2012-09-23 02:24:23","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family excelled him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>;Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is a democrat and currently resides in Uniontown, Pennsylvania.","About Adam","","inherit","closed","open","","47-revision-6","","","2012-09-22 22:24:23","2012-09-23 02:24:23","","47","http://adamkubizna.com/wordpress/?p=86","0","revision","","0");
INSERT INTO wp_posts VALUES("87","1","2012-09-22 22:25:24","2012-09-23 02:25:24","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family supported him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>;Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is a democrat and currently resides in Uniontown, Pennsylvania.","About Adam","","inherit","closed","open","","47-revision-7","","","2012-09-22 22:25:24","2012-09-23 02:25:24","","47","http://adamkubizna.com/wordpress/?p=87","0","revision","","0");
INSERT INTO wp_posts VALUES("88","1","2012-09-22 22:26:21","2012-09-23 02:26:21","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family encouraged him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>;Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is a democrat and currently resides in Uniontown, Pennsylvania.","About Adam","","inherit","closed","open","","47-revision-8","","","2012-09-22 22:26:21","2012-09-23 02:26:21","","47","http://adamkubizna.com/wordpress/?p=88","0","revision","","0");
INSERT INTO wp_posts VALUES("89","1","2012-09-22 22:27:00","2012-09-23 02:27:00","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family encouraged him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is a democrat and currently resides in Uniontown, Pennsylvania.","About Adam","","inherit","closed","open","","47-revision-9","","","2012-09-22 22:27:00","2012-09-23 02:27:00","","47","http://adamkubizna.com/wordpress/?p=89","0","revision","","0");
INSERT INTO wp_posts VALUES("90","1","2012-09-22 22:12:19","2012-09-23 02:12:19","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10\">View Larger Map</a></small>\n\n&nbsp;\n\nThis map is synced with Adam\'s FourSquare Account, it updates every time Adam checks in somewhere.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"foursquare.com/kubiznach\">Adam\'s Foursquare</a>","Where has I Been?","","inherit","closed","open","","36-revision-11","","","2012-09-22 22:12:19","2012-09-23 02:12:19","","36","http://adamkubizna.com/wordpress/?p=90","0","revision","","0");
INSERT INTO wp_posts VALUES("91","1","2012-09-22 21:34:28","2012-09-23 01:34:28","&nbsp;\n\n&nbsp;\n<h1>Objective</h1>\n&nbsp;\n\nTo become well versed in the practice of accounting and the pursuit of justice, obtain a BS/MPA degree(s) and CPA/CFE Certification(s,) and carry that knowledge and experience into the field as a forensic accountant.\n\n&nbsp;\n<h1>Employment Experience</h1>\n&nbsp;\n<h2>McDonalds USA, LLC                                                              September, 2008 - Present</h2>\n&nbsp;\n\nn  Crew Person/Trainer; 2008-2010\n\n&nbsp;\n\nn  Manager in Training; August 2010 – February 2011\n\n&nbsp;\n\nn  Swing Manager; February 2011-February 2012\n\n&nbsp;\n\nn  Kitchen Department Manager; February 2012-Present\n\n&nbsp;\n\nPast and current responsibilities include maintaining and establishing a positive food cost, training employees on proper food safety and FIFO procedures, and managing a staff of up to twenty employees at a time.\n\n&nbsp;\n<h1>Volunteer Experience</h1>\n&nbsp;\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n&nbsp;\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n&nbsp;\n<h1>Education</h1>\n&nbsp;\n<h2>California University of Pennsylvania                                      August, 2010 - Present</h2>\n&nbsp;\n\nPursuing a dual degree in Business Administration (concentration in Accounting) and Justice Studies (concentration in Forensic Science.)\n\n&nbsp;\n\nCurrent GPA: 3.25\n\n&nbsp;\n\nExpected Graduation: Fall 2014\n\n&nbsp;\n<h1>Skills/Certification/Awards</h1>\n&nbsp;\n\nn  Effective at managing a multimillion-dollar store.\n\n&nbsp;\n\nn  ServSafe Food Safety Certification (Expires 2015)\n\n&nbsp;\n\nn  Eagle Scout, Class of 2008, Boy Scouts of America\n\nVigil Honor Member, National Honors Society of Scouting (Order of the Arrow)\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\"><img class=\"size-full wp-image-61 aligncenter\" title=\"Adam at Work\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>","Résumé","","inherit","closed","open","","60-revision-2","","","2012-09-22 21:34:28","2012-09-23 01:34:28","","60","http://adamkubizna.com/wordpress/?p=91","0","revision","","0");
INSERT INTO wp_posts VALUES("92","1","2012-09-22 22:41:35","2012-09-23 02:41:35","&nbsp;\n\n&nbsp;\n<h1>Objective</h1>\n&nbsp;\n\nTo become well versed in the practice of accounting and the pursuit of justice, obtain a BS/MPA degree(s) and CPA/CFE Certification(s,) and carry that knowledge and experience into the field as a forensic accountant.\n\n&nbsp;\n<h1>Employment Experience</h1>\n&nbsp;\n<h2>McDonalds USA, LLC                                                              September, 2008 - Present</h2>\n&nbsp;\n\n-  Crew Person/Trainer; 2008-2010\n\n&nbsp;\n\n-  Manager in Training; August 2010 – February 2011\n\n&nbsp;\n\n-  Swing Manager; February 2011-February 2012\n\n&nbsp;\n\n-  Kitchen Department Manager; February 2012-Present\n\n&nbsp;\n\nPast and current responsibilities include maintaining and establishing a positive food cost, training employees on proper food safety and FIFO procedures, and managing a staff of up to twenty employees at a time.\n\n&nbsp;\n<h1>Volunteer Experience</h1>\n&nbsp;\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n&nbsp;\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n&nbsp;\n<h1>Education</h1>\n&nbsp;\n<h2>California University of Pennsylvania                                      August, 2010 - Present</h2>\n&nbsp;\n\nPursuing a dual degree in Business Administration (concentration in Accounting) and Justice Studies (concentration in Forensic Science.)\n\n&nbsp;\n\nCurrent GPA: 3.25\n\n&nbsp;\n\nExpected Graduation: Fall 2014\n\n&nbsp;\n<h1>Skills/Certification/Awards</h1>\n&nbsp;\n\nn  Effective at managing a multimillion-dollar store.\n\n&nbsp;\n\nn  ServSafe Food Safety Certification (Expires 2015)\n\n&nbsp;\n\nn  Eagle Scout, Class of 2008, Boy Scouts of America\n\nVigil Honor Member, National Honors Society of Scouting (Order of the Arrow)\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\"><img class=\"size-full wp-image-61 aligncenter\" title=\"Adam at Work\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>","Résumé","","inherit","closed","open","","60-revision-3","","","2012-09-22 22:41:35","2012-09-23 02:41:35","","60","http://adamkubizna.com/wordpress/?p=92","0","revision","","0");
INSERT INTO wp_posts VALUES("93","1","2012-09-22 22:28:41","2012-09-23 02:28:41","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family encouraged him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is a democrat and currently resides in Uniontown, Pennsylvania.","About Adam","","inherit","closed","open","","47-revision-10","","","2012-09-22 22:28:41","2012-09-23 02:28:41","","47","http://adamkubizna.com/wordpress/?p=93","0","revision","","0");
INSERT INTO wp_posts VALUES("94","1","2012-09-24 15:06:43","2012-09-24 19:06:43","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family encouraged him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout and Vigil Honor Brother of the Order of the Arrow.\n\nHe is a democrat and is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9)\n\nHe currently resides in Uniontown, Pennsylvania.\n\n&nbsp;\n\n&nbsp;\n\n<a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">Click here for information on contacting Adam!</a>","About Adam","","inherit","closed","open","","47-revision-11","","","2012-09-24 15:06:43","2012-09-24 19:06:43","","47","http://adamkubizna.com/wordpress/?p=94","0","revision","","0");
INSERT INTO wp_posts VALUES("95","1","2012-09-22 21:26:58","2012-09-23 01:26:58","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Employment Opportunities\n\n- Speaking Engagements\n\n- Information about VotePA and Friends of Marybeth Kuznik\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik, Campaign PAC\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nMobile:\n(724) 466-2339\n\n&nbsp;\n\n&nbsp;","Contact Adam","","inherit","closed","open","","51-revision-4","","","2012-09-22 21:26:58","2012-09-23 01:26:58","","51","http://adamkubizna.com/wordpress/?p=95","0","revision","","0");
INSERT INTO wp_posts VALUES("96","1","2012-09-22 22:37:24","2012-09-23 02:37:24","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10\">View Larger Map</a></small>\n\n&nbsp;\n\nThis map is synced with Adam\'s FourSquare Account, it updates every time Adam checks in somewhere.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"foursquare.com/kubiznach\">Adam\'s Foursquare</a>","Where Have I Been?","","inherit","closed","open","","36-revision-12","","","2012-09-22 22:37:24","2012-09-23 02:37:24","","36","http://adamkubizna.com/wordpress/?p=96","0","revision","","0");
INSERT INTO wp_posts VALUES("97","1","2012-12-14 11:17:36","2012-12-14 15:17:36","<div title=\"Page 1\">\n<div title=\"Page 1\">\n<div>\n\n&nbsp;\n\n</div>\n<div>\n<div>\n<div title=\"Page 1\">\n<div>\n<div>\n\nObjective\n\nTo become an expert practitioner of accounting and criminology, obtain a BS/MPA degree(s) and CPA/CFE Certification(s), and carry that knowledge and experience into the workplace as an accountant.\n\n</div>\n</div>\n<img src=\"file:///page1image3624\" alt=\"page1image3624\" width=\"82.320000\" height=\"0.240000\" /> <img src=\"file:///page1image3784\" alt=\"page1image3784\" width=\"82.080000\" height=\"0.240000\" />\n<div>\n<div>\n\nEmployment Experience McDonald’s Corporation\n<ul>\n	<li>  Kitchen Department Manager; February 2012-Present</li>\n	<li>  Swing Manager; February 2011-February 2012</li>\n	<li>  Manager in Training; August 2010 – February 2011</li>\n	<li>  Crew Person/Trainer; 2008-2010</li>\n</ul>\n</div>\n<div>\n\nSeptember, 2008 - Present\n\n</div>\n</div>\n<div>\n<div>\n\nPast and current responsibilities include: managing a multi million dollar store with a staff of up to twenty employees at a time, maintaining a positive food cost/ QCR weekly, training employees on food safety/FIFO procedures and coaching them on the floor\n\nVolunteer Experience\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n</div>\n</div>\n<div>\n<div>\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\nEducation\nCalifornia University of Pennsylvania\n\nBachelor of Science in Business Administration with a concentration in Accounting Bachelor of Science in Justice Studies with a concentration in Forensic Science\nCurrent GPA: 3.25 Expected Graduation: Fall 2014\n\nSkills/Certification/Awards\n\n Proficent in Microsoft Office products and designing websites using Wordpress  ServSafe Food Safety Certification (Expires in 2015)\n Eagle Scout, Class of 2008, Boy Scouts of America\n\n</div>\n<div>\n\nAugust, 2010 - Present\n\n</div>\n</div>\n<div>\n<div>\n\nReferences Available Upon Request\n\n</div>\n</div>\n</div>\n<ul>\n	<li>  Kitchen Department Manager; February 2012-Present</li>\n	<li>  Swing Manager; February 2011-February 2012</li>\n	<li>  Manager in Training; August 2010 – February 2011</li>\n	<li>  Crew Person/Trainer; 2008-2010</li>\n</ul>\n</div>\n</div>\n<div>\n<div>\n\nPast and current responsibilities include: managing a multi million dollar store with a staff of up to twenty employees at a time, maintaining a positive food cost/ QCR weekly, training employees on food safety/FIFO procedures and coaching them on the floor\n\n<strong>Volunteer Experience</strong>\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n</div>\n</div>\n<div>\n<div>\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n<strong>Education</strong>\nCalifornia University of Pennsylvania\n\nBachelor of Science in Business Administration with a concentration in Accounting Bachelor of Science in Justice Studies with a concentration in Forensic Science\nCurrent GPA: 3.25                                                            Expected Graduation: Fall 2014\n\n<strong>Skills/Certification/Awards</strong>\n\n- Proficent in Microsoft Office products and designing websites using Wordpress\n\n- ServSafe Food Safety Certification (Expires in 2015)\n\n- Eagle Scout, Class of 2008, Boy Scouts of America\n\n</div>\n<div>\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>\n&nbsp;\n\n&nbsp;","Résumé","","inherit","closed","open","","60-autosave","","","2012-12-14 11:17:36","2012-12-14 15:17:36","","60","http://adamkubizna.com/wordpress/?p=97","0","revision","","0");
INSERT INTO wp_posts VALUES("98","1","2012-09-23 15:05:24","2012-09-23 19:05:24","&nbsp;\n\n&nbsp;\n<h1>Objective</h1>\n&nbsp;\n\nTo become well versed in the practice of accounting and the pursuit of justice, obtain a BS/MPA degree(s) and CPA/CFE Certification(s,) and carry that knowledge and experience into the field as a forensic accountant.\n\n&nbsp;\n<h1><span style=\"text-decoration: underline;\">Employment Experience:</span></h1>\nMcDonalds USA, LLC                                                              September, 2008 - Present\n\n&nbsp;\n\n-  Crew Person/Trainer; 2008-2010\n\n&nbsp;\n\n-  Manager in Training; August 2010 – February 2011\n\n&nbsp;\n\n-  Swing Manager; February 2011-February 2012\n\n&nbsp;\n\n-  Kitchen Department Manager; February 2012-Present\n\n&nbsp;\n\nPast and current responsibilities include maintaining and establishing a positive food cost, training employees on proper food safety and FIFO procedures, and managing a staff of up to twenty employees at a time.\n\n&nbsp;\n<h1>Volunteer Experience</h1>\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n&nbsp;\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n&nbsp;\n<h1>Education</h1>\n<h2>California University of Pennsylvania                                      August, 2010 - Present</h2>\n&nbsp;\n\nPursuing a dual degree in Business Administration (concentration in Accounting) and Justice Studies (concentration in Forensic Science.)\n\n&nbsp;\n\nCurrent GPA: 3.25\n\n&nbsp;\n\nExpected Graduation: Fall 2014\n\n&nbsp;\n<h1>Skills/Certification/Awards</h1>\n&nbsp;\n\n- Effective at managing a multimillion-dollar store.\n\n&nbsp;\n\n-  ServSafe Food Safety Certification (Expires 2015)\n\n&nbsp;\n\n-  Eagle Scout, Class of 2008, Boy Scouts of America\n\nVigil Honor Member, National Honors Society of Scouting (Order of the Arrow)\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\"><img class=\"size-full wp-image-61 aligncenter\" title=\"Adam at Work\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>","Résumé","","inherit","closed","open","","60-revision-4","","","2012-09-23 15:05:24","2012-09-23 19:05:24","","60","http://adamkubizna.com/wordpress/?p=98","0","revision","","0");
INSERT INTO wp_posts VALUES("99","1","2012-09-24 15:09:12","2012-09-24 19:09:12","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Employment Opportunities\n\n- Speaking Engagements\n\n- Political Campaigning Opprotunities\n\n- Internships\n\n- Information about VotePA and Friends of Marybeth Kuznik (Campaign PAC)\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik, Campaign PAC\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nMobile:\n(724) 466-2339\n\n&nbsp;\n\n&nbsp;","Contact Adam","","inherit","closed","open","","51-revision-5","","","2012-09-24 15:09:12","2012-09-24 19:09:12","","51","http://adamkubizna.com/wordpress/?p=99","0","revision","","0");
INSERT INTO wp_posts VALUES("100","1","2012-09-25 12:00:28","2012-09-25 16:00:28","","AdamLogoLarger","","inherit","closed","open","","adamlogolarger","","","2012-09-25 12:00:28","2012-09-25 16:00:28","","0","http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/AdamLogoLarger.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("101","1","2012-09-24 15:10:37","2012-09-24 19:10:37","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2FC15JZDCRKARGBD0TTHJYEMSAZYJCC1HD.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;t=m&amp;ll=40.145289,-79.778595&amp;spn=0.367416,0.583649&amp;z=10\">View Larger Map</a></small>\n\n&nbsp;\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"foursquare.com/kubiznach\">Adam\'s Foursquare</a>","Where Have I Been?","","inherit","closed","open","","36-revision-13","","","2012-09-24 15:10:37","2012-09-24 19:10:37","","36","http://adamkubizna.com/wordpress/?p=101","0","revision","","0");
INSERT INTO wp_posts VALUES("102","1","2012-09-27 00:36:59","2012-09-27 04:36:59","&lt;iframe width=\"425\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml&amp;amp;aq=&amp;amp;sll=41.117935,-77.604698&amp;amp;sspn=4.327976,7.064209&amp;amp;ie=UTF8&amp;amp;ll=40.149443,-79.779328&amp;amp;spn=0.455278,0.217897&amp;amp;t=m&amp;amp;output=embed\"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;small&gt;&lt;a href=\"https://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml&amp;amp;aq=&amp;amp;sll=41.117935,-77.604698&amp;amp;sspn=4.327976,7.064209&amp;amp;ie=UTF8&amp;amp;ll=40.149443,-79.779328&amp;amp;spn=0.455278,0.217897&amp;amp;t=m\" style=\"color:#0000FF;text-align:left\"&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;\n\n&nbsp;\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"foursquare.com/kubiznach\">Adam\'s Foursquare</a>","Where Have I Been?","","inherit","closed","open","","36-revision-14","","","2012-09-27 00:36:59","2012-09-27 04:36:59","","36","http://adamkubizna.com/wordpress/?p=102","0","revision","","0");
INSERT INTO wp_posts VALUES("103","1","2012-09-27 00:37:31","2012-09-27 04:37:31","&lt;iframe width=\"425\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml&amp;amp;aq=&amp;amp;sll=41.117935,-77.604698&amp;amp;sspn=4.327976,7.064209&amp;amp;ie=UTF8&amp;amp;ll=40.149443,-79.779328&amp;amp;spn=0.455278,0.217897&amp;amp;t=m&amp;amp;output=embed\"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;small&gt;&lt;a href=\"https://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml&amp;amp;aq=&amp;amp;sll=41.117935,-77.604698&amp;amp;sspn=4.327976,7.064209&amp;amp;ie=UTF8&amp;amp;ll=40.149443,-79.779328&amp;amp;spn=0.455278,0.217897&amp;amp;t=m\" style=\"color:#0000FF;text-align:left\"&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;\n\n&nbsp;","Where Have I Been?","","inherit","closed","open","","36-revision-15","","","2012-09-27 00:37:31","2012-09-27 04:37:31","","36","http://adamkubizna.com/wordpress/?p=103","0","revision","","0");
INSERT INTO wp_posts VALUES("104","1","2012-09-27 00:38:01","2012-09-27 04:38:01","<iframe width=\"425\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=40.149443,-79.779328&amp;spn=0.455278,0.217897&amp;t=m&amp;output=embed\"></iframe><br /><small><a href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=40.149443,-79.779328&amp;spn=0.455278,0.217897&amp;t=m\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"foursquare.com/kubiznach\">Adam\'s Foursquare</a>\n\n&nbsp;","Where Have I Been?","","inherit","closed","open","","36-revision-16","","","2012-09-27 00:38:01","2012-09-27 04:38:01","","36","http://adamkubizna.com/wordpress/?p=104","0","revision","","0");
INSERT INTO wp_posts VALUES("105","1","2012-09-27 00:38:57","2012-09-27 04:38:57","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=40.149443,-79.779328&amp;spn=0.455278,0.217897&amp;t=m&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=40.149443,-79.779328&amp;spn=0.455278,0.217897&amp;t=m\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"foursquare.com/kubiznach\">Adam\'s Foursquare</a>\n\n&nbsp;","Where Has Adam Been?","","inherit","closed","open","","36-revision-17","","","2012-09-27 00:38:57","2012-09-27 04:38:57","","36","http://adamkubizna.com/wordpress/?p=105","0","revision","","0");
INSERT INTO wp_posts VALUES("106","1","2012-09-24 15:07:17","2012-09-24 19:07:17","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family encouraged him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout and Vigil Honor Brother of the Order of the Arrow.\n\nHe is a democrat and is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9)\n\nHe currently resides in Uniontown, Pennsylvania.\n\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-12","","","2012-09-24 15:07:17","2012-09-24 19:07:17","","47","http://adamkubizna.com/wordpress/?p=106","0","revision","","0");
INSERT INTO wp_posts VALUES("110","1","2012-09-25 11:59:16","2012-09-25 15:59:16","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Employment Opportunities\n\n- Speaking Engagements\n\n- Political Campaigning Opportunities\n\n- Internships\n\n- Information about VotePA and Friends of Marybeth Kuznik (Campaign PAC)\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik, Campaign PAC\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nMobile:\n(724) 466-2339\n\n&nbsp;\n\n&nbsp;","Contact Adam","","inherit","closed","open","","51-revision-6","","","2012-09-25 11:59:16","2012-09-25 15:59:16","","51","http://adamkubizna.com/wordpress/?p=110","0","revision","","0");
INSERT INTO wp_posts VALUES("111","1","2012-10-05 17:03:14","2012-10-05 21:03:14","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Employment Opportunities\n\n- Speaking Engagements\n\n- Political Campaigning Opportunities\n\n- Internships\n\n- Information about VotePA and Friends of Marybeth Kuznik (Campaign PAC)\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik, Campaign PAC\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\n&nbsp;\n[vCitaContact]","Contact Adam","","inherit","closed","open","","51-revision-7","","","2012-10-05 17:03:14","2012-10-05 21:03:14","","51","http://adamkubizna.com/wordpress/?p=111","0","revision","","0");
INSERT INTO wp_posts VALUES("112","1","2012-09-22 22:23:28","2012-09-23 02:23:28","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for a reputable accounting firm\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Write someone\'s biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n- Tour the Capitol","My Dreams","","inherit","closed","open","","68-revision-5","","","2012-09-22 22:23:28","2012-09-23 02:23:28","","68","http://adamkubizna.com/wordpress/?p=112","0","revision","","0");
INSERT INTO wp_posts VALUES("113","1","2012-09-27 00:42:59","2012-09-27 04:42:59","<iframe width=\"425\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m&amp;output=embed\"></iframe><br /><small><a href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"foursquare.com/kubiznach\">Adam\'s Foursquare</a>\n\n&nbsp;","Where Has Adam Been?","","inherit","closed","open","","36-revision-18","","","2012-09-27 00:42:59","2012-09-27 04:42:59","","36","http://adamkubizna.com/wordpress/?p=113","0","revision","","0");
INSERT INTO wp_posts VALUES("114","1","2012-09-22 21:45:04","2012-09-23 01:45:04","<a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a>\n\n<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a>","Adam in the Press","","inherit","closed","open","","63-revision-4","","","2012-09-22 21:45:04","2012-09-23 01:45:04","","63","http://adamkubizna.com/wordpress/?p=114","0","revision","","0");
INSERT INTO wp_posts VALUES("115","1","2012-10-05 14:31:27","2012-10-05 18:31:27","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family encouraged him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout and Vigil Honor Brother of the Order of the Arrow.\n\nHe is a democrat and is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9)\n\nHe currently resides in Uniontown, Pennsylvania.\n\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-13","","","2012-10-05 14:31:27","2012-10-05 18:31:27","","47","http://adamkubizna.com/wordpress/?p=115","0","revision","","0");
INSERT INTO wp_posts VALUES("116","1","2012-10-10 12:33:01","2012-10-10 16:33:01","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family encouraged him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout and Vigil Honor Brother of the Order of the Arrow.\n\nHe is a democrat and is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9)\n\nHe currently resides in Uniontown, Pennsylvania.\n\n&nbsp;\n\n** Make sure the check out Adam\'s most recent Letter to the Editor at the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!\n\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-14","","","2012-10-10 12:33:01","2012-10-10 16:33:01","","47","http://adamkubizna.com/wordpress/?p=116","0","revision","","0");
INSERT INTO wp_posts VALUES("117","1","2012-10-11 00:23:17","2012-10-11 04:23:17","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department, he currently manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen. He currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAn accomplished Public Speaker, Adam enjoys speaking in a variety of situations, his most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he mentioned how his family encouraged him through his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was her treasurer for her Political Action Committee.  In July of 2012 Adam became the Treasurer of her non profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout and Vigil Honor Brother of the Order of the Arrow.\n\nHe is a democrat and is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9)\n\nHe currently resides in Uniontown, Pennsylvania.\n\n&nbsp;\n\n** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!\n\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-15","","","2012-10-11 00:23:17","2012-10-11 04:23:17","","47","http://adamkubizna.com/wordpress/?p=117","0","revision","","0");
INSERT INTO wp_posts VALUES("118","1","2012-10-10 12:30:50","2012-10-10 16:30:50","<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor- October,10 2011</a>\n\n<a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a>\n\n<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a>","Adam in the Press","","inherit","closed","open","","63-revision-5","","","2012-10-10 12:30:50","2012-10-10 16:30:50","","63","http://adamkubizna.com/wordpress/?p=118","0","revision","","0");
INSERT INTO wp_posts VALUES("119","1","2012-10-05 17:03:59","2012-10-05 21:03:59","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Internships\n\n- Employment Opportunities\n\n- Speaking Engagements\n\n- Political Campaigning Opportunities\n\n- Information about VotePA and Friends of Marybeth Kuznik (Campaign PAC)\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik, Campaign PAC\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n[vCitaContact]","Contact Adam","","inherit","closed","open","","51-revision-8","","","2012-10-05 17:03:59","2012-10-05 21:03:59","","51","http://adamkubizna.com/wordpress/?p=119","0","revision","","0");
INSERT INTO wp_posts VALUES("120","1","2012-10-17 13:05:57","2012-10-17 17:05:57","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily. His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Please check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">fill out this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-16","","","2012-10-17 13:05:57","2012-10-17 17:05:57","","47","http://adamkubizna.com/wordpress/?p=120","0","revision","","0");
INSERT INTO wp_posts VALUES("121","1","2012-10-10 00:16:08","2012-10-10 04:16:08","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment.\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"https://foursquare.com/kubiznach\">Adam\'s Foursquare </a>","Where Has Adam Been?","","inherit","closed","open","","36-revision-19","","","2012-10-10 00:16:08","2012-10-10 04:16:08","","36","http://adamkubizna.com/wordpress/?p=121","0","revision","","0");
INSERT INTO wp_posts VALUES("122","1","2013-02-20 20:16:09","2013-02-21 00:16:09","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Adam has been featured in many articles and has voiced his opinion in a variety of situations using the media, some of them are below:</strong></span></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/student-rips-privatization-of-liquor-stores/article_cfd41448-a879-5cc4-931c-1b37e049bd67.html\">Adam\'s Letter to the Editor, February, 2013</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor, October, 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Adam in the Press","","inherit","closed","open","","63-autosave","","","2013-02-20 20:16:09","2013-02-21 00:16:09","","63","http://adamkubizna.com/wordpress/?p=122","0","revision","","0");
INSERT INTO wp_posts VALUES("123","1","2012-10-17 13:06:21","2012-10-17 17:06:21","<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor, October,10 2011</a>\n\n<a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a>\n\n<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a>","Adam in the Press","","inherit","closed","open","","63-revision-6","","","2012-10-17 13:06:21","2012-10-17 17:06:21","","63","http://adamkubizna.com/wordpress/?p=123","0","revision","","0");
INSERT INTO wp_posts VALUES("124","1","2013-01-09 02:04:40","2013-01-09 06:04:40","Adam supports and is a member of a variety of organizations, those organization include:\n\n-The Jane Goodall Institute\n\n-United to End Genocide\n\n-Save Darfur\n\n-Metropolitan Opera\n\n&nbsp;","Philanthropist","","private","closed","open","","philanthropist","","","2013-01-09 02:04:53","2013-01-09 06:04:53","","0","http://adamkubizna.com/wordpress/?page_id=124","0","page","","0");
INSERT INTO wp_posts VALUES("125","1","2012-10-17 13:19:33","2012-10-17 17:19:33","Adam supports and is a member of a variety of organizations, those organization include:\n\n-The Jane Goodall Institute\n\n-United to End Genocide\n\n-Save Darfur\n\n-Metropolitan Opera\n\n&nbsp;","Philanthropist","","inherit","closed","open","","124-revision","","","2012-10-17 13:19:33","2012-10-17 17:19:33","","124","http://adamkubizna.com/wordpress/?p=125","0","revision","","0");
INSERT INTO wp_posts VALUES("127","1","2012-10-17 13:23:10","2012-10-17 17:23:10","","UN Report","","inherit","closed","open","","un-report","","","2012-10-17 13:23:10","2012-10-17 17:23:10","","0","http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf","0","attachment","application/pdf","0");
INSERT INTO wp_posts VALUES("128","1","2012-10-17 13:11:24","2012-10-17 17:11:24","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily. His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">fill out this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-17","","","2012-10-17 13:11:24","2012-10-17 17:11:24","","47","http://adamkubizna.com/wordpress/?p=128","0","revision","","0");
INSERT INTO wp_posts VALUES("129","1","2012-10-17 13:25:07","2012-10-17 17:25:07","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently researching the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>) . His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">fill out this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-18","","","2012-10-17 13:25:07","2012-10-17 17:25:07","","47","http://adamkubizna.com/wordpress/?p=129","0","revision","","0");
INSERT INTO wp_posts VALUES("130","1","2012-10-17 13:25:26","2012-10-17 17:25:26","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently researching the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">fill out this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-19","","","2012-10-17 13:25:26","2012-10-17 17:25:26","","47","http://adamkubizna.com/wordpress/?p=130","0","revision","","0");
INSERT INTO wp_posts VALUES("131","1","2012-10-17 13:28:03","2012-10-17 17:28:03","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently researching the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">fill out this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n\n** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-20","","","2012-10-17 13:28:03","2012-10-17 17:28:03","","47","http://adamkubizna.com/wordpress/?p=131","0","revision","","0");
INSERT INTO wp_posts VALUES("132","1","2012-10-17 13:12:36","2012-10-17 17:12:36","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment (click the zoom out button to see the most recent places Adam has checked into).\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"https://foursquare.com/kubiznach\">Adam\'s Foursquare </a>","Where Has Adam Been?","","inherit","closed","open","","36-revision-20","","","2012-10-17 13:12:36","2012-10-17 17:12:36","","36","http://adamkubizna.com/wordpress/?p=132","0","revision","","0");
INSERT INTO wp_posts VALUES("133","1","2012-10-17 13:14:25","2012-10-17 17:14:25","<strong>Adam has been featured in many articles and has voiced his opinion in a variety of situations using the media, some of them are below:</strong>\n\n<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor, October,10 2011</a>\n\n<a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a>\n\n<a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a>\n\n<a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a>","Adam in the Press","","inherit","closed","open","","63-revision-7","","","2012-10-17 13:14:25","2012-10-17 17:14:25","","63","http://adamkubizna.com/wordpress/?p=133","0","revision","","0");
INSERT INTO wp_posts VALUES("134","1","2012-10-17 13:30:15","2012-10-17 17:30:15","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently researching the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">fill out this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains link\'s to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-21","","","2012-10-17 13:30:15","2012-10-17 17:30:15","","47","http://adamkubizna.com/wordpress/?p=134","0","revision","","0");
INSERT INTO wp_posts VALUES("135","1","2012-10-17 13:33:59","2012-10-17 17:33:59","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently researching the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">fill out this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains link\'s to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-22","","","2012-10-17 13:33:59","2012-10-17 17:33:59","","47","http://adamkubizna.com/wordpress/?p=135","0","revision","","0");
INSERT INTO wp_posts VALUES("136","1","2012-10-17 14:54:22","2012-10-17 18:54:22","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently researching the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains link\'s to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-23","","","2012-10-17 14:54:22","2012-10-17 18:54:22","","47","http://adamkubizna.com/wordpress/?p=136","0","revision","","0");
INSERT INTO wp_posts VALUES("137","1","2012-10-17 13:32:11","2012-10-17 17:32:11","<p style=\"text-align: center;\"><strong>Adam has been featured in many articles and has voiced his opinion in a variety of situations using the media, some of them are below:</strong></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor, October,10 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains link\'s to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Adam in the Press","","inherit","closed","open","","63-revision-8","","","2012-10-17 13:32:11","2012-10-17 17:32:11","","63","http://adamkubizna.com/wordpress/?p=137","0","revision","","0");
INSERT INTO wp_posts VALUES("139","1","2012-10-17 13:30:53","2012-10-17 17:30:53","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment (click the zoom out button to see the most recent places Adam has checked into).\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"https://foursquare.com/kubiznach\">Adam\'s Foursquare </a>\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains link\'s to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Where Has Adam Been?","","inherit","closed","open","","36-revision-21","","","2012-10-17 13:30:53","2012-10-17 17:30:53","","36","http://adamkubizna.com/wordpress/?p=139","0","revision","","0");
INSERT INTO wp_posts VALUES("141","1","2012-10-17 15:02:11","2012-10-17 19:02:11","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently researching the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-24","","","2012-10-17 15:02:11","2012-10-17 19:02:11","","47","http://adamkubizna.com/wordpress/?p=141","0","revision","","0");
INSERT INTO wp_posts VALUES("142","1","2012-10-17 21:18:27","2012-10-18 01:18:27","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014. After his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-25","","","2012-10-17 21:18:27","2012-10-18 01:18:27","","47","http://adamkubizna.com/wordpress/?p=142","0","revision","","0");
INSERT INTO wp_posts VALUES("143","1","2012-10-17 21:19:23","2012-10-18 01:19:23","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of Marybeth\'s non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-26","","","2012-10-17 21:19:23","2012-10-18 01:19:23","","47","http://adamkubizna.com/wordpress/?p=143","0","revision","","0");
INSERT INTO wp_posts VALUES("144","1","2012-10-17 23:52:32","2012-10-18 03:52:32","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-27","","","2012-10-17 23:52:32","2012-10-18 03:52:32","","47","http://adamkubizna.com/wordpress/?p=144","0","revision","","0");
INSERT INTO wp_posts VALUES("145","1","2012-10-18 10:45:15","2012-10-18 14:45:15","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-28","","","2012-10-18 10:45:15","2012-10-18 14:45:15","","47","http://adamkubizna.com/wordpress/?p=145","0","revision","","0");
INSERT INTO wp_posts VALUES("146","1","2012-10-05 17:05:09","2012-10-05 21:05:09","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for a reputable accounting firm\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Write someone\'s biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n<del>- Tour the Library of Congress</del>\n\n<del>- Tour the Capitol</del>\n\n&nbsp;\n\n*More to come!","My Dreams","","inherit","closed","open","","68-revision-6","","","2012-10-05 17:05:09","2012-10-05 21:05:09","","68","http://adamkubizna.com/wordpress/?p=146","0","revision","","0");
INSERT INTO wp_posts VALUES("147","1","2012-10-23 16:41:00","2012-10-23 20:41:00","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for the same company (for 18 years)\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Write someone\'s biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n<del>- Tour the Library of Congress</del>\n\n<del>- Tour the Capitol</del>\n\n&nbsp;\n\n*More to come!","My Dreams","","inherit","closed","open","","68-revision-7","","","2012-10-23 16:41:00","2012-10-23 20:41:00","","68","http://adamkubizna.com/wordpress/?p=147","0","revision","","0");
INSERT INTO wp_posts VALUES("148","1","2012-10-18 10:45:47","2012-10-18 14:45:47","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Junior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-29","","","2012-10-18 10:45:47","2012-10-18 14:45:47","","47","http://adamkubizna.com/wordpress/?p=148","0","revision","","0");
INSERT INTO wp_posts VALUES("149","1","2012-10-30 21:58:32","2012-10-31 01:58:32","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure the check out Adam\'s most recent Letter to the Editor published in the <a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Herald Standard</a>!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-30","","","2012-10-30 21:58:32","2012-10-31 01:58:32","","47","http://adamkubizna.com/wordpress/?p=149","0","revision","","0");
INSERT INTO wp_posts VALUES("150","1","2012-10-30 23:42:07","2012-10-31 03:42:07","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.  He is actively campaigning for congressional candidate <a href=\"http://ramsburg4congress.com\">Karen Ramsburg</a> (D-PA- 9) and President Obama.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a> It will contain information on current events, useful knowledge, recipes and more!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-31","","","2012-10-30 23:42:07","2012-10-31 03:42:07","","47","http://adamkubizna.com/wordpress/?p=150","0","revision","","0");
INSERT INTO wp_posts VALUES("151","1","2012-11-09 14:33:31","2012-11-09 18:33:31","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying the <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/10/UN-Report.pdf\">UN Secretary General\'s Report</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a> It will contain information on current events, useful knowledge, recipes and more!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-32","","","2012-11-09 14:33:31","2012-11-09 18:33:31","","47","http://adamkubizna.com/wordpress/?p=151","0","revision","","0");
INSERT INTO wp_posts VALUES("152","1","2012-11-19 14:30:32","2012-11-19 18:30:32","","J Infect Dis.-2011-Kobinger-infdis_jir077","","inherit","closed","open","","j-infect-dis-2011-kobinger-infdis_jir077","","","2012-11-19 14:30:32","2012-11-19 18:30:32","","0","http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf","0","attachment","application/pdf","0");
INSERT INTO wp_posts VALUES("153","1","2012-11-19 14:29:18","2012-11-19 18:29:18","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying this report on \"in the air\" transmission Ebola). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a> It will contain information on current events, useful knowledge, recipes and more!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-33","","","2012-11-19 14:29:18","2012-11-19 18:29:18","","47","http://adamkubizna.com/wordpress/?p=153","0","revision","","0");
INSERT INTO wp_posts VALUES("154","1","2012-11-19 14:31:18","2012-11-19 18:31:18","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was sixteen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a> It will contain information on current events, useful knowledge, recipes and more!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-34","","","2012-11-19 14:31:18","2012-11-19 18:31:18","","47","http://adamkubizna.com/wordpress/?p=154","0","revision","","0");
INSERT INTO wp_posts VALUES("155","1","2012-11-21 11:44:04","2012-11-21 15:44:04","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a> It will contain information on current events, useful knowledge, recipes and more!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-35","","","2012-11-21 11:44:04","2012-11-21 15:44:04","","47","http://adamkubizna.com/wordpress/?p=155","0","revision","","0");
INSERT INTO wp_posts VALUES("156","1","2012-09-24 15:12:15","2012-09-24 19:12:15","&nbsp;\n\n&nbsp;\n<h1><span style=\"text-decoration: underline;\">Objective:</span></h1>\nTo become well versed in the practice of accounting and the pursuit of justice, obtain a BS/MPA degree(s) and CPA/CFE Certification(s,) and carry that knowledge and experience into the field as a forensic accountant.\n\n&nbsp;\n<h1><span style=\"text-decoration: underline;\">Employment Experience:</span></h1>\nMcDonalds USA, LLC                                                              September, 2008 - Present\n\n-  Crew Person/Trainer; 2008-2010\n\n-  Manager in Training; August 2010 – February 2011\n\n-  Swing Manager; February 2011-February 2012\n\n-  Kitchen Department Manager; February 2012-Present\n\nPast and current responsibilities include maintaining and establishing a positive food cost, training employees on proper food safety and FIFO procedures, and managing a staff of up to twenty employees at a time.\n\n&nbsp;\n<h1><span style=\"text-decoration: underline;\">Volunteer Experience:</span></h1>\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n&nbsp;\n<h1><span style=\"text-decoration: underline;\">Education:</span></h1>\n<h2>California University of Pennsylvania                                      August, 2010 - Present</h2>\nPursuing a dual degree in Business Administration (concentration in Accounting) and Justice Studies (concentration in Forensic Science.)\n\nCurrent GPA: 3.25\n\nExpected Graduation: Fall 2014\n\n&nbsp;\n<h1><span style=\"text-decoration: underline;\">Skills/Certification/Awards:</span></h1>\n- Effective at managing a multimillion-dollar store.\n\n-  ServSafe Food Safety Certification (Expires 2015)\n\n-  Eagle Scout, Class of 2008, Boy Scouts of America\n\nVigil Honor Member, National Honors Society of Scouting (Order of the Arrow)\n\n&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\"><img class=\"size-full wp-image-61 aligncenter\" title=\"Adam at Work\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>","Résumé","","inherit","closed","open","","60-revision-5","","","2012-09-24 15:12:15","2012-09-24 19:12:15","","60","http://adamkubizna.com/wordpress/?p=156","0","revision","","0");
INSERT INTO wp_posts VALUES("157","1","2012-12-03 11:21:44","2012-12-03 15:21:44","&nbsp;\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n.jpg\"><img class=\"alignright size-medium wp-image-48\" title=\"Adam D. Kubizna\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/76021_463457197726_2342275_n-271x300.jpg\" alt=\"\" width=\"271\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a> It contain\'s information on current events, useful knowledge, recipes and more!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-36","","","2012-12-03 11:21:44","2012-12-03 15:21:44","","47","http://adamkubizna.com/wordpress/?p=157","0","revision","","0");
INSERT INTO wp_posts VALUES("158","1","2012-12-13 15:57:27","2012-12-13 19:57:27","","adam","","inherit","closed","open","","076e31b","","","2012-12-13 15:57:27","2012-12-13 19:57:27","","47","http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("159","1","2012-12-13 15:55:15","2012-12-13 19:55:15","&nbsp;\n\nAdam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n<strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a> It contain\'s information on current events, useful knowledge, recipes and more!</strong>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-37","","","2012-12-13 15:55:15","2012-12-13 19:55:15","","47","http://adamkubizna.com/wordpress/?p=159","0","revision","","0");
INSERT INTO wp_posts VALUES("160","1","2012-12-13 16:01:52","2012-12-13 20:01:52","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania. He is currently pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam has been employed by the McDonald\'s Corporation since 2008 and is currently a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and currently manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in proper food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a></strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-38","","","2012-12-13 16:01:52","2012-12-13 20:01:52","","47","http://adamkubizna.com/wordpress/?p=160","0","revision","","0");
INSERT INTO wp_posts VALUES("161","1","2012-10-17 13:08:28","2012-10-17 17:08:28","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- <a title=\"Résumé\" href=\"http://adamkubizna.com/wordpress/?page_id=60\">Internships</a>\n\n- <a title=\"Résumé\" href=\"http://adamkubizna.com/wordpress/?page_id=60\">Employment Opportunities</a>\n\n- Speaking Engagements\n\n- Political Campaigning Opportunities\n\n- Information about VotePA and Friends of Marybeth Kuznik (Campaign PAC)\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik, Campaign PAC\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nTo set up a phone or video call with Adam please use this form below:\n[vCitaContact]","Contact Adam","","inherit","closed","open","","51-revision-9","","","2012-10-17 13:08:28","2012-10-17 17:08:28","","51","http://adamkubizna.com/wordpress/?p=161","0","revision","","0");
INSERT INTO wp_posts VALUES("162","1","2012-10-17 15:02:41","2012-10-17 19:02:41","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Adam has been featured in many articles and has voiced his opinion in a variety of situations using the media, some of them are below:</strong></span></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor, October,10 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Adam in the Press","","inherit","closed","open","","63-revision-9","","","2012-10-17 15:02:41","2012-10-17 19:02:41","","63","http://adamkubizna.com/wordpress/?p=162","0","revision","","0");
INSERT INTO wp_posts VALUES("163","1","2012-10-17 15:03:07","2012-10-17 19:03:07","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment (click the zoom out button to see the most recent places Adam has checked into).\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"https://foursquare.com/kubiznach\">Adam\'s Foursquare </a>\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Where Has Adam Been?","","inherit","closed","open","","36-revision-22","","","2012-10-17 15:03:07","2012-10-17 19:03:07","","36","http://adamkubizna.com/wordpress/?p=163","0","revision","","0");
INSERT INTO wp_posts VALUES("164","1","2012-10-23 16:41:11","2012-10-23 20:41:11","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>For fun, I have created a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for the same company (for 18 years)\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Write someone\'s biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n<del>- Tour the Library of Congress</del>\n\n<del>- Tour the Capitol</del>\n\n&nbsp;\n\n*More to come!","My Dreams","","inherit","closed","open","","68-revision-8","","","2012-10-23 16:41:11","2012-10-23 20:41:11","","68","http://adamkubizna.com/wordpress/?p=164","0","revision","","0");
INSERT INTO wp_posts VALUES("165","1","2012-12-13 16:04:01","2012-12-13 20:04:01","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania. He is  pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a></strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-39","","","2012-12-13 16:04:01","2012-12-13 20:04:01","","47","http://adamkubizna.com/wordpress/?p=165","0","revision","","0");
INSERT INTO wp_posts VALUES("166","1","2012-12-13 17:34:58","2012-12-13 21:34:58","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania. He is  pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a>**                                                                         </strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-40","","","2012-12-13 17:34:58","2012-12-13 21:34:58","","47","http://adamkubizna.com/wordpress/?p=166","0","revision","","0");
INSERT INTO wp_posts VALUES("167","1","2012-12-13 17:58:20","2012-12-13 21:58:20","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania. He is  pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n<p style=\"text-align: center;\"></p>\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a>**                                                                         </strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-41","","","2012-12-13 17:58:20","2012-12-13 21:58:20","","47","http://adamkubizna.com/wordpress/?p=167","0","revision","","0");
INSERT INTO wp_posts VALUES("168","1","2012-12-13 15:54:20","2012-12-13 19:54:20","<div title=\"Page 1\">\n<div>\n<div>\n\n<strong>Objective</strong>\n\nTo become well versed in the practice of accounting and the pursuit of justice, obtain a BS/MPA degree(s) and CPA/CFE Certification(s) and carry that knowledge and experience into the workplace as an accountant.\n\n</div>\n</div>\n<img src=\"file:///page1image3816\" alt=\"page1image3816\" width=\"82.320000\" height=\"0.240000\" /> <img src=\"file:///page1image3976\" alt=\"page1image3976\" width=\"82.080000\" height=\"0.240000\" />\n<div>\n<div>\n\n<strong>Employment Experience</strong>\n\nMcDonald’s Corporation                                                                    September, 2008 - Present\n<ul>\n	<li> Kitchen Department Manager; February 2012-Present</li>\n	<li>Swing Manager; February 2011-February 2012</li>\n	<li> Manager in Training; August 2010 – February 2011</li>\n	<li>Crew Person/Trainer; 2008-2010</li>\n</ul>\n</div>\n</div>\n<div>\n\nPast and current responsibilities include: managing a multi million dollar store with a staff of up to twenty employees at a time, maintaining a positive food cost/ QCR weekly, training employees on food safety/FIFO procedures and coaching them on the floor.\n\n&nbsp;\n\n<strong>Volunteer Experience</strong>\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n&nbsp;\n\n<strong>Education</strong>\n\nCalifornia University of Pennsylvania August, 2010 - Present\n\nBachelor of Science in Business Administration with a concentration in Accounting Bachelor of Science in Justice Studies with a concentration in Forensic Science\n\nCurrent GPA: 3.25                                                           Expected Graduation: Fall 2014\n\n&nbsp;\n\n<strong>Skills/Certification/Awards</strong>\n<ul>\n	<li>  Proficent in Microsoft Office products and designing websites using Wordpress.</li>\n	<li> ServSafe Food Safety Certification (Expires in 2015)</li>\n	<li> Eagle Scout, Class of 2008, Boy Scouts of America and a Vigil Honor Member, National Honors Society of Scouting (Order of the Arrow)\n\n&nbsp;</li>\n</ul>\n</div>\n<div>\n<div>\n<p style=\"text-align: center;\">References Available Upon Request</p>\n\n</div>\n</div>\n</div>\n&nbsp;\n\n&nbsp;","Résumé","","inherit","closed","open","","60-revision-6","","","2012-12-13 15:54:20","2012-12-13 19:54:20","","60","http://adamkubizna.com/wordpress/?p=168","0","revision","","0");
INSERT INTO wp_posts VALUES("169","1","2012-12-13 18:00:12","2012-12-13 22:00:12","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania. He is  pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a>**    </strong></p>\n<p style=\"text-align: center;\"><strong></strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-42","","","2012-12-13 18:00:12","2012-12-13 22:00:12","","47","http://adamkubizna.com/wordpress/?p=169","0","revision","","0");
INSERT INTO wp_posts VALUES("170","1","2012-12-19 21:53:47","2012-12-20 01:53:47","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania. He is  pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. Adam plans on becoming a Forensic Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of Food Cost and the operations of the department and manages a team of six individuals. Adam has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying <a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/11/J-Infect-Dis.-2011-Kobinger-infdis_jir077.pdf\">this report on \"in the air\" transmission Ebola</a>). His most memorable speech was his Eagle Scout \"Address\", where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, it is a statewide non partisan alliance for all voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a>**    </strong></p>\n<p style=\"text-align: center;\"><strong></strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-43","","","2012-12-19 21:53:47","2012-12-20 01:53:47","","47","http://adamkubizna.com/wordpress/?p=170","0","revision","","0");
INSERT INTO wp_posts VALUES("171","1","2012-12-13 16:08:15","2012-12-13 20:08:15","<iframe src=\"https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m&amp;output=embed\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" width=\"425\" height=\"350\"></iframe>\n<small><a style=\"color: #0000ff; text-align: left;\" href=\"https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=https:%2F%2Ffeeds.foursquare.com%2Fhistory%2F15MBBUJC3PGZ2WP2HDE5AC2JLPGIMZN4.kml%3Fcount%3D1000&amp;aq=&amp;sll=41.117935,-77.604698&amp;sspn=4.327976,7.064209&amp;ie=UTF8&amp;ll=41.120746,-77.607422&amp;spn=0.817287,4.924767&amp;t=m\">View Larger Map</a></small>\n\nThis map is synced with Adam\'s Foursquare Account, it updates every time Adam checks in at an establishment (click the zoom out button to see the most recent places Adam has checked into).\n\nTo follow Adam on Foursquare please click the link below:\n\n<a href=\"https://foursquare.com/kubiznach\">Adam\'s Foursquare </a>\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Where Has Adam Been?","","inherit","closed","open","","36-revision-23","","","2012-12-13 16:08:15","2012-12-13 20:08:15","","36","http://adamkubizna.com/wordpress/?p=171","0","revision","","0");
INSERT INTO wp_posts VALUES("172","1","2012-12-13 16:05:43","2012-12-13 20:05:43","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- <a title=\"Résumé\" href=\"http://adamkubizna.com/wordpress/?page_id=60\">Internships</a>\n\n- <a title=\"Résumé\" href=\"http://adamkubizna.com/wordpress/?page_id=60\">Employment Opportunities</a>\n\n- Speaking Engagements\n\n- Political Campaigning Opportunities\n\n- Information about <a href=\"http://votepa.us\">VotePA</a> and <a href=\"http://vote4marybeth.com\">Friends of Marybeth Kuznik (Campaign PAC)</a>\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik, Campaign PAC\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nTo set up a phone or video call with Adam please use this form below:\n[vCitaContact]","Contact Adam","","inherit","closed","open","","51-revision-10","","","2012-12-13 16:05:43","2012-12-13 20:05:43","","51","http://adamkubizna.com/wordpress/?p=172","0","revision","","0");
INSERT INTO wp_posts VALUES("173","1","2012-12-19 22:03:54","2012-12-20 02:03:54","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania. He is  pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming a Forensic Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of Food Cost and the various operations of the department. He manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying various <a href=\"http://www.un.org/en/sc/meetings/records/2012.shtml\">UN Security Council Documents</a>).\n\nAdam\'s most memorable speech was his Eagle Scout Address, where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>,  a statewide non partisan organization that advocates for  voting rights and election integrity in Pennsylvania.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow, and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a>**    </strong></p>\n<p style=\"text-align: center;\"><strong></strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-44","","","2012-12-19 22:03:54","2012-12-20 02:03:54","","47","http://adamkubizna.com/wordpress/?p=173","0","revision","","0");
INSERT INTO wp_posts VALUES("174","1","2013-01-05 22:59:07","2013-01-06 02:59:07","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania. He is  pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming a Forensic Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of Food Cost and the various operations of the department. He manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying various <a href=\"http://www.un.org/en/sc/meetings/records/2012.shtml\">UN Security Council Documents</a>).\n\nAdam\'s most memorable speech was his Eagle Scout Address, where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>,  a statewide non partisan organization that advocates for  voting rights and election integrity in Pennsylvania.\n\nIn December of 2012 Adam became the Finance Director for SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a>**    </strong></p>\n<p style=\"text-align: center;\"><strong></strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-45","","","2013-01-05 22:59:07","2013-01-06 02:59:07","","47","http://adamkubizna.com/wordpress/?p=174","0","revision","","0");
INSERT INTO wp_posts VALUES("175","1","2013-01-05 23:00:54","2013-01-06 03:00:54","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming a Forensic Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of Food Cost and the various operations of the department. He manages a team of six individuals. He has risen through the ranks of McDonald\'s starting as a Crew Person when he was seventeen.\n\nHe currently holds ServSafe Food Safety Certification and is well versed in food safety procedures. Before his career at McDonald\'s Adam worked as a Nature Instructor at a local Boy Scout Camp in Somerset, PA.\n\nAdam is an accomplished Public Speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying various <a href=\"http://www.un.org/en/sc/meetings/records/2012.shtml\">UN Security Council Documents</a>).\n\nAdam\'s most memorable speech was his Eagle Scout Address, where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a non-profit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nIn July of 2012, Adam became the Treasurer of a non-profit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>,  a statewide non partisan organization that advocates for  voting rights and election integrity in Pennsylvania.\n\nIn December of 2012, Adam became the Finance Director for SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat.\n\nHe currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily. Check out his <a title=\"Where Has Adam Been?\" href=\"http://adamkubizna.com/wordpress/?page_id=36\">Foursquare Map </a>to see where he has been.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>.\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>** Make sure to sign up for <a href=\"http://eepurl.com/rcsFz\">Adam\'s Newsletter!</a>**    </strong></p>\n<p style=\"text-align: center;\"><strong></strong><strong>It contain\'s information on current events, useful knowledge, recipes and more!</strong></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-46","","","2013-01-05 23:00:54","2013-01-06 03:00:54","","47","http://adamkubizna.com/wordpress/?p=175","0","revision","","0");
INSERT INTO wp_posts VALUES("176","1","2013-01-07 23:00:24","2013-01-08 03:00:24","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming an Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals and currently holds ServSafe Food Safety Certification.\n\nAdam is an accomplished public speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying various <a href=\"http://www.un.org/en/sc/meetings/records/2012.shtml\">UN Security Council Documents</a>) His most memorable speech was his Eagle Scout Address, where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nHe is the Treasurer of the nonprofit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a> since July of 2012  and the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization since December of 2012.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-47","","","2013-01-07 23:00:24","2013-01-08 03:00:24","","47","http://adamkubizna.com/wordpress/?p=176","0","revision","","0");
INSERT INTO wp_posts VALUES("177","1","2012-10-17 13:19:35","2012-10-17 17:19:35","Adam supports and is a member of a variety of organizations, those organization include:\n\n-The Jane Goodall Institute\n\n-United to End Genocide\n\n-Save Darfur\n\n-Metropolitan Opera\n\n&nbsp;","Philanthropist","","inherit","closed","open","","124-revision-2","","","2012-10-17 13:19:35","2012-10-17 17:19:35","","124","http://adamkubizna.com/wordpress/?p=177","0","revision","","0");
INSERT INTO wp_posts VALUES("178","1","2013-01-09 02:04:40","2013-01-09 06:04:40","Adam supports and is a member of a variety of organizations, those organization include:\n\n-The Jane Goodall Institute\n\n-United to End Genocide\n\n-Save Darfur\n\n-Metropolitan Opera\n\n&nbsp;","Philanthropist","","inherit","closed","open","","124-revision-3","","","2013-01-09 02:04:40","2013-01-09 06:04:40","","124","http://adamkubizna.com/wordpress/?p=178","0","revision","","0");
INSERT INTO wp_posts VALUES("179","1","2012-12-14 11:18:08","2012-12-14 15:18:08","<div title=\"Page 1\">\n<div title=\"Page 1\">\n<div>\n\n&nbsp;\n\n</div>\n<div>\n<div title=\"Page 1\">\n<div>\n<div>\n\n<strong>Objective</strong>\n\nTo become an expert practitioner of accounting and criminology, obtain a BS/MPA degree(s) and CPA/CFE Certification(s), and carry that knowledge and experience into the workplace as an accountant.<img src=\"file:///page1image3624\" alt=\"page1image3624\" width=\"82.320000\" height=\"0.240000\" /> <img src=\"file:///page1image3784\" alt=\"page1image3784\" width=\"82.080000\" height=\"0.240000\" />\n\n</div>\n</div>\n<div>\n\n<strong>Employment Experience</strong>\n\nMcDonald’s Corporation\n\n</div>\n</div>\n<ul>\n	<li>  Kitchen Department Manager; February 2012-Present</li>\n	<li>  Swing Manager; February 2011-February 2012</li>\n	<li>  Manager in Training; August 2010 – February 2011</li>\n	<li>  Crew Person/Trainer; 2008-2010</li>\n</ul>\n</div>\n<div>\n<div>\n\nPast and current responsibilities include: managing a multi million dollar store with a staff of up to twenty employees at a time, maintaining a positive food cost/ QCR weekly, training employees on food safety/FIFO procedures and coaching them on the floor\n\n<strong>Volunteer Experience</strong>\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n</div>\n</div>\n<div>\n<div>\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n<strong>Education</strong>\nCalifornia University of Pennsylvania\n\nBachelor of Science in Business Administration with a concentration in Accounting Bachelor of Science in Justice Studies with a concentration in Forensic Science\nCurrent GPA: 3.25                                                            Expected Graduation: Fall 2014\n\n<strong>Skills/Certification/Awards</strong>\n\n- Proficent in Microsoft Office products and designing websites using Wordpress\n\n- ServSafe Food Safety Certification (Expires in 2015)\n\n- Eagle Scout, Class of 2008, Boy Scouts of America\n\n</div>\n<div>\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>\n&nbsp;\n\n&nbsp;","Résumé","","inherit","closed","open","","60-revision-7","","","2012-12-14 11:18:08","2012-12-14 15:18:08","","60","http://adamkubizna.com/wordpress/?p=179","0","revision","","0");
INSERT INTO wp_posts VALUES("180","1","2013-01-09 02:05:14","2013-01-09 06:05:14","<div title=\"Page 1\">\n<div title=\"Page 1\">\n<div>\n\n&nbsp;\n\n</div>\n<div>\n<div title=\"Page 1\">\n<div>\n<div>\n\n<strong>Objective</strong>\n\nTo become an expert practitioner of accounting and criminology, obtain a BS/MPA degree(s) and CPA/CFE Certification(s), and carry that knowledge and experience into the workplace as an accountant.<img src=\"file:///page1image3624\" alt=\"page1image3624\" width=\"82.320000\" height=\"0.240000\" /> <img src=\"file:///page1image3784\" alt=\"page1image3784\" width=\"82.080000\" height=\"0.240000\" />\n\n</div>\n</div>\n<div>\n\n<strong>Employment Experience</strong>\n\nMcDonald’s Corporation\n\n</div>\n</div>\n<ul>\n	<li>  Kitchen Department Manager; February 2012-Present</li>\n	<li>  Swing Manager; February 2011-February 2012</li>\n	<li>  Manager in Training; August 2010 – February 2011</li>\n	<li>  Crew Person/Trainer; 2008-2010</li>\n</ul>\n</div>\n<div>\n<div>\n\nPast and current responsibilities include: managing a multi million dollar store with a staff of up to twenty employees at a time, maintaining a positive food cost/ QCR weekly, training employees on food safety/FIFO procedures and coaching them on the floor\n\n<strong>Volunteer Experience</strong>\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n</div>\n</div>\n<div>\n<div>\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n<strong>Education</strong>\nCalifornia University of Pennsylvania\n\nBachelor of Science in Business Administration with a concentration in Accounting Bachelor of Science in Justice Studies with a concentration in Forensic Science\nCurrent GPA: 3.25                                                            Expected Graduation: Fall 2014\n\n<strong>Skills/Certification/Awards</strong>\n\n- Proficent in Microsoft Office products and designing websites using Wordpress\n\n- ServSafe Food Safety Certification (Expires in 2015)\n\n- Eagle Scout, Class of 2008, Boy Scouts of America\n\n</div>\n<div>\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>\n&nbsp;\n\n&nbsp;","Résumé","","inherit","closed","open","","60-revision-8","","","2013-01-09 02:05:14","2013-01-09 06:05:14","","60","http://adamkubizna.com/wordpress/?p=180","0","revision","","0");
INSERT INTO wp_posts VALUES("181","1","2013-01-07 23:01:49","2013-01-08 03:01:49","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming an Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals and currently holds ServSafe Food Safety Certification.\n\nAdam is an accomplished public speaker and enjoys speaking in a variety of situations, mainly current events; a topic he studies daily (He is currently studying various <a href=\"http://www.un.org/en/sc/meetings/records/2012.shtml\">UN Security Council Documents</a>) His most memorable speech was his Eagle Scout Address, where he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nHe is the Treasurer of the nonprofit group <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a> since July of 2012  and the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization since December of 2012.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-48","","","2013-01-07 23:01:49","2013-01-08 03:01:49","","47","http://adamkubizna.com/wordpress/?p=181","0","revision","","0");
INSERT INTO wp_posts VALUES("182","1","2013-01-21 20:11:15","2013-01-22 00:11:15","Adam has fine toned his skill of speaking to the public through years of practice in front of energized audiences. He has spoken at  Political  Functions such as Democratic State Committee, Eagle Scout Banquets and University Functions at California University of Pennsylvania. It has been said that he \"captivates the audience with his unique style of speaking\".\n\nWant to see it for yourself?  He is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- The Way of the Eagle (BSA)\n\n- Current Events\n\n- Past Significant Events ( The Rwandan Genocide: How it Still Affects Us Today)\n\n- Political Ordeals (LGBT: How can their rights be infringed?)\n\n- Ambition (\"How to Seize the Day\")\n\n&nbsp;\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong> Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","publish","closed","open","","public-speakingwebinars","","","2013-03-13 13:26:12","2013-03-13 17:26:12","","0","http://adamkubizna.com/wordpress/?page_id=182","0","page","","0");
INSERT INTO wp_posts VALUES("183","1","2013-01-21 19:51:47","2013-01-21 23:51:47","","Adam Speech","","inherit","closed","open","","650_51403947726_8976_n-2","","","2013-01-21 19:51:47","2013-01-21 23:51:47","","182","http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("184","1","2013-01-21 20:09:16","2013-01-22 00:09:16","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2.jpg\"><img class=\"size-medium wp-image-183 alignleft\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" /></a>\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Webinars:</span></strong>\n\nAdam is currently presenting <em>free</em> webinars on a variety of topics through the <a href=\"www.anymeeting.com/AdamKubizna\">AnyMeeting</a> platform. Please visit his profile for a list of presentations.\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n&nbsp;\n\nAdam can create a presentation on a topic of your choosing whether it be a webinar or public speaking engagement. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n** <em>Appointments </em>\n\n&nbsp;\n\n&nbsp;","Public Speaking/Webinars","","inherit","closed","open","","182-revision","","","2013-01-21 20:09:16","2013-01-22 00:09:16","","182","http://adamkubizna.com/wordpress/?p=184","0","revision","","0");
INSERT INTO wp_posts VALUES("185","1","2013-01-09 02:06:04","2013-01-09 06:06:04","<div title=\"Page 1\">\n<div title=\"Page 1\">\n<div>\n\n&nbsp;\n\n</div>\n<div>\n<div title=\"Page 1\">\n<div>\n<div>\n\n<strong>Objective</strong>\n\nTo become an expert practitioner of accounting and criminology, obtain a BS/MPA degree(s) and CPA/CFE Certification(s), and carry that knowledge and experience into the workplace as an accountant.<img src=\"file:///page1image3624\" alt=\"page1image3624\" width=\"82.320000\" height=\"0.240000\" /> <img src=\"file:///page1image3784\" alt=\"page1image3784\" width=\"82.080000\" height=\"0.240000\" />\n\n</div>\n</div>\n<div>\n\n<strong>Employment Experience</strong>\n\nMcDonald’s Corporation\n\n</div>\n</div>\n<ul>\n	<li>  Kitchen Department Manager; February 2012-Present</li>\n	<li>  Swing Manager; February 2011-February 2012</li>\n	<li>  Manager in Training; August 2010 – February 2011</li>\n	<li>  Crew Person/Trainer; 2008-2010</li>\n</ul>\n</div>\n<div>\n<div>\n\nPast and current responsibilities include: managing a multi million dollar store with a staff of up to twenty employees at a time, maintaining a positive food cost/ QCR weekly, training employees on food safety/FIFO procedures and coaching them on the floor\n\n<strong>Volunteer Experience</strong>\n\nTreasurer of a political action committee and a 2012 primary campaign for Pennsylvania House of Representatives.\n\n</div>\n</div>\n<div>\n<div>\n\nTreasurer of a statewide nonprofit organization, VotePA.\n\n<strong>Education</strong>\nCalifornia University of Pennsylvania\n\nBachelor of Science in Business Administration with a concentration in Accounting Bachelor of Science in Justice Studies with a concentration in Forensic Science\nCurrent GPA: 3.25                                                            Expected Graduation: Fall 2014\n\n<strong>Skills/Certification/Awards</strong>\n\n- Proficent in Microsoft Office products and designing websites using Wordpress\n\n- ServSafe Food Safety Certification (Expires in 2015)\n\n- Eagle Scout, Class of 2008, Boy Scouts of America\n\n</div>\n<div>\n\n&nbsp;\n\n</div>\n</div>\n</div>\n</div>\n&nbsp;\n\n&nbsp;","Résumé","","inherit","closed","open","","60-revision-9","","","2013-01-09 02:06:04","2013-01-09 06:06:04","","60","http://adamkubizna.com/wordpress/?p=185","0","revision","","0");
INSERT INTO wp_posts VALUES("186","1","2013-03-12 12:24:29","2013-03-12 16:24:29","Adam has fine toned his skill of speaking to the public through years of practice in front of  energized audiences. He has spoken at  Political Campaign Functions (Ex. Democratic State Committee), Eagle Scout Banquets and University Functions (California University of Pennsylvania). It has been said that he \"captivates the audience with his unique style of speaking\".\n\nWant to see it for yourself?  He is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- The Way of the Eagle (BSA)\n\n- Current Events\n\n- Past Significant Events ( The Rwandan Genocide: How it Still Affects Us Today)\n\n- Political Ordeals (LGBT: How can their rights be infringed?)\n\n-  Ambition (\"How to Seize the Day\")\n\n&nbsp;\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong> Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-autosave","","","2013-03-12 12:24:29","2013-03-12 16:24:29","","182","http://adamkubizna.com/wordpress/?p=186","0","revision","","0");
INSERT INTO wp_posts VALUES("187","1","2013-01-21 20:11:15","2013-01-22 00:11:15","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Webinars:</span></strong>\n\nAdam is currently presenting <em>free</em> webinars on a variety of topics through the <a href=\"www.anymeeting.com/AdamKubizna\">AnyMeeting</a> platform. Please visit his profile for a list of presentations.\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n&nbsp;\n\nAdam can create a presentation on a topic of your choosing whether it be a webinar or public speaking engagement. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking/Webinars","","inherit","closed","open","","182-revision-2","","","2013-01-21 20:11:15","2013-01-22 00:11:15","","182","http://adamkubizna.com/wordpress/?p=187","0","revision","","0");
INSERT INTO wp_posts VALUES("188","1","2013-01-21 20:12:37","2013-01-22 00:12:37","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Webinars:</span></strong>\n\nAdam is currently presenting <em>free</em> webinars on a variety of topics through the <a href=\"www.anymeeting.com/AdamKubizna\">AnyMeeting</a> platform. Please visit his profile for a list of presentations.\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n&nbsp;\n\nAdam can create a presentation on a topic of your choosing whether it be a webinar or public speaking engagement. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-3","","","2013-01-21 20:12:37","2013-01-22 00:12:37","","182","http://adamkubizna.com/wordpress/?p=188","0","revision","","0");
INSERT INTO wp_posts VALUES("189","1","2013-01-21 20:14:07","2013-01-22 00:14:07","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Webinars:</span></strong>\n\nAdam is currently presenting <em>free</em> webinars on a variety of topics through the <a href=\"www.anymeeting.com/AdamKubizna\">AnyMeeting</a> platform. Please visit his profile for a list of presentations.\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong>Adam can create a presentation on a topic of your choosing whether it be a webinar or public speaking engagement. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-4","","","2013-01-21 20:14:07","2013-01-22 00:14:07","","182","http://adamkubizna.com/wordpress/?p=189","0","revision","","0");
INSERT INTO wp_posts VALUES("190","1","2012-12-19 22:06:19","2012-12-20 02:06:19","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- <a title=\"Résumé\" href=\"http://adamkubizna.com/wordpress/?page_id=60\">Internships</a>\n\n- <a title=\"Résumé\" href=\"http://adamkubizna.com/wordpress/?page_id=60\">Employment Opportunities</a>\n\n- Speaking Engagements\n\n- Political Campaigning Opportunities\n\n- Information about <a href=\"http://votepa.us\">VotePA</a> and <a href=\"http://vote4marybeth.com\">Friends of Marybeth Kuznik (Campaign PAC)</a>\n\n- Philosophical Discussion\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@vote4marybeth.com- Friends of Marybeth Kuznik, Campaign PAC\nakubizna@votepa.us- VotePA Treasurer E-Mail\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nTo set up a phone or video call with Adam please use this form below:\n[vCitaContact]","Contact Adam","","inherit","closed","open","","51-revision-11","","","2012-12-19 22:06:19","2012-12-20 02:06:19","","51","http://adamkubizna.com/wordpress/?p=190","0","revision","","0");
INSERT INTO wp_posts VALUES("191","1","2013-01-21 20:16:42","2013-01-22 00:16:42","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Internships\n\n- Employment Opportunities\n\n- <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">Speaking Engagements and Webinar Presentations</a>\n\n- Political Campaigning Opportunities\n\n- Information about <a href=\"http://votepa.us\">VotePA</a> and <a href=\"http://vote4marybeth.com\">Friends of Marybeth Kuznik (Campaign PAC)</a>\n\n- Philosophical Discussion\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nTo set up a phone or video call with Adam please use this form below:\n[vCitaContact]","Contact Adam","","inherit","closed","open","","51-revision-12","","","2013-01-21 20:16:42","2013-01-22 00:16:42","","51","http://adamkubizna.com/wordpress/?p=191","0","revision","","0");
INSERT INTO wp_posts VALUES("192","1","2012-12-13 16:09:21","2012-12-13 20:09:21","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Here are a list of things I would like to accomplish throughout my life.</strong></span></p>\n- Travel to every continent.\n\n- Take a Viking River Cruise\n\n- Become an Elected Official\n\n- Become a member of Pennsylvania Democratic State Committee\n\n- Pass the CPA Exam\n\n- Work for the same company (for 18 years)\n\n- Skydive\n\n- Graduate college with &gt; 3.25 GPA\n\n- Write a book\n\n- Write someone\'s biography\n\n- Meet 3 living current/former presidents\n\n- Visit the United Nations HQ in New York\n\n- Meet the Secretary General of the UN\n\n- Meet Queen Elizabeth\n\n- Visit Bhutan\n\n- Become a US Ambassador\n\n- Tour the White House\n\n<del>- Tour the Library of Congress</del>\n\n<del>- Tour the Capitol</del>\n\n&nbsp;\n\n&nbsp;","My Dreams","","inherit","closed","open","","68-revision-9","","","2012-12-13 16:09:21","2012-12-13 20:09:21","","68","http://adamkubizna.com/wordpress/?p=192","0","revision","","0");
INSERT INTO wp_posts VALUES("193","1","2013-01-21 19:14:03","2013-01-21 23:14:03","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming an Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished public speaker  and is available to give speeches in response to a  variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-49","","","2013-01-21 19:14:03","2013-01-21 23:14:03","","47","http://adamkubizna.com/wordpress/?p=193","0","revision","","0");
INSERT INTO wp_posts VALUES("194","1","2013-01-21 21:00:20","2013-01-22 01:00:20","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming an Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career. He is available to speak at public events in the Pittsburgh Metropolitan Area.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-50","","","2013-01-21 21:00:20","2013-01-22 01:00:20","","47","http://adamkubizna.com/wordpress/?p=194","0","revision","","0");
INSERT INTO wp_posts VALUES("195","1","2013-01-27 13:17:03","0000-00-00 00:00:00","","Auto Draft","","auto-draft","closed","open","","","","","2013-01-27 13:17:03","0000-00-00 00:00:00","","0","http://adamkubizna.com/wordpress/?p=195","0","post","","0");
INSERT INTO wp_posts VALUES("196","1","2013-01-21 21:00:43","2013-01-22 01:00:43","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming an Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career. He is available to speak at public events in the Pittsburgh Metropolitan Area.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-51","","","2013-01-21 21:00:43","2013-01-22 01:00:43","","47","http://adamkubizna.com/wordpress/?p=196","0","revision","","0");
INSERT INTO wp_posts VALUES("197","1","2013-01-27 13:18:11","2013-01-27 17:18:11","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on attending graduate school and  passing the CPA exam. He plans on becoming an Accountant or Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career. He is available to speak at public events in the Pittsburgh Metropolitan Area.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-52","","","2013-01-27 13:18:11","2013-01-27 17:18:11","","47","http://adamkubizna.com/wordpress/?p=197","0","revision","","0");
INSERT INTO wp_posts VALUES("198","1","2013-02-19 20:31:59","2013-02-20 00:31:59","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He plans on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-53","","","2013-02-19 20:31:59","2013-02-20 00:31:59","","47","http://adamkubizna.com/wordpress/?p=198","0","revision","","0");
INSERT INTO wp_posts VALUES("199","1","2013-02-19 20:32:49","2013-02-20 00:32:49","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He plans on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-54","","","2013-02-19 20:32:49","2013-02-20 00:32:49","","47","http://adamkubizna.com/wordpress/?p=199","0","revision","","0");
INSERT INTO wp_posts VALUES("200","1","2012-12-13 16:07:44","2012-12-13 20:07:44","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Adam has been featured in many articles and has voiced his opinion in a variety of situations using the media, some of them are below:</strong></span></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor, October, 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Adam in the Press","","inherit","closed","open","","63-revision-10","","","2012-12-13 16:07:44","2012-12-13 20:07:44","","63","http://adamkubizna.com/wordpress/?p=200","0","revision","","0");
INSERT INTO wp_posts VALUES("201","1","2013-01-21 20:14:50","2013-01-22 00:14:50","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Webinars:</span></strong>\n\nAdam is currently presenting <em>free</em> webinars on a variety of topics through the <a href=\"www.anymeeting.com/AdamKubizna\">AnyMeeting</a> platform. Please visit his profile for a list of presentations.\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong>Adam can create a presentation on a topic of your choosing whether it be a webinar or public speaking engagement. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-5","","","2013-01-21 20:14:50","2013-01-22 00:14:50","","182","http://adamkubizna.com/wordpress/?p=201","0","revision","","0");
INSERT INTO wp_posts VALUES("202","1","2013-02-21 14:04:55","2013-02-21 18:04:55","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Webinars:</span></strong>\n\nAdam is currently presenting <em>free</em> webinars on a variety of topics through the AnyMeeting platform. Please visit his profile for a list of presentations.\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong>Adam can create a presentation on a topic of your choosing whether it be a webinar or public speaking engagement. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-6","","","2013-02-21 14:04:55","2013-02-21 18:04:55","","182","http://adamkubizna.com/wordpress/?p=202","0","revision","","0");
INSERT INTO wp_posts VALUES("203","1","2013-03-06 23:34:29","2013-03-07 03:34:29","","World Elephant Day","","inherit","closed","open","","blue-elephant1","","","2013-03-06 23:34:29","2013-03-07 03:34:29","","47","http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/blue-elephant1.jpeg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("204","1","2013-03-06 23:40:39","2013-03-07 03:40:39","","0aee647","","inherit","closed","open","","0aee647","","","2013-03-06 23:40:39","2013-03-07 03:40:39","","47","http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("205","1","2013-02-20 20:14:12","2013-02-21 00:14:12","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-55","","","2013-02-20 20:14:12","2013-02-21 00:14:12","","47","http://adamkubizna.com/wordpress/?p=205","0","revision","","0");
INSERT INTO wp_posts VALUES("206","1","2013-03-06 23:41:26","2013-03-07 03:41:26","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647.jpg\"><img class=\"alignright size-medium wp-image-204\" title=\"0aee647\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n<p style=\"text-align: right;\"></p>\n&nbsp;\n<p style=\"text-align: right;\"></p>\n<p style=\"text-align: right;\"><em><a href=\"https://www.facebook.com/worldelephantday?ref=ts&amp;fref=ts\"><img class=\"alignright size-full wp-image-203\" title=\"World Elephant Day\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/blue-elephant1.jpeg\" alt=\"\" width=\"95\" height=\"95\" /></a></em></p>\n<p style=\"text-align: right;\"></p>\n<p style=\"text-align: right;\"></p>\n<p style=\"text-align: right;\"></p>\n<p style=\"text-align: right;\"><em>Adam is a proud supporter of World Elephant Day!</em></p>","About Adam","","inherit","closed","open","","47-revision-56","","","2013-03-06 23:41:26","2013-03-07 03:41:26","","47","http://adamkubizna.com/wordpress/?p=206","0","revision","","0");
INSERT INTO wp_posts VALUES("207","1","2013-03-06 23:43:56","2013-03-07 03:43:56","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647.jpg\"><img class=\"alignright size-medium wp-image-204\" title=\"0aee647\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n<p style=\"text-align: right;\"><em><a href=\"https://www.facebook.com/worldelephantday?ref=ts&amp;fref=ts\"><img class=\"alignright size-full wp-image-203\" title=\"World Elephant Day\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/blue-elephant1.jpeg\" alt=\"\" width=\"95\" height=\"95\" /></a></em></p>\n<p style=\"text-align: right;\"></p>\n<p style=\"text-align: right;\"></p>\n<p style=\"text-align: right;\"></p>\n<p style=\"text-align: right;\"><em>Adam is a proud supporter of World Elephant Day!</em></p>","About Adam","","inherit","closed","open","","47-revision-57","","","2013-03-06 23:43:56","2013-03-07 03:43:56","","47","http://adamkubizna.com/wordpress/?p=207","0","revision","","0");
INSERT INTO wp_posts VALUES("208","1","2013-03-06 23:44:51","2013-03-07 03:44:51","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647.jpg\"><img class=\"alignright size-medium wp-image-204\" title=\"0aee647\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n<p style=\"text-align: right;\"><em><a href=\"https://www.facebook.com/worldelephantday?ref=ts&amp;fref=ts\"><img class=\"alignright size-full wp-image-203\" title=\"World Elephant Day\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/blue-elephant1.jpeg\" alt=\"\" width=\"95\" height=\"95\" /></a></em></p>\n<p style=\"text-align: right;\"><em>Adam is a proud supporter of World Elephant Day!</em></p>","About Adam","","inherit","closed","open","","47-revision-58","","","2013-03-06 23:44:51","2013-03-07 03:44:51","","47","http://adamkubizna.com/wordpress/?p=208","0","revision","","0");
INSERT INTO wp_posts VALUES("209","1","2013-03-06 23:45:45","2013-03-07 03:45:45","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647.jpg\"><img class=\"alignright size-medium wp-image-204\" title=\"0aee647\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n<p style=\"text-align: right;\"><em><a href=\"https://www.facebook.com/worldelephantday?ref=ts&amp;fref=ts\"><img class=\"alignright size-full wp-image-203\" title=\"World Elephant Day\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/blue-elephant1.jpeg\" alt=\"\" width=\"95\" height=\"95\" /></a></em></p>\n<p style=\"text-align: right;\"></p>\n<p style=\"text-align: right;\"></p>\n&nbsp;\n<p style=\"text-align: right;\"><em>Adam is a proud supporter of World Elephant Day!</em></p>","About Adam","","inherit","closed","open","","47-revision-59","","","2013-03-06 23:45:45","2013-03-07 03:45:45","","47","http://adamkubizna.com/wordpress/?p=209","0","revision","","0");
INSERT INTO wp_posts VALUES("210","1","2013-03-06 23:51:17","2013-03-07 03:51:17","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647.jpg\"><img class=\"alignright size-medium wp-image-204\" title=\"0aee647\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n<p style=\"text-align: right;\"></p>\n&nbsp;\n<p style=\"text-align: right;\"></p>","About Adam","","inherit","closed","open","","47-revision-60","","","2013-03-06 23:51:17","2013-03-07 03:51:17","","47","http://adamkubizna.com/wordpress/?p=210","0","revision","","0");
INSERT INTO wp_posts VALUES("211","1","2013-03-07 00:03:47","2013-03-07 04:03:47","","0aee647-300x300","","inherit","closed","open","","0aee647-300x300","","","2013-03-07 00:03:47","2013-03-07 04:03:47","","47","http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x3001.jpg","0","attachment","image/jpeg","0");
INSERT INTO wp_posts VALUES("212","1","2013-03-06 23:58:15","2013-03-07 03:58:15","<a href=\"http://adamkubizna.com/wordpress/\"><img class=\"alignright  wp-image-204\" title=\"0aee647\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x300.jpg\" alt=\"\" width=\"270\" height=\"270\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-61","","","2013-03-06 23:58:15","2013-03-07 03:58:15","","47","http://adamkubizna.com/wordpress/?p=212","0","revision","","0");
INSERT INTO wp_posts VALUES("213","1","2013-02-21 14:05:33","2013-02-21 18:05:33","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Webinars:</span></strong>\n\nAdam is currently presenting <em>free</em> webinars on a variety of topics through the AnyMeeting platform. Please visit his profile for a list of presentations.\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong>Adam can create a presentation on a topic of your choosing whether it be a webinar or public speaking engagement. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-7","","","2013-02-21 14:05:33","2013-02-21 18:05:33","","182","http://adamkubizna.com/wordpress/?p=213","0","revision","","0");
INSERT INTO wp_posts VALUES("214","1","2013-03-07 00:04:16","2013-03-07 04:04:16","<img class=\"alignright size-full wp-image-211\" title=\"0aee647-300x300\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x3001.jpg\" alt=\"\" width=\"300\" height=\"272\" />Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-62","","","2013-03-07 00:04:16","2013-03-07 04:04:16","","47","http://adamkubizna.com/wordpress/?p=214","0","revision","","0");
INSERT INTO wp_posts VALUES("215","1","2013-03-10 22:36:21","2013-03-11 02:36:21","<a href=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\"><img class=\"alignright size-full wp-image-158\" title=\"adam\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/12/076e31b.jpg\" alt=\"\" width=\"263\" height=\"263\" /></a>Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2012 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-63","","","2013-03-10 22:36:21","2013-03-11 02:36:21","","47","http://adamkubizna.com/wordpress/?p=215","0","revision","","0");
INSERT INTO wp_posts VALUES("216","1","2013-02-20 20:15:06","2013-02-21 00:15:06","<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Adam has been featured in many articles and has voiced his opinion in a variety of situations using the media, some of them are below:</strong></span></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/student-rips-privatization-of-liquor-stores/article_cfd41448-a879-5cc4-931c-1b37e049bd67.html\">Adam\'s Letter to the Editor, February, 2013</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/vote-for-ramsburg/article_eb719814-4659-5d59-ab6d-d53705a3b190.html\">Adam\'s Letter to the Editor, October, 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/opinion/letters_to_the_editor/say-no-to-alcohol/article_c66922c0-54e8-544a-b130-ff207e2bd8a1.html\">Adam\'s Letter to the Editor, October, 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/local-students-named-to-cal-u-dean-s-list/article_1423790e-5ee8-5590-b9c4-239a8849db3a.html\">Adam on the Dean\'s List, Spring 2012</a></p>\n<p style=\"text-align: center;\"><a href=\"http://www.heraldstandard.com/education/news/cal-u-students-named-to-dean-s-list-for-fall/article_f5922908-eb4c-5b8a-ad5d-3b7b3a2eddce.html\">Adam on the Dean\'s List, Fall 2011</a></p>\n<p style=\"text-align: center;\"><a href=\"http://triblive.com/x/pittsburghtrib/news/regional/fayette/s_570009.html#axzz27Fl0437S\">Article on Adam\'s Eagle Scout Project</a></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners, Adam is not responsible for the content of those sites.**</em></p>","Adam in the Press","","inherit","closed","open","","63-revision-11","","","2013-02-20 20:15:06","2013-02-21 00:15:06","","63","http://adamkubizna.com/wordpress/?p=216","0","revision","","0");
INSERT INTO wp_posts VALUES("217","1","2013-01-21 20:17:04","2013-01-22 00:17:04","<span style=\"text-decoration: underline;\"><strong>Adam can be contacted for variety of reasons:</strong></span>\n\n- Internships\n\n- Employment Opportunities\n\n- <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">Speaking Engagements and Webinar Presentations</a>\n\n- Political Campaigning Opportunities\n\n- Information about <a href=\"http://votepa.us\">VotePA</a> and <a href=\"http://vote4marybeth.com\">Friends of Marybeth Kuznik (Campaign PAC)</a>\n\n- Philosophical Discussion\n\n<strong><span style=\"text-decoration: underline;\">Email Addresses:</span></strong>\nadam@adamkubizna.com- Website E-mail\n\n<strong><span style=\"text-decoration: underline;\">Phone:</span></strong>\nOffice of the Treasurer- VotePA\n(412) 552-3167\n\nTo set up a phone or video call with Adam please use this form below:\n[vCitaContact]","Contact Adam","","inherit","closed","open","","51-revision-13","","","2013-01-21 20:17:04","2013-01-22 00:17:04","","51","http://adamkubizna.com/wordpress/?p=217","0","revision","","0");
INSERT INTO wp_posts VALUES("218","1","2013-03-07 13:51:16","2013-03-07 17:51:16","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong>Adam can prepare a presentation on a topic of your choosing. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-8","","","2013-03-07 13:51:16","2013-03-07 17:51:16","","182","http://adamkubizna.com/wordpress/?p=218","0","revision","","0");
INSERT INTO wp_posts VALUES("219","1","2013-03-12 12:00:41","2013-03-12 16:00:41","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- Current Events\n\n- Past Significant Events (ex. the Rwandan Genocide)\n\n- Political Ordeals\n\n-  Ambition (\"How to Seize the Day\")\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong>Adam can prepare a presentation on a topic of your choosing. Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-9","","","2013-03-12 12:00:41","2013-03-12 16:00:41","","182","http://adamkubizna.com/wordpress/?p=219","0","revision","","0");
INSERT INTO wp_posts VALUES("220","1","2013-03-12 12:22:24","2013-03-12 16:22:24","<strong><span style=\"text-decoration: underline;\">Public Speaking:</span></strong>\n\nAdam has fine toned his skill of speaking to the public through years of practice in front of a diverse audiences. He has spoken at  Political Campaign Functions (Ex. Democratic State Committee), Eagle Scout Banquets and University Functions (California University of Pennsylvania). It has been said that he \"captivates the audience with his unique style of speaking\".\n\nWant to see it for yourself?  He is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- The Way of the Eagle (BSA)\n\n- Current Events\n\n- Past Significant Events ( The Rwandan Genocide: How it Still Affects Us Today)\n\n- Political Ordeals (LGBT: How can their rights be infringed?)\n\n-  Ambition (\"How to Seize the Day\")\n\n&nbsp;\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong> Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-10","","","2013-03-12 12:22:24","2013-03-12 16:22:24","","182","http://adamkubizna.com/wordpress/?p=220","0","revision","","0");
INSERT INTO wp_posts VALUES("221","1","2013-03-12 12:23:13","2013-03-12 16:23:13","Adam has fine toned his skill of speaking to the public through years of practice in front of a diverse audiences. He has spoken at  Political Campaign Functions (Ex. Democratic State Committee), Eagle Scout Banquets and University Functions (California University of Pennsylvania). It has been said that he \"captivates the audience with his unique style of speaking\".\n\nWant to see it for yourself?  He is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- The Way of the Eagle (BSA)\n\n- Current Events\n\n- Past Significant Events ( The Rwandan Genocide: How it Still Affects Us Today)\n\n- Political Ordeals (LGBT: How can their rights be infringed?)\n\n-  Ambition (\"How to Seize the Day\")\n\n&nbsp;\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong> Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-11","","","2013-03-12 12:23:13","2013-03-12 16:23:13","","182","http://adamkubizna.com/wordpress/?p=221","0","revision","","0");
INSERT INTO wp_posts VALUES("222","1","2013-03-12 12:24:53","2013-03-12 16:24:53","Adam has fine toned his skill of speaking to the public through years of practice in front of energized audiences. He has spoken at  Political  Functions (Ex. Democratic State Committee), Eagle Scout Banquets and University Functions (California University of Pennsylvania). It has been said that he \"captivates the audience with his unique style of speaking\".\n\nWant to see it for yourself?  He is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- The Way of the Eagle (BSA)\n\n- Current Events\n\n- Past Significant Events ( The Rwandan Genocide: How it Still Affects Us Today)\n\n- Political Ordeals (LGBT: How can their rights be infringed?)\n\n-  Ambition (\"How to Seize the Day\")\n\n&nbsp;\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong> Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-12","","","2013-03-12 12:24:53","2013-03-12 16:24:53","","182","http://adamkubizna.com/wordpress/?p=222","0","revision","","0");
INSERT INTO wp_posts VALUES("223","1","2013-03-12 18:11:15","2013-03-12 22:11:15","Adam has fine toned his skill of speaking to the public through years of practice in front of energized audiences. He has spoken at  Political  Functions (Ex. Democratic State Committee), Eagle Scout Banquets and University Functions (California University of Pennsylvania). It has been said that he \"captivates the audience with his unique style of speaking\".\n\nWant to see it for yourself?  He is available for public speaking events in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-183 alignright\" title=\"Adam Speech\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2013/01/650_51403947726_8976_n-2-156x300.jpg\" alt=\"\" width=\"156\" height=\"300\" />\n\n<span style=\"text-decoration: underline;\"><strong>Some of the topics Adam has spoken about include:</strong></span>\n\n- The Way of the Eagle (BSA)\n\n- Current Events\n\n- Past Significant Events ( The Rwandan Genocide: How it Still Affects Us Today)\n\n- Political Ordeals (LGBT: How can their rights be infringed?)\n\n- Ambition (\"How to Seize the Day\")\n\n&nbsp;\n\n<strong><span style=\"text-decoration: underline;\">Appointments:</span></strong>\n\n<strong></strong> Please <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">contact him</a> to schedule an appointment.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\">** <em>Appointments and Speaking Engagements are on a first come, first served basis**</em></p>\n&nbsp;\n\n&nbsp;","Public Speaking","","inherit","closed","open","","182-revision-13","","","2013-03-12 18:11:15","2013-03-12 22:11:15","","182","http://adamkubizna.com/wordpress/?p=223","0","revision","","0");
INSERT INTO wp_posts VALUES("224","1","2013-03-10 22:36:34","2013-03-11 02:36:34","<img class=\"alignright size-full wp-image-211\" title=\"0aee647-300x300\" src=\"http://adamkubizna.com/wordpress/wp-content/uploads/2012/09/0aee647-300x3001.jpg\" alt=\"\" width=\"300\" height=\"272\" />Adam is a Senior at California University of Pennsylvania and is pursuing a dual degree, a Bachelor of Science in Justice Studies with a concentration in Forensic Sciences and a Bachelor of Science in Business Administration with a concentration in Accounting. His expected graduation date is in the Fall of 2014.\n\nAfter his undergraduate career, he plans on a pursuing a Masters of Accountancy degree and passing the CPA exam with flying colors. He intends on having a distinguished career as an Auditor.\n\nAdam is employed by the McDonald\'s Corporation as a Kitchen Department Manager. He is in charge of food cost and the various operations of the department. He manages a team of six individuals.\n\nAdam is an accomplished <a title=\"Public Speaking\" href=\"http://adamkubizna.com/wordpress/?page_id=182\">public speaker</a> and enjoys speaking about a variety of topics. His most memorable speech was his Eagle Scout Address,  he brought the room to tears as he described how his family encouraged him to never give up throughout his Boy Scouting career.\n\nIn February of 2012, Adam met Marybeth Kuznik, a nonprofit director from Southwestern Pennsylvania. Together Adam and one of his closest friends worked on her political campaign for <a title=\"State Representative\" href=\"http://www.vote4marybeth.com\">State Representative</a>; Adam was the treasurer for her candidate authorized Political Action Committee (PAC).\n\nSince July of 2o12 Adam has been the Treasurer of  <a title=\"VotePA\" href=\"http://www.votepa.us\">VotePA</a>, a nonprofit organization. Recently he has been appointed the Finance Director of SchoolTime Theatre Inc. a 501c(3) nonprofit organization.\n\nAdam is an Eagle Scout, Vigil Honor Brother of the Order of the Arrow and a Progressive Democrat. He currently resides in Uniontown, Pennsylvania and commutes to a variety of places daily.\n\nTo contact Adam please fill out your contact information on the right or by using <a title=\"Contact Adam\" href=\"http://adamkubizna.com/wordpress/?page_id=51\">this form</a>, he is currently seeking internship opportunities in the Pittsburgh Metropolitan Area.\n\n&nbsp;\n<p style=\"text-align: center;\"><em>** This page contains links to outside documents and/or websites, the information on those websites and/or documents are property of their respective owners. Adam is not responsible for the content of those sites.**</em></p>\n&nbsp;\n\n&nbsp;","About Adam","","inherit","closed","open","","47-revision-64","","","2013-03-10 22:36:34","2013-03-11 02:36:34","","47","http://adamkubizna.com/wordpress/?p=224","0","revision","","0");



DROP TABLE wp_term_relationships;

CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned 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=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO wp_term_relationships VALUES("10","10","0");
INSERT INTO wp_term_relationships VALUES("11","10","0");
INSERT INTO wp_term_relationships VALUES("12","10","0");



DROP TABLE wp_term_taxonomy;

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;

INSERT INTO wp_term_taxonomy VALUES("1","1","category","","0","0");
INSERT INTO wp_term_taxonomy VALUES("2","2","link_category","","0","0");
INSERT INTO wp_term_taxonomy VALUES("10","10","link_category","","0","3");



DROP TABLE wp_terms;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned 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=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;

INSERT INTO wp_terms VALUES("1","Uncategorized","uncategorized","0");
INSERT INTO wp_terms VALUES("2","Blogroll","blogroll","0");
INSERT INTO wp_terms VALUES("10","Links","links","0");



DROP TABLE wp_usermeta;

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned 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=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8;

INSERT INTO wp_usermeta VALUES("1","1","first_name","Adam");
INSERT INTO wp_usermeta VALUES("2","1","last_name","Kubizna");
INSERT INTO wp_usermeta VALUES("3","1","nickname","Adam");
INSERT INTO wp_usermeta VALUES("4","1","description","");
INSERT INTO wp_usermeta VALUES("5","1","rich_editing","true");
INSERT INTO wp_usermeta VALUES("6","1","comment_shortcuts","false");
INSERT INTO wp_usermeta VALUES("7","1","admin_color","fresh");
INSERT INTO wp_usermeta VALUES("8","1","use_ssl","0");
INSERT INTO wp_usermeta VALUES("9","1","show_admin_bar_front","true");
INSERT INTO wp_usermeta VALUES("10","1","wp_capabilities","a:1:{s:13:\"administrator\";s:1:\"1\";}");
INSERT INTO wp_usermeta VALUES("11","1","wp_user_level","10");
INSERT INTO wp_usermeta VALUES("12","1","dismissed_wp_pointers","wp330_toolbar,wp330_media_uploader,wp330_saving_widgets");
INSERT INTO wp_usermeta VALUES("13","1","show_welcome_panel","0");
INSERT INTO wp_usermeta VALUES("14","1","wp_dashboard_quick_press_last_post_id","195");
INSERT INTO wp_usermeta VALUES("15","1","aim","");
INSERT INTO wp_usermeta VALUES("16","1","yim","");
INSERT INTO wp_usermeta VALUES("17","1","jabber","");
INSERT INTO wp_usermeta VALUES("18","1","managenav-menuscolumnshidden","a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}");
INSERT INTO wp_usermeta VALUES("19","1","metaboxhidden_nav-menus","a:2:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";}");
INSERT INTO wp_usermeta VALUES("20","1","nav_menu_recently_edited","9");
INSERT INTO wp_usermeta VALUES("21","1","wp_user-settings","hidetb=1&editor=tinymce&align=right&wplink=1");
INSERT INTO wp_usermeta VALUES("22","1","wp_user-settings-time","1362627941");
INSERT INTO wp_usermeta VALUES("23","2","first_name","Marybeth");
INSERT INTO wp_usermeta VALUES("24","2","last_name","Kuznik");
INSERT INTO wp_usermeta VALUES("25","2","nickname","MB");
INSERT INTO wp_usermeta VALUES("26","2","description","");
INSERT INTO wp_usermeta VALUES("27","2","rich_editing","true");
INSERT INTO wp_usermeta VALUES("28","2","comment_shortcuts","false");
INSERT INTO wp_usermeta VALUES("29","2","admin_color","fresh");
INSERT INTO wp_usermeta VALUES("30","2","use_ssl","0");
INSERT INTO wp_usermeta VALUES("31","2","show_admin_bar_front","true");
INSERT INTO wp_usermeta VALUES("32","2","wp_capabilities","a:1:{s:6:\"editor\";s:1:\"1\";}");
INSERT INTO wp_usermeta VALUES("33","2","wp_user_level","7");
INSERT INTO wp_usermeta VALUES("34","2","dismissed_wp_pointers","wp330_toolbar,wp330_media_uploader,wp330_saving_widgets");
INSERT INTO wp_usermeta VALUES("35","1","meta-box-order_dashboard","a:4:{s:6:\"normal\";s:104:\"dashboard_right_now,dashboard_recent_comments,dashboard_incoming_links,dashboard_plugins,dashboard_stats\";s:4:\"side\";s:83:\"dashboard_quick_press,dashboard_recent_drafts,dashboard_primary,dashboard_secondary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}");
INSERT INTO wp_usermeta VALUES("36","1","screen_layout_dashboard","2");
INSERT INTO wp_usermeta VALUES("37","1","closedpostboxes_dashboard","a:1:{i:0;s:15:\"dashboard_stats\";}");
INSERT INTO wp_usermeta VALUES("38","1","metaboxhidden_dashboard","a:0:{}");



DROP TABLE wp_users;

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=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO wp_users VALUES("1","admin","$P$BNkS3qQ4NppvcDeNVx6.Ct5kGAI0xn0","admin","adam@adamkubizna.com","http://adamkubizna.com","2012-09-22 02:25:08","","0","Adam Kubizna");
INSERT INTO wp_users VALUES("2","MB","$P$ByjD.8sKIEyCf41G035NZd9j84WlV/1","mb","sunnykay1@comcast.net","","2012-10-18 03:50:12","","0","MB");



