Posts Tagged ‘twitter’

TweetDive Source Code

Wednesday, April 14th, 2010 by Jared Peterson

I’m happy to announce that we’ve made the TweetDive source code publicly available (finally). I know a number of people have been waiting to get their hands on it. For details on how to grab it from Subversion take a look at this page.

We hope this code will provide a quick-start for developers getting started with SaffronSierra. TweetDive uses a number of different REST APIs available on SaffronSierra. You can use it as a reference as you build your own stuff, or you can extend TweetDive with new features. If you’d like to see your changes incorporated into the running version of TweetDive please contact us. We’d be happy to incorporate patches.

(more…)

Tags: , , , , ,
Posted in SaffronMemoryBase, SaffronSierra, TweetDive | No Comments »

What is SaffronSierra (in plain english)?

Wednesday, February 17th, 2010 by Jared Peterson

I recently received a request to describe SaffronSierra “in plain english”, this post will attempt to do just that.

SaffronSierra is a cloud-based, hosted version of SaffronMemoryBase. SaffronSierra enables developers to easily leverage the analytical powers of SaffronMemoryBase using a simple REST API. Using SaffronSierra, you don’t have to worry about downloading, installing and configuring software. You simply login to your SaffronSierra console and press “Start”. Within minutes, you will have a private instance of SaffronSierra ready for your use. Once your service is available you can start putting your data into SaffronSierra and powering your applications with advanced analytics. We hope that SaffronSierra enables people to quickly realize the benefits of SaffronMemoryBase in a low-cost, low-risk way.

(more…)

Tags: , , , , ,
Posted in SaffronSierra | No Comments »

TweetDive Worlds

Tuesday, February 16th, 2010 by Jared Peterson

Up until today if you were to login into TweetDive you would have only seen data from what we call the “Money” world. TweetDive could only display Twitter data that had been ingested into this one SaffronSierra instance. Today we refreshed TweetDive and now users have access to more “worlds”. A “world” represents a Twitter account paired with a SaffronSierra instance. Now when you login you should see the world selector towards the top-right of the screen.

(more…)

Tags: , ,
Posted in TweetDive | No Comments »

TweetDive Introduction (Part 1)

Monday, February 8th, 2010 by Jared Peterson

This is a screencast that I put together that covers some of the basics of using TweetDive.

Tags: , ,
Posted in TweetDive | 1 Comment »

Observing & Querying Tweets (Part 3)

Wednesday, January 13th, 2010 by Jared Peterson

In my previous posts I’ve discussed how to fetch data from Twitter and massage it into the form that is needed when observing data in Sierra. I also talked about how to “POST” that data to Sierra so that it’s available to query. In this post I’m going to discuss the process of actually querying that data once it’s in Sierra.

Before you read on you may want to browse over the Sierra documentation. These docs list all of the REST calls that are available on Sierra. In my example below I’ll be using the “connections” call.

I should also note that I’ve made some additions to the source code that I’ve used across all of these posts. That code is available along with the rest of the Sierra sample code. In particular I’ve made the code aware of command-line options that specify whether you are “observing” (-o) or “querying” (-q). You can also define all of the needed usernames and passwords via the command-line as well.

(more…)

Tags: , , , , ,
Posted in SaffronSierra | 1 Comment »

Observing & Querying Tweets (Part 2)

Monday, December 28th, 2009 by Jared Peterson

In my last post I walked through grabbing tweets from Twitter using their API. We then took those tweets and built the necessary XML “resource” for pushing that data into Saffron Sierra. In this post I’m going to cover the process of actually getting the data into (observing) Sierra.

To start, I should probably cover a minor modification I made to the code from the last post as I worked through this post. Last time, I created one XML resource for Sierra that contained all of the tweets from my timeline. After some testing, and thinking, I decided to put each tweet into it’s own separate XML resource. I think this is cleaner, and it’s the “supported” path for Sierra anyway.

(more…)

Tags: , , , ,
Posted in SaffronSierra | 2 Comments »

Observing & Querying Tweets (Part 1)

Monday, November 9th, 2009 by Jared Peterson

As we look to build compelling examples using Saffron Sierra we’ve often talked about using Twitter as a datasource.  If we could get Twitter data/tweets into Sierra then we could builds lots on interesting analytical capability using Sierra’s APIs.  To enable our exploration, and others, I’ve decided to start a little series (probably 3 parts) of blog post about observing and querying Twitter data in Sierra.

In this first part I’m going to cover the process of grabbing a Twitter feed and building the necessary resource XML for Sierra observations.  For now, you can think of a “resource” in Sierra speak as our method of “inserting” data into the system.  For my example I’m going to be using Groovy .  This code should be easily replicated in your language of choice.  I choose Groovy because I’m familiar with it and it provides a few tools that make this kind of stuff really easy.

(more…)

Tags: , , , ,
Posted in SaffronSierra | 5 Comments »