<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fuller Web Development</title>
	<atom:link href="http://braydon.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://braydon.com/blog</link>
	<description>JavaScript, PHP, and Python Web Development by Braydon Fuller</description>
	<lastBuildDate>Tue, 20 Jul 2010 04:34:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Social network activity and social well-being</title>
		<link>http://braydon.com/blog/2010/07/social-network-activity-and-social-well-being/</link>
		<comments>http://braydon.com/blog/2010/07/social-network-activity-and-social-well-being/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 04:34:43 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Recommendations]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=865</guid>
		<description><![CDATA[
Previous research has shown a relationship between use of social networking sites and feelings of social capital. However, most studies have relied on self-reports by college students. The goals of the current study are to (1) validate the common self-report scale using empirical data from Facebook, (2) test whether previous findings generalize to older and [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
Previous research has shown a relationship between use of social networking sites and feelings of social capital. However, most studies have relied on self-reports by college students. The goals of the current study are to (1) validate the common self-report scale using empirical data from Facebook, (2) test whether previous findings generalize to older and international populations, and (3) delve into the specific activities linked to feelings of social capital and loneliness. In particular, we investigate the role of directed interaction between pairs—such as wall posts, comments, and “likes”— and consumption of friends’ content, including status updates, photos, and friends’ conversations with other friends. We find that directed communication is associated with greater feelings of bonding social capital and lower loneliness, but has only a modest relationship with bridging social capital, which is primarily related to overall friend network size. Surprisingly, users who consume greater levels of content report reduced bridging and bonding social capital and increased loneliness. Implications for designs to support well-being are discuss<br />
<cite><a href="http://cameronmarlow.com/papers/social-network-activity-and-social-well-being">cameronmarlow.com</a></cite></p></blockquote>
<p><a href="http://cameronmarlow.com/media/burke-2010-social-well-being.pdf"> (PDF) Social network activity and social well-being </a></p>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/07/social-network-activity-and-social-well-being/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress URL Rewrite</title>
		<link>http://braydon.com/blog/2010/07/wordpress-url-rewrite/</link>
		<comments>http://braydon.com/blog/2010/07/wordpress-url-rewrite/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 01:11:56 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=853</guid>
		<description><![CDATA[WordPress has it&#8217;s own URL management system, and when developing websites it&#8217;s convenient to be able to add new rules dynamically. I&#8217;ve used this for two websites, music.vtechphones.com and for a site I am building now. It&#8217;s also great to keep all modifications in one place, so upgrades are easier, and easier for another developer [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress has it&#8217;s own URL management system, and when developing websites it&#8217;s convenient to be able to add new rules dynamically. I&#8217;ve used this for two websites, <a href="http://music.vtechphones.com">music.vtechphones.com</a> and for a site I am building now. It&#8217;s also great to keep all modifications in one place, so upgrades are easier, and easier for another developer to pick up!</p>
<p>Create a new plugin, and you place your rules into it doing something similar to the PHP below:</p>
<pre>

add_filter('rewrite_rules_array','wp_insert_my_rewrite_rules');
add_filter('init','flush_rules');

// Remember to flush_rules() when adding rules
function flush_rules(){
  global $wp_rewrite;
  $wp_rewrite->flush_rules();
}

// Adding a new rule
function wp_insert_my_rewrite_rules($rules){
  $newrules = array();

  $newrules['(articles)$'] = 'index.php?post_type=article';
  $newrules['(gallery)$'] = 'index.php?post_type=gallery';
  $newrules['(projects)$'] = 'index.php?post_type=project';
  $newrules['(blog)$'] = 'index.php?post_type=post';

  return $newrules + $rules;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/07/wordpress-url-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Complexity!</title>
		<link>http://braydon.com/blog/2010/07/complexity/</link>
		<comments>http://braydon.com/blog/2010/07/complexity/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 06:40:44 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=837</guid>
		<description><![CDATA[Life, past the tragedies we face along our way, is impossibly complex and beautiful! The ups, the downs! I&#8217;m constantly amazed. I am who I am because of who we are, and where we have been! I am still here! We are still here! It&#8217;s all connected. There is a time for everything!

Photo from Zen [...]]]></description>
			<content:encoded><![CDATA[<p>Life, past the tragedies we face along our way, is impossibly complex and beautiful! The ups, the downs! I&#8217;m constantly amazed. I am who I am because of who we are, and where we have been! I am still here! We are still here! It&#8217;s all connected. There is a time for everything!</p>
<p><img src="http://braydon.com/blog/wp-content/uploads/2010/07/800px-Lotus_Nelumbo_nucifera_Flower_Large_3264px-e1278829928646.jpg" alt="" title="800px-Lotus_Nelumbo_nucifera_Flower_Large_3264px" width="600" height="450" class="alignnone size-full wp-image-844" /><br />
<small>Photo from <a href="http://en.wikipedia.org/wiki/Zen">Zen &#8211; Wikipedia</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/07/complexity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with BuddyPress Themes</title>
		<link>http://braydon.com/blog/2010/07/getting-started-with-buddypress-themes/</link>
		<comments>http://braydon.com/blog/2010/07/getting-started-with-buddypress-themes/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 10:21:36 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=787</guid>
		<description><![CDATA[I&#8217;ve gone through and installed several themes into a testing install of BuddyPress and have selected a few that I think will work as good starting points for further development and a good way to learn more about BuddyPress and how to develop social networking sites with it.
TwentyTen BuddyPress (Download) This is a theme that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve gone through and installed several themes into a testing install of BuddyPress and have selected a few that I think will work as good starting points for further development and a good way to learn more about BuddyPress and how to develop social networking sites with it.</p>
<p><a href="http://freebpthemes.com/themes/twentyten-for-buddypress/">TwentyTen BuddyPress</a> (<a href="http://freebpthemes.com/wp-content/plugins/download-monitor/download.php?id=6">Download</a>) This is a theme that extends the default WordPress 3.0 TwentyTen theme to support BuddyPress. A great place to start in enhancing a blog with social networking features. <em> Author: <a href="http://ronandandrea.com/" class="person">Ron &#038; Andrea</a> </em></p>
<p><a href="http://wordpress.org/extend/themes/bp-columns">BuddyPress Columns</a> (<a href="http://wordpress.org/extend/themes/download/bp-columns.1.2.zip">Download</a>) A three-column fixed-width variation to the default BuddyPress theme. There are many smaller details that make this theme feel almost finished, but still a bit of room to work with. <em>Author: <a href="http://twitter.com/modemlooper" class="person">modemlooper</a></em></p>
<p><a href="http://wordpress.org/extend/themes/fishbook-buddypress-buddypack">Fishbook</a> (<a href="http://wordpress.org/extend/themes/download/fishbook-buddypress-buddypack.1.2.zip">Download</a>) A clean monotone light-blue two-column flexible-width theme. It remains consistent with default theme&#8217;s functionality. <em>Author: <a href="http://www.michaelkuhlmann.com/" class="person">Michael Kuhlmann</a></em></p>
<p><a href="http://wordpress.org/extend/themes/jukt-micronics-buddypress-buddypack">Jukt Micronics</a> (<a href="http://wordpress.org/extend/themes/download/jukt-micronics-buddypress-buddypack.1.2.zip">Download</a>) A minimal light two-column fixed-width theme. This one is one of my favorites, it feels open, good use of highlighting colors, and feels direct and to the point. <em>Author: <a href="http://www.michaelkuhlmann.com/" class="person">Michael Kuhlmann</a></em></p>
<p><a href="http://wordpress.org/extend/themes/sense-and-sensibility-bp">Sense and Sensibility</a> (<a href="http://wordpress.org/extend/themes/download/sense-and-sensibility-bp.1.6.zip">Download</a>) A stripped down minimal two-column theme. It diverges by not showing the activity in the main menu, which is good to see some variation in navigation. The theme looks like an ideal starting point for a heavy customized theme as there really isn&#8217;t much styling added to it yet. It also includes the WordPress meta in the sidebar with a link to access the site admin. <em>Author: <a href="http://ronandandrea.com/" class="person">Ron &#038; Andrea</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/07/getting-started-with-buddypress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction Video to VideoPress</title>
		<link>http://braydon.com/blog/2010/07/introduction-video-to-videopress/</link>
		<comments>http://braydon.com/blog/2010/07/introduction-video-to-videopress/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 01:20:50 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=781</guid>
		<description><![CDATA[
More Information at VideoPress.com
]]></description>
			<content:encoded><![CDATA[<p><embed type="application/x-shockwave-flash" src="http://s0.videopress.com/player.swf?v=1.01" width="600" height="336" wmode="transparent" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=OO4thna8"></embed></p>
<p>More Information at <a href="http://videopress.com/">VideoPress.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/07/introduction-video-to-videopress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction Video to BuddyPress</title>
		<link>http://braydon.com/blog/2010/07/introduction-video-to-buddypress/</link>
		<comments>http://braydon.com/blog/2010/07/introduction-video-to-buddypress/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 00:57:20 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=771</guid>
		<description><![CDATA[
More information at BuddyPress.org
]]></description>
			<content:encoded><![CDATA[<p><embed src="http://s0.videopress.com/player.swf?v=1" type="application/x-shockwave-flash" width="600" height="337" wmode="transparent" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=fft9IGgw&amp;isDynamicSeeking=false" title="Introducing BuddyPress - Create your own Social Network"></embed></p>
<p>More information at <a href="http://buddypress.org/">BuddyPress.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/07/introduction-video-to-buddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Life and Death</title>
		<link>http://braydon.com/blog/2010/07/the-meaning-of-life/</link>
		<comments>http://braydon.com/blog/2010/07/the-meaning-of-life/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 01:21:33 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=715</guid>
		<description><![CDATA[
Can you look eye to eye with Death without fear? Can you sacrifice your own heart to protest the death of a sibling and become a living ghost? We all share the same fate. Some meet this fate earlier and unexpected and without any reason — life is chaotic. However, to surrender yourself is giving [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;width:370px;margin:auto;">
<p>Can you look eye to eye with Death without fear? Can you sacrifice your own heart to protest the death of a sibling and become a living ghost? We all share the same fate. Some meet this fate earlier and unexpected and without any reason — life is chaotic. However, to surrender yourself is giving up on your own life. <em>Fuck you Death!</em></p>
<p><strong>R.I.P. Natasha Fuller (1979 – 2001)</strong></p>
<p>
skiing is mountain born and bred,<br />
the child of cold adventure<br />
and pure spirited snow<br />
<em>- Natasha</cite></em>
</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/07/the-meaning-of-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;WordPress&#8217; Social Networking Plugins</title>
		<link>http://braydon.com/blog/2010/07/wordpress-social-networking-plugins/</link>
		<comments>http://braydon.com/blog/2010/07/wordpress-social-networking-plugins/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 07:01:17 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=509</guid>
		<description><![CDATA[This is a selection of 21 WordPress plugins written by 23 people from around the world. They extend a blog with social, community, and networking features. Ranging from multi-user community sites, to plugins that deal with interactions between individual blogs, and interactions with existing social networks.

BUDDYPRESS WORDPRESS PLUGIN
BuddyPress will let users register on your site [...]]]></description>
			<content:encoded><![CDATA[<p style="font-size: 21px; line-height: 28px; color: orange;"><strong>This is a selection of 21 WordPress plugins written by 23 people from around the world. They extend a blog with social, community, and networking features. Ranging from multi-user community sites, to plugins that deal with interactions between individual blogs, and interactions with existing social networks.</strong></p>
<hr />
<h2>BUDDYPRESS WORDPRESS PLUGIN</h2>
<p>BuddyPress will let users register on your site and create a profile, post messages, make connections, create and interact in groups and more. There are several ways of extending BuddyPress with extensions.</p>
<div style="text-align:center;">
	<a href="http://wordpress.org/extend/plugins/buddypress/">BuddyPress on WordPress</a><br />
	<a href="http://buddypress.org/">BuddyPress Official Site</a><br />
        Authors: <strong><a href="http://profiles.wordpress.org/users/apeatling/" class="person">Andy Peatling</a>, <a href="http://buddypress.org/community/members/johnjamesjacoby/" class="person">John James Jacoby</a>, <a href="http://buddypress.org/community/members/MrMaz/" class="person">Marshall Sorenson</a></strong><br />
	Total Downloads: 241,512
</div>
<div class="center"><img src="http://braydon.com/blog/wp-content/uploads/2010/07/rideoregonride.com_.jpeg" alt="" /><br />
<small>A WordPress site using BuddyPress.<br/> <a href="http://rideoregonride.com/">Ride Oregon</a> is the official site for Travel Oregon’s focus on cycling-related travel and tourism in the state. <br/><a href="http://wordpress.org/showcase/flavor/buddypress/">More Showcases</a></small><br />
<br/>
</div>
<h4>Extend</h4>
<p><a href="http://wordpress.org/extend/plugins/bp-events/">BuddyPress Events Calendar</a> The plugin will add an option to the user menu called Events. From this menu users can create events and invite friends to join. The plugin will add an Events option to the main menu system for the events directory view. Add the Events widget to list; upcoming, newest, active and popular events on your front page. <em>Total Downloads: 12,961</em> <em>Author: <span class="person">erwingerrits</span></em></p>
<div class="center"><img src="http://braydon.com/blog/wp-content/uploads/2010/07/events_calendar-e1278119264796.png" alt="" title="events_calendar" width="340" height="233" class="aligncenter size-full wp-image-564" /><br />
<small>Ride Oregan Events Calendar</small></div>
<p><br/></p>
<p><a href="http://wordpress.org/extend/plugins/buddypress-ajax-chat/">BuddyPress Ajax-Chat</a> This plugin will extend BuddyPress to have an Ajax Chat client that works with BuddyPress groups, as well as all WordPress users. <em>Total Downloads: 12,860</em> <em>Author: <a href="http://codewarrior.getpaidfrom.us/" class="person">David Aubin</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/buddypress-like/">BuddyPress Like</a> Adds a &#8216;Like&#8217; button to activities in the stream, allowing users to &#8216;Like&#8217; the item and see who else has done the same. <em>Total Downloads: 5,523</em> <em>Author: <a href="http://buddypress.org/community/members/hempsworth/" class="person">Alex Hempton-Smith</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/buddypress-maps/">BuddyPress Maps</a> A component to find and display location markers on a Google Map. <em>Total Downloads: 3,269</em> <em>Author: <span class="person">G.Breant</span></em></p>
<div class="center">
<img src="http://braydon.com/blog/wp-content/uploads/2010/07/ride_oregan_maps-e1278119470667.png" /><br />
<small>Ride Oregan Maps</small>
</div>
<p><a href="http://wordpress.org/extend/plugins/buddypress-friends-on-line/">BuddyPress Friends Online (FOL)</a> Plugin will display on your Friends page in a widget under the search field, currently online friends. Data is dynamically updated. <em>Total Downloads: 1,525</em> <em>Author: <a href="http://cosydale.com/" class="person">slaFFik</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/my-friends-widgets-for-buddypress/">BuddyPress My Friends Widgets</a> Includes two widgets to display a logged in user&#8217;s friends. The small size shows 40px by 40px avatars and the big size shows 82px by 82px avatars. <em>Total Downloads: 1,215</em> <em>Author: <span  class="person">Sarah Gooding</span></em></p>
<p><a href="http://wordpress.org/extend/plugins/buddypress-followers/">BuddyPress Followers</a> Add the ability for users to follow others and keep track of their site activity. This plugin works exactly the same way that the friends component of BuddyPress works, however the connection does not need to be accepted by the person being followed. <em>Total Downloads: 1,117</em> <em>Author: <a href="http://profiles.wordpress.org/users/apeatling/" class="person">Andy Peatling</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/buddypress-private-message-for-friends-only/">BuddyPress Private Messages for Friends Only</a> By default any member on your BuddyPress site can send messages to anyone in your userbase. This plugin adds the ability to send messages to friends and site administrators. <em>Total Downloads: 983</em> <em>Author: <a href="http://buddypress.org/community/members/r-a-y/" class="person">r-a-y</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/buddypress-private-messages-for-followers-only/">BuddyPress Private Messages for Followers Only</a> This plugin adds the ability for members to send messages to their followers. <em>Total Downloads: 208</em> <em>Author: <a href="http://buddypress.org/community/members/r-a-y/" class="person">r-a-y</a></em></p>
<hr/>
<h2>WordPress Interaction Plugins</h2>
<div style="margin:auto;width:368px;"><img src="http://braydon.com/blog/wp-content/uploads/2010/07/wordpress_integration.png" width="368" height="155" /></div>
<p><br/></p>
<p><a href="http://wordpress.org/extend/plugins/private-wordpress/">Private WordPress</a> With this plugin, you may close down your blog, restrict people who can view your blog, or even open feed readers&#8217; access only. <em>Total Downloads: 7,316</em> <em>Author: <a href="http://wordpress.org/extend/plugins/profile/zheng1212" class="person">Jiehan Zheng</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/friendz/">Friendz</a> If you run a site with WordPress, probably some users are authors, some are contributors, and most of them are only subscribers. With Friendz each user has his own profile, even if there are no public posts by that user. <em>Total Downloads: 645</em> <em>Author: <span class="person">Roger Stringer </span></em></p>
<p><a href="http://wordpress.org/extend/plugins/private-network/">Private Network</a> Allows Administrators at different WordPress installations, for example alice.com and bob.com, to share their posts within categories, posts with selected tags or single posts and pages. Within categories and tags is possible to share only private or include public posts. <em>Total Downloads: 298</em> <em> Author: <a href="http://www.andreabelvedere.com/" class="person">Andrea Belvedere</a></em></p>
<div class="center"><img src="http://braydon.com/blog/wp-content/uploads/2010/07/private_network_contacts-e1278160724648.png" width="340" height="212" /><br />
<small>Wordpress Private Network Contacts Admin</small></div>
<p><a href="http://wordpress.org/extend/plugins/outgoing-comments/">Outgoing Comments (Tracker)</a> Display your recent outgoing comments on your dashboard menu to help you revisit your friends&#8217; sites. The main purpose is to trackback your own comments so you can know what sites you have comments on (with BackType service). <em>Total Downloads: 238</em> <em>Author: <span class="person">Julian Widya Perdana</span></em></p>
<p><a href="http://wordpress.org/extend/plugins/wpfriends/">WPfriends</a> Simple plugin to keep track of your friends posts, similar to the friends page of LiveJournal. Currently you can just add WordPress and LiveJournal feeds. <em>Total Downloads: 148</em> <em>Author: <a href="http://wordpress.org/extend/plugins/profile/lizardwuff" class="person">Sascha Bias</a></em> <em>Status: Development</em></p>
<p><br/><br/></p>
<h2>Social Networks Interaction</h2>
<div style="margin:auto;width:368px;"><img src="http://braydon.com/blog/wp-content/uploads/2010/07/wordpress_social_network_integration.png" width="368" height="155" /></div>
<p><br/></p>
<p><a href="http://wordpress.org/extend/plugins/wordbook/">Wordbook</a> This plugin allows you to cross-post your blog posts to your Facebook Wall. Your Facebook &#8216;Boxes&#8217; tab will show your most recent blog posts. <em>Total Downloads: 111,625</em> <em>Author: <a href="http://www.tsaiberspace.net/blog/" class="person">Robert Tsai</a></em></p>
<div class="center"><img src="http://braydon.com/blog/wp-content/uploads/2010/07/wordbook-e1278186513969.png" width="340" height="89" /><br />
<small>WordPress post cross-posted to Facebook</small>
</div>
<p><a href="http://wordpress.org/extend/plugins/wp-facebookconnect/">WP-FacebookConnect</a> Adds Facebook functionality to WordPress using the Facebook Connect APIs. Features include; single sign-on with your Facebook account, publish comments to the news feed, comment avatars display Facebook profile photos. <em>Total Downloads: 43,398</em> <em>Author: <a href="http://hupp.org/adam/" class="person">Adam Hupp</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/meet-your-commenters/">Meet Your Commenters</a> When someone comments on your blog and writes a comment with his/her URL, is leaving more information than you think. This plugin displays web pages and profiles of those users in the dashboard, so you can add them as friends if you are in the same social network. <em>Total Downloads: 6,194</em> <em>Author: <a href="http://www.berriart.com/" class="person">Alberto Varela</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/friendconnect-login/">FriendConnect Login</a> Google Friend Connect (GFC) adds the ability to become members of your site community using their Google, Yahoo!, AIM or OpenID accounts. This lets them interact with other visitors by making friends, sharing media, posting comments, playing games, and more. More information on <a href="http://www.google.com/friendconnect/">Google Friend Connect</a>. <em>Total Downloads: 3,269</em> <em>Author: <a href="http://shahin.org.ua/" class="person">Shahin Musayev</a></em></p>
<p><a href="http://wordpress.org/extend/plugins/add-post-to-facebook/">Add Post To Facebook</a> This plugin will add a link or an image below your posts, allowing your visitors to share your posts with their friends on FaceBook. While the plugin is activated a link will appear after the content of the post with the text &#8216;Share on Facebook&#8217; or the Facebook icon or both. Clicking this link will bring the user to the Facebook site. If the user isn&#8217;t logged in they will be prompted to do so. Once logged into Facebook the post will be added to the Mini-Feed of the account. <em>Total Downloads: 972</em> <em>Author: <span class="person">Pedro Maia </span></em></p>
<p><a href="http://wordpress.org/extend/plugins/google-friend-connect/">Friend Connect Commenting Plugin</a> Visitors can log-in with their FriendConnect ID and leave a comment with that same ID or override WordPress comments system and replace it with GFC comments. Also you can add GFC gadgets as sidebar widgets. <em>Total Downloads: 546</em> <em>Author: <span class="person">Mauro Gonzalez</span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/07/wordpress-social-networking-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Influence of Technology on the Initiation of Interpersonal Relationships.</title>
		<link>http://braydon.com/blog/2010/06/the-influence-of-technology-on-the-initiation-of-interpersonal-relationships/</link>
		<comments>http://braydon.com/blog/2010/06/the-influence-of-technology-on-the-initiation-of-interpersonal-relationships/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 20:05:45 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=326</guid>
		<description><![CDATA[Technology, computers, and the internet are tools to initiate interpersonal relationships! Or in other words a great way to communicate with everyone! 
I&#8217;m on the 8th floor in a 180 square foot room, in a building you need identification to get into, it&#8217;s in the Old Bank District in Downtown, Los Angeles. I&#8217;m sitting in [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Technology, computers, and the internet are tools to <em>initiate</em> interpersonal relationships! Or in other words a great way to communicate with <em>everyone</em>! </strong></p>
<p>I&#8217;m on the 8th floor in a 180 square foot room, in a building you need identification to get into, it&#8217;s in the Old Bank District in Downtown, Los Angeles. I&#8217;m sitting in front of my computer now, headphones on listening to the &#8220;root&#8221;, by the Deftones. I just got back from having coffee and writing at a local coffee shop. On my desk is a 23 inch monitor that I am <em>not using</em>, an <em>unplugged</em> external harddrive, and <em>unplugged</em> sdcard reader and dvd drive, a usb hub, mouse, keyboard, notebook and pen, a stack of papers, a photo my older sister gave me, a photo my mom sent me, a book about SQL with missing pages I tore out, and a book that I edited and designed for a project back in 2005 while going to the Art Center College of Design, with articles about Human-Computer Interaction.</p>
<p>In that book is an article titled, &#8220;The Influence of Technology on the Initiation of Interpersonal Relationships&#8221; (2003), you can read it online:<br />
<a href="http://www.questia.com/googleScholar.qst?docId=5001928409">http://www.questia.com/googleScholar.qst?docId=5001928409</a></p>
<p>Here is an Introduction to it:</p>
<blockquote><p>
The world has witnessed a steady increase in the advent, adoption, and widespread use of new and varied technologies. With this proliferation of technology, scholars and lay people alike are beginning to ask the question, &#8220;How does advancing technologies impact interpersonal relationships?&#8221; This paper explores this concern by examining the following three areas. First, brief consideration is given to technology and its influence on social life. Second, the influence of media on interpersonal relationships is explored. Finally, the implications of computer-mediated interaction for relationship development are reviewed.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/06/the-influence-of-technology-on-the-initiation-of-interpersonal-relationships/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Wordpress blog setup for a volunteer project called United By Football.</title>
		<link>http://braydon.com/blog/2010/06/quick-wordpress-blog-setup-for-a-volunteer-project-called-united-by-football/</link>
		<comments>http://braydon.com/blog/2010/06/quick-wordpress-blog-setup-for-a-volunteer-project-called-united-by-football/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 08:45:42 +0000</pubDate>
		<dc:creator>Braydon Fuller</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[Downtown LA]]></category>
		<category><![CDATA[United By Football]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://braydon.com/blog/?p=284</guid>
		<description><![CDATA[Aiko and Logan have started a project called United by Football. It&#8217;s promotional elements are photographic panoramic interactive photos of fans and players of the game. It&#8217;s part fine-art, journalism, tech, and studio. Everyone is a superstar! I helped get the Wordpress blog online. UnitedByFootball.com. How better fitting than to get things up the day [...]]]></description>
			<content:encoded><![CDATA[<p>Aiko and <a href="http://dreamlogan.com/">Logan</a> have started a project called <a href="http://unitedbyfootball.com">United by Football</a>. It&#8217;s promotional elements are photographic panoramic interactive photos of fans and players of the game. It&#8217;s part fine-art, journalism, tech, and studio. Everyone is a superstar! I helped get the Wordpress blog online. <a href="http://unitedbyfootball.com">UnitedByFootball.com</a>. How better fitting than to get things up the day the World Cup 2010 begins.</p>
<p><a href="http://unitedbyfootball.com"><img src="http://braydon.com/blog/wp-content/uploads/2010/06/Screenshot-8-e1276332320883.png" alt="" title="Screenshot-8" width="500" height="381" class="alignnone size-full wp-image-289" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://braydon.com/blog/2010/06/quick-wordpress-blog-setup-for-a-volunteer-project-called-united-by-football/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
