- @sunshineamonra: "I see why people like football – the anticipation every time they hike the ball is like watching a figure skater jump!" #
- @EvanMPeck The New Yorker in me wants to offer the suggestion "New Jersey" #
- RT @Madrox: @skairam there's been a lot of fud about this. They ban LB ads in non-LB apps. The article doesn't make that very clear. #
- RT @asbruckman: Apple bans location-based iPhone ads: http://bit.ly/c13Oha » Seriously? Dirty… #
- @hisiri (who presented a couple months ago at #PARCForum) just launched their new iPhone app: http://bit.ly/dcQNT3 /via @gadgetlab #
- RT @DRUNKHULK: HAITI! RECESSION! WHEN IN ROME! ALL THESE TRAGEDY! AND YOU FREAK OUT OVER NEW BOOKFACE DESIGN! REALLY PEOPLES! #
- @ljmecca Speaking of bad social media, Carly Fiorina's Senate Campaign ad is a solid candidate for SUXORZ '10 http://bit.ly/bB7I0L #
- I just learned that John Searle went to my high school. Time to go back and visit to see if we had a Chinese Room hidden anywhere. #
- Making good progress WFH today on paper for http://www.ht2010.org/ , but sad to miss #PARCForum on GMaps Street View http://bit.ly/9fpAa1 #
- Who are the influential nodes in a social network? Answers may surprise you: http://bit.ly/bGFSn6 from Maksim Kitsak at B.U. #
- @jpierson Nooooooo!!!!!! I also heard that he's the head of Rossum. #
- Preparing for withdrawal as I attempt to unhook myself from Twitter to avoid the impending LOST spoilers…::shivers:: #
- Preview text from PhD Admissions email includes the phrase "…don't be alarmed…", an imperative that always achieves the opposite. #
Powered by Twitter Tools
Earlier this week, the team at Aardvark unveiled a new paper “The Anatomy of a Large-Scale Social Search Engine” which will be presented in April at WWW 2010. Inspired by and patterned after “The Anatomy of a Large-Scale Hypertextual Web Search Engine“, which describes the PageRank algorithm which drives Google’s search ranking system (which as Aardvark’s blog points out, was also presented at WWW 12 years ago).
The paper, by Aardvark’s Damon Horowitz and Stanford’s Sep Kamvar, focuses mostly on the architecture of the Aardvark system, from the external representations with which users interact to the internal ranking algorithms on which the system runs. Below, I present a short summary of what they report, focusing on the elements I found most interesting:
The Basic Model: Aardvark’s scoring function is similar to PageRank in that both utilize two primary, but somewhat independently considered components: relevance and quality.
- Relevance in the Aardvark model pertains to the probability that a particular user i can answer the given question q based on the identified topics contained in t.
- Quality in the Aardvark model pertains to the overall probability that a user i can return a satisfactory answer to another user j, regardless of the question.
Indexing Topics: Aardvark computes the relevance score by calculating a distribution of knowledge over topics known by the user using the following sources (keyword-y sounding italicized terms are for convenience only and are not used in the paper):
- Explicit Prompting at sign-up for three “starter” topics about which the user has expertise.
- Social Prompting of a user’s friends to provide topics about which they trust the user’s opinion.
- Structured Parsing of the online profile pages connected to Aardvark by the user (e.g. “Interests” on a Facebook profile).
- Unstructured Parsing of the users’ online homepage, blog, or status updates using a linear SVM to extract overall subject area and a named entity extractor to extract more specific topics.
Indexing Connections: Aardvark computes the quality score by building a set of weighted connections between users using characteristics ranging from social proximity to similarities in demographics or behavior, such as:
- Social Connections either in the form of explicitly defined “friend” connections or implicit “network” connections, such as both being part of the Stanford network.
- Demographic Similarity, which likely includes age, gender, and location based on profile information collected by Aardvark.
- Profile Similarity, which seems to include similar movies and other items which might be listed on other profiles, such as Facebook.
- Vocabulary Match, which they explain with the example of “IM Shortcuts” (i.e. I assume this means it is based on the language you use to interact with Aardvark, but I am unsure.)
- Chattiness and Verbosity Match, which relate to frequency and length of messages used when interacting with Aardvark.
- Politeness Match, which basically seems to mean whether or not say “Thanks!” or not.
- Speed Match, which is a measure of responsiveness to other users.
Analyzing Questions: While all of the other components are pre-computed, this part is computed at question time (obviously). The utilize a number of classifiers to classify the question and then a set of mappers to map the question to a set of topics, noting that “the role of the Question Analyzer…is simply to learn enough about the qeustion that it may be sent to appropriately interested and knowledgeable human answerers”. Here are the classifiers they list (with the names used in the paper):
- NonQuestionClassifier: Determines if input is a valid question.
- InappropriateQuestionClassifier: Determines if input is obscene, spam, or otherwise unsuitable for asking.
- TrivialQuestionClassifier: Determines if input is a simple factual question (examples given: “What time is it now?”, “What is the weather?”). If so, the user gets an automatically generated answer via traditional web search.
- LocationSensitiveClassifier: Determines if the question contains location information; if it does, it passes that information along to the Routing Engine
- KeywordMatchTopicMapper: Checks for string matches against user profile topics (the mapper attempts to classify meaningful vs. spurious matches).
- TaxonomyTopicMapper: Classifies question text using an SVM trained on an “annotated corpus of several million questions” (where did they find that?)
- SalientTermTopicMapper: Extracts salient phrases using a noun-phrase chunker and tf-idf and finds “semantically similar user topics”.
- UserTagTopicMapper:Utilizes tags explicitly provided by the asker or other answerers and maps them to user topics.
This description of the routing algorithm comprises the main function of the paper. After some more description of how users interact with the system, the authors provide some interesting data collected over the past several months of use (from the beta launch in March 2009 until October 2009). Here’s a quick run-down of the more interesting facts that they presented:
- Strong User Growth: As of October 2009, they reported 90,361 user accounts, and users appear to be remaining active (in the study period, over 1/2 the users actively generated content and over 2/3 of the users passively participated).
- Higher Query Contextualization: Aardvark queries average 18.6 words in length while the average query length reported for web search is between 2.2 and 2.9 words (citing previous comparison and characterization studies). They further state that “98.1% of questions are unique”, though I am unsure as to how exact they are being about matching (I am sure the question “What’s a great restaurant in SF” has been asked 1000 times in different forms). In addition, they report from manual scoring of 1000 randomly selected questions that 64.7% of questions asked have a subjective element, with advice about travel, restaurants, and products being specifically popular.
- Fast, High-Quality Answers: They report that 87.7% of questions get answers and 57.2% received an answer within 10 minutes. They report that 70.4% of answers receiving feedback are rated as “good” and only 15.5% are rated as “bad”. Interestingly, they observe a notable difference in feedback on answers from users within the asker’s social network (76% rated as food) and outside the asker’s network (68% rated as good).
Overall, I really enjoyed reading this paper. After using Aardvark for over a year now, it was really interesting to get to peer inside and see how the system works, and a lot of great details were provided about the ranking engine.
One place where I feel that the authors missed the mark was in the cursory side-by-side evaluation which pitted Aardvark against Google for a set of 200 questions randomly selected from the Aardvark system. They report that 71.5% of the questions studied were answered successfully on Aardvark, while 70.5% of the questions were answered successfully on Google. This comparison seems mostly useless as the questions, having been pulled from the Aardvark system in the first place, are ones that were specifically chosen because they are better adapted to what is being called ’social search’. This comparison left me desirous of more investigation into two main questions.
“What makes a search engine ’social’ in the first place?”
The distinction between social and non-social is extremely murky, something Brynn and I discovered when working on our Social Search paper. It has been argued before (one small example here) that Google’s PageRank algorithm is inherently social, as it aggregates information provided by people (links to one another) to rank results. However, it is clear that something seems categorically different between Google and what people perceive to be ’social search’. When it comes down to it, even though everyone is excited about Google’s forays into “Social Search”, there’s nothing all that fundamentally different about Google indexing your blog and your tweets than any other documents extant on the web.
To me, it seems that the key difference is really the change in the direction of interaction. While Google takes a query (question) and compares it against traces of discussion about that question from the past (web documents), systems perceived as ’social’ take a question and attempt to generate new answers in the future. This change in direction is what allows for the higher context that makes ’social’ search answers so much more rich (at least for some questions.) Perhaps we need a different word to define this phenomenon – ‘real-time search’ seems to get at it more, but has its own problems. Perhaps something like ‘generative search’? I really don’t know.
“Why do we need a social search engine at all?”
This one seems like the best fodder for a follow-up study by Aardvark. While they do provide a rough breakdown of the types of questions asked on Aardvark (see pie chart above), I think that a comparison might have been much more interesting if they had looked at a variety of classes of user needs and had compared the relative efficacy of searching on Aardvark and a traditional search engine such as Google. It is clear that ’social’ will work much better for some needs and much worse for others, but up to this point, people who talk about social search always seem to use the same types of examples (travel, restaurants, and products, for instance). It would be great to get a clear idea over a wide range of needs and use cases where systems such as Aardvark can provide benefits over existing tools.
Anyways, for those of you interested in ’social search’ and search systems, I encourage you to read this paper and tell me your thoughts!
I recently received an email message announcing the creation of a new journal, entitled The Journal of Serendipitous and Unexpected Results (JSUR), which focuses on reporting research efforts that differ from “what is traditionally thought of as a publishable result.” They are looking for papers in both Computer Science and Life Science. (here is a link to a page describing contribution types in more detail.) Below is the announcement and call for papers:
Most research effort does not produce what is thought of as a traditionally publishable result. That doesn’t mean, however, that nothing was gained by conducting the research. These results, whether they are failures or merely perplexing, can provide valuable insights into open problems and prevent other researchers from duplicating work.
We have started a journal that focuses on serendipitous (I have no idea why this worked) and unexpected (it seems like this technique should work on this problem but it doesn’t) results. The goal is to provide a venue for the dissemination and discussion of ideas and to enable more efficient research.
The Journal of Serendipitous and Unexpected Results (JSUR) is an open-access forum for researchers seeking to further scientific discovery by sharing surprising or unexpected results. These results should provide guidance toward the verification (or negation) of extant hypotheses. JSUR has two branches, one focusing on computational sciences and the other on the life sciences. JSUR submissions include, but are not limited to, short communications of recent research results, full-length papers, review articles, and opinion pieces.
Recently, we launched the beta version of the journal site at http://jsur.org . We would love to get your feedback and even better, a submission for the first issue.
To get the journal started, we’re looking to collect a large number of short (2-4 page) reports. I know you have something to publish.
Please help us spread the word and forward this information to interested colleagues.
Looking at the author guidelines, it looks as if submissions will be reviewed both by an editorial board and through a peer review process. In addition, an interesting note is that all articles will be open-access and Creative-Commons licensed. I’ll definitely be happy to read some of the articles that come through here once they start publishing.
- @communicating Its nice to be able to customize features and stuff. Wordpress works for me but sure there are plenty of good ones out there. in reply to communicating #
- I wonder what percentage of Snuggie purchases are ironic. #
- Nate Silver's excellent content analysis of SOTU after only 24 hours makes academics everywhere look bad. http://bit.ly/d2pJLu \via @bkeegan #
- @paulesque I just want to have people complete a learning task and track the webpages they look at & for how long. No brainwaves required =) #
- Anyone have advice advice or experience w/ logging web-browsing while running studies remotely? Working on a new research study. #
- Does this summarize the #iPad news? Just as predicted but w/ huge bezel, no camera, no widescreen, & no multiple processes. Bleh. #
- RT @edchi: Stuart Card will be retiring from PARC this week. We will miss having him around… #
- RT @chrismessina: Why Apple hates working w/others: McGraw-Hill Confirms Apple Tablet http://bit.ly/doK7m2 /via @phillryu #
Powered by Twitter Tools
Twitter Weekly Updates for 2010-01-25
- Little Wayne is music cancer. #
- Conan is awesome – blows $1.5M of NBC's money on a 60-second comedy bit: http://bit.ly/7D0MNS \via @ChrisSaad #
- @chrisdiehl @edchi I'm paying a premium up in San Francisco, and right now I'm not getting the feeling that it's for weather… #
- RT @davemunger: Cogntive Daily Closes Shop after a Fantastic Five-Year Run http://is.gd/6GYYB » Ah, a surprise and a shame! =( #
- Sikuli, by Rob Miller's group at @MIT_CSAIL allows you to utilize screen shots in code: http://bit.ly/6JKj5m » Kind of amazing. #
- Listening to this talk on mobile phone usability (and watching videos of task failures) reminds me how much I love my iPhone! #
- @borismus If it was, it will probably show up on Twitter – probably not that out of the ordinary for you on the East Coast was what I meant. #
- Amazing how extraordinary thunder and lightning seem here in Palo Alto compared with relatively frequent back in New York. #
- @ipeirotis is here & just gave us a very cool, very unique research talk about analyzing user-generated content through econometrics. #
Powered by Twitter Tools
Last month, I read a study by B. J. Fogg and others from the Persuasive Technology Lab at Stanford, entitled “What Makes Web Sites Credible? A Report on a Large Quantitative Study“. The paper described an early effort to systematically determine how different elements of web sites affect people’s perceptions of credibility (defined roughly as the intersection of trustworthiness and expertise). The original study design had 1400 participants completing a survey which presented them with 51 web site elements and asked them to rate how much more or less each element would affect the believability of a web site.
Upon reading this study, I noticed two things:
1) The original experiment solicited participants by offering to donate $10 to charity for their time; resulting in a net cost of at least $14K, raising the second question: Given the growth of sites like Mechanical Turk, can we get comparable results for less money?
2) The data was originally collected in December 2009 1999, which is almost exactly 10 years ago. Content on the web and our interactions with it have changed a great deal since then – I mean, in 1999, Google had only existed for a year, blogs were still relatively uncommon (LiveJournal had just started), and Wikipedia didn’t even exist yet! This raised the question: Given that the average Internet user now has a far greater amount of experience navigating the Web, should we expect the responses to be different 10 years later?
I decided to explore both of these questions through a survey on Mechanical Turk; in December 2009, I posted a HIT to Mechanical Turk replicating the original study as closely as possible. The 51 statements about web site elements were available from Fogg’s original paper, the same 7-point Likert scale was used, and the survey items were randomized. I paid $0.05 per HIT, and I ended up getting 327 responses, with none thrown out due to quality.
An initial, high-level examination of the responses showed that they actually matched the 1999 data fairly well. Average Likert ratings for each item correlated highly with average ratings for the same items in the 1999 data with R^2 = 0.96. One difference in the data was that answers were compressed (closer to 0) overall, so for the purposes of comparison, I transformed the 2009 data using the transformation (1.1677X – 0.0003) to match the 1999 data (note that this has no effect on the correlation coefficient).
The first analysis in Fogg, et al. was to separate the various elements into 7 “scales” using factor analysis (Real-World Feel, Ease of Use, Expertise, Trustworthiness, Tailoring, Commercial Implications, and Amateurism). Below, I present comparisons for items in each scale. I highlighted items that deviated from the 1999 values by more than 0.25 (without the original data, I couldn’t do much more in-depth comparison), but this might give some rough idea of which elements are more important now than they were in 1999 (red) and which elements are less important (purple):

For some reason, it seems that displaying an award helps your site's credibility more than 10 years ago, and that providing a lot of news stories matters less.

Stating your policy on content and ending in ".org" are more important to people now - could this be a cultural shift in response to sites like Wikipedia? Overall, it seems as if links out to other sites matter less for credibility now.

Outside advertisements and an e-commerce focus matter more for credibility now than in the past. People are paying less attention to the commercial purpose of sites, as well as the number of ads and their integration with content (Google is a favorite site for many, after all.)

People seem to notice domain name mismatches now (more public knowledge of phishing/identity theft now?), but less attention to multi-lingual sites.
Anyways, as we might have guessed, the answers from 2009 seem to match the answers from 1999 pretty well. The elements that made things highly credible or highly ‘un-credible’ in the past seem to have remained constant, and those which didn’t matter then seem not to matter too much now. Some interesting elements are noted in the captions with some rough conjectures as to why some of them might be trending the way they are.
The rest of the Fogg paper focused on characterizing differences in scale responses due to demographic differences between participants, but I found that part of the study less convincing as they averaged over the positively and negatively phrased elements on each scale (which I think makes the interpretation somewhat confusing).
Now, back to our two questions:
1) It looks as if using Mechanical Turk, we were able to get reasonable answers that fairly closely matched those from the original study. Total price tag: 327 response * $0.05 = $16.35 paid to participants (plus Amazon’s cut), which made this study about $13,980 cheaper than the original one.
2) We see above a few small changes in what makes web sites credible, but overall, people are looking at the same things, meaning that we should continue taking the same factors into account when designing websites. I’ve made some guesses as to why these elements may have changed over time, but I’m curious to hear what you think, so leave a comment!
Twitter Weekly Updates for 2010-01-18
- Just conquered my fear of Karaoke (sort of). (@ Encore Karaoke Lounge) http://4sq.com/7XxvoJ #
- RT @msbernst: Are Mechanical Turkers funny? http://bit.ly/70mF1u (Answer: yes.) » Best: "I would literally punch a rabid bear in the face" #
- The music on http://www.nespresso.com/ makes me feel like I'm watching coffee porn. #
- @Manas Re: http://bit.ly/2Aeypc » My eyes! The goggles do nothing! in reply to Manas #
- Microsoft's Desney Tan is exploring image-tagging with brain-wave activity: http://bit.ly/6K2UUi » "Tagging Farms" are creepy. #
- @LiveSky Thanks! That is similar to my mom's advice in High School "Work hard or you'll end up in Dartmouth like your brother" #asianparents #
- @DataJunkie Double-check that there's no time on there & you're prob. good until midnight – Good luck!!! in reply to DataJunkie #
- Apparently, Ke$ha kicks them to the curb "unless they look like Mick Jagger"? http://bit.ly/6DiGeT » I don't think I get it. #
- @brynn re: "Why 'social' can't be solved by an algorithm" » I think that just means you need a better algorithm. in reply to brynn #
- OMG I just discovered that @Richard_Dawkins is on Twitter. Can't wait to @ him with dozens of Twitter memes. #
- CMU predicts which noun (out of 60 choices) you are thinking about, find that brain identifies objects by function – http://bit.ly/8pcyIk #
- @jteevan @Tweetdeck is pretty useful for all that – characters remaining, twitpic upload, url-shortening, handling lists, etc. in reply to jteevan #
- RT @k: "We recognize that this may well mean having to shut down Google.cn, & potentially our offices in China" http://bit.ly/7JoJ0U » whoa #
- Woo – my first post on the PARC blog! http://bit.ly/6UphL0 – and re-posted on my personal blog, with pictures! http://bit.ly/4UF8iE #TMSP #
- RT @brynn: Facebook is offering a new program to support 5 PhD students with expenses/stipend! http://bit.ly/51B7D9 #
- @Schauertime Good luck today! #
- Just got a Flip (http://bit.ly/1WIucA) for my birthday – any creative video project ideas? Never really been inclined to videoblog. #
Powered by Twitter Tools
This is a duplicate of my very first post on the PARC blog! You can see the original post here, though photos were added below.
——————————————————-
Last month, PARC hosted the first of two National Science Foundation-funded workshops on Technology-Mediated Social Participation, co-organized by PARC’s Peter Pirolli (see his original post on why we were motivated to do this here) and the University of Maryland’s Jennifer Preece and Ben Shneiderman. With the goal of drawing up a strong scientific research agenda and educational recommendations to help foster a new era of technologies that support social participation, the workshop brought together some of the top U.S. industry and academia researchers from fields such as Computer Science, Information Science, and Cognitive Science.
Workshop themes
Specifically, the workshop addressed three major themes:
- How to integrate theory across levels from the individual to the community.
- How to develop new methods of measuring social connections and social capital across networks.
- How to build an infrastructure to collect data reliably and responsibly.
The primary goal of the workshop has been to produce reports on these three topics — now available on the public TMSP wiki. The reports address participants’ government, academic, and education recommendations, and implications for each of the topics.
Motivations and timing
Amy Bruckman of Georgia Tech reminded us of the need for such a cross-cutting initiative, commenting that “Right now it’s harder than it should be for academia and industry to work together. I think that’s a key place where a government-funded initiative can help — making it easier to form industry-academia collaborations.” Ben Shneiderman enthused that the workshop was a “remarkable gathering of leading academic and industry researchers and that it served as a big step forward in realizing the goals set out in my letter in AAAS Science (13 March 2009).”

Thinking Big! (Photo originally posted by @edchi)
Preece (serving as the Principal Investigator for the NSF grant supporting the workshop) spoke to the timeliness of this effort, observing that “A few people have been investigating this topic since the 1990’s, but now that billions of people worldwide are using Web 2.0 social media, such as Facebook, wikis, blogs, microblogs, and discussion forums, substantially increased research is needed to understand the benefits and dangers.” Throughout the workshop, one theme that emerged was how a more thorough understanding of social participation could affect users at all levels of participation in a variety of domains; Preece noted, “If community managers knew how to increase participation, then this technology could be more successful for patient support, citizen science contributions, and changing behaviors for energy conservation.”
PARC Forum and audience participation
The workshop also featured a special PARC Forum panel discussion on the Future of Technology-Mediated Social Participation, which discussed patterns of attention in social media, the potential of peer-produced content, and leveraging social network data to model and understand behavior. Bruckman (who served as a panelist along with Shneiderman, HP Labs’ Bernardo Huberman, and Facebook’s Cameron Marlow) shared, “Aside from joking about avocados and bison…I do think the panel opened some questions that fed into the discussion we had the next day,” highlighting the impact that public participation can have on driving this initiative.

Cameron Marlow discussing the relative dangers of avocados and bread (Photo originally posted by @HCIR_GeneG)
How can you get involved?
For those interested in helping to support this initiative — or curious about technology and social systems — the final reports will provide a glimpse into the ongoing discussion. In addition, the TMSP website also features a growing list of relevant resources, such as books, courses, and research groups (compiled, in part, by U. Maryland graduate student Dana Rotman, who has been instrumental in the planning and execution of these workshops).
What’s next?
Shneiderman hopes the effort will “catalyze the research community and encourage the U.S. National Science Foundation to dramatically increase its support for Technology-Mediated Social Participation, which is aligned with national priorities such as healthcare, energy conservation, disaster response, community safety, and more.”
The next event, the East Coast Workshop, will take place 11-12 February in Virginia (more information will be available at the TMSP East Coast Workshop website.)
And, we welcome you to read the reports, watch the Forum, and add your insights!
——————————————————-
Back to my personal comments…
All in all, I am extremely appreciative of the opportunity to participate in the workshop. I met a lot of incredible people, and I got to participate in some fascinating discussion. A lot of innovative ideas were discussed, and I am eager to see what will eventually emerge from these workshops – be it new research centers, changes in governmental policy, or increased funding for social computing research.
Twitter Weekly Updates for 2010-01-11
- My mom emailed me that she finally got invited on an Explorer's Club trip: http://explorers.org/ » Is my mom cooler than I am? #
- Impassioned/humorous article from @zedshaw "Programmers Need To Learn Statistics Or I Will Kill Them All" http://bit.ly/8TWnW1 #
- Day of coincidences at Squaw today, including running into @ayshbot on the mountain! #
- Wow, Amazon PayPhrase is so freaking fast – I literally just searched for and bought a book in under 10 seconds – this is dangerous! #
- Whoa, that's awesome » Samsung shows off transparent computer display at CES http://bit.ly/7jvFca #
- RT @cowboyx: Lady Gaga named Creative Director for Polaroid. How did something that smart and weird happen? » w/ link: http://bit.ly/8GaM5N #
- Wow, this kid is pretty good (and all one take!): http://bit.ly/69oWv8 //cc @ladygaga /via @dielaughing #
- @tjheverin May want to check out work of http://www.sarahvieweg.com/ incl. her position paper from TMSP workshop: http://bit.ly/57nKJ6 (pdf) #
- "Josh Hartnett math: 30 Days of Night + 40 Days & 40 Nights = vampire & abstinent for 70 Days & Nights" » @smdouglas: "Isn't that Twilight?" #
- Wow, powerful quotes from story of Tsutomu Yamaguchi (just passed away at 93), only survivor of both nuclear bombs http://bit.ly/7HCBAI #
- Either I'm not capable of feeling these minor earthquakes or everyone in SF on Twitter is constantly putting me on. #
- Trying out @quora, looks interesting (@vark don't hate me!) #
- RT @chrismessina: Thanks all — it's true, I'm joining Google: http://j.mp/fj_birthday » Congrats & Happy Birthday! #
- ZOMG did Wilhelmina actually just say "Frak" in tonight's Ugly Betty episode? #
- Wow – long time since I've been down University Ave in Palo Alto. Walgreens rebuild finished with a new addition! http://yfrog.com/4ecdbtj #
- "Why you won't recognize the 'Net in 10 yrs" http://bit.ly/4M0dP4 » Includes Content-Centric Networking from @PARCinc on p.4! #
- Just getting back from great birthday trivia night with @ljmecca, @smdouglas, and @thedevotv. #
- Just tried coriander ice cream for the first time. Surprisingly more delicious than I would have imagined. #
- RT @twitterapi: Twitter Streaming API goes full production: http://bit.ly/8QBMlE /via @DataJunkie #
- RT @TechCrunch: TechCrunch Giveaway: A Google Nexus One #TechCrunch http://bit.ly/4XzVxm #techcrunch /via @harper #
- @wisequark I agreed with the everything about that Desperate Housewives review except for the powerful episode part. #
- RT @borismus: A much more pleasant, programmatic way of posting HITs on Mechanical Turk: http://groups.csail.mit.edu/uid/turkit/ #
- Someone I know just tweet-congratulated himself in the third person…is that #tweetingtoohard? #
- Wow – some of the pictures on "Nic Cage as Everyone" are as disturbing as they are impressive. http://bit.ly/1dfJtY #
Powered by Twitter Tools
- I feel like there are a lot of people who wouldn't be surprised that my follower number tends to hover around 666. #
- RT @msbernst: I am _this_ close to Huffman encoding this paper to get it down to 10 pages. #
- #10YearsAgo Right about now, I was unsuccessfully trying to talk my parents into letting me go to Times Square for millenium craziness. #
- Check out Do I Tweet Food from @msbernst and @paulesque – you can rate mine (anonymously) at: http://doItweetgood.com/skairam #
Powered by Twitter Tools





