<?xml version="1.0" encoding="ISO-8859-1"?>
<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"
	>

<channel>
	<title>Change &#187; Web 2.0</title>
	<atom:link href="http://change.bbvx.org/category/web-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://change.bbvx.org</link>
	<description>Musings on the past and future of AAUW</description>
	<pubDate>Mon, 25 Aug 2008 14:20:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>New Facebook and Del.icio.us</title>
		<link>http://change.bbvx.org/2008/08/new-facebook-and-delicious/</link>
		<comments>http://change.bbvx.org/2008/08/new-facebook-and-delicious/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 02:36:59 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[facebook del.icio.us]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/?p=193</guid>
		<description><![CDATA[It&#8217;s been awhile since I&#8217;ve updated my list of Facebook applications&#8230; One quick note on del.icio.us.
Having the items you bookmark show up in your minifeed (old Facebook) or on your Wall (new Facebook) is a quick way to share your interests with your Facebook friends. There are del.icio.us applications, but they end up putting the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been awhile since I&#8217;ve updated my list of Facebook applications&#8230; One quick note on del.icio.us.</p>
<p>Having the items you bookmark show up in your minifeed (old Facebook) or on your Wall (new Facebook) is a quick way to share your interests with your Facebook friends. There are del.icio.us applications, but they end up putting the links on the &#8220;boxes&#8221; tab &#8212; they can be found by someone poking around for information about you, but they won&#8217;t (I think) show up on your friends&#8217; news feeds.</p>
<p>It turns out that the new Facebook interface (<a href="http://new.facebook.com">http://new.facebook.com</a> if you haven&#8217;t tried it yet) has a built in way to put del.icio.us links on your wall.</p>
<ul>
<li>Click your name in the upper left to get to your profile</li>
<li>Find the menu item &#8220;Settings&#8221; near the top (to the right of the menu items &#8220;All Posts&#8221;, &#8220;Posts by You&#8221;, &#8220;Posts by Others&#8221;</li>
<li>Click the del.icio.us icon in the &#8220;Imported Stories&#8221; section.</li>
<li>Enter your user name, and you&#8217;re done.</li>
</ul>
<p>Note that there&#8217;s no need to enter your password - only your public links will be pulled into your Facebook profile.</p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=193" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/08/new-facebook-and-delicious/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Script to work with list of members in Facebook group</title>
		<link>http://change.bbvx.org/2008/05/script-to-work-with-list-of-members-in-facebook-group/</link>
		<comments>http://change.bbvx.org/2008/05/script-to-work-with-list-of-members-in-facebook-group/#comments</comments>
		<pubDate>Wed, 07 May 2008 16:53:28 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/?p=189</guid>
		<description><![CDATA[Okay, I&#8217;m now the administrator of a largish Facebook group and facing the problem of finding a particular member when I want to add them as an admin. The following script may be helpful to convert the list of all members to a delimited text file that can be imported to Excel, and used for [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, I&#8217;m now the administrator of a largish Facebook group and facing the problem of finding a particular member when I want to add them as an admin. The following script may be helpful to convert the list of all members to a delimited text file that can be imported to Excel, and used for that purpose or other metrics.</p>
<p>Notes:</p>
<ul>
<li> You can get the list of all members from the &#8220;edit officers&#8221; page.</li>
<li>My version of Excel (2002) isn&#8217;t working too well with non ASCII characters in names. If anyone knows a UTF-8 converter that could be used here (to, say, remove diacritical marks and such &#8212; we&#8217;re not dealing with huge amounts of non-ASCII data), please let me know.</li>
<li>There&#8217;s nothing but name and network here. But if you&#8217;ve got another list of stakeholders, it might be able to match your Facebook supporters with that.</li>
<li>Networks don&#8217;t show for some folks. It may be a problem with people who are in more than one network &#8212; haven&#8217;t really investigated.</li>
</ul>
<p><code><br />
# convert list of members (most recent to earliest) from a facebook group<br />
# format<br />
# First{additional} Last {(Network)}<br />
# to the format<br />
# Number:First{additional}:Last{:Network}<br />
# where number is earliest to most recent</code><br />
<code><br />
sed 's/make officer//' |           # delete cruft<br />
sed 's/^ *\* //' |		   # delete more cruft<br />
awk '{printf "%s\t%s\n", NR,$0}' | # number lines<br />
sort -nr | sed 's/^[0-9]*.//&#8217; |    # print in order of last to first then delete numbers<br />
awk &#8216;{printf &#8220;%s:%s\n&#8221;, NR, $0}&#8217; | # renumber in the order folks joined the group, with number as first field<br />
sed &#8217;s/ \([A-Z][^ ]*\) (/:\1:/&#8217; |  # if a network, put separators before last name and network<br />
sed &#8217;s/ \([A-Z][a-z]*\)$/:\1/&#8217; |   # if no network, put separator before last name<br />
sed &#8217;s/)//&#8217;                        # delete trailing ) for lines with a network<br />
</code></p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=189" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/05/script-to-work-with-list-of-members-in-facebook-group/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using Facebook for AAUW</title>
		<link>http://change.bbvx.org/2008/05/using-facebook-for-aauw/</link>
		<comments>http://change.bbvx.org/2008/05/using-facebook-for-aauw/#comments</comments>
		<pubDate>Thu, 01 May 2008 13:42:35 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/?p=188</guid>
		<description><![CDATA[Documents on using Facebook for AAUW -- and an example of how a virtual team can produce a document in the first place.]]></description>
			<content:encoded><![CDATA[<p>These documents were publicized through standard AAUW channels about a month ago. There may be some interest from folks who aren&#8217;t in that loop.</p>
<p>Dear AAUW Webmanagers and AAUW Newsletter Editors:</p>
<p>I am pleased to announce the release of the second paper in the series &#8220;Facebook for AAUW&#8221;.</p>
<p>The links for these papers are:</p>
<p>#1: <a href="http://docs.google.com/View?docid=ddzhjjgr_41fmk9jr">http://docs.google.com/View?docid=ddzhjjgr_41fmk9jr</a><br />
#2: <a href="http://docs.google.com/View?docID=dg5fnwtg_0c7srw2wx">http://docs.google.com/View?docID=dg5fnwtg_0c7srw2wx</a></p>
<p>The first document addresses &#8220;what is Facebook&#8221; and gives brief instructions on how to get started. The second document is a more in depth discussion of why AAUW members are finding Facebook a good platform for connecting with each other and how they are using it to advance the mission.</p>
<p>The documents have been authored collaboratively by a completely unofficial group of members from across the country who came together in Facebook. Many of them have found Facebook a comfortable place to exchange information on a wide range of topics &#8212; personal and professional as well as AAUW. We invite you to join us to find out if Facebook would be a way to expand your network and amplify your voice.</p>
<p>The documents are written for the &#8220;digital immigrants&#8221; &#8212; those of us over a certain age who may want some background information before jumping into this new environment. However, if you&#8217;d rather just explore on your own, feel free to skip the papers and go straight to exploring Facebook. Once you&#8217;ve joined, please do also join the AAUW group that you&#8217;ll find at <a href="http://www.facebook.com/group.php?gid=2419848109">http://www.facebook.com/group.php?gid=2419848109</a></p>
<p>At least one state convention will be using this information as part of one of their workshops. You may wish to use the link to the AAUW group or these documents on your web sites or in your newsletters to let your members know that there is an AAUW presence there.</p>
<p>Thanks, all.</p>
<p>-Nancy</p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=188" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/05/using-facebook-for-aauw/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick notes from Women Who Tech Telesummit</title>
		<link>http://change.bbvx.org/2008/03/quick-notes-from-women-who-tech-telesummit/</link>
		<comments>http://change.bbvx.org/2008/03/quick-notes-from-women-who-tech-telesummit/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 00:04:18 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Public]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/2008/03/quick-notes-from-women-who-tech-telesummit/</guid>
		<description><![CDATA[4/2 update: See housewifery.wordpress.com/  for live blogging on these and other sessions. [If the telesummit's no longer on the front page, start at this post and look for earlier ones.]
Earlier today, I virtually attended four sessions from the Women Who Tech Telesummit. This free series of webinars brought together some amazing folks thinking about Women [...]]]></description>
			<content:encoded><![CDATA[<p>4/2 update: See <a href="http://housewifery.wordpress.com/">housewifery.wordpress.com/</a>  for live blogging on these and other sessions. [If the telesummit's no longer on the front page, start at <a href="http://housewifery.wordpress.com/2008/03/31/live-blogging-women-who-tech-telesummit-web-20-hot-or-not/">this post</a> and look for earlier ones.]</p>
<p>Earlier today, I virtually attended four sessions from the <a href="http://www.womenwhotech.com/">Women Who Tech</a> Telesummit. This free series of webinars brought together some amazing folks thinking about Women and Technology from a number of points of view. Check out the sponsors and organizers on <a href="http://www.womenwhotech.com/">www.womenwhotech.com</a>, and thank those that you know!</p>
<p>The slides and audio will be available on the website, but here are a few highlights from the sessions I attended.</p>
<h3>I. Build An Online Campaign And Save The World</h3>
<ul>
<li>Graphic tip: use faces and eyes</li>
<li>Lists of tools: <a href="http://www.techsoup.org">TechSoup.org</a>, <a href="http://idealware.org">Idealware.org</a>, <a href="http://socialsourcecommons.org/">SocialSourceCommons.org</a></li>
<li>TODO: check out networking at <a href="http://care2.com">Care2.com</a></li>
<li>Message rates: Encourage at least one advocacy action per month [What does this mean for the list alerts@ncwu.org which goes quiet for months at a time between sessions?]</li>
</ul>
<h3>II. Women and social capital</h3>
<p>Tara Hunt, the moderator has an upcoming book that addesses this issue. She framed the conversation with some &#8220;big ideas&#8221;</p>
<ul>
<li>Mentioned Robert Putnam&#8217;s <a href="http://www.amazon.com/Bowling-Alone-Collapse-American-Community/dp/0743203046/ref=pd_bbs_sr_1?ie=UTF8&amp;s=books&amp;qid=1207007720&amp;sr=8-1"><strong>Bowling Alone</strong></a> and the distinction between &#8220;bonding capital&#8221; and &#8220;bridging capital&#8221;. Women build more of the first, while men create more of the second. [I think I missed that on reading it. But the book is one reason I'm so engaged in AAUW.]</li>
<li> Pew Internet Research: Women&#8217;s use of social networking is (understandably) more anonymous. Men are more likely to be open, hosting an audience, more likely to mentor/support each other.</li>
</ul>
<p>The session then was  a conversation with Joan Blades and  Arianna Huffington. I&#8217;ll need to get the podcast and relisten.</p>
<h3>III. Women and Open Source</h3>
<ul>
<li>Included a discussion of &#8220;hacker culture&#8221; which, though I&#8217;ve been working with Open Source since 1982, I&#8217;ve never really embraced. Developers lists  tend to have blunt talk about how code can be improved &#8212; but the suggestion was to learn take criticism as encouragement. It&#8217;s when you&#8217;re being ignored that you need to think about finding a new community: if your comments aren&#8217;t worth criticizing &#8230;</li>
<li>This leads to a discussion of &#8220;finding the right community&#8221;. Open Source work can be seen as participating in a &#8220;karma bank&#8221; and it&#8217;s not often obvious how to choose the right community where your contributions can be effective (and so you can repay what you&#8217;ve received from other projects). There was a suggestion that open source projects evolve and that later in their life cycles they are more accepting of work like documentation, user interface analysis, etc. If that&#8217;s your area of expertise, you might also choose &#8220;end user friendly&#8221; projects instead of those like coding the kernel. Another example was the Drupal dojo community where &#8220;newbies train newbies&#8221;.  [There's been a recent discussion on the Systers list about women in open source. The recording of this session may be of interest there.]</li>
<li>See <a href="http://flosspols.org/outline.php">FlossPols.org</a> for information on policy issues related to open source.</li>
<li><a href="http://linuxchix.org">LinuxChix</a> was mentioned in a couple of contexts. In particular their courses include &#8220;Spineful Living&#8221; (as opposed to Spineless). I think the archive for that course can be found at <a href="http://mailman.linuxchix.org/pipermail/courses/2007-April/thread.html">http://mailman.linuxchix.org/pipermail/courses/2007-April/thread.html</a>.</li>
<li>A slide with a list of resources, included PHP women, DrupalChix &#8212; see the recording for others.</li>
<li>Ended with a discussion of nonprofit open source: Larger involvement in women, very friendly, respect contributions other than code. <a href="http://civicrm.org">CiviCRM</a>, Organizer&#8217;s database, were two projects that were mentioned.</li>
</ul>
<h3>IV. Web 2.0: Hot Or Not?</h3>
<p>Beth Kanter&#8217;s slides are <a href="http://beth.typepad.com/beths_blog/2008/03/women-who-tech.html">posted on her blog</a>. I made the following notes.</p>
<ul>
<li>What&#8217;s new is ease of creating content, ease of shaping audiences</li>
<li>Choose tools that match demographics and &#8220;technographics&#8221; [I think we're considering this with Facebook for AAUW.]</li>
<li>Slide from Forrester Research &#8212; demographics and use of social networks gave an interesting picture of age vs. ways of participating. [Click through to the <a href="http://www.slideshare.net/kanter/women-who-tech-social-media-nonprofits-and-cut-dog-theory?src=embed">version on slideshare</a>, then go to slide 12 and hit Full Screen in the lower right.]</li>
<li>Learn techniques for listening &#8212; case study from Red Cross</li>
<li>It&#8217;s about conversations</li>
<li>Be careful with staff roles - need those who are familiar, but all need to understand; define a box &#8212; discussions about the downside. [Easter Seals -- written policy on social networking, code of professional behavior.]</li>
<li>Thoughtful experimentation. Different messaging on different networks.</li>
<li>How do we make it safe to fail? to learn?</li>
<li>It takes time &#8212; 2 hrs/day minimum; Sisyphean task to see ROI</li>
</ul>
<p>Connie Reece: Case study of the Frozen Pea Fund</p>
<ul>
<li>Amazing story. From first tweet to engage a community (12/5/07) to 501(c)3 formed (2/20/08).</li>
<li>Dollar investment may be small. Consider ROI in terms of &#8220;return on involvement,&#8221; &#8220;return on influence&#8221;.</li>
<li>Social media: intersection of sociology, media, technology.  New tools to do what&#8217;s been done for some time.</li>
</ul>
<p>Heather Holdridge, Care2.com</p>
<p>See the recording to her answers/comments on some of these topics:</p>
<ul>
<li>Web 2.0 meeting human needs</li>
<li>What makes campaigns work?</li>
<li>Who should try social networking campaigns?<br />
Lots of volunteers, huge email networks, dedicated staff, max&#8217;d e-mail marketing<br />
Not free - will need dedicated resources</li>
<li> 1.0 vs 2.0 - Save Darfur; $415,000 in 10 days through e-mail (M&amp;R consulting) vs. $15,000 in 6 months from 1 million &#8220;friends&#8221;</li>
<li>Compare/contrast Social network, website</li>
<li>Goals (success?) - Awareness and Outreach (yes), Advocacy (some), Fundraising (minimal)</li>
<li>Social network ROI calculator - frogloop.com/social-network-calculator</li>
<li>What metrics? Might not be money or actions taken. [For me and our small Facebook experiment, I think the key metric is the number of members moved from the periphery of the organization to real participants in significant communications projects.]</li>
<li>IFAW - case study; campaign specific pages</li>
</ul>
<p>Q&amp;A</p>
<ul>
<li> Digital natives vs. digital immigrants: check Pew Internet studies, Forrester, the <a href="http://digitalnative.org">digital native wiki</a> - how young people are using social media</li>
<li> Go deep on one platform - allow friends to spread to other platforms</li>
</ul>
<p>Beth: beth.typepad.com<br />
Connie: everydotconnects.com<br />
Allyson: www.radcampaign.com/blog/<br />
Heather: www.care2.com/politics</p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=180" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/03/quick-notes-from-women-who-tech-telesummit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>One more twitter detail</title>
		<link>http://change.bbvx.org/2008/03/one-more-twitter-detail/</link>
		<comments>http://change.bbvx.org/2008/03/one-more-twitter-detail/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 22:11:00 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Public]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/2008/03/one-more-twitter-detail/</guid>
		<description><![CDATA[I&#8217;m writing these posts as a way of learning about twitter. If you&#8217;re looking for tutorials, check out:

Twitter Primer from Beth Kanter. Lots of info and links like the ones below.
Twitter in Plain English from CommonCraft. A very short video that covers the basics in CommonCraft&#8217;s engaging style.
The Big Juicy Twitter Guide from Caroline Middlebrook. [...]]]></description>
			<content:encoded><![CDATA[<p><em>I&#8217;m writing these posts as a way of learning about twitter. If you&#8217;re looking for tutorials, check out:</em></p>
<ul>
<li><a href="http://bethkanter.wikispaces.com/twitter_primer">Twitter Primer</a> from <a href="http://beth.typepad.com">Beth Kanter</a>. Lots of info and links like the ones below.</li>
<li><a href="http://www.youtube.com/watch?v=ddO9idmax0o">Twitter in Plain English</a> from <a href="http://www.commoncraft.com">CommonCraft</a>. A very short video that covers the basics in CommonCraft&#8217;s engaging style.</li>
<li><a href="http://www.caroline-middlebrook.com/blog/twitter-guide/">The Big Juicy Twitter Guide</a> from <a href="http://www.caroline-middlebrook.com/blog/">Caroline Middlebrook</a>. Well named tutorial.</li>
</ul>
<p>In any event, one thing I just learned about was the &#8220;favorites&#8221; option. On your twitter home page, over on the right, there&#8217;s a set of &#8220;stats.&#8221; The ones you&#8217;ll use most often will likely be the &#8220;Following&#8221; and &#8220;Followers&#8221; &#8212; how many folks you&#8217;re following and how many are getting your tweets. Next is &#8220;Favorites.&#8221; I&#8217;d assumed that was &#8220;favorite people,&#8221; like &#8220;top friends&#8221; in Facebook, and I ignored it because I just don&#8217;t do ranking that way. But it&#8217;s not. It&#8217;s favorite tweets &#8212; a way of marking messages as ones you&#8217;d want to get back to later. Just click the dim star at the end of a message and it will be listed in your &#8220;favorites.&#8221;</p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=178" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/03/one-more-twitter-detail/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blog to twitter is working</title>
		<link>http://change.bbvx.org/2008/03/blog-to-twitter-is-working/</link>
		<comments>http://change.bbvx.org/2008/03/blog-to-twitter-is-working/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 21:56:15 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/2008/03/blog-to-twitter-is-working/</guid>
		<description><![CDATA[Yes, yes. Focusing on using twitter for the very web 1.0-ish purpose of getting messages out from a central source seems to go against the grain. But again, remember the community I&#8217;m working with: A minuscule number of current stakeholders are on twitter. [I can only find 5 (count 'em) nationwide. Compare that with nearly [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, yes. Focusing on using twitter for the very web 1.0-ish purpose of getting messages out from a central source seems to go against the grain. But again, remember the community I&#8217;m working with: A minuscule number of current stakeholders are on twitter. [I can only find 5 (count 'em) nationwide. Compare that with nearly 300 on Facebook. That about mirrors the stats I've heard of about 1,000,000 on twitter and 60,000,000 or so on Facebook. A social network/sub-network with such a small number of participants is, I think, doomed to fail -- as we've learned from the various incarnations of <a href="http://discuss.aauw.org">http://discuss.aauw.org</a>.]</p>
<p>The goal of this exercise is to put AAUW info into the SMS stream so the SMS &#8220;natives&#8221; (who might not be reached with e-mail) get at least a few pings (if they choose to connect). We&#8217;re months away from figuring out if this really works &#8212; I won&#8217;t have much time to publicize it until after July 1. One piece to evaluate will be whether this really does bring in new contacts &#8212; or just reaches, say, the Facebook contacts in a different way.</p>
<p>But, as I said in the comments on the <a href="http://change.bbvx.org/2008/03/twitter-tutorial-for-08ntc/">previous post</a>, I think we&#8217;re there. The missing piece was <a href="http://twitterfeed.com">twitterfeed.com</a>. I&#8217;d heard of it before, and even got part way to setting up an account (had used my yahoo account to create an OpenID). But the full possibilities didn&#8217;t really register.  Here&#8217;s the summary:</p>
<ol>
<li>Set up an RSS feed for the items you want to send to twitter. [In AAUW NC we have an "announcements" category for items that appear on the front page of the <a href="http://wordpress.org">WordPress</a>-based <a href="http://www.aauwnc.org">www.aauwnc.org</a>. That seemed like a good subset of all the news to share in twitter.]</li>
<li>Choose an administrator for the twitter feed and set up an <a href="http://openid.net">OpenID</a>  for the administrator. Now this is my first experiment with OpenID, so it&#8217;s unlikely I understand all the implications here. One can use a Yahoo or AOL account to generate an OpenID (I used Yahoo). It also looks like it&#8217;s possible to link a WordPress.com or Blogger blog to set up an OpenID (if I&#8217;m reading the <a href="http://twitterfeed.com/auth/login">twitterfeed help</a> correctly). I haven&#8217;t read the T&amp;C&#8217;s carefully &#8212; if someone has a link to the OpenID basics (particularly OpenID for an organization rather than an individual), please post.</li>
<li>Create a twitter account that will retweet the items in the RSS feed, or choose one that already exists to tweet information of interest to the expected audience.</li>
<li>Login to twitterfeed.com with the OpenID and create a twitterfeed that links the RSS feed to the twitter account. There&#8217;s a minimal amount of configuration (titles only, include link).</li>
<li>Tell people who want to get the messages through IM or SMS to follow the twitter user created in #3 and set &#8220;notifications&#8221; for that user to &#8220;on&#8221;. [The assumption is that such folks exist -- otherwise everyone could just follow the RSS feed directly over the web.]</li>
</ol>
<p>Now I&#8217;m not an SMS &#8220;native&#8221; (I can send and receive text messages on my phone, but it&#8217;s not something that I&#8217;ve integrated into my life). I haven&#8217;t drunk the Koolaid of IM (remembering the evil that was &#8220;write&#8221; back in the 80&#8217;s). I don&#8217;t use a PDA (paper DayTimer person, would you believe), let alone a smart phone. So I may have missed the point completely. If so, please do holler at me. But if you want to get AAUW NC announcements through twitter, follow &#8220;aauwnc&#8221;.</p>
<p>Other notes:</p>
<ul>
<li>Twitterfeed puts a limit on the number of messages it will forward - currently a max of 5 messages an hour. Consider this when choosing your feed in #1, and don&#8217;t expect &#8220;real time&#8221; forwarding of the messages.</li>
</ul>
<ul>
<li>I &#8220;own&#8221; bbvx, so setting up twitter.com/bbvx was okay. I&#8217;m currently board chair for the all-volunteer AAUW NC, so I think I&#8217;m okay there, too. I do have a question, though, on what approval would be required to set up similar accounts for &#8220;aauw&#8221; and &#8220;nccwsl,&#8221; and what safeguards we should think about when passing, say, &#8220;aauwnc&#8221; from one person to another. [Yeah, yeah, I've been webmanager for nearly 10 years, but at some point ...]</li>
<li>What happens to the tweets that are sent to the account set up in #3? If one uses an account that is set up just for that purpose, it, presumably won&#8217;t be &#8220;following&#8221; anyone, so there will be little motivation for anyone to check the twitter account. That means, I think, that direct messages will go into a black hole. Replies (@ messages) could be followed via RSS using an RSS reader that allows for authentication on the feed (I&#8217;m using <a href="http://rssowl.org">RSSOwl</a>).</li>
</ul>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=177" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/03/blog-to-twitter-is-working/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter tutorial for 08NTC</title>
		<link>http://change.bbvx.org/2008/03/twitter-tutorial-for-08ntc/</link>
		<comments>http://change.bbvx.org/2008/03/twitter-tutorial-for-08ntc/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 22:20:59 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/2008/03/twitter-tutorial-for-08ntc/</guid>
		<description><![CDATA[I&#8217;m not headed to New Orleans for next week&#8217;s NTEN conference (more&#8217;s the pity), but I did crash the twitter tutorial that Rosie de Fremery and Kari Peterson led this afternoon to prep attendees to use twitter at the conference. [The recording of the tutorial is available here.]
I&#8217;ve made some corrections to the previous post [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not headed to New Orleans for next week&#8217;s NTEN conference (more&#8217;s the pity), but I did crash the <a href="http://nten.org/events/webinar/2008/03/06/twitter-me-this">twitter tutorial</a> that <a href="http://twitter.com/rosiedefremery">Rosie de Fremery</a> and <a href="http://twitter.com/kariapeterson">Kari Peterson</a> led this afternoon to prep attendees to use <a href="http://twitter.com">twitter</a> at the conference. [The recording of the tutorial is available <a href="http://nten.org/events/webinar/2008/03/06/twitter-me-this">here</a>.]</p>
<p>I&#8217;ve made some corrections to the <a href="http://change.bbvx.org/2008/03/coming-to-terms-with-twitter/">previous post</a> based on what I&#8217;ve learned, and I may have found the <a href="http://twitterfeed.com">missing piece</a> to the kludge I started in <a href="http://change.bbvx.org/2008/02/still-trying-to-wrap-my-head-around-twitter/">this post</a>. [Follow <a href="http://twitter.com/bbvx">bbvx</a> on twitter to see if I'm right -- should get notifications of new posts to this blog.] This may be the &#8220;hour delay&#8221; that Kari was talking about in the tutorial &#8212; or there may be some other solution that they&#8217;re working on.</p>
<p>The problem I&#8217;ve been trying to solve is how to use twitter to get info about an event out to folks who can&#8217;t attend the event. Kari&#8217;s concerned about twittering at NTC and needs a a way to get almost real-time messages (&#8221;cookies in the ballroom&#8221;) out to the attendees. I&#8217;m more concerned about getting highlights (&#8221;great speaker who made these points&#8230;&#8221;). Her solution (retweeting posts directed @08NTC) would be more general than mine.</p>
<p>That, I think, is the missing link in the instructions for &#8220;<a href="http://help.twitter.com/index.php?pg=kb.page&amp;id=77">using Twitter for an event</a>&#8220;. In thinking of 08NTC, I think the options for an attendee/non-attendee to get updates are:</p>
<ol>
<li>&#8220;All messages from 08NTC and its friends&#8221; is too much information  (and is, perhaps reasonably, only available from the web, I think).</li>
<li>&#8220;All messages from 08NTC&#8221; is too little (and puts the burden on the few 08NTC folks to keep everyone posted).</li>
<li>Setting &#8220;track 08NTC&#8221; is close, but seems to have some bugs (ktlove&#8217;s recent message was cut off after just a few characters when it got to my phone) and has no web interface.</li>
<li>Using #08NTC is close, but until just now, I hadn&#8217;t discovered any IM/phone interface. <a href="http://twitterfeed.com">Twitterfeed.com </a>might provide that, but since the service&#8217;s forwarding is throttled (5 messages an  hour) it isn&#8217;t be appropriate for conferences with lots of tweeters.</li>
<li> I think having 08NTC retweet all the @08NTC messages is &#8220;just right&#8221;. Even with the delay it&#8217;d be useful for the large number of folks who aren&#8217;t able to attend, and if the delay can be eliminated, and folks turn on &#8220;notifications&#8221; for 08NTC, I think you&#8217;ve got the &#8220;cookies in the ballroom&#8221; announcement scheme!</li>
</ol>
<p>If #4 or #5 is feasible, then there&#8217;s probably no need to set up the <a href="http://help.twitter.com/index.php?pg=kb.page&amp;id=77">&#8220;event&#8221; twitter account</a> which is used now to provide a &#8220;with others&#8221; list of tweets. That list inevitably includes lots of messages that have nothing to do with the event. [This wasn't a problem for the AAUW 2007 convention because the few of us following <a href="http://twitter.com/aauw07">aauw07</a> were only there so we could tweet about the convention. But for NTC? Talk about information overload!]</p>
<p>I can&#8217;t really tell you why I&#8217;m not letting this go &#8212; but if the <a href="http://twitter.com/bbvx">BBVX</a> experiment works, maybe I&#8217;ll talk to Patty again about setting up something similar for NCCWSL.</p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=176" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/03/twitter-tutorial-for-08ntc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Coming to terms with Twitter</title>
		<link>http://change.bbvx.org/2008/03/coming-to-terms-with-twitter/</link>
		<comments>http://change.bbvx.org/2008/03/coming-to-terms-with-twitter/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 16:53:07 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/2008/03/coming-to-terms-with-twitter/</guid>
		<description><![CDATA[Success story and reality check.]]></description>
			<content:encoded><![CDATA[<p>Okay, if you&#8217;ve read <a href="/tag/twitter/">earlier posts</a>, you know I&#8217;ve had a problematic relationship with <a href="http://twitter.com">twitter.com</a> &#8212; from the service failure last summer, to security breaches earlier this month, to the general &#8220;what is it good for&#8221;?</p>
<p>One &#8220;aha!&#8221; moment is that I now realize that while the Twitter canonical question is &#8220;what are you doing?&#8221; the users in the twittersphere have morphed that to include:</p>
<ul>
<li>What are you thinking about?</li>
<li>What key resource have you just discovered?</li>
<li>What problem are you having &#8220;right now&#8221;?</li>
<li>What solution can you offer to someone else&#8217;s problem?</li>
</ul>
<p>Looked at that way, a Twitter &#8220;conversation&#8221; can be much more content rich than &#8220;I&#8217;m sitting down to a tuna sandwich&#8221; nonsense that might have provided workers in a virtual office with the &#8220;background chatter&#8221; they might miss &#8212; but which, to me, just seemed like so much noise.</p>
<p>Other things I&#8217;ve learned:</p>
<ul>
<li>Track vs. Hashtags
<ul>
<li>You can &#8220;track&#8221; a term and get all tweets with that term sent to your phone or IM. [In about three weeks of tracking "aauw" and "nccwsl" there's been one (count it!) tweet containing either. I did make a new acquaintance of the twitterer, but I'm not sure our community is ready for this yet.]</li>
<li>You can add a &#8220;hashtag&#8221; to a tweet. Examples would be &#8220;#aauw&#8221; or &#8220;#nccwsl&#8221;. [In some communities the # symbol is referred to as "hash" -- anyone else ever use the term hashbang?]  If you are also &#8220;following&#8221; the twitter user <a href="http://twitter.com/hashtags">hashtags</a>, then your posts will be accessible from <a href="http://www.hashtags.org">www.hashtags.org</a>, and folks can even subscribe to an RSS feed attached to a particular term (e.g. the #aauw feed  is <a href="http://hashtags.org/feeds/tag/aauw/"> http://hashtags.org/feeds/tag/aauw/</a></li>
<li>Note that &#8220;track&#8221; gets messages to your phone. Hashtags can be followed over the web. Track follows &#8220;everyone,&#8221; Hashtags follows those who are also following Hashtags and who remember to use the hash character. I&#8217;d actually prefer to see Hashtags on my phone and follow tracks on the web: using the hash indicates an intentionality that, to me, improves the chances that I&#8217;d need to &#8220;see it right now&#8221;.</li>
</ul>
</li>
<li>D vs. @: sending a message to a particular person
<ul>
<li>When you send a message to a particular person,  you use the D command (e.g. &#8220;D nes49&#8243;), and it works pretty much like an ordinary text message. The benefit is that you remember their twitter name, not their phone number. The message isn&#8217;t stored, it just goes into the either &#8211;so, it&#8217;s  okay to use this for posting private data. On the other hand, if the person is reading tweets over the web it still works. On the other other hand, if the person isn&#8217;t following you, you cannot use the &#8220;D&#8221; command.<strike><br />
</strike></li>
<li>When you use the @ in a message, you&#8217;re saying that the message is a specifically to someone, e.g. @nes49. It differs from D (which is just between you and the other person) in that this is a public message, and your followers can choose whether or not they want to see your messages to others. I find reading others&#8217; @ messages pretty confusing (I&#8217;m rarely following the person to whom they are directed, so I&#8217;m seeing the reply out of context).  But it&#8217;s a useful tool for those &#8220;let me help you with a problem messages&#8221; that are becoming a significant portion of the twittersphere, and you can send an @ message to someone who&#8217;s not following you.</li>
</ul>
</li>
</ul>
<p>So, some conclusions:</p>
<ul>
<li>While I may continue to post AAUW and NCCWSL tweets (as nes49 and aauw07), the intersection of AAUW members and twitter users is so small that this is pretty much like spitting in the wind. If anyone (maybe from NCCWSL) disagrees and wants to take over the community building here, feel free.</li>
<li>I&#8217;m connected to a *very* few &#8220;real folks&#8221; in twitter &#8212; and have already had a seredipitous outcome through that connection:
<ul>
<li>He posted a query</li>
<li>I forwarded a link to a possible helpful item on <a href="http://wiki.bbvx.org">wiki.bbvx.org</a></li>
<li>He noticed the spam problem that was announced there and sent me a link to a media wiki extension I hadn&#8217;t been able to find on my own.</li>
<li>All is now well on the wiki and rogue folks trying to register.</li>
</ul>
<p>Could the exchange have happened in e-mail &#8212; very unlikely. In Facebook &#8212; possibly, and it&#8217;s likely I saw his first question as a Facebook status update imported from twitter. In any event, it&#8217;s enough of a &#8220;good outcome&#8221; that I&#8217;ll stick it out awhile longer (though as I look at my twitterfox bug - I&#8217;ve got 22 unread tweets&#8230;).</li>
</ul>
<p>3/14 update: clarifications to D vs @</p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=175" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/03/coming-to-terms-with-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter *still* makes my head hurt</title>
		<link>http://change.bbvx.org/2008/02/twitter-still-makes-my-head-hurt/</link>
		<comments>http://change.bbvx.org/2008/02/twitter-still-makes-my-head-hurt/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 04:07:39 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/2008/02/twitter-still-makes-my-head-hurt/</guid>
		<description><![CDATA[Okay. Found it. The &#8220;track&#8221; command &#8212; see this list of twitter commands
Sounds good, right? Follow the hashtag #aauw or #08NTC and we&#8217;re done.
So I test. And nothing. Nada.
More research. Turns out that&#8217;s not the only list of twitter commands &#8212; but it may have been an early one that prompted this at twitter.com. Ah, [...]]]></description>
			<content:encoded><![CDATA[<p>Okay. Found it. The &#8220;track&#8221; command &#8212; see <a href="http://www.splitbrain.org/blog/2008-01/22-list_of_twitter_commands#MTC_form">this list of twitter commands</a></p>
<p>Sounds good, right? Follow the hashtag #aauw or #08NTC and we&#8217;re done.</p>
<p>So I test. And nothing. Nada.</p>
<p>More research. Turns out that&#8217;s not the only list of twitter commands &#8212; but it may have been an early one that prompted this at <a href="http://www.splitbrain.org/blog/2008-01/22-list_of_twitter_commands#MTC_form">twitter.com</a>. Ah, there&#8217;s the rub. Only works with IM and phone, and I&#8217;m using the TwitterFox extension to read the tweets.</p>
<p>So&#8230;</p>
<p>If I want to follow #aauw on my computer, I can do it through RSS or I can climb another learning curve and get onto IM. [Eeks. "Talk" was deemed evil back in the 80's. Can I overcome my resistance??]</p>
<p>Or do I go back and reinstate the unlimited text on the phone that I had during Phoenix?</p>
<p>Sigh.</p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=174" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/02/twitter-still-makes-my-head-hurt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Still trying to wrap my head around twitter</title>
		<link>http://change.bbvx.org/2008/02/still-trying-to-wrap-my-head-around-twitter/</link>
		<comments>http://change.bbvx.org/2008/02/still-trying-to-wrap-my-head-around-twitter/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 06:13:08 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
		
		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://change.bbvx.org/2008/02/still-trying-to-wrap-my-head-around-twitter/</guid>
		<description><![CDATA[Okay, here&#8217;s what feels like a Rube Goldberg method for members of a group to share info via twitter without following each other and without needing the web to read the tweets.

Go to twitter.com/hashtags and click follow
Post a message with an the agreed upon tag, preceded by the # symbol (called a &#8220;hash&#8221; in some [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, here&#8217;s what feels like a Rube Goldberg method for members of a group to share info via twitter without following each other and without needing the web to read the tweets.</p>
<ul>
<li>Go to <a href="http://twitter.com/hashtags">twitter.com/hashtags</a> and click follow</li>
<li>Post a message with an the agreed upon tag, preceded by the # symbol (called a &#8220;hash&#8221; in some dialects). An example:</li>
</ul>
<blockquote><p>Exec director interview to air on CNN tonight at 9:15 ET #myorg</p></blockquote>
<ul>
<li>Go to <a href="http://twemes.com">twemes.com</a> and get the RSS feed address for the hashtag &#8212; probably something like</li>
</ul>
<blockquote><p>http://twemes.com/myorg.rss</p></blockquote>
<ul>
<li>Go to <a href="http://feedblitz.com">feedblitz.com</a> and subscribe to that feed via twitter</li>
</ul>
<p>Looks good in theory &#8212; hangup is that feedblitz complains that the twitter account name isn&#8217;t formatted as an e-mail address. Anyone see what I&#8217;m doing wrong or have an alternate strategy?</p>
<p>And there are several things I haven&#8217;t thought through &#8230; What&#8217;s the risk of a spammer glomming onto the tag? How do I separate some tags for special handling (i.e. send to the phone, not just the web). [Maybe take the RSS feed, connect it to a special twitter account and watch that?? Ouch.]</p>
<p><a href="http://change.bbvx.org/?ibegin_share_action=share&id=173" id="share-link-">Share</a></p>]]></content:encoded>
			<wfw:commentRss>http://change.bbvx.org/2008/02/still-trying-to-wrap-my-head-around-twitter/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
