Example #1
0
        // A nice greeting as well as a central place
        // to call all our methods.

        static void Greeting()
        {
            Console.WriteLine("Hello and welcome to the TrumpTweeter 9000!");
            Console.WriteLine("Let's get started. Beep boop boop...");

            // Connects to Reddit and adds new tweets to database.
            // Make this an aysnc process
            var reddit = new Reddit();

            reddit.ConnectToReddit();

            // Opens Db, grabs one Tweet
            // that hasn't been posted and publishes it
            // to Twitter.
            var twitter = new Twitter();

            twitter.NewTweetsAsync();

            Console.ReadKey();
        }
Example #2
0
        // This method reinitializes the reddit
        // image scraper so we can get new images
        // to add to our database

        private static void CallImageScraper(object sender, ElapsedEventArgs e)
        {
            var reddit = new Reddit();

            reddit.ConnectToReddit();
        }