Skip to content

Instantly share code, notes, and snippets.

@colinf
Last active July 13, 2016 15:57
Show Gist options
  • Save colinf/343e45a60c84a1bdc230 to your computer and use it in GitHub Desktop.
Save colinf/343e45a60c84a1bdc230 to your computer and use it in GitHub Desktop.
The flux-chat data ( see http://bit.ly/29EyV1D )
(def raw-data [
{
:id "m_1"
:threadID "t_1"
:threadName "Jing and Bill"
:authorName "Bill"
:text "Hey Jing want to give a Flux talk at ForwardJS?"
:timestamp (- (dt/now) 99999)}
{
:id "m_2"
:threadID "t_1"
:threadName "Jing and Bill"
:authorName "Bill"
:text "Seems like a pretty cool conference."
:timestamp (- (dt/now) 89999)}
{
:id "m_3"
:threadID "t_1"
:threadName "Jing and Bill"
:authorName "Jing"
:text "Sounds good. Will they be serving dessert?"
:timestamp (- (dt/now) 79999)}
{
:id "m_4"
:threadID "t_2"
:threadName "Dave and Bill"
:authorName "Bill"
:text "Hey Dave want to get a beer after the conference?"
:timestamp (- (dt/now) 69999)}
{
:id "m_5"
:threadID "t_2"
:threadName "Dave and Bill"
:authorName "Dave"
:text "Totally! Meet you at the hotel bar."
:timestamp (- (dt/now) 59999)}
{
:id "m_6"
:threadID "t_3"
:threadName "Functional Heads"
:authorName "Bill"
:text "Hey Brian are you going to be talking about functional stuff?"
:timestamp (- (dt/now) 49999)}
{
:id "m_7"
:threadID "t_3"
:threadName "Bill and Brian"
:authorName "Brian"
:text "At ForwardJS? Yeah of course. See you there!"
:timestamp (- (dt/now) 39999)}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment