[Script Info] Title: [Events] Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,In this video how you can use Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,the setInterval() function Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,to schedule tweets from a bot in node Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,we already have working from Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,the previous video an example Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,that makes a status ,post to the twitter Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,api and a callback to tell us whether Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,it did'nt work or work Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,So now we need to do this Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,what if I want this particular program Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,to do this every five minutes or Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,once an hour Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,how would I add that to the program Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,other thing I will show you in this video Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,is how you can have a bot tweet based on Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,a particular event Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,So, the example I am using in this vedio Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,is anytime someone follows me I will tweet Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,back and say like you know thank you Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,for following me or something like Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,that. There are lot of other kinds of Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,events, eventually at some point I wanna Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,look if someone tweets mentions me Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,with an image I'm gonna process that image Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,send the image back but, Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,we get to that in future vedios Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,In this one we are gonna look at Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,scheduling the tweets and the twitter api Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,stream to have tweets happen based on Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,a given event. Okay Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,So,the good news is Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,we already have this,this is all Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,the code that I need Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,for posting a tweet Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,tweeting a tweet.Okay Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,The first thing I'm gonna do Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,wrap this in a function and Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I am gonna call this function Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,'tweetIt' apparently everything has to Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,start with 'tw' in this example. So, I'm Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,gonna all of this code and Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I am going to indent this a little bit Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I don't have my sublime settings, Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,this four space indent I can't Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I have to tolerate this for the video Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,probably gonna fix that for the future Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,two spaces two spaces Iprefer Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,but you shouldn't be like that Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,you should welcome any kind of spaces Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,for your indentation Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,But the point is I have this now inner Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,function so anytime I would have Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,call this function Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,If I call that function boom its gonna Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,post that tweet. One thing I have Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,an issue of like could run this right now Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I am gonna say 'node bot2.js' I'm feeling Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I might get an error Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,'Something went wrong'. So, why it send Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,something went wrong is just run this Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,example I made the same exact Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,tweet two times in a row Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,so twitter doesn't like that Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,twitter is like that's a duplicate status Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I could have got better error message Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,down here to look at the error what the Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,error actually is,but I have done this Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,before so I remember I have done this Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,before I know that was an error Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,It doesn't make sense to have twitter bot Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,to post the same tweet every so often. Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,There is actually a page twitter's website Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I will provide a link to it that gives Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,you kind of rules that you should follow Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,bots are allowed but there are certain Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,kinds of do's and don't 's in terms of Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,what Twitter allows for your bot but Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,one thing that I can do really quickly is Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I could just say let's make this a Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,'Random Number Bot' Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,So I could say in my tweetIt function Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I can say 'var r' is a random number Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,between 0 and 100 and may be I'm gonna Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,use floor function so it doesn't have Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,a decimal point. So I'm getting 0 5 Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,integer or whole number Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I tweet I could say the status is a Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,'here is random number' plus r plus Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,'codingrainbow from node js' Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,Hopefully that not more than 140 character Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I think that's fine. So now atleast Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,each tweet would be different because Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I am getting a random number. Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,So, let's run this again Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,and see 'It Worked!' and Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,now if go to the browser and Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,look at my account page Refresh Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,see 'here is random number 30' Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,forgot to put a space between the number Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,and the hash symbol. So, my super Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,important hashtag is gone. So, let me add Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,that space back in and you can see Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,there we go, this is a bot a bot that Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,tweets a random number I mean the point Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,of me making these videos is that Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,to show how to do it so it's up to you Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,how you come up with bunch of creative Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,or interesting ideas and I try to include Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,some links to interesting bots examples Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,and ideas might help you guys started Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,in this video description but the real Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,key here for now is this now happening Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,just once what if I want this happen every Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,so often the way I can do that Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,is by using the function in Javascript Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,called 'setInterval()' and it is a Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,function that triggers this particular Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,function 'tweetIt' every how some number Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,of milliseconds. So what I could say is a Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,1000 milliseconds would be 1 sec. Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,1000 times 10 would be 10seconds Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,1000 times 60 would be 60 seconds Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,minute times 5 would be 5 minutes Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,times 60 would be once in hour. Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,It's up to you how often you want your Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,bot to run again read that Twitter page Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,that explains that like if you are posting Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,tweets like every 10 ms, probably gonna Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,shutdown your account .I imagine I don't Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,know all the parameter all of them top Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,in my head but all purpose is right now Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,if we get away with like tweeting every Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,20 seconds just briefly so we can at Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,least see the response and one thing Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I also do is actually when my bot starts Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,explicitly called tweetIt once because Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,this first time it's gonna run is only Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,20 seconds in. So I have to think Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,of something for 20 seconds while Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,we are waiting but let's run the bot Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,and say 'node bot.js' so it worked Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,it did tweet something probably would Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,make sense do something better in console Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,like print out the tweet that I actually Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,tweeted. I'm rambling Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,This probably gonna take me 20 seconds Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,to go back over here refresh this page Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,and you can see got the number 18 Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,from node.js and now I'm gonna go back Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,to node and wait here ' It worked!' Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,and another one that was 20 seconds Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,come back here and hit refresh Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,and look I got the number 72 now Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I'm gonna quickly go here and Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,hit 'Ctrl + c' which is gonna stop Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,this thing from running and I don't wanna Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,tweet too often from this account Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,right now but you can see this is it Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,all of these videos all of this like Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,this setting up an account working Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,with node it boils down to actually Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,really quite easy which is just about Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,having a single function that posts a Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,tweet and single function 'setInterval()' Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,schedules it. Of course the real work Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,for you is what goes here like why you are Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,making a bot Is it to be try some playful Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,experience Is it to do something practical Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,Is it to make a political statement or to Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,provoke some thought there are lots of Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,different kinds of creative reasons why Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,you might want to make a bot. I think it's Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,kind of form of expression that is really Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I am so tired of making these videos for Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,hours. I'm excited to see those who you Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,are may be the first time what kind Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,of things you might make please share Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,those if you end up making something Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,in the comments that would be helpful Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,and interesting to me. So ,now let's look Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,at one more aspect of this Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,If you remember that these are the three Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,kinds of thing that you can do with Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,Twitter API you can search the Twitter API Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,So one of the things you might do is like Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,search for all the tweets with the given Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,term and I could make up a tweet from Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,those tweets and send them back Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,with post. But, the thing we haven't seen Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,is this ' stream ' so how do you set up Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,a stream. So, first of all, there are Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,couple of things there are different Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,kind of streams and the stream I'm gonna Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,demonstrate you is the stream called Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,' user ' stream the reason why I wanna Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,setup a user stream is I want to get an Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,event for certain kind of actions Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,If someone favourite one of my tweets Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,if someone follows me, If someone Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,retweets me, someone ' @ ' replies me Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,So you can get an event. Let's start with Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,just the follow event which is one of the Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,easier ones to work with. Now Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,I don't have actually code for this Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,of the top of my head I'm gonna just kind Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,of grab it from a here for a second Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,which I prefer to like to type it out but Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,just gonna do this from my previous Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,example. So, I'm gonna leave this down Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,here this particular interval is gonna go Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,as well I am gonna add something to this Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,particular bot. So, I'm gonna add these Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,2 particular lines to the code Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,Setup a stream a user stream remember Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,T is a reference to my connection to the Dialogue: 0,9:59:59.99,9:59:59.99,Default,,0000,0000,0000,,API with twit package