Social Networks

Entries related to social networks, group psychology, anthropology, and really any of the social sciences.

Quick Notes

I wrote an article for SLNN which I had hoped would be up by now and I could cross post. It isn't up yet, so I figured I would write a quick post, so I could have something other than an automated post from ma.gnolia up today.

Besides writing the SLNN post, I have started reading a pre-release copy of Stephen Mansfield's book, The Faith of Barack Obama.

Mansfield also wrote The Faith Of George W. Bush.

It will be interesting to contrast the two books. In other news, we had a tornado warning here in Connecticut around dinner time and on Saturday I will be going to a SocialMediaBBQ.

Update: I had the wrong link for the book about President Bush's faith. Here is the correct link:

The Faith Of George W. Bush

Mobile Social Media at the Democratic Convention

This evening, I ran a BlogTalkRadio show about Democratic Delegates to Denver Using Social Media. Jen Just, who is an Obama delegate from Connecticut called in, as did a friend of ours named Sheila.

One thing I mentioned on the show was the demconvention room that I set up on FriendFeed. It is aggregating social media from various people going to Denver, including Jen as well as many of my friends around the country. Please check the room out, and if you know of people who will be using Social Media in Denver, please let me know so I can add their material to the feed into the room.

With BlogTalkRadio, besides saving an archive of the show, which should be up soon at the link above, there is also a chat. I don't believe the is saved, so I've saved it here below the fold.

We will have this show again next week to check in on how everyone is doing with mobile social media as they prepare for Denver, so if you have things you would like to share, please let me know.

A Post Broadcast Convention?

(Originally published at Greater Democracy.)

Much has been written about post-broadcast politics, networked politics, or any other number of phrases about the political process moving beyond the thirty second soundbite on the evening news. Obama’s use of the Internet has been compared to JFK’s use of television. JFK understood the new medium of television and used it to his advantage, just as Obama has understood the new medium of the Internet and used it to his advantage. Yet campaigns remain very top down organizations, with control centralized.

Perhaps the most highly controlled and centralized traditional media extravaganza remaining in politics is the national conventions. Yet, slowly, even these are changing. The Obama campaign has moved his acceptance speech to Invesco Field to allow 75,000 people to participate first hand.

How participatory will this be? The Associated Press reports,

Enter the 75,000 people who will have to come hours early for Obama's acceptance speech to get through security, most carrying cell phones. As they settle in their seats, campaign aides will be on stage asking them to text message their friends and use call sheets to get people to register. "There will be a lot of idle time. We put idle people to work," Hildebrand said.

While there are concerns about the bandwidth available in the stadium, this is a great start. However, I would like to see it go much further. Why only use text messages from the attendees of the acceptance speech? The convention is four days long. There are lots of interesting things that take place during those four days, much of it away from the convention floor.

Sure, the DNC has credentialed a record number of bloggers to cover the convention, making sure that there are bloggers covering each state. Yet what is really needed is to take the message from both Gov. Dean and Sen. Obama about empowering people to be the change that they want to see.

Every delegate should receive information ahead of time about how they can use all aspects of social media, Twitter, Flickr, YouTube, Facebook, and so many others, from their cellphones at any point during the convention. They should be encouraged to publicize their social media accounts so their friends, family, neighbors, constituents, and anyone else they can get to listen.

Slowly, but surely, I’m contacting delegates and getting them to think about how they could do this. Please, consider doing the same.

To continue this discussion, Tuesday evening, 8 PM Eastern time, I will host a BlogTalkRadio show about Getting Democrat Delegates to Denver to Use Social Media. Please consider listening and if you have some ideas to share, calling in.

Democratic Delegates to Denver using Social Media

This morning, I had a fascinating discussion with Jen Just, who will be an Obama Delegate from Connecticut to the Democratic National Convention in Denver. One of the topics we discussed was the use of Social Media by delegates. We are both very interested in how delegates can use social media to widen the discussion around the convention and bring the message home.

To illustrate some of the tools available, I called into Utterz from my cellphone to leave this message about our discussion. It is from a cellphone in an area with poor coverage, so the voice is a little choppy, but still the message was up immediately and shows the power of how these tools can be used.

To continue the discussion, Jen and I will be doing a call in radio show Tuesday evening at 8 PM EDT on BlogTalkRadio about Democrat Delegates to Denver Using Social Media. If you are interested, please listen, and if you have some interesting comments, please call in.

There are a lot of things that delegates, bloggers, and guests to the convention can do to make it a powerful experience for everyone, but we need to start setting up things now.

Laconica 0.5.0 Upgrade and Related Developments

Last night, I began testing Laconica 0.5.0 on microblog. It is an update from Laconica 0.4.4. I created a new tarball, laconica050.tar.gz. I initially had some problems with OpenID and found that there was a patch to the OpenID code that is in the laconicadepends.tar.gz, so I created a new file, laconicadepends01.tar.gz. This didn’t fix the problem, and subsequently I found that for some reason my 0.5.0 hadn’t been properly installed and on reinstalling that the problem went away, so the depends01 file may not be necessary.

Upgrade Steps

Make sure you keep a back up copy of your installation. Then, install laconica050 and laconicadepends01 into your laconica directory. Copy over your config.php file. You should note that there are a bunch of new options in the config.php, so you may want to take the options you set in your config.php and copy them into the config.php.sample file and save that as your new config.php file.

Copy over any theme you have created. Copy over the avatars that have been created.

The Database Update

The database has changed a lot from 0.4.4 and earlier. Instead of trying to come up with all the alter statements necessary, I took a script that Evan had written and generalized it to work in my environment.

#!/bin/bash

export DB=$1
export SCR=$2
export USER=$3
export PW=$4
export HOST=$5

mysqldump -u $USER --password=$PW -h $HOST -c -t --hex-blob $DB > $DB.sql
mysqladmin -u $USER --password=$PW -h $HOST -f drop $DB
mysqladmin -u $USER --password=$PW -h $HOST create $DB
mysql -u $USER --password=$PW -h $HOST $DB < $SCR
mysql -u $USER --password=$PW -h $HOST $DB < $DB.sql

It worked very nicely for me. However, just to be safe, I did take a backup copy before I ran the script, separate from the backup copy that gets created at the beginning of the script.

With all of this in place (once my 0.5.0 version was properly in place), everything started working nicely. New features include hashtags, which I’m a big fan of, and I’m glad to see incorporated into the site. I’ve gotten SMS working, at least for sending out notices. Incoming SMS probably won’t work well because of how email is configured on my shared host.

One other problem that I had, which I’m not sure if it was because of the failed initial upgrade, or something else, but the public timeline didn’t show any of the entries prior to the upgrade. This wasn’t a big concern for me, and for more active sites, most people would never notice.

I’m still having problems with people being able to remotely subscribe to my microblog. When I turn on database debugging, it works, but when debugging is off, it doesn’t work. Go figure.

Other Stuff

The next thing that I was thinking about was adding TwitterFeed like functionality. Twitterfeed checks RSS feeds and submits a summary to Twitter. To my surprise, Twitter Feed has been modified to support Laconica. What is even better is that it supports any server running Laconica, so, I’ve set it up to send the RSS feed from my blog not only to Twitter, but also to identi.ca as well as my personal Microblog.

Another very interesting development is the translation tool for laconi.ca. I haven’t played with that yet, so I don’t have any details.

So, after a few minor problems, the 0.5.0 upgrade went very nicely. I’m interested to see how it goes for any of the other Laconica sites. Please leave your notes in the comments.

Syndicate content